aboutsummaryrefslogtreecommitdiffstats
path: root/filter/vfolder-editor.c
diff options
context:
space:
mode:
authorRodney Dawes <dobey@ximian.com>2004-03-16 04:37:48 +0800
committerRodney Dawes <dobey@src.gnome.org>2004-03-16 04:37:48 +0800
commit4080a5356c3543a554d689df467d6d72393e58c6 (patch)
tree31a7f4312f0cb506ffe7000010e5f22837491979 /filter/vfolder-editor.c
parentde554db704621dacfba118684f9d2ace694afd65 (diff)
downloadgsoc2013-evolution-4080a5356c3543a554d689df467d6d72393e58c6.tar
gsoc2013-evolution-4080a5356c3543a554d689df467d6d72393e58c6.tar.gz
gsoc2013-evolution-4080a5356c3543a554d689df467d6d72393e58c6.tar.bz2
gsoc2013-evolution-4080a5356c3543a554d689df467d6d72393e58c6.tar.lz
gsoc2013-evolution-4080a5356c3543a554d689df467d6d72393e58c6.tar.xz
gsoc2013-evolution-4080a5356c3543a554d689df467d6d72393e58c6.tar.zst
gsoc2013-evolution-4080a5356c3543a554d689df467d6d72393e58c6.zip
Hide the separators on these dialogs Re-pack the rule_editor widget in
2004-04-15 Rodney Dawes <dobey@ximian.com> * filter-datespec.c (validate): (button_clicked): Hide the separators on these dialogs * filter-editor.c (filter_editor_new): Re-pack the rule_editor widget in here, and get rid of the GtkFrame-related code * filter-file.c (validate): Hide the separators on these dialogs * filter-filter.c (get_widget): Get rid of the GtkFrame, and relayout the widgets to be HIG-compliant * filter-folder.c (validate): Hide the separator on this dialog * filter-input.c (validate): Hide the separator on this dialog * filter-part.c (main): Hide the separator on this dialog * filter-rule.c (validate): Hide the separator on this dialog (get_widget): Get rid of the GtkFrame, and relayout the widgets to be HIG-compliant * filter.glade: Make the widget layouts here be HIG-compliant * rule-context.c (new_rule_response): (rule_context_add_rule_gui): Hide the separators on these dialogs * rule-editor.c (rule_editor_new): Get rid of the GtkFrame-related code (add_editor_response): Hide the dialog separator here (rule_add): Hide the dialog separator here (edit_editor_response): Hide the dialog separator here (rule_edit): Hide the dialog separator here (rule_editor_construct): Remove the rule_editor repacking code Set the dialog vbox's border width to 12 Set the mnemonic for the filter label here Hide the dialog separator on the filter editor dialog * vfolder-editor.c (vfolder_editor_new): Re-pack the appropriate editor widget in here Get rid of the GtkFrame-related code * vfolder-rule.c (validate): Hide the dialog separators here svn path=/trunk/; revision=25083
Diffstat (limited to 'filter/vfolder-editor.c')
-rw-r--r--filter/vfolder-editor.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/filter/vfolder-editor.c b/filter/vfolder-editor.c
index 87776c010d..4280d8cd2f 100644
--- a/filter/vfolder-editor.c
+++ b/filter/vfolder-editor.c
@@ -105,12 +105,13 @@ vfolder_editor_new (VfolderContext *vc)
GladeXML *gui;
GtkWidget *w;
- gui = glade_xml_new (FILTER_GLADEDIR "/filter.glade", "rule_editor", NULL);
+ gui = glade_xml_new (FILTER_GLADEDIR "/filter.glade", "vfolder_editor", NULL);
+
+ w = glade_xml_get_widget (gui, "vfolder_editor");
+ gtk_box_pack_start (GTK_BOX (GTK_DIALOG (ve)->vbox), w, TRUE, TRUE, 0);
+
rule_editor_construct ((RuleEditor *) ve, (RuleContext *) vc, gui, NULL);
-
- w = glade_xml_get_widget (gui, "rule_frame");
- gtk_frame_set_label ((GtkFrame *) w, _("Virtual Folders"));
-
+
g_object_unref (gui);
return ve;