aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-composer-prefs.h
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2002-04-02 06:55:40 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2002-04-02 06:55:40 +0800
commit4ce6a59f74ccc3dbf9e2065e4049bf5749cd08f1 (patch)
tree56f21aa423ea8d1cf6121b383886b6eccaff934c /mail/mail-composer-prefs.h
parent7f497424b67fd42dd8068b3d7e72d023ff54bd9a (diff)
downloadgsoc2013-evolution-4ce6a59f74ccc3dbf9e2065e4049bf5749cd08f1.tar
gsoc2013-evolution-4ce6a59f74ccc3dbf9e2065e4049bf5749cd08f1.tar.gz
gsoc2013-evolution-4ce6a59f74ccc3dbf9e2065e4049bf5749cd08f1.tar.bz2
gsoc2013-evolution-4ce6a59f74ccc3dbf9e2065e4049bf5749cd08f1.tar.lz
gsoc2013-evolution-4ce6a59f74ccc3dbf9e2065e4049bf5749cd08f1.tar.xz
gsoc2013-evolution-4ce6a59f74ccc3dbf9e2065e4049bf5749cd08f1.tar.zst
gsoc2013-evolution-4ce6a59f74ccc3dbf9e2065e4049bf5749cd08f1.zip
Re-Implemented the signature editor stuff (mostly just copy/paste from
2002-04-01 Jeffrey Stedfast <fejj@ximian.com> * mail-composer-prefs.c (mail_composer_prefs_construct): Re-Implemented the signature editor stuff (mostly just copy/paste from Radeks original code). * mail-signature-editor.c (mail_signature_editor): Use the right oafiid for the html editor control. svn path=/trunk/; revision=16316
Diffstat (limited to 'mail/mail-composer-prefs.h')
-rw-r--r--mail/mail-composer-prefs.h18
1 files changed, 17 insertions, 1 deletions
diff --git a/mail/mail-composer-prefs.h b/mail/mail-composer-prefs.h
index 567540143a..f4e29760f2 100644
--- a/mail/mail-composer-prefs.h
+++ b/mail/mail-composer-prefs.h
@@ -34,6 +34,9 @@ extern "C" {
#include <libgnomeui/gnome-color-picker.h>
#include <libgnomeui/gnome-dialog.h>
#include <libgnomeui/gnome-file-entry.h>
+#include <gtkhtml/gtkhtml.h>
+
+#include "mail-signature-editor.h"
#include "evolution-config-control.h"
@@ -77,7 +80,17 @@ struct _MailComposerPrefs {
GtkCList *keybindings;
/* Signatures */
-
+ GtkCList *sig_clist;
+ GtkButton *sig_add;
+ GtkButton *sig_edit;
+ GtkButton *sig_delete;
+ GtkToggleButton *sig_random;
+ GtkToggleButton *sig_html;
+ GnomeFileEntry *sig_filename;
+ GnomeFileEntry *sig_script;
+ GtkHTML *sig_preview;
+ gboolean sig_switch;
+ int sig_row;
};
struct _MailComposerPrefsClass {
@@ -94,6 +107,9 @@ GtkWidget *mail_composer_prefs_new (void);
void mail_composer_prefs_apply (MailComposerPrefs *prefs);
+
+MailConfigSignature *mail_composer_prefs_new_signature (MailComposerPrefs *prefs, gboolean html);
+
/* needed by global config */
#define MAIL_COMPOSER_PREFS_CONTROL_ID "OAFIID:GNOME_Evolution_Mail_ComposerPrefs_ConfigControl"