/* PSPPIRE --- A Graphical User Interface for PSPP Copyright (C) 2004,2005 Free Software Foundation Written by John Darrington This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef VAR_SHEET_H #define VAR_SHEET_H void var_sheet_range_set_editable(GtkSheet *sheet, const GtkSheetRange *urange, gboolean editable); /* Create the var sheet */ GtkWidget* psppire_variable_sheet_create (gchar *widget_name, gchar *string1, gchar *string2, gint int1, gint int2); /* Returns the dictionary associated with the sheet */ PSPP_Dict * psppire_var_sheet_get_dictionary(GtkWidget *sheet); /* Associate a dictionary with the var sheet.. If there is already a dictionary associated, then it will be destroyed. */ void psppire_var_sheet_set_dictionary(GtkSheet *sheet, PSPP_Dict *d); /* Blank the sheet */ void psppire_var_sheet_clear(GtkSheet *sheet); #endif