aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-composer-prefs.h
diff options
context:
space:
mode:
authornobody <nobody@localhost>2002-12-06 03:58:38 +0800
committernobody <nobody@localhost>2002-12-06 03:58:38 +0800
commit5e87676c987f884d67fc921acbf8a95bc34851f1 (patch)
treedbf36038cda1070ffb9d92e023654b2bdf1451b4 /mail/mail-composer-prefs.h
parentcf5e09fda7bba7532d7be4b9949f7737a4a418cd (diff)
downloadgsoc2013-evolution-5e87676c987f884d67fc921acbf8a95bc34851f1.tar
gsoc2013-evolution-5e87676c987f884d67fc921acbf8a95bc34851f1.tar.gz
gsoc2013-evolution-5e87676c987f884d67fc921acbf8a95bc34851f1.tar.bz2
gsoc2013-evolution-5e87676c987f884d67fc921acbf8a95bc34851f1.tar.lz
gsoc2013-evolution-5e87676c987f884d67fc921acbf8a95bc34851f1.tar.xz
gsoc2013-evolution-5e87676c987f884d67fc921acbf8a95bc34851f1.tar.zst
gsoc2013-evolution-5e87676c987f884d67fc921acbf8a95bc34851f1.zip
This commit was manufactured by cvs2svn to create tagGNOME_UTILS_2_1_4
'GNOME_UTILS_2_1_4'. svn path=/tags/GNOME_UTILS_2_1_4/; revision=19026
Diffstat (limited to 'mail/mail-composer-prefs.h')
-rw-r--r--mail/mail-composer-prefs.h137
1 files changed, 0 insertions, 137 deletions
diff --git a/mail/mail-composer-prefs.h b/mail/mail-composer-prefs.h
deleted file mode 100644
index 4cf0cf1b2e..0000000000
--- a/mail/mail-composer-prefs.h
+++ /dev/null
@@ -1,137 +0,0 @@
-/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
-/*
- * Authors: Jeffrey Stedfast <fejj@ximian.com>
- *
- * Copyright 2002 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 __MAIL_COMPOSER_PREFS_H__
-#define __MAIL_COMPOSER_PREFS_H__
-
-#ifdef __cplusplus
-extern "C" {
-#pragma }
-#endif
-
-#include <gtk/gtk.h>
-#include <glade/glade.h>
-#include <gtkhtml/gtkhtml.h>
-#warning "re-add gtkhtml prop manager"
-/* this isn't ported in gtkhtml yet */
-/*#include <gtkhtml/gtkhtml-propmanager.h>*/
-
-#include <libgnomeui/gnome-color-picker.h>
-#include <libgnomeui/gnome-file-entry.h>
-#include <gconf/gconf-client.h>
-
-#include "mail-signature-editor.h"
-
-#include "evolution-config-control.h"
-
-#include <shell/Evolution.h>
-#include "Spell.h"
-
-#define MAIL_COMPOSER_PREFS_TYPE (mail_composer_prefs_get_type ())
-#define MAIL_COMPOSER_PREFS(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), MAIL_COMPOSER_PREFS_TYPE, MailComposerPrefs))
-#define MAIL_COMPOSER_PREFS_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), MAIL_COMPOSER_PREFS_TYPE, MailComposerPrefsClass))
-#define IS_MAIL_COMPOSER_PREFS(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), MAIL_COMPOSER_PREFS_TYPE))
-#define IS_MAIL_COMPOSER_PREFS_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), MAIL_COMPOSER_PREFS_TYPE))
-
-typedef struct _MailComposerPrefs MailComposerPrefs;
-typedef struct _MailComposerPrefsClass MailComposerPrefsClass;
-
-struct _MailComposerPrefs {
- 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;
-
- /* Spell Checking */
- struct _GtkHTMLPropmanager *pman;
- GtkToggleButton *spell_check;
- GnomeColorPicker *colour;
- GtkCList *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;
- GtkCList *keybindings;
-
- /* Signatures */
- GtkCList *sig_clist;
- 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 _MailComposerPrefsClass {
- GtkVBoxClass parent_class;
-
- /* signals */
-
-};
-
-
-GType mail_composer_prefs_get_type (void);
-
-GtkWidget *mail_composer_prefs_new (void);
-
-void mail_composer_prefs_apply (MailComposerPrefs *prefs);
-
-
-MailConfigSignature *mail_composer_prefs_new_signature (MailComposerPrefs *prefs, gboolean html, const char *script);
-
-/* needed by global config */
-#define MAIL_COMPOSER_PREFS_CONTROL_ID "OAFIID:GNOME_Evolution_Mail_ComposerPrefs_ConfigControl"
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif /* __MAIL_COMPOSER_PREFS_H__ */