]> Pileus Git - ~andy/gtk/blob - gtk/gtktable.h
Display an error when we come to the root.
[~andy/gtk] / gtk / gtktable.h
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /*
21  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
22  * file for a list of people on the GTK+ Team.  See the ChangeLog
23  * files for a list of changes.  These files are distributed with
24  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
25  */
26
27 #ifndef __GTK_TABLE_H__
28 #define __GTK_TABLE_H__
29
30
31 #include <gdk/gdk.h>
32 #include <gtk/gtkcontainer.h>
33
34
35 G_BEGIN_DECLS
36
37 #define GTK_TYPE_TABLE                  (gtk_table_get_type ())
38 #define GTK_TABLE(obj)                  (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_TABLE, GtkTable))
39 #define GTK_TABLE_CLASS(klass)          (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_TABLE, GtkTableClass))
40 #define GTK_IS_TABLE(obj)               (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_TABLE))
41 #define GTK_IS_TABLE_CLASS(klass)       (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_TABLE))
42 #define GTK_TABLE_GET_CLASS(obj)        (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_TABLE, GtkTableClass))
43
44
45 typedef struct _GtkTable        GtkTable;
46 typedef struct _GtkTableClass   GtkTableClass;
47 typedef struct _GtkTableChild   GtkTableChild;
48 typedef struct _GtkTableRowCol  GtkTableRowCol;
49
50 struct _GtkTable
51 {
52   GtkContainer container;
53   
54   GList *children;
55   GtkTableRowCol *rows;
56   GtkTableRowCol *cols;
57   guint16 nrows;
58   guint16 ncols;
59   guint16 column_spacing;
60   guint16 row_spacing;
61   guint homogeneous : 1;
62 };
63
64 struct _GtkTableClass
65 {
66   GtkContainerClass parent_class;
67 };
68
69 struct _GtkTableChild
70 {
71   GtkWidget *widget;
72   guint16 left_attach;
73   guint16 right_attach;
74   guint16 top_attach;
75   guint16 bottom_attach;
76   guint16 xpadding;
77   guint16 ypadding;
78   guint xexpand : 1;
79   guint yexpand : 1;
80   guint xshrink : 1;
81   guint yshrink : 1;
82   guint xfill : 1;
83   guint yfill : 1;
84 };
85
86 struct _GtkTableRowCol
87 {
88   guint16 requisition;
89   guint16 allocation;
90   guint16 spacing;
91   guint need_expand : 1;
92   guint need_shrink : 1;
93   guint expand : 1;
94   guint shrink : 1;
95   guint empty : 1;
96 };
97
98
99 GType      gtk_table_get_type         (void) G_GNUC_CONST;
100 GtkWidget* gtk_table_new              (guint            rows,
101                                        guint            columns,
102                                        gboolean         homogeneous);
103 void       gtk_table_resize           (GtkTable        *table,
104                                        guint            rows,
105                                        guint            columns);
106 void       gtk_table_attach           (GtkTable        *table,
107                                        GtkWidget       *child,
108                                        guint            left_attach,
109                                        guint            right_attach,
110                                        guint            top_attach,
111                                        guint            bottom_attach,
112                                        GtkAttachOptions xoptions,
113                                        GtkAttachOptions yoptions,
114                                        guint            xpadding,
115                                        guint            ypadding);
116 void       gtk_table_attach_defaults  (GtkTable        *table,
117                                        GtkWidget       *widget,
118                                        guint            left_attach,
119                                        guint            right_attach,
120                                        guint            top_attach,
121                                        guint            bottom_attach);
122 void       gtk_table_set_row_spacing  (GtkTable        *table,
123                                        guint            row,
124                                        guint            spacing);
125 guint      gtk_table_get_row_spacing  (GtkTable        *table,
126                                        guint            row);
127 void       gtk_table_set_col_spacing  (GtkTable        *table,
128                                        guint            column,
129                                        guint            spacing);
130 guint      gtk_table_get_col_spacing  (GtkTable        *table,
131                                        guint            column);
132 void       gtk_table_set_row_spacings (GtkTable        *table,
133                                        guint            spacing);
134 guint      gtk_table_get_default_row_spacing (GtkTable        *table);
135 void       gtk_table_set_col_spacings (GtkTable        *table,
136                                        guint            spacing);
137 guint      gtk_table_get_default_col_spacing (GtkTable        *table);
138 void       gtk_table_set_homogeneous  (GtkTable        *table,
139                                        gboolean         homogeneous);
140 gboolean   gtk_table_get_homogeneous  (GtkTable        *table);
141
142
143 G_END_DECLS
144
145 #endif /* __GTK_TABLE_H__ */