From 23ca256b7dd10fea00e2914c968e797af6ea0622 Mon Sep 17 00:00:00 2001 From: Christopher James Lahey Date: Mon, 10 Jul 2000 11:04:18 +0000 Subject: Add e-table-scrolled.c and e-table-scrolled.h. 2000-07-09 Christopher James Lahey * Makefile.am: Add e-table-scrolled.c and e-table-scrolled.h. * e-table-item.c: Make sure that find_cell returns FALSE if the item doesn't have any cells. * e-table-scrolled.c, e-table-scrolled.h: Added a widget to contain an ETable and provide scrollbars (for ease of use.) * e-table.c, e-table.h: Make this support the scrollable interface and not contain its own scrollbars. svn path=/trunk/; revision=4031 --- widgets/e-table/e-table.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'widgets/e-table/e-table.h') diff --git a/widgets/e-table/e-table.h b/widgets/e-table/e-table.h index 9b93326ea1..c4644c7a98 100644 --- a/widgets/e-table/e-table.h +++ b/widgets/e-table/e-table.h @@ -73,6 +73,10 @@ typedef struct { void (*double_click) (ETable *et, int row); gint (*right_click) (ETable *et, int row, int col, GdkEvent *event); gint (*key_press) (ETable *et, int row, int col, GdkEvent *event); + + void (*set_scroll_adjustments) (ETable *table, + GtkAdjustment *hadjustment, + GtkAdjustment *vadjustment); } ETableClass; GtkType e_table_get_type (void); -- cgit