aboutsummaryrefslogtreecommitdiffstats
path: root/a11y/e-table/gal-a11y-e-cell-tree.h
diff options
context:
space:
mode:
authorTim Wo <tim.wo@sun.com>2003-12-02 14:14:34 +0800
committerGilbert Fang <gilbertfang@src.gnome.org>2003-12-02 14:14:34 +0800
commit3e2e35b2a2fda14262d3fb50b0442441e0fcada0 (patch)
treec5352960c0f9b41dc68c0230680e7e09d7ddf5ab /a11y/e-table/gal-a11y-e-cell-tree.h
parent86ec8d221e158ff53f47766464ddb1c5baff5167 (diff)
downloadgsoc2013-evolution-3e2e35b2a2fda14262d3fb50b0442441e0fcada0.tar
gsoc2013-evolution-3e2e35b2a2fda14262d3fb50b0442441e0fcada0.tar.gz
gsoc2013-evolution-3e2e35b2a2fda14262d3fb50b0442441e0fcada0.tar.bz2
gsoc2013-evolution-3e2e35b2a2fda14262d3fb50b0442441e0fcada0.tar.lz
gsoc2013-evolution-3e2e35b2a2fda14262d3fb50b0442441e0fcada0.tar.xz
gsoc2013-evolution-3e2e35b2a2fda14262d3fb50b0442441e0fcada0.tar.zst
gsoc2013-evolution-3e2e35b2a2fda14262d3fb50b0442441e0fcada0.zip
use table item to get the model. (gal_a11y_e_cell_toggle_new): use table
2003-12-02 Tim Wo <tim.wo@sun.com> * gal/a11y/e-table/gal-a11y-e-cell-toggle.c: (gal_a11y_e_cell_toggle_dispose): use table item to get the model. (gal_a11y_e_cell_toggle_new): use table item to get the model. * gal/a11y/e-table/gal-a11y-e-cell-tree.c: (ectr_model_row_changed_cb): new function to deal with tree cell expansion and collapse (ectr_subcell_weak_ref): destroy the cell_tree a11y instance along with it's subcell's a11y instance. (gal_a11y_e_cell_tree_new): init the atk state of the tree cell, and connect to the model_row_change signal of table model, so that when the tree cell expands or collapses, the corresponding AtkState could be set. * gal/a11y/e-table/gal-a11y-e-cell-tree.h: add one member to save the connected signal id. svn path=/trunk/; revision=23567
Diffstat (limited to 'a11y/e-table/gal-a11y-e-cell-tree.h')
-rw-r--r--a11y/e-table/gal-a11y-e-cell-tree.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/a11y/e-table/gal-a11y-e-cell-tree.h b/a11y/e-table/gal-a11y-e-cell-tree.h
index 4d48b66de4..355670b5a4 100644
--- a/a11y/e-table/gal-a11y-e-cell-tree.h
+++ b/a11y/e-table/gal-a11y-e-cell-tree.h
@@ -29,6 +29,8 @@ typedef struct _GalA11yECellTreePrivate GalA11yECellTreePrivate;
**/
struct _GalA11yECellTree {
GalA11yECell object;
+
+ int model_row_changed_id;
};
struct _GalA11yECellTreeClass {