X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Fgtksheet%2Fgsheet-uniform-row.c;h=755ce2585288404914ec88b302bf123dcca6aa74;hb=ad10aed69efec78ddbfcdbe4774bf9a0435fcfd6;hp=42dc8bf6bb6ab5620ae5130dbcafde2debe1c6c5;hpb=164d1274fcb70c54897f2a03fc7c27152ed4821a;p=pspp-builds.git diff --git a/lib/gtksheet/gsheet-uniform-row.c b/lib/gtksheet/gsheet-uniform-row.c index 42dc8bf6..755ce258 100644 --- a/lib/gtksheet/gsheet-uniform-row.c +++ b/lib/gtksheet/gsheet-uniform-row.c @@ -1,8 +1,8 @@ /* gsheet-uniform-row.c - * + * * PSPPIRE --- A Graphical User Interface for PSPP * Copyright (C) 2006 Free Software Foundation - * + * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either @@ -12,12 +12,14 @@ * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. - * + * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ +#include + #include "gsheet-row-iface.h" #include "gsheet-uniform-row.h" @@ -58,7 +60,7 @@ g_sheet_uniform_row_get_type (void) NULL }; - uniform_row_type = + uniform_row_type = g_type_register_static (G_TYPE_OBJECT, "g_sheet_uniform_row", &uniform_row_info, 0); @@ -93,44 +95,46 @@ g_sheet_uniform_row_new (gint height, gint n_rows) return retval; } -static gint -g_sheet_uniform_row_get_height(const GSheetRow *geom, gint u, gpointer data) +static gint +g_sheet_uniform_row_get_height (const GSheetRow *geom, glong u, gpointer data) { GSheetUniformRow *ug = G_SHEET_UNIFORM_ROW(geom); - + return ug->height; } static gboolean -g_sheet_uniform_row_get_sensitivity(const GSheetRow *geom, gint u, gpointer data) +g_sheet_uniform_row_get_sensitivity (const GSheetRow *geom, glong u, + gpointer data) { GSheetUniformRow *ug = G_SHEET_UNIFORM_ROW(geom); - + return (u < ug->n_rows); } static gboolean -g_sheet_uniform_row_get_visibility(const GSheetRow *geom, gint u, gpointer data) +g_sheet_uniform_row_get_visibility (const GSheetRow *geom, glong u, + gpointer data) { - GSheetUniformRow *ug = G_SHEET_UNIFORM_ROW(geom); - + GSheetUniformRow *ug = G_SHEET_UNIFORM_ROW (geom); + return ug->is_visible; } static gchar * -g_sheet_uniform_row_get_button_label(const GSheetRow *geom, gint u, gpointer data) +g_sheet_uniform_row_get_button_label(const GSheetRow *geom, glong u, gpointer data) { - gchar *label = g_strdup_printf("%d", u); + gchar *label = g_strdup_printf("%ld", u); return label; } -static gint -g_sheet_uniform_row_get_row_count(const GSheetRow *geom, gpointer data) +static glong +g_sheet_uniform_row_get_row_count (const GSheetRow *geom, gpointer data) { GSheetUniformRow *ug = G_SHEET_UNIFORM_ROW(geom); @@ -156,22 +160,22 @@ g_sheet_uniform_row_init (GSheetUniformRow *o) { } -static void -g_sheet_uniform_row_finalize (GObject *object) +static void +g_sheet_uniform_row_finalize (GObject *object) { } static guint -g_sheet_uniform_row_top_ypixel(const GSheetRow *geo, gint row, gpointer data) +g_sheet_uniform_row_top_ypixel (const GSheetRow *geo, glong row, gpointer data) { GSheetUniformRow *ug = G_SHEET_UNIFORM_ROW(geo); return row * ug->height; } -static gint -g_sheet_uniform_row_pixel_to_row(const GSheetRow *geo, guint pixel, +static glong +g_sheet_uniform_row_pixel_to_row (const GSheetRow *geo, guint pixel, gpointer data) { GSheetUniformRow *ug = G_SHEET_UNIFORM_ROW(geo);