aboutsummaryrefslogtreecommitdiffstats
path: root/widgets
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@ximian.com>2002-03-16 04:39:43 +0800
committerChris Lahey <clahey@src.gnome.org>2002-03-16 04:39:43 +0800
commit524e5c62c0f9220700b8153585a8e1923f2971ab (patch)
treee3ba182018c426580878e4c94e4f0368928b4c4e /widgets
parenta17d29d26cad4dec987f3db39da19e36a545bb01 (diff)
downloadgsoc2013-evolution-524e5c62c0f9220700b8153585a8e1923f2971ab.tar
gsoc2013-evolution-524e5c62c0f9220700b8153585a8e1923f2971ab.tar.gz
gsoc2013-evolution-524e5c62c0f9220700b8153585a8e1923f2971ab.tar.bz2
gsoc2013-evolution-524e5c62c0f9220700b8153585a8e1923f2971ab.tar.lz
gsoc2013-evolution-524e5c62c0f9220700b8153585a8e1923f2971ab.tar.xz
gsoc2013-evolution-524e5c62c0f9220700b8153585a8e1923f2971ab.tar.zst
gsoc2013-evolution-524e5c62c0f9220700b8153585a8e1923f2971ab.zip
Set horizontal scroll policy to GTK_POLICY_NEVER here. Don't set usize
2002-03-15 Christopher James Lahey <clahey@ximian.com> * e-multi-config-dialog.c (init): Set horizontal scroll policy to GTK_POLICY_NEVER here. Don't set usize here. Changed RGBA_COLOR to RGB_COLOR. Turned on horizontal resize. svn path=/trunk/; revision=16176
Diffstat (limited to 'widgets')
-rw-r--r--widgets/misc/ChangeLog6
-rw-r--r--widgets/misc/e-multi-config-dialog.c16
2 files changed, 13 insertions, 9 deletions
diff --git a/widgets/misc/ChangeLog b/widgets/misc/ChangeLog
index 8e3d1447ca..d383f0218a 100644
--- a/widgets/misc/ChangeLog
+++ b/widgets/misc/ChangeLog
@@ -1,3 +1,9 @@
+2002-03-15 Christopher James Lahey <clahey@ximian.com>
+
+ * e-multi-config-dialog.c (init): Set horizontal scroll policy to
+ GTK_POLICY_NEVER here. Don't set usize here. Changed RGBA_COLOR
+ to RGB_COLOR. Turned on horizontal resize.
+
2002-03-13 Jeffrey Stedfast <fejj@ximian.com>
* e-charset-picker.c (add_charset): If the charset item doesn't
diff --git a/widgets/misc/e-multi-config-dialog.c b/widgets/misc/e-multi-config-dialog.c
index 9f9e699c18..71068d3f34 100644
--- a/widgets/misc/e-multi-config-dialog.c
+++ b/widgets/misc/e-multi-config-dialog.c
@@ -61,7 +61,7 @@ static char *list_e_table_spec =
" selection-mode=\"browse\""
" no-headers=\"true\""
" alternating-row-colors=\"false\""
-/* " horizontal-resize=\"true\""*/
+ " horizontal-resize=\"true\""
">"
" <ETableColumn model_col=\"0\""
" expansion=\"1.0\""
@@ -266,7 +266,7 @@ class_init (EMultiConfigDialogClass *class)
parent_class = gtk_type_class (PARENT_TYPE);
}
-#define RGBA_COLOR(color) (((color).red & 0xff00) << 8 | \
+#define RGB_COLOR(color) (((color).red & 0xff00) << 8 | \
((color).green & 0xff00) | \
((color).blue & 0xff00) >> 8)
@@ -283,9 +283,9 @@ fill_in_pixbufs (EMultiConfigDialog *dialog, int row)
canvas = GTK_WIDGET (e_table_scrolled_get_table (E_TABLE_SCROLLED (dialog->priv->list_e_table))->table_canvas);
- colors[0] = RGBA_COLOR (canvas->style->bg [GTK_STATE_SELECTED]);
- colors[1] = RGBA_COLOR (canvas->style->bg [GTK_STATE_ACTIVE]);
- colors[2] = RGBA_COLOR (canvas->style->base [GTK_STATE_NORMAL]);
+ colors[0] = RGB_COLOR (canvas->style->bg [GTK_STATE_SELECTED]);
+ colors[1] = RGB_COLOR (canvas->style->bg [GTK_STATE_ACTIVE]);
+ colors[2] = RGB_COLOR (canvas->style->base [GTK_STATE_NORMAL]);
g_print ("%x %x", colors[1], canvas->style->bg [GTK_STATE_ACTIVE].green);
@@ -347,8 +347,8 @@ init (EMultiConfigDialog *multi_config_dialog)
pixbuf = e_cell_pixbuf_new();
gtk_object_set (GTK_OBJECT (pixbuf),
- "selected_column", 3,
"focused_column", 2,
+ "selected_column", 3,
"unselected_column", 4,
NULL);
e_cell_vbox_append (E_CELL_VBOX (vbox), pixbuf, 1);
@@ -362,7 +362,7 @@ init (EMultiConfigDialog *multi_config_dialog)
e_table_extras_add_cell (extras, "vbox", vbox);
list_e_table = e_table_scrolled_new (list_e_table_model, extras, list_e_table_spec, NULL);
- e_scroll_frame_set_policy (E_SCROLL_FRAME (list_e_table), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
+ e_scroll_frame_set_policy (E_SCROLL_FRAME (list_e_table), GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC);
gtk_signal_connect (GTK_OBJECT (e_table_scrolled_get_table (E_TABLE_SCROLLED (list_e_table))),
"cursor_change", GTK_SIGNAL_FUNC (table_cursor_change_callback),
multi_config_dialog);
@@ -373,8 +373,6 @@ init (EMultiConfigDialog *multi_config_dialog)
gtk_object_unref (GTK_OBJECT (extras));
- gtk_widget_set_usize (list_e_table, 150, -1);
-
gtk_box_pack_start (GTK_BOX (hbox), list_e_table, FALSE, TRUE, 0);
notebook = gtk_notebook_new ();