aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorJP Rosevear <jpr@ximian.com>2004-01-12 12:08:16 +0800
committerJP Rosevear <jpr@src.gnome.org>2004-01-12 12:08:16 +0800
commit410e8fb0a4aa39503f9f01f433b7112238308281 (patch)
treebf561bde5a9557685ad1bf7940d5950eb0fb1000 /shell
parent54e2fae377ffccc0ae3c3987a8a15d2b47e98575 (diff)
downloadgsoc2013-evolution-410e8fb0a4aa39503f9f01f433b7112238308281.tar
gsoc2013-evolution-410e8fb0a4aa39503f9f01f433b7112238308281.tar.gz
gsoc2013-evolution-410e8fb0a4aa39503f9f01f433b7112238308281.tar.bz2
gsoc2013-evolution-410e8fb0a4aa39503f9f01f433b7112238308281.tar.lz
gsoc2013-evolution-410e8fb0a4aa39503f9f01f433b7112238308281.tar.xz
gsoc2013-evolution-410e8fb0a4aa39503f9f01f433b7112238308281.tar.zst
gsoc2013-evolution-410e8fb0a4aa39503f9f01f433b7112238308281.zip
track hbox and label widget (button_free): unref them
2004-01-11 JP Rosevear <jpr@ximian.com> * e-sidebar.c (button_new): track hbox and label widget (button_free): unref them (do_layout_text_buttons): layout buttons with text (do_layout_icon_buttons): layout icon only buttons (do_layout): layout based on mode (impl_size_request): distinguish between horizontal and vertical padding (init): set a default mode (e_sidebar_add_button): align the button text to the left, only add the text if we are in the text mode (e_sidebar_get_mode): accessor (e_sidebar_set_mode): accessor * e-sidebar.h: add prototype and mode enum svn path=/trunk/; revision=24163
Diffstat (limited to 'shell')
-rw-r--r--shell/ChangeLog17
-rw-r--r--shell/e-sidebar.c228
-rw-r--r--shell/e-sidebar.h9
3 files changed, 218 insertions, 36 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index d20af2349f..7ee15bda30 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,5 +1,22 @@
2004-01-11 JP Rosevear <jpr@ximian.com>
+ * e-sidebar.c (button_new): track hbox and label widget
+ (button_free): unref them
+ (do_layout_text_buttons): layout buttons with text
+ (do_layout_icon_buttons): layout icon only buttons
+ (do_layout): layout based on mode
+ (impl_size_request): distinguish between horizontal and vertical
+ padding
+ (init): set a default mode
+ (e_sidebar_add_button): align the button text to the left, only
+ add the text if we are in the text mode
+ (e_sidebar_get_mode): accessor
+ (e_sidebar_set_mode): accessor
+
+ * e-sidebar.h: add prototype and mode enum
+
+2004-01-11 JP Rosevear <jpr@ximian.com>
+
* GNOME_Evolution_Test.server.in.in: proper server file for test
components
diff --git a/shell/e-sidebar.c b/shell/e-sidebar.c
index 2e8f1a3fd4..ef891eeb2a 100644
--- a/shell/e-sidebar.c
+++ b/shell/e-sidebar.c
@@ -40,10 +40,14 @@ static GtkContainerClass *parent_class = NULL;
typedef struct {
GtkWidget *button_widget;
+ GtkWidget *label_widget;
+ GtkWidget *hbox;
int id;
} Button;
struct _ESidebarPrivate {
+ ESidebarMode mode;
+
GtkWidget *selection_widget;
GSList *buttons;
@@ -59,21 +63,25 @@ enum {
static unsigned int signals[NUM_SIGNALS] = { 0 };
-#define PADDING 6
+#define H_PADDING 6
+#define V_PADDING 6
/* Utility functions. */
static Button *
-button_new (GtkWidget *button_widget,
- int id)
+button_new (GtkWidget *button_widget, GtkWidget *label_widget, GtkWidget *hbox, int id)
{
Button *button = g_new (Button, 1);
button->button_widget = button_widget;
+ button->label_widget = label_widget;
+ button->hbox = hbox;
button->id = id;
g_object_ref (button_widget);
+ g_object_ref (label_widget);
+ g_object_ref (hbox);
return button;
}
@@ -82,6 +90,8 @@ static void
button_free (Button *button)
{
g_object_unref (button->button_widget);
+ g_object_unref (button->label_widget);
+ g_object_unref (button->hbox);
g_free (button);
}
@@ -138,8 +148,100 @@ button_toggled_callback (GtkToggleButton *toggle_button,
/* Layout. */
-static void
-do_layout (ESidebar *sidebar)
+static int
+do_layout_text_buttons (ESidebar *sidebar)
+{
+ GtkAllocation *allocation = & GTK_WIDGET (sidebar)->allocation;
+ GSList *rows [g_slist_length (sidebar->priv->buttons)];
+ GSList *p;
+ int row_number;
+ int row_width;
+ int max_btn_width = 0, max_btn_height = 0;
+ int btns_required;
+ int row_last;
+ int x, y;
+ int i;
+
+ /* (Yes, this code calls gtk_widget_size_request() an ungodly number of times, but it's not
+ like we care about performance here, and this makes the code simpler.) */
+
+
+ /* 1. Figure out the max width and height */
+ for (p = sidebar->priv->buttons; p != NULL; p = p->next) {
+ Button *button = p->data;
+ GtkRequisition requisition;
+
+ gtk_widget_size_request (GTK_WIDGET (button->button_widget), &requisition);
+
+ max_btn_height = MAX (max_btn_height, requisition.height);
+ max_btn_width = MAX (max_btn_width, requisition.width);
+
+ }
+
+ /* 2. Split the buttons into rows, depending on the max_btn_width. */
+
+ row_number = 0;
+ rows [0] = NULL;
+ row_width = H_PADDING;
+ btns_required = allocation->width / (max_btn_width + H_PADDING);
+ for (; btns_required > 2; btns_required--) {
+ if (g_slist_length (sidebar->priv->buttons) % btns_required == 0)
+ break;
+
+ }
+
+ for (p = sidebar->priv->buttons; p != NULL; p = p->next) {
+ Button *button = p->data;
+
+ if (g_slist_length (rows[row_number]) % btns_required == 0
+ && rows [row_number] != NULL) {
+ row_number ++;
+ rows [row_number] = NULL;
+ row_width = H_PADDING;
+ }
+
+ row_width += max_btn_width + H_PADDING;
+ rows [row_number] = g_slist_append (rows [row_number], button->button_widget);
+ }
+
+ row_last = row_number;
+
+ /* 3. Layout the buttons. */
+
+ y = allocation->y + allocation->height - V_PADDING - 1;
+ for (i = row_last; i >= 0; i --) {
+ int len, extra_width;
+
+ y -= max_btn_height;
+ x = H_PADDING;
+ len = g_slist_length (rows[i]);
+ extra_width = (allocation->width - (len * max_btn_width ) - (len * H_PADDING)) / len;
+ for (p = rows [i]; p != NULL; p = p->next) {
+ GtkAllocation child_allocation;
+
+ child_allocation.x = x;
+ child_allocation.y = y;
+ child_allocation.width = max_btn_width + extra_width;
+ child_allocation.height = max_btn_height;
+
+ gtk_widget_size_allocate (GTK_WIDGET (p->data), &child_allocation);
+
+ x += child_allocation.width + H_PADDING;
+ }
+
+ y -= V_PADDING;
+ }
+
+ /* 4. Free stuff */
+
+ for (i = 0; i <= row_last; i ++)
+ g_slist_free (rows [i]);
+
+ return y;
+}
+
+static int
+do_layout_icon_buttons (ESidebar *sidebar)
{
GtkAllocation *allocation = & GTK_WIDGET (sidebar)->allocation;
GSList *rows [g_slist_length (sidebar->priv->buttons)];
@@ -157,21 +259,21 @@ do_layout (ESidebar *sidebar)
row_number = 0;
rows [0] = NULL;
- row_width = PADDING;
+ row_width = H_PADDING;
for (p = sidebar->priv->buttons; p != NULL; p = p->next) {
Button *button = p->data;
GtkRequisition requisition;
gtk_widget_size_request (GTK_WIDGET (button->button_widget), &requisition);
- if (row_width + requisition.width + PADDING >= allocation->width
+ if (row_width + requisition.width + H_PADDING >= allocation->width
&& rows [row_number] != NULL) {
row_number ++;
rows [row_number] = NULL;
- row_width = PADDING;
+ row_width = H_PADDING;
}
- row_width += requisition.width + PADDING;
+ row_width += requisition.width + H_PADDING;
rows [row_number] = g_slist_append (rows [row_number], button->button_widget);
}
@@ -179,7 +281,7 @@ do_layout (ESidebar *sidebar)
/* 2. Layout the buttons. */
- y = allocation->y + allocation->height - PADDING - 1;
+ y = allocation->y + allocation->height - V_PADDING - 1;
for (i = row_last; i >= 0; i --) {
int row_height = 0;
@@ -191,7 +293,7 @@ do_layout (ESidebar *sidebar)
}
y -= row_height;
- x = PADDING;
+ x = H_PADDING;
for (p = rows [i]; p != NULL; p = p->next) {
GtkRequisition requisition;
GtkAllocation child_allocation;
@@ -205,31 +307,46 @@ do_layout (ESidebar *sidebar)
gtk_widget_size_allocate (GTK_WIDGET (p->data), &child_allocation);
- x += requisition.width + PADDING;
+ x += requisition.width + H_PADDING;
}
- y -= PADDING;
+ y -= V_PADDING;
}
+ /* 3. Free stuff */
- /* 3. Place the selection widget. */
-
- {
- GtkAllocation child_allocation;
+ for (i = 0; i <= row_last; i ++)
+ g_slist_free (rows [i]);
- child_allocation.x = allocation->x;
- child_allocation.y = allocation->y;
- child_allocation.width = allocation->width;
- child_allocation.height = y - allocation->y;
+ return y;
+}
- gtk_widget_size_allocate (sidebar->priv->selection_widget, & child_allocation);
+static void
+do_layout (ESidebar *sidebar)
+{
+ GtkAllocation *allocation = & GTK_WIDGET (sidebar)->allocation;
+ GtkAllocation child_allocation;
+ int y;
+
+ switch (sidebar->priv->mode) {
+ case E_SIDEBAR_MODE_TEXT:
+ y = do_layout_text_buttons (sidebar);
+ break;
+ case E_SIDEBAR_MODE_ICON:
+ y = do_layout_icon_buttons (sidebar);
+ break;
+ default:
+ g_assert_not_reached ();
+ return;
}
-
-
- /* 4. Free stuff */
-
- for (i = 0; i <= row_last; i ++)
- g_slist_free (rows [i]);
+
+ /* Place the selection widget. */
+ child_allocation.x = allocation->x;
+ child_allocation.y = allocation->y;
+ child_allocation.width = allocation->width;
+ child_allocation.height = y - allocation->y;
+
+ gtk_widget_size_allocate (sidebar->priv->selection_widget, & child_allocation);
}
@@ -288,8 +405,8 @@ impl_size_request (GtkWidget *widget,
GSList *p;
if (sidebar->priv->selection_widget == NULL) {
- requisition->width = 2 * PADDING;
- requisition->height = 2 * PADDING;
+ requisition->width = 2 * H_PADDING;
+ requisition->height = 2 * V_PADDING;
} else {
gtk_widget_size_request (sidebar->priv->selection_widget, requisition);
}
@@ -300,8 +417,8 @@ impl_size_request (GtkWidget *widget,
gtk_widget_size_request (button->button_widget, &button_requisition);
- requisition->width = MAX (requisition->width, button_requisition.width + 2 * PADDING);
- requisition->height += button_requisition.height + PADDING;
+ requisition->width = MAX (requisition->width, button_requisition.width + 2 * H_PADDING);
+ requisition->height += button_requisition.height + V_PADDING;
}
}
@@ -381,6 +498,8 @@ init (ESidebar *sidebar)
priv = g_new0 (ESidebarPrivate, 1);
sidebar->priv = priv;
+
+ priv->mode = E_SIDEBAR_MODE_TEXT;
}
@@ -420,21 +539,23 @@ e_sidebar_add_button (ESidebar *sidebar,
GtkWidget *label_widget;
button_widget = gtk_toggle_button_new ();
- sidebar->priv->buttons = g_slist_append (sidebar->priv->buttons, button_new (button_widget, id));
- gtk_widget_set_parent (button_widget, GTK_WIDGET (sidebar));
-
g_signal_connect (button_widget, "toggled", G_CALLBACK (button_toggled_callback), sidebar);
hbox = gtk_hbox_new (FALSE, 3);
gtk_container_set_border_width (GTK_CONTAINER (hbox), 2);
icon_widget = gtk_image_new_from_pixbuf (icon);
label_widget = gtk_label_new (label);
+ gtk_misc_set_alignment (GTK_MISC (label_widget), 0.0, 0.5);
gtk_box_pack_start (GTK_BOX (hbox), icon_widget, FALSE, TRUE, 0);
gtk_box_pack_start (GTK_BOX (hbox), label_widget, TRUE, TRUE, 0);
gtk_container_add (GTK_CONTAINER (button_widget), hbox);
- gtk_widget_show_all (button_widget);
+ sidebar->priv->buttons = g_slist_append (sidebar->priv->buttons, button_new (button_widget, label_widget, hbox, id));
+ gtk_widget_set_parent (button_widget, GTK_WIDGET (sidebar));
+ if (sidebar->priv->mode == E_SIDEBAR_MODE_ICON)
+ gtk_container_remove (GTK_CONTAINER (hbox), label_widget);
+
gtk_widget_queue_resize (GTK_WIDGET (sidebar));
}
@@ -447,5 +568,40 @@ e_sidebar_select_button (ESidebar *sidebar, int id)
g_signal_emit (sidebar, signals[BUTTON_SELECTED], 0, id);
}
+ESidebarMode
+e_sidebar_get_mode (ESidebar *sidebar)
+{
+ return sidebar->priv->mode;
+}
+
+void
+e_sidebar_set_mode (ESidebar *sidebar, ESidebarMode mode)
+{
+ GSList *p;
+
+ if (sidebar->priv->mode == mode)
+ return;
+
+ for (p = sidebar->priv->buttons; p != NULL; p = p->next) {
+ Button *button = p->data;
+
+ switch (mode) {
+ case E_SIDEBAR_MODE_TEXT:
+ gtk_box_pack_start (GTK_BOX (button->hbox), button->label_widget, TRUE, TRUE, 0);
+ break;
+ case E_SIDEBAR_MODE_ICON:
+ gtk_container_remove (GTK_CONTAINER (button->hbox), button->label_widget);
+ break;
+ default:
+ g_assert_not_reached ();
+ return;
+ }
+ }
+
+ sidebar->priv->mode = mode;
+
+ gtk_widget_queue_resize (GTK_WIDGET (sidebar));
+}
+
E_MAKE_TYPE (e_sidebar, "ESidebar", ESidebar, class_init, init, PARENT_TYPE)
diff --git a/shell/e-sidebar.h b/shell/e-sidebar.h
index e224698346..fc4b782c96 100644
--- a/shell/e-sidebar.h
+++ b/shell/e-sidebar.h
@@ -36,6 +36,11 @@ typedef struct _ESidebar ESidebar;
typedef struct _ESidebarPrivate ESidebarPrivate;
typedef struct _ESidebarClass ESidebarClass;
+typedef enum {
+ E_SIDEBAR_MODE_TEXT,
+ E_SIDEBAR_MODE_ICON
+} ESidebarMode;
+
struct _ESidebar {
GtkContainer parent;
@@ -63,4 +68,8 @@ void e_sidebar_add_button (ESidebar *sidebar,
void e_sidebar_select_button (ESidebar *sidebar,
int id);
+ESidebarMode e_sidebar_get_mode (ESidebar *sidebar);
+void e_sidebar_set_mode (ESidebar *sidebar, ESidebarMode mode);
+
+
#endif /* _E_SIDEBAR_H_ */