diff options
author | Christopher James Lahey <clahey@ximian.com> | 2002-01-10 07:31:06 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2002-01-10 07:31:06 +0800 |
commit | b70d7b029286309bcd19bd2e3efd53fdd62705a9 (patch) | |
tree | d3479f695867f3475116bf64b46532e9303c1a55 /widgets/table/e-table-header-item.h | |
parent | 9603762038cd054c1195e9a7d3939dce412a4f41 (diff) | |
download | gsoc2013-evolution-b70d7b029286309bcd19bd2e3efd53fdd62705a9.tar.gz gsoc2013-evolution-b70d7b029286309bcd19bd2e3efd53fdd62705a9.tar.zst gsoc2013-evolution-b70d7b029286309bcd19bd2e3efd53fdd62705a9.zip |
Made the header item here handle horizontal scrolling when adding a
2002-01-09 Christopher James Lahey <clahey@ximian.com>
* e-table-header-item.c, e-table-header-item.h (scroll_timeout):
Made the header item here handle horizontal scrolling when adding
a column.
svn path=/trunk/; revision=15278
Diffstat (limited to 'widgets/table/e-table-header-item.h')
-rw-r--r-- | widgets/table/e-table-header-item.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/widgets/table/e-table-header-item.h b/widgets/table/e-table-header-item.h index 73df683029..38d0aa1791 100644 --- a/widgets/table/e-table-header-item.h +++ b/widgets/table/e-table-header-item.h @@ -84,6 +84,13 @@ typedef struct { */ ETableSortInfo *sort_info; + guint scroll_direction : 4; + int last_drop_x; + int last_drop_y; + int last_drop_time; + GdkDragContext *last_drop_context; + int scroll_idle_id; + /* For adding fields. */ ETableHeader *full_header; ETable *table; |