[18141] | 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 |
---|
| 30 | extern "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 | |
---|
| 41 | typedef struct _EShellSettingsDialog EShellSettingsDialog; |
---|
| 42 | typedef struct _EShellSettingsDialogPrivate EShellSettingsDialogPrivate; |
---|
| 43 | typedef struct _EShellSettingsDialogClass EShellSettingsDialogClass; |
---|
| 44 | |
---|
| 45 | struct _EShellSettingsDialog { |
---|
| 46 | EMultiConfigDialog parent; |
---|
| 47 | |
---|
| 48 | EShellSettingsDialogPrivate *priv; |
---|
| 49 | }; |
---|
| 50 | |
---|
| 51 | struct _EShellSettingsDialogClass { |
---|
| 52 | EMultiConfigDialogClass parent_class; |
---|
| 53 | }; |
---|
| 54 | |
---|
| 55 | |
---|
| 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); |
---|
| 60 | |
---|
| 61 | #ifdef __cplusplus |
---|
| 62 | } |
---|
| 63 | #endif /* __cplusplus */ |
---|
| 64 | |
---|
| 65 | #endif /* _E_SHELL_SETTINGS_DIALOG_H_ */ |
---|