diff options
author | Christopher James Lahey <clahey@ximian.com> | 2001-08-11 04:49:24 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2001-08-11 04:49:24 +0800 |
commit | 1580b0527cab9b93c15a899dd83031ee65fc64d2 (patch) | |
tree | ff9f876c3028b9d18e0ef916bb561550c7767b86 /widgets/table/e-table-config.c | |
parent | acdfbcd161c23f9b5b043e3dd6829e5dbd48a2f0 (diff) | |
download | gsoc2013-evolution-1580b0527cab9b93c15a899dd83031ee65fc64d2.tar gsoc2013-evolution-1580b0527cab9b93c15a899dd83031ee65fc64d2.tar.gz gsoc2013-evolution-1580b0527cab9b93c15a899dd83031ee65fc64d2.tar.bz2 gsoc2013-evolution-1580b0527cab9b93c15a899dd83031ee65fc64d2.tar.lz gsoc2013-evolution-1580b0527cab9b93c15a899dd83031ee65fc64d2.tar.xz gsoc2013-evolution-1580b0527cab9b93c15a899dd83031ee65fc64d2.tar.zst gsoc2013-evolution-1580b0527cab9b93c15a899dd83031ee65fc64d2.zip |
If the sort_info can't group, hide the grouping button and label.
2001-08-10 Christopher James Lahey <clahey@ximian.com>
* e-table-config.c (setup_gui): If the sort_info can't group, hide
the grouping button and label.
* e-table-header-item.c (ethi_header_context_menu): Removed the
Group By This Field menu item if the sort_info doesn't support
grouping.
* e-table-sort-info.c, e-table-sort-info.h
(e_table_sort_info_get_can_group,
e_table_sort_info_set_can_group): Added these functions.
* e-tree.c (e_tree_set_state_object, et_real_construct): Set
can_group to FALSE for all our sort infos.
(e_tree_get_state_object): Fixed a potential gtk_object_ref (NULL)
here.
svn path=/trunk/; revision=11896
Diffstat (limited to 'widgets/table/e-table-config.c')
-rw-r--r-- | widgets/table/e-table-config.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/widgets/table/e-table-config.c b/widgets/table/e-table-config.c index c33290b227..93dd0d31cf 100644 --- a/widgets/table/e-table-config.c +++ b/widgets/table/e-table-config.c @@ -726,6 +726,12 @@ setup_gui (ETableConfig *config) gtk_signal_connect ( GTK_OBJECT (config->dialog_toplevel), "apply", GTK_SIGNAL_FUNC (dialog_apply), config); + + if (!e_table_sort_info_get_can_group (config->state->sort_info)) { + GtkWidget *button = glade_xml_get_widget (gui, "button-group"); + gtk_widget_hide (button); + gtk_widget_hide (config->group_label); + } gtk_object_unref (GTK_OBJECT (gui)); } |