aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-cell-popup.h
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@ximian.com>2001-11-06 03:52:33 +0800
committerChris Lahey <clahey@src.gnome.org>2001-11-06 03:52:33 +0800
commit514e14b2c6fe46d3a786517cfd546a9ac2080af9 (patch)
tree2492381b7de6967d2e8d7d178e7b6d8a751bb5ec /widgets/table/e-cell-popup.h
parent76d416305f74670cebaaaa639f39554b77cbe3e0 (diff)
downloadgsoc2013-evolution-514e14b2c6fe46d3a786517cfd546a9ac2080af9.tar
gsoc2013-evolution-514e14b2c6fe46d3a786517cfd546a9ac2080af9.tar.gz
gsoc2013-evolution-514e14b2c6fe46d3a786517cfd546a9ac2080af9.tar.bz2
gsoc2013-evolution-514e14b2c6fe46d3a786517cfd546a9ac2080af9.tar.lz
gsoc2013-evolution-514e14b2c6fe46d3a786517cfd546a9ac2080af9.tar.xz
gsoc2013-evolution-514e14b2c6fe46d3a786517cfd546a9ac2080af9.tar.zst
gsoc2013-evolution-514e14b2c6fe46d3a786517cfd546a9ac2080af9.zip
New functions here.
2001-11-03 Christopher James Lahey <clahey@ximian.com> * e-cell-popup.c, e-cell-popup.h (e_cell_popup_set_shown, e_cell_popup_queue_cell_redraw): New functions here. * e-cell-combo.c: Use e_cell_popup_set_shown to set the popup_shown variable so that ECellPopup can properly request a redraw. svn path=/trunk/; revision=14592
Diffstat (limited to 'widgets/table/e-cell-popup.h')
-rw-r--r--widgets/table/e-cell-popup.h14
1 files changed, 9 insertions, 5 deletions
diff --git a/widgets/table/e-cell-popup.h b/widgets/table/e-cell-popup.h
index 8f89ddf9ef..eba0d941df 100644
--- a/widgets/table/e-cell-popup.h
+++ b/widgets/table/e-cell-popup.h
@@ -82,12 +82,16 @@ struct _ECellPopupView {
};
-GtkType e_cell_popup_get_type (void);
-ECell *e_cell_popup_new (void);
+GtkType e_cell_popup_get_type (void);
+ECell *e_cell_popup_new (void);
/* Get and set the child ECell. */
-ECell *e_cell_popup_get_child (ECellPopup *ecp);
-void e_cell_popup_set_child (ECellPopup *ecp,
- ECell *child);
+ECell *e_cell_popup_get_child (ECellPopup *ecp);
+void e_cell_popup_set_child (ECellPopup *ecp,
+ ECell *child);
+
+void e_cell_popup_set_shown (ECellPopup *ecp,
+ gboolean shown);
+void e_cell_popup_queue_cell_redraw (ECellPopup *ecp);
#endif /* _E_CELL_POPUP_H_ */