aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-config.c
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2004-12-06 12:25:40 +0800
committerMichael Zucci <zucchi@src.gnome.org>2004-12-06 12:25:40 +0800
commit9f9683d27e22bd2e09b7be3d2630529a85ccea49 (patch)
tree4265462f36ffdef348bd4b9880a6c19bffec458e /e-util/e-config.c
parentb044544708a366cc103fa7ce4a0c8c6c1994a7e4 (diff)
downloadgsoc2013-evolution-9f9683d27e22bd2e09b7be3d2630529a85ccea49.tar
gsoc2013-evolution-9f9683d27e22bd2e09b7be3d2630529a85ccea49.tar.gz
gsoc2013-evolution-9f9683d27e22bd2e09b7be3d2630529a85ccea49.tar.bz2
gsoc2013-evolution-9f9683d27e22bd2e09b7be3d2630529a85ccea49.tar.lz
gsoc2013-evolution-9f9683d27e22bd2e09b7be3d2630529a85ccea49.tar.xz
gsoc2013-evolution-9f9683d27e22bd2e09b7be3d2630529a85ccea49.tar.zst
gsoc2013-evolution-9f9683d27e22bd2e09b7be3d2630529a85ccea49.zip
set the table spacings to 6 for generated tables.
2004-12-06 Not Zed <NotZed@Ximian.com> * e-config.c (ec_rebuild): set the table spacings to 6 for generated tables. 2004-11-22 Not Zed <NotZed@Ximian.com> * e-config.c (ec_rebuild): if the table existed before and we have no factory, destroy it always. svn path=/trunk/; revision=28069
Diffstat (limited to 'e-util/e-config.c')
-rw-r--r--e-util/e-config.c29
1 files changed, 22 insertions, 7 deletions
diff --git a/e-util/e-config.c b/e-util/e-config.c
index 422c480134..6e03c19b2f 100644
--- a/e-util/e-config.c
+++ b/e-util/e-config.c
@@ -47,7 +47,7 @@
#include <libgnome/gnome-i18n.h>
-#define d(x)
+#define d(x)
struct _EConfigFactory {
struct _EConfigFactory *next, *prev;
@@ -597,7 +597,7 @@ ec_rebuild(EConfig *emp)
} else
page = wn->widget;
- d(printf("page %d:%s widget %p\n", pageno, item->path, w));
+ d(printf("page %d:%s widget %p\n", pageno, item->path, page));
if (wn->widget && wn->widget != page) {
d(printf("destroy old widget for page '%s'\n", item->path));
@@ -632,16 +632,24 @@ ec_rebuild(EConfig *emp)
if (item->factory) {
section = item->factory(emp, item, page, wn->widget, wn->context->data);
wn->frame = section;
- itemno = 1;
+ if (section)
+ itemno = 1;
if (section
&& ((item->type == E_CONFIG_SECTION && !GTK_IS_BOX(section))
|| (item->type == E_CONFIG_SECTION_TABLE && !GTK_IS_TABLE(section))))
g_warning("EConfig section type is wrong");
- } else if (wn->widget == NULL) {
+ } else {
GtkWidget *frame;
GtkWidget *label = NULL;
+ if (wn->frame) {
+ d(printf("Item %s, clearing generated section widget\n", wn->item->path));
+ gtk_widget_destroy(wn->frame);
+ wn->widget = NULL;
+ wn->frame = NULL;
+ }
+
if (item->label) {
char *txt = g_strdup_printf("<span weight=\"bold\">%s</span>", item->label);
@@ -654,8 +662,11 @@ ec_rebuild(EConfig *emp)
if (item->type == E_CONFIG_SECTION)
section = gtk_vbox_new(FALSE, 6);
- else
+ else {
section = gtk_table_new(1, 1, FALSE);
+ gtk_table_set_col_spacings((GtkTable *)section, 6);
+ gtk_table_set_row_spacings((GtkTable *)section, 6);
+ }
frame = g_object_new(gtk_frame_get_type(),
"shadow_type", GTK_SHADOW_NONE,
@@ -668,8 +679,6 @@ ec_rebuild(EConfig *emp)
gtk_widget_show_all(frame);
gtk_box_pack_start((GtkBox *)page, frame, FALSE, FALSE, 0);
wn->frame = frame;
- } else {
- section = wn->widget;
}
nopage:
if (wn->widget && wn->widget != section) {
@@ -677,12 +686,18 @@ ec_rebuild(EConfig *emp)
gtk_widget_destroy(wn->widget);
}
+ d(printf("Item %s, setting section widget\n", wn->item->path));
+
sectionno++;
wn->widget = section;
sectionnode = wn;
break;
case E_CONFIG_ITEM:
case E_CONFIG_ITEM_TABLE:
+ /* generated sections never retain their widgets on a rebuild */
+ if (sectionnode->item->factory == NULL)
+ wn->widget = NULL;
+
/* ITEMs are called with the section parent.
The type depends on the section type,
either a GtkTable, or a GtkVBox */