diff options
author | Christopher James Lahey <clahey@ximian.com> | 2001-04-24 10:23:47 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2001-04-24 10:23:47 +0800 |
commit | e37b58efec96ce102e8c354a979a2b37d28249c7 (patch) | |
tree | 470857cfbff745b78cfec681670359990b1a9581 /widgets/table/e-table.c | |
parent | 44c7d231440ad4f4ef59bfbf175be6cf35271e86 (diff) | |
download | gsoc2013-evolution-e37b58efec96ce102e8c354a979a2b37d28249c7.tar.gz gsoc2013-evolution-e37b58efec96ce102e8c354a979a2b37d28249c7.tar.zst gsoc2013-evolution-e37b58efec96ce102e8c354a979a2b37d28249c7.zip |
Documented this function properly.
2001-04-23 Christopher James Lahey <clahey@ximian.com>
* e-table.c (e_table_get_cell_geometry): Documented this function
properly.
* e-tree.c, e-tree.h (e_tree_get_cell_geometry): Added this
function.
svn path=/trunk/; revision=9533
Diffstat (limited to 'widgets/table/e-table.c')
-rw-r--r-- | widgets/table/e-table.c | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/widgets/table/e-table.c b/widgets/table/e-table.c index cb725c9a1f..3998f468cd 100644 --- a/widgets/table/e-table.c +++ b/widgets/table/e-table.c @@ -1523,15 +1523,16 @@ e_table_get_cell_at (ETable *table, } /** - * e_table_get_cell_at: - * @table: An ETable widget - * @x: X coordinate for the pixel - * @y: Y coordinate for the pixel - * @row_return: Pointer to return the row value - * @col_return: Pointer to return the column value + * e_table_get_cell_geometry: + * @table: The table. + * @row: The row to get the geometry of. + * @col: The col to get the geometry of. + * @x_return: Returns the x coordinate of the upper right hand corner of the cell with respect to the widget. + * @y_return: Returns the y coordinate of the upper right hand corner of the cell with respect to the widget. + * @width_return: Returns the width of the cell. + * @height_return: Returns the height of the cell. * - * Return the row and column for the cell in which the pixel at (@x, @y) is - * contained. + * Computes the data about this cell. **/ void e_table_get_cell_geometry (ETable *table, |