1 | /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ |
---|
2 | /* e-corba-config-page.h |
---|
3 | * |
---|
4 | * Copyright (C) 2002 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 <ettore@ximian.com> |
---|
21 | */ |
---|
22 | |
---|
23 | #ifndef _E_CORBA_CONFIG_PAGE_H_ |
---|
24 | #define _E_CORBA_CONFIG_PAGE_H_ |
---|
25 | |
---|
26 | #include "e-config-page.h" |
---|
27 | |
---|
28 | #include "Evolution.h" |
---|
29 | |
---|
30 | #include <bonobo/bonobo-object.h> |
---|
31 | |
---|
32 | #ifdef __cplusplus |
---|
33 | extern "C" { |
---|
34 | #pragma } |
---|
35 | #endif /* __cplusplus */ |
---|
36 | |
---|
37 | #define E_TYPE_CORBA_CONFIG_PAGE (e_corba_config_page_get_type ()) |
---|
38 | #define E_CORBA_CONFIG_PAGE(obj) (GTK_CHECK_CAST ((obj), E_TYPE_CORBA_CONFIG_PAGE, ECorbaConfigPage)) |
---|
39 | #define E_CORBA_CONFIG_PAGE_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), E_TYPE_CORBA_CONFIG_PAGE, ECorbaConfigPageClass)) |
---|
40 | #define E_IS_CORBA_CONFIG_PAGE(obj) (GTK_CHECK_TYPE ((obj), E_TYPE_CORBA_CONFIG_PAGE)) |
---|
41 | #define E_IS_CORBA_CONFIG_PAGE_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((obj), E_TYPE_CORBA_CONFIG_PAGE)) |
---|
42 | |
---|
43 | |
---|
44 | typedef struct _ECorbaConfigPage ECorbaConfigPage; |
---|
45 | typedef struct _ECorbaConfigPagePrivate ECorbaConfigPagePrivate; |
---|
46 | typedef struct _ECorbaConfigPageClass ECorbaConfigPageClass; |
---|
47 | |
---|
48 | struct _ECorbaConfigPage { |
---|
49 | EConfigPage parent; |
---|
50 | |
---|
51 | ECorbaConfigPagePrivate *priv; |
---|
52 | }; |
---|
53 | |
---|
54 | struct _ECorbaConfigPageClass { |
---|
55 | EConfigPageClass parent_class; |
---|
56 | }; |
---|
57 | |
---|
58 | |
---|
59 | GtkType e_corba_config_page_get_type (void); |
---|
60 | GtkWidget *e_corba_config_page_new_from_objref (GNOME_Evolution_ConfigControl objref); |
---|
61 | gboolean e_corba_config_page_construct (ECorbaConfigPage *corba_config_page, |
---|
62 | GNOME_Evolution_ConfigControl objref); |
---|
63 | |
---|
64 | #ifdef __cplusplus |
---|
65 | } |
---|
66 | #endif /* __cplusplus */ |
---|
67 | |
---|
68 | #endif /* _E_CORBA_CONFIG_PAGE_H_ */ |
---|