Updated Traditional Chinese translation.
[evolution.git] / shell / e-shell-settings-dialog.h
blob49f3fb60f3edc3f80190f8b7e3bca3acf92e64f7
1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
2 /* e-shell-settings-dialog.h
4 * Copyright (C) 2002 Ximian, Inc.
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.
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.
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.
21 * Author: Ettore Perazzoli <ettore@ximian.com>
24 #ifndef _E_SHELL_SETTINGS_DIALOG_H_
25 #define _E_SHELL_SETTINGS_DIALOG_H_
27 #include "e-multi-config-dialog.h"
29 #ifdef __cplusplus
30 extern "C" {
31 #pragma }
32 #endif /* __cplusplus */
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))
41 typedef struct _EShellSettingsDialog EShellSettingsDialog;
42 typedef struct _EShellSettingsDialogPrivate EShellSettingsDialogPrivate;
43 typedef struct _EShellSettingsDialogClass EShellSettingsDialogClass;
45 struct _EShellSettingsDialog {
46 EMultiConfigDialog parent;
48 EShellSettingsDialogPrivate *priv;
51 struct _EShellSettingsDialogClass {
52 EMultiConfigDialogClass parent_class;
56 GtkType e_shell_settings_dialog_get_type (void);
57 GtkWidget *e_shell_settings_dialog_new (void);
58 void e_shell_settings_dialog_show_type (EShellSettingsDialog *dialog,
59 const char *type);
61 #ifdef __cplusplus
63 #endif /* __cplusplus */
65 #endif /* _E_SHELL_SETTINGS_DIALOG_H_ */