2006-01-09 Kjartan Maraas <kmaraas@gnome.org> * em-account-editor.h: s/int/guint/g for 1-bit bitfield. * em-composer-utils.c: (em_utils_redirect_message): Remove cruft * em-folder-tree.c: (emft_drop_target): use guint for 1-bit bitfield and rename a variable with a name clash. * em-folder-utils.c: (em_folder_utils_rename_folder): Rename var to avoid name clashes. * em-folder-view.c: guint for 1-bit bitfields. * em-folder-view.h: Same as above. * em-format-html-print.h: Again. * em-format-html.c: (efh_text_html), (efh_multipart_related): Add comments * em-format.c: (emf_multipart_alternative): Add comment about using var that is passed in rather than a local variable. * em-inline-filter.c: (emif_scan): Remove unused var. Mark code static. * em-mailer-prefs.h: guint for 1-bit bitfields. * em-migrate.c: (em_migrate_folder): mark a struct static. remove unused var * em-subscribe-editor.c: guint for 1-bit bitfield * em-utils.c: remove unused function * em-vfolder-rule.c: mark array static * importers/mail-importer.c: (decode_status): Remove unused code. Use guint for 1-bit bitfield. * mail-autofilter.c: (rule_from_message): rename a variable * mail-component.c: guint for 1-bit bitfield * mail-folder-cache.c: (update_1folder): remove unused code * mail-mt.c: mark some structs static * message-list.c: (message_list_select_uid), (ml_value_to_string), (ml_tree_value_at), (find_next_undeleted), (build_tree), (build_flat): Remove unused code and fix some format specifiers. svn path=/trunk/; revision=31448
86 lines
2.6 KiB
C
86 lines
2.6 KiB
C
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
|
|
/*
|
|
* Authors:
|
|
* Jeffrey Stedfast <fejj@ximian.com>
|
|
* Dan Winship <danw@ximian.com>
|
|
*
|
|
* Copyright 2001-2003 Ximian, Inc. (www.ximian.com)
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of version 2 of the GNU General Public
|
|
* License as published by the Free Software Foundation.
|
|
*
|
|
* 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 Place - Suite 330,
|
|
* Boston, MA 02111-1307, USA.
|
|
*
|
|
*/
|
|
|
|
#ifndef EM_ACCOUNT_EDITOR_H
|
|
#define EM_ACCOUNT_EDITOR_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#pragma }
|
|
#endif /* __cplusplus */
|
|
|
|
#include <gtk/gtkvbox.h>
|
|
|
|
struct _EAccount;
|
|
|
|
typedef struct _EMAccountEditor EMAccountEditor;
|
|
typedef struct _EMAccountEditorClass EMAccountEditorClass;
|
|
|
|
typedef enum {
|
|
EMAE_NOTEBOOK,
|
|
EMAE_DRUID,
|
|
} em_account_editor_t;
|
|
|
|
struct _EMAccountEditor {
|
|
GObject gobject;
|
|
|
|
struct _EMAccountEditorPrivate *priv;
|
|
|
|
em_account_editor_t type;
|
|
struct _GtkWidget *editor; /* gtknotebook or druid, depending on type */
|
|
|
|
struct _EMConfig *config; /* driver object */
|
|
|
|
struct _EAccount *account; /* working account, must instant apply to this */
|
|
struct _EAccount *original; /* original account, not changed unless commit is invoked */
|
|
|
|
guint do_signature:1; /* allow editing signature */
|
|
};
|
|
|
|
struct _EMAccountEditorClass {
|
|
GObjectClass gobject_class;
|
|
};
|
|
|
|
GType em_account_editor_get_type(void);
|
|
|
|
EMAccountEditor *em_account_editor_new(struct _EAccount *account, em_account_editor_t type, char *id);
|
|
|
|
gboolean em_account_editor_save (EMAccountEditor *gui);
|
|
void em_account_editor_destroy (EMAccountEditor *gui);
|
|
|
|
gboolean em_account_editor_identity_complete (EMAccountEditor *gui, struct _GtkWidget **incomplete);
|
|
gboolean em_account_editor_source_complete (EMAccountEditor *gui, struct _GtkWidget **incomplete);
|
|
gboolean em_account_editor_transport_complete (EMAccountEditor *gui, struct _GtkWidget **incomplete);
|
|
gboolean em_account_editor_management_complete (EMAccountEditor *gui, struct _GtkWidget **incomplete);
|
|
|
|
void em_account_editor_build_extra_conf (EMAccountEditor *gui, const char *url);
|
|
|
|
void em_account_editor_auto_detect_extra_conf (EMAccountEditor *gui);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
#endif /* EM_ACCOUNT_EDITOR_H */
|