diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-12-10 06:20:52 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-12-10 06:20:52 +0800 |
commit | 3018f79188018eb590be1412a95b830a0d842fbc (patch) | |
tree | 50882bfcef5fcb05bbf4d07637be2da0b0bb0601 /widgets/table/e-cell.c | |
parent | 9cf73d61eb344bbbbf50d6932bff5ce23f2971e6 (diff) | |
download | gsoc2013-evolution-3018f79188018eb590be1412a95b830a0d842fbc.tar gsoc2013-evolution-3018f79188018eb590be1412a95b830a0d842fbc.tar.gz gsoc2013-evolution-3018f79188018eb590be1412a95b830a0d842fbc.tar.bz2 gsoc2013-evolution-3018f79188018eb590be1412a95b830a0d842fbc.tar.lz gsoc2013-evolution-3018f79188018eb590be1412a95b830a0d842fbc.tar.xz gsoc2013-evolution-3018f79188018eb590be1412a95b830a0d842fbc.tar.zst gsoc2013-evolution-3018f79188018eb590be1412a95b830a0d842fbc.zip |
Added the actions parameter to ect_event. Added an actions field to
2000-12-09 Christopher James Lahey <clahey@helixcode.com>
* e-cell-text.c: Added the actions parameter to ect_event. Added
an actions field to CellEdit. Handle CellEdit properly in the
ect_event function to do grabbing and ungrabbing when
appropriate. Set the actions field in CellEdit when appropriate
in e_cell_text_view_command.
* e-cell-toggle.c, e-cell-tree.c, e-cell.c, e-cell.h: Added a
ECellActions enum, a ECellActions actions parameter to
e_cell_event and added the actions parameter to all the handlers
of the event method including having ECellTree pass it on to its
child cell.
* e-table-header-item.c: Use the NULL cursor instead of the
E_CURSORS_ARROW cursor.
* e-table-item.c, e-table-item.h: Added grabbed_row and
grabbed_col fields to ETableItem (-1 on either means ungrabbed.)
Pay attention to them in the find_cell function. Handle the
actions parameter of e_cell_event and grab or ungrab the pointer
to a given cell if requested. This is done using the new function
eti_e_cell_event (which is internal to e-table-item.c,) instead of
the old e_cell_event function call. Fake an ungrabbed table when
calling find_cell from within the compute_location method.
svn path=/trunk/; revision=6889
Diffstat (limited to 'widgets/table/e-cell.c')
-rw-r--r-- | widgets/table/e-cell.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/widgets/table/e-cell.c b/widgets/table/e-cell.c index ab22adb53e..db2277ba4e 100644 --- a/widgets/table/e-cell.c +++ b/widgets/table/e-cell.c @@ -43,7 +43,7 @@ ec_draw (ECellView *ecell_view, GdkDrawable *drawable, } static gint -ec_event (ECellView *ecell_view, GdkEvent *event, int model_col, int view_col, int row, ECellFlags flags) +ec_event (ECellView *ecell_view, GdkEvent *event, int model_col, int view_col, int row, ECellFlags flags, ECellActions *actions) { g_error ("e-cell-event invoked\n"); return 0; @@ -52,7 +52,7 @@ ec_event (ECellView *ecell_view, GdkEvent *event, int model_col, int view_col, i static gint ec_height (ECellView *ecell_view, int model_col, int view_col, int row) { - g_error ("e-cell-event invoked\n"); + g_error ("e-cell-height invoked\n"); return 0; } @@ -131,17 +131,18 @@ E_MAKE_TYPE(e_cell, "ECell", ECell, e_cell_class_init, e_cell_init, PARENT_TYPE) * @model_col: the column in the model * @view_col: the column in the view * @row: the row - * @flags: the flags passed to the ECellView. + * @flags: flags about the current state + * @actions: A second return value in case the cell wants to take some action (specifically grabbing & ungrabbing) * * Dispatches the event @event to the @ecell_view for. * * Returns: processing state from the GdkEvent handling. */ gint -e_cell_event (ECellView *ecell_view, GdkEvent *event, int model_col, int view_col, int row, ECellFlags flags) +e_cell_event (ECellView *ecell_view, GdkEvent *event, int model_col, int view_col, int row, ECellFlags flags, ECellActions *actions) { return E_CELL_CLASS (GTK_OBJECT (ecell_view->ecell)->klass)->event ( - ecell_view, event, model_col, view_col, row, flags); + ecell_view, event, model_col, view_col, row, flags, actions); } /** |