Esempio n. 1
0
static gboolean
etgl_right_click (GObject *object,
                  gint view_row,
                  gint model_col,
                  GdkEvent *event,
                  ETableGroupLeaf *etgl)
{
	ETableSubset *table_subset;
	gint model_row;

	table_subset = E_TABLE_SUBSET (etgl->ets);
	model_row = e_table_subset_view_to_model_row (table_subset, view_row);

	if (model_row < 0)
		return FALSE;

	return e_table_group_right_click (
		E_TABLE_GROUP (etgl), model_row, model_col, event);
}
static gint
child_right_click (ETableGroup *etg, int row, int col, GdkEvent *event,
		   ETableGroupContainer *etgc)
{
	return e_table_group_right_click (E_TABLE_GROUP (etgc), row, col, event);
}