aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArturo Espinosa <unammx@src.gnome.org>1999-11-20 11:07:14 +0800
committerArturo Espinosa <unammx@src.gnome.org>1999-11-20 11:07:14 +0800
commit76fba2380e809d44b716343a4c7a18e907948618 (patch)
treeb38eafcaf339b59ca204888b6253b86e34966d75
parentc07697a023dbccfac64a309ed584cd071879f8b8 (diff)
downloadgsoc2013-evolution-76fba2380e809d44b716343a4c7a18e907948618.tar
gsoc2013-evolution-76fba2380e809d44b716343a4c7a18e907948618.tar.gz
gsoc2013-evolution-76fba2380e809d44b716343a4c7a18e907948618.tar.bz2
gsoc2013-evolution-76fba2380e809d44b716343a4c7a18e907948618.tar.lz
gsoc2013-evolution-76fba2380e809d44b716343a4c7a18e907948618.tar.xz
gsoc2013-evolution-76fba2380e809d44b716343a4c7a18e907948618.tar.zst
gsoc2013-evolution-76fba2380e809d44b716343a4c7a18e907948618.zip
more stuff -mig
svn path=/trunk/; revision=1424
-rw-r--r--widgets/ChangeLog3
-rw-r--r--widgets/e-table-item.c37
-rw-r--r--widgets/e-table/ChangeLog3
-rw-r--r--widgets/e-table/e-table-item.c37
-rw-r--r--widgets/table/e-table-item.c37
5 files changed, 111 insertions, 6 deletions
diff --git a/widgets/ChangeLog b/widgets/ChangeLog
index 97bfa3144e..c77c3b22dd 100644
--- a/widgets/ChangeLog
+++ b/widgets/ChangeLog
@@ -1,5 +1,8 @@
1999-11-19 Miguel de Icaza <miguel@gnu.org>
+ * e-table-item.c (eti_realize): Hook up; Load gcs.
+ (eti_unrealize): Hook up.
+
* e-table-sorted.c: Finished implementing.
1999-11-18 Miguel de Icaza <miguel@gnu.org>
diff --git a/widgets/e-table-item.c b/widgets/e-table-item.c
index 904848e8c6..8f7fa73725 100644
--- a/widgets/e-table-item.c
+++ b/widgets/e-table-item.c
@@ -170,11 +170,40 @@ eti_init (GnomeCanvasItem *item)
static void
eti_realize (GnomeCanvasItem *item)
{
+ ETableItem *eti = E_TABLE_ITEM (item);
+ GtkWidget *canvas_widget = GTK_WIDGET (item->canvas);
+ GdkWindow *window;
+
+ if (GNOME_CANVAS_ITEM_CLASS (eti_parent_class)->realize)
+ (*GNOME_CANVAS_ITEM_CLASS (eti_parent_class)->realize)(item);
+
+ window = canvas_widget->window;
+
+ eti->fill_gc = canvas_widget->style->white_gc;
+ gdk_gc_ref (canvas_widget->style->white_gc);
+ eti->grid_gc = gdk_gc_new (window);
+ gdk_gc_set_foreground (eti->grid_gc, &canvas_widget->style->fg [GTK_STATE_NORMAL]);
}
static void
eti_unrealize (GnomeCanvasItem *item)
{
+ ETableItem *eti = E_TABLE_ITEM (item);
+
+ gdk_gc_unref (eti->fill_gc);
+ eti->fill_gc = NULL;
+ gdk_gc_unref (eti->grid_gc);
+ eti->grid_gc = NULL;
+
+ if (GNOME_CANVAS_ITEM_CLASS (eti_parent_class)->unrealize)
+ (*GNOME_CANVAS_ITEM_CLASS (eti_parent_class)->unrealize)(item);
+}
+
+static void
+draw_cell (ETableItem *eti, GdkDrawable *drawable, int col, int row,
+ int x1, int y1, int x2, int y2)
+{
+ gdk_draw_line (drawable, eti->grid_gc, x1, y1, x2-x1, y2-y1);
}
static void
@@ -214,7 +243,7 @@ eti_draw (GnomeCanvasItem *item, GdkDrawable *drawable, int x, int y, int width,
}
}
last_col = col;
-
+
/*
* Draw individual lines
*/
@@ -231,7 +260,11 @@ eti_draw (GnomeCanvasItem *item, GdkDrawable *drawable, int x, int y, int width,
if (eti->draw_grid)
gdk_draw_line (drawable, eti->grid_gc, 0, y - y2, width, y - y2);
-
+ for (col = first_col; col < last_col; col++){
+ ETableCol *ecol = e_table_header_get_column (eti->header, col);
+
+ draw_cell (eti, drawable, col, row, x_offset, y1 - y, x_offset + ecol->width, y2);
+ }
}
}
diff --git a/widgets/e-table/ChangeLog b/widgets/e-table/ChangeLog
index 97bfa3144e..c77c3b22dd 100644
--- a/widgets/e-table/ChangeLog
+++ b/widgets/e-table/ChangeLog
@@ -1,5 +1,8 @@
1999-11-19 Miguel de Icaza <miguel@gnu.org>
+ * e-table-item.c (eti_realize): Hook up; Load gcs.
+ (eti_unrealize): Hook up.
+
* e-table-sorted.c: Finished implementing.
1999-11-18 Miguel de Icaza <miguel@gnu.org>
diff --git a/widgets/e-table/e-table-item.c b/widgets/e-table/e-table-item.c
index 904848e8c6..8f7fa73725 100644
--- a/widgets/e-table/e-table-item.c
+++ b/widgets/e-table/e-table-item.c
@@ -170,11 +170,40 @@ eti_init (GnomeCanvasItem *item)
static void
eti_realize (GnomeCanvasItem *item)
{
+ ETableItem *eti = E_TABLE_ITEM (item);
+ GtkWidget *canvas_widget = GTK_WIDGET (item->canvas);
+ GdkWindow *window;
+
+ if (GNOME_CANVAS_ITEM_CLASS (eti_parent_class)->realize)
+ (*GNOME_CANVAS_ITEM_CLASS (eti_parent_class)->realize)(item);
+
+ window = canvas_widget->window;
+
+ eti->fill_gc = canvas_widget->style->white_gc;
+ gdk_gc_ref (canvas_widget->style->white_gc);
+ eti->grid_gc = gdk_gc_new (window);
+ gdk_gc_set_foreground (eti->grid_gc, &canvas_widget->style->fg [GTK_STATE_NORMAL]);
}
static void
eti_unrealize (GnomeCanvasItem *item)
{
+ ETableItem *eti = E_TABLE_ITEM (item);
+
+ gdk_gc_unref (eti->fill_gc);
+ eti->fill_gc = NULL;
+ gdk_gc_unref (eti->grid_gc);
+ eti->grid_gc = NULL;
+
+ if (GNOME_CANVAS_ITEM_CLASS (eti_parent_class)->unrealize)
+ (*GNOME_CANVAS_ITEM_CLASS (eti_parent_class)->unrealize)(item);
+}
+
+static void
+draw_cell (ETableItem *eti, GdkDrawable *drawable, int col, int row,
+ int x1, int y1, int x2, int y2)
+{
+ gdk_draw_line (drawable, eti->grid_gc, x1, y1, x2-x1, y2-y1);
}
static void
@@ -214,7 +243,7 @@ eti_draw (GnomeCanvasItem *item, GdkDrawable *drawable, int x, int y, int width,
}
}
last_col = col;
-
+
/*
* Draw individual lines
*/
@@ -231,7 +260,11 @@ eti_draw (GnomeCanvasItem *item, GdkDrawable *drawable, int x, int y, int width,
if (eti->draw_grid)
gdk_draw_line (drawable, eti->grid_gc, 0, y - y2, width, y - y2);
-
+ for (col = first_col; col < last_col; col++){
+ ETableCol *ecol = e_table_header_get_column (eti->header, col);
+
+ draw_cell (eti, drawable, col, row, x_offset, y1 - y, x_offset + ecol->width, y2);
+ }
}
}
diff --git a/widgets/table/e-table-item.c b/widgets/table/e-table-item.c
index 904848e8c6..8f7fa73725 100644
--- a/widgets/table/e-table-item.c
+++ b/widgets/table/e-table-item.c
@@ -170,11 +170,40 @@ eti_init (GnomeCanvasItem *item)
static void
eti_realize (GnomeCanvasItem *item)
{
+ ETableItem *eti = E_TABLE_ITEM (item);
+ GtkWidget *canvas_widget = GTK_WIDGET (item->canvas);
+ GdkWindow *window;
+
+ if (GNOME_CANVAS_ITEM_CLASS (eti_parent_class)->realize)
+ (*GNOME_CANVAS_ITEM_CLASS (eti_parent_class)->realize)(item);
+
+ window = canvas_widget->window;
+
+ eti->fill_gc = canvas_widget->style->white_gc;
+ gdk_gc_ref (canvas_widget->style->white_gc);
+ eti->grid_gc = gdk_gc_new (window);
+ gdk_gc_set_foreground (eti->grid_gc, &canvas_widget->style->fg [GTK_STATE_NORMAL]);
}
static void
eti_unrealize (GnomeCanvasItem *item)
{
+ ETableItem *eti = E_TABLE_ITEM (item);
+
+ gdk_gc_unref (eti->fill_gc);
+ eti->fill_gc = NULL;
+ gdk_gc_unref (eti->grid_gc);
+ eti->grid_gc = NULL;
+
+ if (GNOME_CANVAS_ITEM_CLASS (eti_parent_class)->unrealize)
+ (*GNOME_CANVAS_ITEM_CLASS (eti_parent_class)->unrealize)(item);
+}
+
+static void
+draw_cell (ETableItem *eti, GdkDrawable *drawable, int col, int row,
+ int x1, int y1, int x2, int y2)
+{
+ gdk_draw_line (drawable, eti->grid_gc, x1, y1, x2-x1, y2-y1);
}
static void
@@ -214,7 +243,7 @@ eti_draw (GnomeCanvasItem *item, GdkDrawable *drawable, int x, int y, int width,
}
}
last_col = col;
-
+
/*
* Draw individual lines
*/
@@ -231,7 +260,11 @@ eti_draw (GnomeCanvasItem *item, GdkDrawable *drawable, int x, int y, int width,
if (eti->draw_grid)
gdk_draw_line (drawable, eti->grid_gc, 0, y - y2, width, y - y2);
-
+ for (col = first_col; col < last_col; col++){
+ ETableCol *ecol = e_table_header_get_column (eti->header, col);
+
+ draw_cell (eti, drawable, col, row, x_offset, y1 - y, x_offset + ecol->width, y2);
+ }
}
}