diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-06-21 11:07:30 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-06-21 11:07:30 +0800 |
commit | c62863d0877fd19c90ba8a15d4438611599b0979 (patch) | |
tree | d2668eab8bcb699aa1bcb547c17075c5226bdcfe /widgets/e-table/e-table-item.h | |
parent | 798b2b01e6ecdbaea70860ca357b5c3eb5ecddfb (diff) | |
download | gsoc2013-evolution-c62863d0877fd19c90ba8a15d4438611599b0979.tar gsoc2013-evolution-c62863d0877fd19c90ba8a15d4438611599b0979.tar.gz gsoc2013-evolution-c62863d0877fd19c90ba8a15d4438611599b0979.tar.bz2 gsoc2013-evolution-c62863d0877fd19c90ba8a15d4438611599b0979.tar.lz gsoc2013-evolution-c62863d0877fd19c90ba8a15d4438611599b0979.tar.xz gsoc2013-evolution-c62863d0877fd19c90ba8a15d4438611599b0979.tar.zst gsoc2013-evolution-c62863d0877fd19c90ba8a15d4438611599b0979.zip |
Removed the unfocus method since that's handled by the canvas itself now.
2000-06-20 Christopher James Lahey <clahey@helixcode.com>
* e-table-group-container.c, e-table-group-leaf.c,
e-table-group.c, e-table-group.h: Removed the unfocus method since
that's handled by the canvas itself now.
* e-table-item.c, e-table-item.h: Finished adapting ETableItem to
use the canvas selection/cursor system. Selection and cursor now
use row numbers associated with the source model instead of the
sorted model (if the model they are given is an ETableSubset.)
This has no effect on the interface, except that unfocus was
removed and e_table_item_focus was renamed to
e_table_item_set_cursor.
svn path=/trunk/; revision=3660
Diffstat (limited to 'widgets/e-table/e-table-item.h')
-rw-r--r-- | widgets/e-table/e-table-item.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/widgets/e-table/e-table-item.h b/widgets/e-table/e-table-item.h index 1d522413cd..235ab6d764 100644 --- a/widgets/e-table/e-table-item.h +++ b/widgets/e-table/e-table-item.h @@ -75,6 +75,7 @@ typedef struct { */ int length_threshold; + gint row_guess; gint cursor_row; gint cursor_col; ETableCursorMode cursor_mode; @@ -105,8 +106,7 @@ GtkType e_table_item_get_type (void); /* * Focus */ -void e_table_item_focus (ETableItem *eti, int col, int row); -void e_table_item_unfocus (ETableItem *eti); +void e_table_item_set_cursor (ETableItem *eti, int col, int row); gint e_table_item_get_focused_column (ETableItem *eti); |