aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-table.c
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-10-19 01:07:57 +0800
committerChris Lahey <clahey@src.gnome.org>2000-10-19 01:07:57 +0800
commitdaaabd4d9793fe2751438125c052a0270c4844bb (patch)
treec4ffee8f1bce3920b5283e536a48047f1c4ffb42 /widgets/table/e-table.c
parent2b0b98d1fd0b435da1192369aec9a6b0b919c404 (diff)
downloadgsoc2013-evolution-daaabd4d9793fe2751438125c052a0270c4844bb.tar
gsoc2013-evolution-daaabd4d9793fe2751438125c052a0270c4844bb.tar.gz
gsoc2013-evolution-daaabd4d9793fe2751438125c052a0270c4844bb.tar.bz2
gsoc2013-evolution-daaabd4d9793fe2751438125c052a0270c4844bb.tar.lz
gsoc2013-evolution-daaabd4d9793fe2751438125c052a0270c4844bb.tar.xz
gsoc2013-evolution-daaabd4d9793fe2751438125c052a0270c4844bb.tar.zst
gsoc2013-evolution-daaabd4d9793fe2751438125c052a0270c4844bb.zip
Fixed the color of the background rectangle. Made the rectangle start at
2000-10-18 Christopher James Lahey <clahey@helixcode.com> * e-table.c: Fixed the color of the background rectangle. Made the rectangle start at the bottom of the table so that the row lines are still there. svn path=/trunk/; revision=5993
Diffstat (limited to 'widgets/table/e-table.c')
-rw-r--r--widgets/table/e-table.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/widgets/table/e-table.c b/widgets/table/e-table.c
index cf9ccef7c7..006909dac6 100644
--- a/widgets/table/e-table.c
+++ b/widgets/table/e-table.c
@@ -253,12 +253,14 @@ static gboolean
table_canvas_reflow_idle (ETable *e_table)
{
gdouble height, width;
+ gdouble item_height;
GtkAllocation *alloc = &(GTK_WIDGET (e_table->table_canvas)->allocation);
gtk_object_get (GTK_OBJECT (e_table->canvas_vbox),
"height", &height,
"width", &width,
NULL);
+ item_height = height;
height = MAX ((int)height, alloc->height);
width = MAX((int)width, alloc->width);
/* I have no idea why this needs to be -1, but it works. */
@@ -266,6 +268,7 @@ table_canvas_reflow_idle (ETable *e_table)
GNOME_CANVAS (e_table->table_canvas),
0, 0, width - 1, height - 1);
gtk_object_set (GTK_OBJECT (e_table->white_item),
+ "y1", item_height + 1,
"x2", width,
"y2", height,
NULL);
@@ -279,11 +282,13 @@ table_canvas_size_allocate (GtkWidget *widget, GtkAllocation *alloc,
{
gdouble width;
gdouble height;
+ gdouble item_height;
width = alloc->width;
gtk_object_get (GTK_OBJECT (e_table->canvas_vbox),
"height", &height,
NULL);
+ item_height = height;
height = MAX ((int)height, alloc->height);
gtk_object_set (GTK_OBJECT (e_table->canvas_vbox),
@@ -293,6 +298,7 @@ table_canvas_size_allocate (GtkWidget *widget, GtkAllocation *alloc,
"width", width,
NULL);
gtk_object_set (GTK_OBJECT (e_table->white_item),
+ "y1", item_height + 1,
"x2", width,
"y2", height,
NULL);
@@ -502,6 +508,14 @@ et_table_row_deleted (ETableModel *table_model, int row, ETable *et)
}
static void
+et_canvas_realize (GtkWidget *canvas, ETable *e_table)
+{
+ gnome_canvas_item_set(e_table->white_item,
+ "fill_color_gdk", &GTK_WIDGET(e_table->table_canvas)->style->base[GTK_STATE_NORMAL],
+ NULL);
+}
+
+static void
e_table_setup_table (ETable *e_table, ETableHeader *full_header, ETableHeader *header,
ETableModel *model)
{
@@ -549,6 +563,8 @@ e_table_setup_table (ETable *e_table, ETableHeader *full_header, ETableHeader *h
"y2", (double) 100,
"fill_color_gdk", &GTK_WIDGET(e_table->table_canvas)->style->base[GTK_STATE_NORMAL],
NULL);
+ gtk_signal_connect(GTK_OBJECT(e_table->table_canvas), "realize",
+ GTK_SIGNAL_FUNC(et_canvas_realize), e_table);
e_table->canvas_vbox = gnome_canvas_item_new(gnome_canvas_root(e_table->table_canvas),
e_canvas_vbox_get_type(),
"spacing", 10.0,