source: trunk/third/evolution/shell/e-shell-settings-dialog.h @ 18142

Revision 18142, 2.3 KB checked in by ghudson, 22 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r18141, which included commits to RCS files with non-trunk default branches.
Line 
1/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
2/* e-shell-settings-dialog.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 the GNU General Public License as
8 * published by the Free Software Foundation; either version 2 of the
9 * License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public
17 * License along with this program; if not, write to the
18 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 * Boston, MA 02111-1307, USA.
20 *
21 * Author: Ettore Perazzoli <ettore@ximian.com>
22 */
23
24#ifndef _E_SHELL_SETTINGS_DIALOG_H_
25#define _E_SHELL_SETTINGS_DIALOG_H_
26
27#include "e-multi-config-dialog.h"
28
29#ifdef __cplusplus
30extern "C" {
31#pragma }
32#endif /* __cplusplus */
33
34#define E_TYPE_SHELL_SETTINGS_DIALOG                    (e_shell_settings_dialog_get_type ())
35#define E_SHELL_SETTINGS_DIALOG(obj)                    (GTK_CHECK_CAST ((obj), E_TYPE_SHELL_SETTINGS_DIALOG, EShellSettingsDialog))
36#define E_SHELL_SETTINGS_DIALOG_CLASS(klass)            (GTK_CHECK_CLASS_CAST ((klass), E_TYPE_SHELL_SETTINGS_DIALOG, EShellSettingsDialogClass))
37#define E_IS_SHELL_SETTINGS_DIALOG(obj)                 (GTK_CHECK_TYPE ((obj), E_TYPE_SHELL_SETTINGS_DIALOG))
38#define E_IS_SHELL_SETTINGS_DIALOG_CLASS(klass)         (GTK_CHECK_CLASS_TYPE ((obj), E_TYPE_SHELL_SETTINGS_DIALOG))
39
40
41typedef struct _EShellSettingsDialog        EShellSettingsDialog;
42typedef struct _EShellSettingsDialogPrivate EShellSettingsDialogPrivate;
43typedef struct _EShellSettingsDialogClass   EShellSettingsDialogClass;
44
45struct _EShellSettingsDialog {
46        EMultiConfigDialog parent;
47
48        EShellSettingsDialogPrivate *priv;
49};
50
51struct _EShellSettingsDialogClass {
52        EMultiConfigDialogClass parent_class;
53};
54
55
56GtkType    e_shell_settings_dialog_get_type  (void);
57GtkWidget *e_shell_settings_dialog_new       (void);
58void       e_shell_settings_dialog_show_type (EShellSettingsDialog *dialog,
59                                              const char           *type);
60
61#ifdef __cplusplus
62}
63#endif /* __cplusplus */
64
65#endif /* _E_SHELL_SETTINGS_DIALOG_H_ */
Note: See TracBrowser for help on using the repository browser.