aboutsummaryrefslogtreecommitdiffstats
path: root/composer/e-msg-composer.h
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@ximian.com>2003-09-12 04:46:28 +0800
committerFederico Mena Quintero <federico@src.gnome.org>2003-09-12 04:46:28 +0800
commitc9150be94f0e3be05785e12d581fee16c23f3b0d (patch)
treec2da3ed443537f5135a498fbd55efb8c3a7e4e76 /composer/e-msg-composer.h
parentbf745c21a94a65e5c0b36d93c466ca358a9e65a3 (diff)
downloadgsoc2013-evolution-c9150be94f0e3be05785e12d581fee16c23f3b0d.tar
gsoc2013-evolution-c9150be94f0e3be05785e12d581fee16c23f3b0d.tar.gz
gsoc2013-evolution-c9150be94f0e3be05785e12d581fee16c23f3b0d.tar.bz2
gsoc2013-evolution-c9150be94f0e3be05785e12d581fee16c23f3b0d.tar.lz
gsoc2013-evolution-c9150be94f0e3be05785e12d581fee16c23f3b0d.tar.xz
gsoc2013-evolution-c9150be94f0e3be05785e12d581fee16c23f3b0d.tar.zst
gsoc2013-evolution-c9150be94f0e3be05785e12d581fee16c23f3b0d.zip
Added an entry_uic field for a BonoboUIComponent for the non-control
2003-09-11 Federico Mena Quintero <federico@ximian.com> * e-msg-composer.h (EMsgComposer): Added an entry_uic field for a BonoboUIComponent for the non-control entries (e.g. the Subject line). * e-msg-composer.c (create_composer): Set autoactivate to true on the HTML control's BonoboControlFrame. (setup_ui): Create the composer->entry_uic. (destroy): Free the composer->entry_uic. (entry_verbs): New array of verbs for the non-control entries. Moved the Edit* verbs to here, as they should not be part of the main set. (composer_entry_focus_in_event_cb): Load evolution-composer-entries.xml here for the non-control entries' UI. (composer_entry_focus_out_event_cb): Remove the menu items. svn path=/trunk/; revision=22531
Diffstat (limited to 'composer/e-msg-composer.h')
-rw-r--r--composer/e-msg-composer.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/composer/e-msg-composer.h b/composer/e-msg-composer.h
index 5c1e12bbbb..e28d8981d5 100644
--- a/composer/e-msg-composer.h
+++ b/composer/e-msg-composer.h
@@ -54,7 +54,11 @@ extern "C" {
struct _EMsgComposer {
BonoboWindow parent;
+ /* Main UIComponent */
BonoboUIComponent *uic;
+
+ /* UIComponent for the non-control GtkEntries */
+ BonoboUIComponent *entry_uic;
GtkWidget *hdrs;
GPtrArray *extra_hdr_names, *extra_hdr_values;