diff options
author | Jeffrey Stedfast <fejj@helixcode.com> | 2000-11-08 07:48:48 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2000-11-08 07:48:48 +0800 |
commit | 1d895352bc154854bd03aae4f5f4201648230c8d (patch) | |
tree | 108629a2a409ebbc28fc5a3ed4668a1682b6de71 /mail | |
parent | f82d483cd0a88fcbdb1a22561e152e896460dee2 (diff) | |
download | gsoc2013-evolution-1d895352bc154854bd03aae4f5f4201648230c8d.tar gsoc2013-evolution-1d895352bc154854bd03aae4f5f4201648230c8d.tar.gz gsoc2013-evolution-1d895352bc154854bd03aae4f5f4201648230c8d.tar.bz2 gsoc2013-evolution-1d895352bc154854bd03aae4f5f4201648230c8d.tar.lz gsoc2013-evolution-1d895352bc154854bd03aae4f5f4201648230c8d.tar.xz gsoc2013-evolution-1d895352bc154854bd03aae4f5f4201648230c8d.tar.zst gsoc2013-evolution-1d895352bc154854bd03aae4f5f4201648230c8d.zip |
Allow rule part to expand when the user resizes the dialog.
2000-11-07 Jeffrey Stedfast <fejj@helixcode.com>
* mail-search-dialogue.c (mail_search_dialogue_construct): Allow
rule part to expand when the user resizes the dialog.
svn path=/trunk/; revision=6497
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/mail-search-dialogue.c | 79 |
2 files changed, 46 insertions, 38 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 24e0781489..f2c91243c1 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,5 +1,10 @@ 2000-11-07 Jeffrey Stedfast <fejj@helixcode.com> + * mail-search-dialogue.c (mail_search_dialogue_construct): Allow + rule part to expand when the user resizes the dialog. + +2000-11-07 Jeffrey Stedfast <fejj@helixcode.com> + * folder-browser.c (search_save): Don't handle custom searching anymore... we don't want this. (search_full): Same. diff --git a/mail/mail-search-dialogue.c b/mail/mail-search-dialogue.c index 63abfc4efa..b2c4a0b31a 100644 --- a/mail/mail-search-dialogue.c +++ b/mail/mail-search-dialogue.c @@ -46,7 +46,7 @@ mail_search_dialogue_get_type (void) (GtkArgGetFunc)NULL }; - type = gtk_type_unique(gnome_dialog_get_type (), &type_info); + type = gtk_type_unique (gnome_dialog_get_type (), &type_info); } return type; @@ -58,7 +58,7 @@ mail_search_dialogue_class_init (MailSearchDialogueClass *class) GtkObjectClass *object_class; object_class = (GtkObjectClass *)class; - parent_class = gtk_type_class(gnome_dialog_get_type ()); + parent_class = gtk_type_class (gnome_dialog_get_type ()); object_class->finalize = mail_search_dialogue_finalise; /* override methods */ @@ -69,50 +69,52 @@ static void mail_search_dialogue_construct (MailSearchDialogue *o, FilterRule *rule) { FilterPart *part; - GnomeDialog *dialogue = GNOME_DIALOG(o); - - o->context = rule_context_new(); - rule_context_add_part_set(o->context, "partset", filter_part_get_type(), - rule_context_add_part, rule_context_next_part); - rule_context_load(o->context, EVOLUTION_DATADIR "/evolution/vfoldertypes.xml", ""); + GnomeDialog *dialogue = GNOME_DIALOG (o); + + gtk_window_set_policy (GTK_WINDOW (dialogue), FALSE, TRUE, FALSE); + + o->context = rule_context_new (); + rule_context_add_part_set (o->context, "partset", filter_part_get_type (), + rule_context_add_part, rule_context_next_part); + rule_context_load (o->context, EVOLUTION_DATADIR "/evolution/vfoldertypes.xml", ""); if (rule) { o->rule = rule; - o->guts = filter_rule_get_widget(o->rule, o->context); + o->guts = filter_rule_get_widget (o->rule, o->context); } else { - o->rule = filter_rule_new(); - part = rule_context_next_part(o->context, NULL); + o->rule = filter_rule_new (); + part = rule_context_next_part (o->context, NULL); if (part == NULL) { - g_warning("Problem loading search: no parts to load"); - o->guts = gtk_entry_new(); + g_warning ("Problem loading search: no parts to load"); + o->guts = gtk_entry_new (); } else { - filter_rule_add_part(o->rule, filter_part_clone(part)); - o->guts = filter_rule_get_widget(o->rule, o->context); + filter_rule_add_part (o->rule, filter_part_clone (part)); + o->guts = filter_rule_get_widget (o->rule, o->context); } } - - gtk_widget_show(o->guts); - gtk_box_pack_start(GTK_BOX(dialogue->vbox), o->guts, FALSE, FALSE, 0); + + gtk_widget_show (o->guts); + gtk_box_pack_start (GTK_BOX (dialogue->vbox), o->guts, TRUE, TRUE, 0); } static void mail_search_dialogue_init (MailSearchDialogue *o) { - GnomeDialog *dialogue = GNOME_DIALOG(o); - - gnome_dialog_append_buttons(dialogue, _("Ok"), _("Search"), _("Cancel"), 0); + GnomeDialog *dialogue = GNOME_DIALOG (o); + + gnome_dialog_append_buttons (dialogue, _("Ok"), _("Search"), _("Cancel"), 0); } static void -mail_search_dialogue_finalise(GtkObject *obj) +mail_search_dialogue_finalise (GtkObject *obj) { MailSearchDialogue *o = (MailSearchDialogue *)obj; - + if (o->context) - gtk_object_unref((GtkObject *)o->context); + gtk_object_unref (GTK_OBJECT (o->context)); if (o->rule) - gtk_object_unref((GtkObject *)o->rule); - + gtk_object_unref (GTK_OBJECT (o->rule)); + ((GtkObjectClass *)(parent_class))->finalize(obj); } @@ -124,19 +126,20 @@ mail_search_dialogue_finalise(GtkObject *obj) * Return value: A new #MailSearchDialogue object. **/ MailSearchDialogue * -mail_search_dialogue_new(void) +mail_search_dialogue_new () { - MailSearchDialogue *o = (MailSearchDialogue *)gtk_type_new(mail_search_dialogue_get_type ()); - mail_search_dialogue_construct(o, NULL); + MailSearchDialogue *o = (MailSearchDialogue *)gtk_type_new (mail_search_dialogue_get_type ()); + mail_search_dialogue_construct (o, NULL); return o; } -MailSearchDialogue *mail_search_dialogue_new_with_rule(FilterRule *rule) +MailSearchDialogue * +mail_search_dialogue_new_with_rule (FilterRule *rule) { - MailSearchDialogue *o = (MailSearchDialogue *)gtk_type_new(mail_search_dialogue_get_type ()); + MailSearchDialogue *o = (MailSearchDialogue *)gtk_type_new (mail_search_dialogue_get_type ()); if (rule) - gtk_object_ref((GtkObject *)rule); - mail_search_dialogue_construct(o, rule); + gtk_object_ref (GTK_OBJECT (rule)); + mail_search_dialogue_construct (o, rule); return o; } @@ -149,13 +152,13 @@ MailSearchDialogue *mail_search_dialogue_new_with_rule(FilterRule *rule) * Return value: **/ char * -mail_search_dialogue_get_query(MailSearchDialogue *msd) +mail_search_dialogue_get_query (MailSearchDialogue *msd) { - GString *out = g_string_new(""); + GString *out = g_string_new (""); char *ret; - - filter_rule_build_code(msd->rule, out); + + filter_rule_build_code (msd->rule, out); ret = out->str; - g_string_free(out, FALSE); + g_string_free (out, FALSE); return ret; } |