aboutsummaryrefslogtreecommitdiffstats
path: root/a11y/e-table/gal-a11y-e-cell-toggle.h
diff options
context:
space:
mode:
authorTim Wo <tim.wo@sun.com>2003-11-21 12:28:04 +0800
committerGilbert Fang <gilbertfang@src.gnome.org>2003-11-21 12:28:04 +0800
commit33a1687123f37ddea0d9bea13977c38f5f73b212 (patch)
tree1ed1e63a3fd4679899561f9e4de507a7b394de29 /a11y/e-table/gal-a11y-e-cell-toggle.h
parent1e103f9475ad27be34970a78b0416c5693942c5e (diff)
downloadgsoc2013-evolution-33a1687123f37ddea0d9bea13977c38f5f73b212.tar
gsoc2013-evolution-33a1687123f37ddea0d9bea13977c38f5f73b212.tar.gz
gsoc2013-evolution-33a1687123f37ddea0d9bea13977c38f5f73b212.tar.bz2
gsoc2013-evolution-33a1687123f37ddea0d9bea13977c38f5f73b212.tar.lz
gsoc2013-evolution-33a1687123f37ddea0d9bea13977c38f5f73b212.tar.xz
gsoc2013-evolution-33a1687123f37ddea0d9bea13977c38f5f73b212.tar.zst
gsoc2013-evolution-33a1687123f37ddea0d9bea13977c38f5f73b212.zip
override the function in base class, to retrieve the content of the text.
2003-11-21 Tim Wo <tim.wo@sun.com> * gal/a11y/e-table/gal-a11y-e-cell-text.c: (ect_get_name): override the function in base class, to retrieve the content of the text. (ect_do_action_edit): begin edit the cell when issuing the action. (ect_class_init): override the "get_name" function. (ect_init): add an action "edit" to the object. (gal_a11y_e_cell_text_get_type): add AtkAction interface to this type. * gal/a11y/e-table/gal-a11y-e-cell-toggle.c (gal_a11y_e_cell_toggle_dispose): disconnect the connected signal when disposing. (gal_a11y_e_cell_toggle_class_init): to override the dispose function. (toggle_cell_action): set position of the click event more precisely. (model_change_cb): set or remove the ATK_STATE_CHECKED flag according to the value in the model when it changes. (gal_a11y_e_cell_toggle_new): init the ATK_STATE_CHECKED flag and connect to the model cell change signal. * gal/a11y/e-table/gal-a11y-e-cell-toggle.h: add one member to save the connected signal id. * gal/a11y/e-table/gal-a11y-e-cell.c: (gal_a11y_e_cell_grab_focus): notify the selection model that the cursor has been changed. * gal/a11y/e-table/gal-a11y-e-table-item.c: (eti_a11y_cursor_changed_cb): emiting a signal to notify the AT applictions that the active descendant has been changed. (#51055) svn path=/trunk/; revision=23466
Diffstat (limited to 'a11y/e-table/gal-a11y-e-cell-toggle.h')
-rw-r--r--a11y/e-table/gal-a11y-e-cell-toggle.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/a11y/e-table/gal-a11y-e-cell-toggle.h b/a11y/e-table/gal-a11y-e-cell-toggle.h
index 9a740d7d84..06f9448e02 100644
--- a/a11y/e-table/gal-a11y-e-cell-toggle.h
+++ b/a11y/e-table/gal-a11y-e-cell-toggle.h
@@ -22,7 +22,7 @@ typedef struct _GalA11yECellToggleClass GalA11yECellToggleClass;
struct _GalA11yECellToggle
{
GalA11yECell parent;
- gboolean cell_value;
+ gint model_id;
};
GType gal_a11y_e_cell_toggle_get_type (void);