aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-cell.h
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2007-03-01 20:52:05 +0800
committerKjartan Maraas <kmaraas@src.gnome.org>2007-03-01 20:52:05 +0800
commitdfb8c61df838c14a311f218a35390e9fae7735fc (patch)
tree3f3308664648a56b36ecf8d8f1fd0902414703cc /widgets/table/e-cell.h
parentf85afa9f7d1b43d9eb56a5c8cb4011f3d2521306 (diff)
downloadgsoc2013-evolution-dfb8c61df838c14a311f218a35390e9fae7735fc.tar
gsoc2013-evolution-dfb8c61df838c14a311f218a35390e9fae7735fc.tar.gz
gsoc2013-evolution-dfb8c61df838c14a311f218a35390e9fae7735fc.tar.bz2
gsoc2013-evolution-dfb8c61df838c14a311f218a35390e9fae7735fc.tar.lz
gsoc2013-evolution-dfb8c61df838c14a311f218a35390e9fae7735fc.tar.xz
gsoc2013-evolution-dfb8c61df838c14a311f218a35390e9fae7735fc.tar.zst
gsoc2013-evolution-dfb8c61df838c14a311f218a35390e9fae7735fc.zip
** Fixes bug #357216
2006-02-08 Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #357216 * text/e-entry.c: Remove "font", "fontset", and "gdk_font" properties, since they forward gets and sets to non-existant properties in entry->item. 2006-09-27 Matthew Barnes <mbarnes@redhat.com> Fixes bug #357970 * text/e-text.c (e_text_unrealize): Don't call deprecated GLib / GDK svn path=/trunk/; revision=33269
Diffstat (limited to 'widgets/table/e-cell.h')
-rw-r--r--widgets/table/e-cell.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/widgets/table/e-cell.h b/widgets/table/e-cell.h
index 526d8995e7..378d32d75e 100644
--- a/widgets/table/e-cell.h
+++ b/widgets/table/e-cell.h
@@ -74,13 +74,16 @@ typedef struct {
GtkObject object;
} ECell;
-typedef struct {
+typedef struct _ECellView {
ECell *ecell;
ETableModel *e_table_model;
void *e_table_item_view;
gint focus_x1, focus_y1, focus_x2, focus_y2;
gint focus_col, focus_row;
+
+ void (*kill_view_cb) (struct _ECellView*, gpointer );
+ GList *kill_view_cb_data;
} ECellView;
#define E_CELL_IS_FOCUSED(ecell_view) (ecell_view->focus_x1 != -1)