X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Fgtksheet%2Fgsheet-row-iface.h;h=ded46671136b87445d35ecb7738063b18f3cc72c;hb=bf41b320c23b395b96a00e35375f7aeb7a9046d3;hp=b96cccd778d66a95bf775287344483622fd19338;hpb=f5c108becd49d78f4898cab11352291f5689d24e;p=pspp-builds.git diff --git a/lib/gtksheet/gsheet-row-iface.h b/lib/gtksheet/gsheet-row-iface.h index b96cccd7..ded46671 100644 --- a/lib/gtksheet/gsheet-row-iface.h +++ b/lib/gtksheet/gsheet-row-iface.h @@ -47,39 +47,31 @@ struct _GSheetRowIface /* Signals */ void (* rows_changed) (GSheetRow *geo, - gint row, gint n_rows); + glong row, glong n_rows); /* Virtual Table */ - gint (* get_height) (const GSheetRow *grow, gint row, gpointer); - void (* set_height) (GSheetRow *grow, gint row, gint height, - gpointer); + gint (* get_height) (const GSheetRow *grow, glong row); + void (* set_height) (GSheetRow *grow, glong row, gint height); - gboolean (* get_visibility) (const GSheetRow *grow, gint row, - gpointer); + gboolean (* get_visibility) (const GSheetRow *grow, glong row); - gboolean (* get_sensitivity) (const GSheetRow *grow, gint row, - gpointer); + gboolean (* get_sensitivity) (const GSheetRow *grow, glong row); - const GtkSheetButton * (* get_button) (const GSheetRow *grow, gint row, - gpointer); + const GtkSheetButton * (* get_button) (const GSheetRow *grow, glong row); - gint (* get_row_count) (const GSheetRow *geo, gpointer); + glong (* get_row_count) (const GSheetRow *geo); + GtkStateType (*get_button_state) (const GSheetRow *geo, glong row); - GtkStateType (*get_button_state)(const GSheetRow *geo, gint row, - gpointer); + gchar * (*get_button_label) (const GSheetRow *geo, glong row); - gchar * (*get_button_label)(const GSheetRow *geo, gint row, - gpointer); + gchar * (*get_subtitle) (const GSheetRow *geo, glong row); - gboolean (*get_button_visibility)(const GSheetRow *geo, - gint row, gpointer); + gboolean (*get_button_visibility) (const GSheetRow *geo, + glong row); - const GtkSheetChild * (*get_button_child)(const GSheetRow *geo, - gint row, gpointer); - - guint (*top_ypixel)(const GSheetRow *geo, gint row, gpointer); - gint (*pixel_to_row)(const GSheetRow *geo, guint pixel, gpointer); + guint (*top_ypixel) (const GSheetRow *geo, glong row); + glong (*pixel_to_row) (const GSheetRow *geo, guint pixel); }; @@ -87,37 +79,39 @@ GType g_sheet_row_get_type (void) G_GNUC_CONST; gint g_sheet_row_get_height (const GSheetRow *grow, - gint row, gpointer); + glong row); void g_sheet_row_set_height (GSheetRow *grow, - gint row, gint size, gpointer); + glong row, gint size); -gboolean g_sheet_row_get_visibility(const GSheetRow *grow, - gint row, gpointer); +gboolean g_sheet_row_get_visibility (const GSheetRow *grow, + glong row); -gboolean g_sheet_row_get_sensitivity(const GSheetRow *grow, - gint row, gpointer); +gboolean g_sheet_row_get_sensitivity (const GSheetRow *grow, + glong row); -GtkSheetButton *g_sheet_row_get_button(const GSheetRow *grow, - gint row, gpointer); +GtkSheetButton *g_sheet_row_get_button (const GSheetRow *grow, + glong row); -gint g_sheet_row_get_row_count(const GSheetRow *geo, gpointer); +glong g_sheet_row_get_row_count (const GSheetRow *geo); /* Return the top pixel of row ROW */ -gint g_sheet_row_start_pixel(const GSheetRow *geo, gint row, - gpointer); +gint g_sheet_row_start_pixel (const GSheetRow *geo, glong row); + /* Return the row contained by pixel PIXEL */ -gint g_sheet_row_pixel_to_row(const GSheetRow *geo, gint pixel, - gpointer); +glong g_sheet_row_pixel_to_row (const GSheetRow *geo, gint pixel); + + +void g_sheet_row_rows_deleted (GSheetRow *geo, + glong first, glong n_rows); -void g_sheet_row_rows_deleted(GSheetRow *geo, - gint first, gint n_rows); +gchar *g_sheet_row_get_subtitle (const GSheetRow *row_geo, glong row); G_END_DECLS