X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Fgtksheet%2Fgsheet-row-iface.h;fp=lib%2Fgtksheet%2Fgsheet-row-iface.h;h=9b75ba5509e531c74d99c051afb9443253ccc61e;hb=e294a372f351d7105c21a2db58022af8b119aa64;hp=8575620a9bc55721e484adcbe9c493d7f467bb07;hpb=6abdd9ecfc1a5a9a6c4db1b675249357da453167;p=pspp-builds.git diff --git a/lib/gtksheet/gsheet-row-iface.h b/lib/gtksheet/gsheet-row-iface.h index 8575620a..9b75ba55 100644 --- a/lib/gtksheet/gsheet-row-iface.h +++ b/lib/gtksheet/gsheet-row-iface.h @@ -50,36 +50,36 @@ struct _GSheetRowIface gint row, gint n_rows); /* Virtual Table */ - gint (* get_height) (const GSheetRow *grow, gint row, const GtkSheet *); + gint (* get_height) (const GSheetRow *grow, gint row, gpointer); void (* set_height) (GSheetRow *grow, gint row, gint height, - const GtkSheet *); + gpointer); gboolean (* get_visibility) (const GSheetRow *grow, gint row, - const GtkSheet *); + gpointer); gboolean (* get_sensitivity) (const GSheetRow *grow, gint row, - const GtkSheet *); + gpointer); const GtkSheetButton * (* get_button) (const GSheetRow *grow, gint row, - const GtkSheet *); + gpointer); - gint (* get_row_count) (const GSheetRow *geo, const GtkSheet *); + gint (* get_row_count) (const GSheetRow *geo, gpointer); GtkStateType (*get_button_state)(const GSheetRow *geo, gint row, - const GtkSheet *); + gpointer); gchar * (*get_button_label)(const GSheetRow *geo, gint row, - const GtkSheet *); + gpointer); gboolean (*get_button_visibility)(const GSheetRow *geo, - gint row, const GtkSheet *); + gint row, gpointer); const GtkSheetChild * (*get_button_child)(const GSheetRow *geo, - gint row, const GtkSheet *); + gint row, gpointer); - guint (*top_ypixel)(const GSheetRow *geo, gint row, const GtkSheet *); - gint (*pixel_to_row)(const GSheetRow *geo, guint pixel, const GtkSheet *); + guint (*top_ypixel)(const GSheetRow *geo, gint row, gpointer); + gint (*pixel_to_row)(const GSheetRow *geo, guint pixel, gpointer); }; @@ -87,33 +87,33 @@ GType g_sheet_row_get_type (void) G_GNUC_CONST; gint g_sheet_row_get_height (const GSheetRow *grow, - gint row, const GtkSheet *sheet); + gint row, gpointer); void g_sheet_row_set_height (GSheetRow *grow, - gint row, gint size, const GtkSheet *sheet); + gint row, gint size, gpointer); gboolean g_sheet_row_get_visibility(const GSheetRow *grow, - gint row, const GtkSheet *sheet); + gint row, gpointer); gboolean g_sheet_row_get_sensitivity(const GSheetRow *grow, - gint row, const GtkSheet *sheet); + gint row, gpointer); GtkSheetButton *g_sheet_row_get_button(const GSheetRow *grow, - gint row, const GtkSheet *sheet); + gint row, gpointer); -gint g_sheet_row_get_row_count(const GSheetRow *geo, const GtkSheet *sheet); +gint g_sheet_row_get_row_count(const GSheetRow *geo, gpointer); /* Return the top pixel of row ROW */ gint g_sheet_row_start_pixel(const GSheetRow *geo, gint row, - const GtkSheet *sheet); + gpointer); /* Return the row contained by pixel PIXEL */ gint g_sheet_row_pixel_to_row(const GSheetRow *geo, gint pixel, - const GtkSheet *sheet); + gpointer); void g_sheet_row_rows_deleted(GSheetRow *geo,