diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-07-25 16:20:21 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-07-25 16:20:21 +0800 |
commit | 126807f8aa489bc2de242a05888fe4a83993d323 (patch) | |
tree | 35522ee7c3ef8c20db048806926c0e09f3d1cdb7 /widgets/e-table/e-table.h | |
parent | 55702ec70beb591bf3e44b1a58d7cb8ab2c59c92 (diff) | |
download | gsoc2013-evolution-126807f8aa489bc2de242a05888fe4a83993d323.tar gsoc2013-evolution-126807f8aa489bc2de242a05888fe4a83993d323.tar.gz gsoc2013-evolution-126807f8aa489bc2de242a05888fe4a83993d323.tar.bz2 gsoc2013-evolution-126807f8aa489bc2de242a05888fe4a83993d323.tar.lz gsoc2013-evolution-126807f8aa489bc2de242a05888fe4a83993d323.tar.xz gsoc2013-evolution-126807f8aa489bc2de242a05888fe4a83993d323.tar.zst gsoc2013-evolution-126807f8aa489bc2de242a05888fe4a83993d323.zip |
Implemented some of the drag & drop code. Drops all report as being on row
2000-07-25 Christopher James Lahey <clahey@helixcode.com>
* e-table.c, e-table.h: Implemented some of the drag & drop code.
Drops all report as being on row 0, col 0. Also, automatic drags
don't set the row and column being dragged from.
svn path=/trunk/; revision=4312
Diffstat (limited to 'widgets/e-table/e-table.h')
-rw-r--r-- | widgets/e-table/e-table.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/widgets/e-table/e-table.h b/widgets/e-table/e-table.h index 34eb5e921a..85d0e387bd 100644 --- a/widgets/e-table/e-table.h +++ b/widgets/e-table/e-table.h @@ -63,6 +63,15 @@ typedef struct { gboolean use_click_to_add; ETableCursorMode cursor_mode; + + int drag_get_data_row; + int drag_get_data_col; + + int drag_row; + int drag_col; + + int drop_row; + int drop_col; } ETable; typedef struct { |