diff options
author | Michael Zucci <zucchi@src.gnome.org> | 2004-09-20 13:59:55 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-09-20 13:59:55 +0800 |
commit | ef6a3af717132e0750f226fa8a0ee0f3c98e19f0 (patch) | |
tree | f4ed25f7a247a8ccb855a8d940777e7a3d21a3e3 /mail/em-config.h | |
parent | 96111b1f1487ca3fe454b340a73ba927cc6bfb83 (diff) | |
download | gsoc2013-evolution-ef6a3af717132e0750f226fa8a0ee0f3c98e19f0.tar.gz gsoc2013-evolution-ef6a3af717132e0750f226fa8a0ee0f3c98e19f0.tar.zst gsoc2013-evolution-ef6a3af717132e0750f226fa8a0ee0f3c98e19f0.zip |
Merged notzed-eplugin-2-branch to head.
svn path=/trunk/; revision=27300
Diffstat (limited to 'mail/em-config.h')
-rw-r--r-- | mail/em-config.h | 114 |
1 files changed, 114 insertions, 0 deletions
diff --git a/mail/em-config.h b/mail/em-config.h new file mode 100644 index 0000000000..ff5b06a209 --- /dev/null +++ b/mail/em-config.h @@ -0,0 +1,114 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- + * + * Authors: Michel Zucchi <notzed@ximian.com> + * + * Copyright 2004 Novell, Inc. (www.novell.com) + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA. + * + */ + +#ifndef __EM_CONFIG_H__ +#define __EM_CONFIG_H__ + +#include <glib-object.h> + +#include "e-util/e-config.h" + +#ifdef __cplusplus +extern "C" { +#pragma } +#endif /* __cplusplus */ + +struct _GConfClient; + +typedef struct _EMConfig EMConfig; +typedef struct _EMConfigClass EMConfigClass; + +/* Current target description */ +/* Types of popup tagets */ +enum _em_config_target_t { + EM_CONFIG_TARGET_FOLDER, + EM_CONFIG_TARGET_PREFS, + EM_CONFIG_TARGET_ACCOUNT, +}; + +typedef struct _EMConfigTargetFolder EMConfigTargetFolder; +typedef struct _EMConfigTargetPrefs EMConfigTargetPrefs; +typedef struct _EMConfigTargetAccount EMConfigTargetAccount; + +struct _EMConfigTargetFolder { + EConfigTarget target; + + struct _CamelFolder *folder; + char *uri; +}; + +struct _EMConfigTargetPrefs { + EConfigTarget target; + + /* preferences are global from gconf */ + struct _GConfClient *gconf; +}; + +struct _EMConfigTargetAccount { + EConfigTarget target; + + struct _EAccount *account; + /* Need also: working account, not just real account, so changes can be propagated around + And some mechamism for controlling the gui if we're running inside a druid, e.g. enabling 'next' */ +}; + +typedef struct _EConfigItem EMConfigItem; + +/* The object */ +struct _EMConfig { + EConfig config; + + struct _EMConfigPrivate *priv; +}; + +struct _EMConfigClass { + EConfigClass config_class; +}; + +GType em_config_get_type(void); + +EMConfig *em_config_new(int type, const char *menuid); + +EMConfigTargetFolder *em_config_target_new_folder(EMConfig *emp, struct _CamelFolder *folder, const char *uri); +EMConfigTargetPrefs *em_config_target_new_prefs(EMConfig *emp, struct _GConfClient *gconf); +EMConfigTargetAccount *em_config_target_new_account(EMConfig *emp, struct _EAccount *account); + +/* ********************************************************************** */ + +typedef struct _EMConfigHook EMConfigHook; +typedef struct _EMConfigHookClass EMConfigHookClass; + +struct _EMConfigHook { + EConfigHook hook; +}; + +struct _EMConfigHookClass { + EConfigHookClass hook_class; +}; + +GType em_config_hook_get_type(void); + +#ifdef __cplusplus +} +#endif /* __cplusplus */ + +#endif /* __EM_CONFIG_H__ */ |