From 5ae78b362fa270a49077335c32277ea52779c49a Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Fri, 24 Oct 2003 19:31:22 +0000 Subject: Re-Namespaced mail-accounts.c 2003-10-24 Jeffrey Stedfast * em-account-prefs.[c,h]: Re-Namespaced mail-accounts.c * em-composer-prefs.[c,h]: Re-Namespaced mail-composer-prefs.c * em-mailer-prefs.[c,h]: Re-Namespaced mail-preferences.c * mail-accounts.[c,h]: Removed. * mail-composer-prefs.[c,h]: Removed. * mail-preferences.[c,h]: Removed. * mail-account-editor.c: Updated. * mail-account-gui.c: Updated. * mail-config-factory.c: Updated. * mail-component-factory.c: Updated. svn path=/trunk/; revision=23066 --- mail/em-composer-prefs.h | 130 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 130 insertions(+) create mode 100644 mail/em-composer-prefs.h (limited to 'mail/em-composer-prefs.h') diff --git a/mail/em-composer-prefs.h b/mail/em-composer-prefs.h new file mode 100644 index 0000000000..0e4ad636c4 --- /dev/null +++ b/mail/em-composer-prefs.h @@ -0,0 +1,130 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ +/* + * Authors: Jeffrey Stedfast + * + * Copyright 2002-2003 Ximian, Inc. (www.ximian.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_COMPOSER_PREFS_H__ +#define __EM_COMPOSER_PREFS_H__ + +#ifdef __cplusplus +extern "C" { +#pragma } +#endif /* __cplusplus */ + +#include +#include +#include + +#include +#include +#include + +#include "mail-signature-editor.h" + +#include "evolution-config-control.h" + +#include +#include "Spell.h" + +#define EM_COMPOSER_PREFS_TYPE (em_composer_prefs_get_type ()) +#define EM_COMPOSER_PREFS(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), EM_COMPOSER_PREFS_TYPE, EMComposerPrefs)) +#define EM_COMPOSER_PREFS_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), EM_COMPOSER_PREFS_TYPE, EMComposerPrefsClass)) +#define EM_IS_COMPOSER_PREFS(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), EM_COMPOSER_PREFS_TYPE)) +#define EM_IS_COMPOSER_PREFS_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EM_COMPOSER_PREFS_TYPE)) + +typedef struct _EMComposerPrefs EMComposerPrefs; +typedef struct _EMComposerPrefsClass EMComposerPrefsClass; + +struct _EMComposerPrefs { + GtkVBox parent_object; + + EvolutionConfigControl *control; + + GConfClient *gconf; + + GladeXML *gui; + + /* General tab */ + + /* Default Behavior */ + GtkToggleButton *send_html; + GtkToggleButton *auto_smileys; + GtkToggleButton *prompt_empty_subject; + GtkToggleButton *prompt_bcc_only; + GtkOptionMenu *charset; + + GtkToggleButton *spell_check; + GnomeColorPicker *colour; + GtkTreeView *language; + CORBA_sequence_GNOME_Spell_Language *language_seq; + gboolean spell_active; + char *language_str; + char *language_str_orig; + GdkColor spell_error_color; + GdkColor spell_error_color_orig; + GdkPixmap *mark_pixmap; + GdkBitmap *mark_bitmap; + GdkPixbuf *enabled_pixbuf; + GtkWidget *spell_able_button; + + /* Forwards and Replies */ + GtkOptionMenu *forward_style; + GtkOptionMenu *reply_style; + + /* Keyboard Shortcuts */ + GtkOptionMenu *shortcuts_type; + + /* Signatures */ + GtkTreeView *sig_list; + GtkButton *sig_add; + GtkButton *sig_edit; + GtkButton *sig_delete; + GtkHTML *sig_preview; + gboolean sig_switch; + int sig_row; + GladeXML *sig_script_gui; + GtkWidget *sig_script_dialog; +}; + +struct _EMComposerPrefsClass { + GtkVBoxClass parent_class; + + /* signals */ + +}; + + +GType em_composer_prefs_get_type (void); + +GtkWidget *em_composer_prefs_new (void); + +void em_composer_prefs_apply (EMComposerPrefs *prefs); + +MailConfigSignature *em_composer_prefs_new_signature (GtkWindow *parent, gboolean html, const char *script); + +/* needed by global config */ +#define EM_COMPOSER_PREFS_CONTROL_ID "OAFIID:GNOME_Evolution_Mail_ComposerPrefs_ConfigControl" + +#ifdef __cplusplus +} +#endif /* __cplusplus */ + +#endif /* __EM_COMPOSER_PREFS_H__ */ -- cgit v1.2.3