aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-table-group.h
diff options
context:
space:
mode:
Diffstat (limited to 'widgets/table/e-table-group.h')
-rw-r--r--widgets/table/e-table-group.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/widgets/table/e-table-group.h b/widgets/table/e-table-group.h
index f8d23168fe..18866b7ad5 100644
--- a/widgets/table/e-table-group.h
+++ b/widgets/table/e-table-group.h
@@ -67,7 +67,7 @@ typedef struct {
gint (*get_focus_column) (ETableGroup *etg);
EPrintable *(*get_printable) (ETableGroup *etg);
void (*compute_location) (ETableGroup *etg, int *x, int *y, int *row, int *col);
- void (*get_position) (ETableGroup *etg, int *x, int *y, int *row, int *col);
+ void (*get_cell_geometry) (ETableGroup *etg, int *row, int *col, int *x, int *y, int *width, int *height);
} ETableGroupClass;
@@ -99,11 +99,13 @@ void e_table_group_compute_location (ETableGroup *etg,
int *y,
int *row,
int *col);
-void e_table_group_get_position (ETableGroup *etg,
+void e_table_group_get_cell_geometry (ETableGroup *etg,
+ int *row,
+ int *col,
int *x,
int *y,
- int *row,
- int *col);
+ int *width,
+ int *height);
ETableGroup *e_table_group_new (GnomeCanvasGroup *parent,
ETableHeader *full_header,
ETableHeader *header,