aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-cell.c
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@src.gnome.org>2000-12-09 10:18:00 +0800
committerMiguel de Icaza <miguel@src.gnome.org>2000-12-09 10:18:00 +0800
commite68b48fb6e2c34fc0097669ba3a85b04ceb1d618 (patch)
tree8f3cbf42223788d18467225854257078a328a54c /widgets/table/e-cell.c
parentc65fda0e894b86fed0a88ecde17f4040e78af946 (diff)
downloadgsoc2013-evolution-e68b48fb6e2c34fc0097669ba3a85b04ceb1d618.tar
gsoc2013-evolution-e68b48fb6e2c34fc0097669ba3a85b04ceb1d618.tar.gz
gsoc2013-evolution-e68b48fb6e2c34fc0097669ba3a85b04ceb1d618.tar.bz2
gsoc2013-evolution-e68b48fb6e2c34fc0097669ba3a85b04ceb1d618.tar.lz
gsoc2013-evolution-e68b48fb6e2c34fc0097669ba3a85b04ceb1d618.tar.xz
gsoc2013-evolution-e68b48fb6e2c34fc0097669ba3a85b04ceb1d618.tar.zst
gsoc2013-evolution-e68b48fb6e2c34fc0097669ba3a85b04ceb1d618.zip
Work to get a Gtk-Doc infrastructure in place for Gal.
Work to get a Gtk-Doc infrastructure in place for Gal. Miguel. svn path=/trunk/; revision=6883
Diffstat (limited to 'widgets/table/e-cell.c')
-rw-r--r--widgets/table/e-cell.c12
1 files changed, 11 insertions, 1 deletions
diff --git a/widgets/table/e-cell.c b/widgets/table/e-cell.c
index b4f01d6dde..ab22adb53e 100644
--- a/widgets/table/e-cell.c
+++ b/widgets/table/e-cell.c
@@ -131,6 +131,7 @@ 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.
*
* Dispatches the event @event to the @ecell_view for.
*
@@ -226,7 +227,8 @@ e_cell_unrealize (ECellView *ecell_view)
*/
void
e_cell_draw (ECellView *ecell_view, GdkDrawable *drawable,
- int model_col, int view_col, int row, ECellFlags flags, int x1, int y1, int x2, int y2)
+ int model_col, int view_col, int row, ECellFlags flags,
+ int x1, int y1, int x2, int y2)
{
E_CELL_CLASS (GTK_OBJECT (ecell_view->ecell)->klass)->draw (
ecell_view, drawable, model_col, view_col, row, flags, x1, y1, x2, y2);
@@ -234,6 +236,13 @@ e_cell_draw (ECellView *ecell_view, GdkDrawable *drawable,
/**
* e_cell_print:
+ * @ecell_view: the ECellView to redraw
+ * @context: The GnomePrintContext where we output our printed data.
+ * @model_col: the column in the model being drawn.
+ * @view_col: the column in the view being drawn (what the model maps to).
+ * @row: the row being drawn
+ * @width: width
+ * @height: height
*
* FIXME:
*/
@@ -303,6 +312,7 @@ e_cell_enter_edit (ECellView *ecell_view, int model_col, int view_col, int row)
* @model_col: the column in the model
* @view_col: the column in the view
* @row: the row
+ * @edit_context: the editing context
*
* Notifies the ECellView that editing is finished at @model_col, @row
* rendered at @view_col, @row.