1 | /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ |
---|
2 | /* evolution-storage-set-view.h |
---|
3 | * |
---|
4 | * Copyright (C) 2000 Ximian, Inc. |
---|
5 | * |
---|
6 | * This program is free software; you can redistribute it and/or |
---|
7 | * modify it under the terms of version 2 of the GNU General Public |
---|
8 | * License as published by the Free Software Foundation. |
---|
9 | * |
---|
10 | * This program is distributed in the hope that it will be useful, |
---|
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
13 | * General Public License for more details. |
---|
14 | * |
---|
15 | * You should have received a copy of the GNU General Public |
---|
16 | * License along with this program; if not, write to the |
---|
17 | * Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
---|
18 | * Boston, MA 02111-1307, USA. |
---|
19 | * |
---|
20 | * Author: Ettore Perazzoli |
---|
21 | */ |
---|
22 | |
---|
23 | #ifndef _EVOLUTION_STORAGE_SET_VIEW_H_ |
---|
24 | #define _EVOLUTION_STORAGE_SET_VIEW_H_ |
---|
25 | |
---|
26 | #include <bonobo/bonobo-object.h> |
---|
27 | |
---|
28 | #include "e-storage-set-view.h" |
---|
29 | |
---|
30 | #include "Evolution.h" |
---|
31 | |
---|
32 | #ifdef __cplusplus |
---|
33 | extern "C" { |
---|
34 | #pragma } |
---|
35 | #endif /* __cplusplus */ |
---|
36 | |
---|
37 | #define EVOLUTION_TYPE_STORAGE_SET_VIEW (evolution_storage_set_view_get_type ()) |
---|
38 | #define EVOLUTION_STORAGE_SET_VIEW(obj) (GTK_CHECK_CAST ((obj), EVOLUTION_TYPE_STORAGE_SET_VIEW, EvolutionStorageSetView)) |
---|
39 | #define EVOLUTION_STORAGE_SET_VIEW_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), EVOLUTION_TYPE_STORAGE_SET_VIEW, EvolutionStorageSetViewClass)) |
---|
40 | #define EVOLUTION_IS_STORAGE_SET_VIEW(obj) (GTK_CHECK_TYPE ((obj), EVOLUTION_TYPE_STORAGE_SET_VIEW)) |
---|
41 | #define EVOLUTION_IS_STORAGE_SET_VIEW_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((obj), EVOLUTION_TYPE_STORAGE_SET_VIEW)) |
---|
42 | |
---|
43 | |
---|
44 | typedef struct _EvolutionStorageSetView EvolutionStorageSetView; |
---|
45 | typedef struct _EvolutionStorageSetViewPrivate EvolutionStorageSetViewPrivate; |
---|
46 | typedef struct _EvolutionStorageSetViewClass EvolutionStorageSetViewClass; |
---|
47 | |
---|
48 | struct _EvolutionStorageSetView { |
---|
49 | BonoboObject parent; |
---|
50 | |
---|
51 | EvolutionStorageSetViewPrivate *priv; |
---|
52 | }; |
---|
53 | |
---|
54 | struct _EvolutionStorageSetViewClass { |
---|
55 | BonoboObjectClass parent_class; |
---|
56 | }; |
---|
57 | |
---|
58 | |
---|
59 | GtkType evolution_storage_set_view_get_type (void); |
---|
60 | void evolution_storage_set_view_construct (EvolutionStorageSetView *storage_set_view, |
---|
61 | GNOME_Evolution_StorageSetView corba_object, |
---|
62 | EStorageSetView *storage_set_view_widget); |
---|
63 | EvolutionStorageSetView *evolution_storage_set_view_new (EStorageSetView *storage_set_view_widget); |
---|
64 | |
---|
65 | #ifdef __cplusplus |
---|
66 | } |
---|
67 | #endif /* __cplusplus */ |
---|
68 | |
---|
69 | #endif /* _EVOLUTION_STORAGE_SET_VIEW_H_ */ |
---|