/* -*- 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_2" #ifdef __cplusplus } #endif /* __cplusplus */ #endif /* __EM_COMPOSER_PREFS_H__ */