Fixed bug reporting the significance of paired value t-test.
[pspp-builds.git] / lib / gtksheet / gtkextra-sheet.h
1 /* This version of GtkSheet has been heavily modified, for the specific
2  *  requirements of PSPPIRE.
3  *
4  * GtkSheet widget for Gtk+.
5  * Copyright (C) 1999-2001 Adrian E. Feiguin <adrian@ifir.ifir.edu.ar>
6  *
7  * Based on GtkClist widget by Jay Painter, but major changes.
8  * Memory allocation routines inspired on SC (Spreadsheet Calculator)
9  *
10  * This library is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU Lesser General Public
12  * License as published by the Free Software Foundation; either
13  * version 2.1 of the License, or (at your option) any later version.
14  *
15  * This library is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18  * Lesser General Public License for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public
21  * License along with this library; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
23  */
24
25
26 #ifndef __GTK_EXTRA_SHEET_H__
27 #define __GTK_EXTRA_SHEET_H__
28
29
30 struct _GtkSheet ;
31
32 typedef struct _GtkSheet GtkSheet;
33
34
35 struct _GtkSheetChild
36 {
37   GtkWidget *widget;
38   gint x,y ;
39   gboolean attached_to_cell;
40   gboolean floating;
41   gint row, col;
42   guint16 xpadding;
43   guint16 ypadding;
44   gboolean xexpand;
45   gboolean yexpand;
46   gboolean xshrink;
47   gboolean yshrink;
48   gboolean xfill;
49   gboolean yfill;
50 };
51
52 typedef struct _GtkSheetChild GtkSheetChild;
53
54
55
56 struct _GtkSheetButton
57 {
58   GtkStateType state;
59   gchar *label;
60
61   gboolean label_visible;
62   GtkSheetChild *child;
63
64   GtkJustification justification;
65 };
66
67 typedef struct _GtkSheetButton GtkSheetButton;
68
69
70
71 GtkSheetButton * gtk_sheet_button_new(void);
72
73 inline void gtk_sheet_button_free(GtkSheetButton *button);
74
75
76 #endif /* __GTK_EXTRA_SHEET_H__ */
77
78