diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-11-03 01:28:16 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-11-03 01:28:16 +0800 |
commit | 89beb886b9c5e242e7a426e51d2d9d4810a79cd4 (patch) | |
tree | 97cc07255dfe64f3e96f715ec91b356d5e331518 /widgets/table/e-table.h | |
parent | e72460cd5b8e5b6522e4f9702e351c034715c31c (diff) | |
download | gsoc2013-evolution-89beb886b9c5e242e7a426e51d2d9d4810a79cd4.tar.gz gsoc2013-evolution-89beb886b9c5e242e7a426e51d2d9d4810a79cd4.tar.zst gsoc2013-evolution-89beb886b9c5e242e7a426e51d2d9d4810a79cd4.zip |
Updated these unused glade files to better match the versions in the code.
2000-11-02 Christopher James Lahey <clahey@helixcode.com>
* e-table-config.glade, e-table-config.glade.h: Updated these
unused glade files to better match the versions in the code.
* e-table.c, e-table.h: Added e_table_selected_count and
"selection_change" signal.
* e-tree-model.c: Fixed an out of order
svn path=/trunk/; revision=6354
Diffstat (limited to 'widgets/table/e-table.h')
-rw-r--r-- | widgets/table/e-table.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/widgets/table/e-table.h b/widgets/table/e-table.h index 2d115e54fb..9954c934f7 100644 --- a/widgets/table/e-table.h +++ b/widgets/table/e-table.h @@ -101,6 +101,7 @@ typedef struct { GtkTableClass parent_class; void (*cursor_change) (ETable *et, int row); + void (*selection_change) (ETable *et); void (*double_click) (ETable *et, int row); gint (*right_click) (ETable *et, int row, int col, GdkEvent *event); gint (*click) (ETable *et, int row, int col, GdkEvent *event); @@ -207,6 +208,7 @@ int e_table_get_cursor_row (ETable *e_table void e_table_selected_row_foreach (ETable *e_table, ETableForeachFunc callback, gpointer closure); +gint e_table_selected_count (ETable *e_table); EPrintable *e_table_get_printable (ETable *e_table); gint e_table_get_next_row (ETable *e_table, |