]> Pileus Git - ~andy/gtk/blob - gtk/gtktable.h
Merge branch 'windows_list'
[~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 #if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
28 #error "Only <gtk/gtk.h> can be included directly."
29 #endif
30
31 #ifndef __GTK_TABLE_H__
32 #define __GTK_TABLE_H__
33
34
35 #include <gtk/gtkcontainer.h>
36
37
38 G_BEGIN_DECLS
39
40 #define GTK_TYPE_TABLE                  (gtk_table_get_type ())
41 #define GTK_TABLE(obj)                  (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_TABLE, GtkTable))
42 #define GTK_TABLE_CLASS(klass)          (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_TABLE, GtkTableClass))
43 #define GTK_IS_TABLE(obj)               (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_TABLE))
44 #define GTK_IS_TABLE_CLASS(klass)       (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_TABLE))
45 #define GTK_TABLE_GET_CLASS(obj)        (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_TABLE, GtkTableClass))
46
47
48 typedef struct _GtkTable        GtkTable;
49 typedef struct _GtkTablePriv    GtkTablePriv;
50 typedef struct _GtkTableClass   GtkTableClass;
51 typedef struct _GtkTableChild   GtkTableChild;
52 typedef struct _GtkTableRowCol  GtkTableRowCol;
53
54 struct _GtkTable
55 {
56   GtkContainer container;
57
58   /* <private> */
59   GtkTablePriv *priv;
60 };
61
62 struct _GtkTableClass
63 {
64   GtkContainerClass parent_class;
65 };
66
67 struct _GtkTableChild
68 {
69   GtkWidget *widget;
70   guint16 left_attach;
71   guint16 right_attach;
72   guint16 top_attach;
73   guint16 bottom_attach;
74   guint16 xpadding;
75   guint16 ypadding;
76   guint xexpand : 1;
77   guint yexpand : 1;
78   guint xshrink : 1;
79   guint yshrink : 1;
80   guint xfill : 1;
81   guint yfill : 1;
82 };
83
84 struct _GtkTableRowCol
85 {
86   guint16 requisition;
87   guint16 allocation;
88   guint16 spacing;
89   guint need_expand : 1;
90   guint need_shrink : 1;
91   guint expand : 1;
92   guint shrink : 1;
93   guint empty : 1;
94 };
95
96
97 GType      gtk_table_get_type         (void) G_GNUC_CONST;
98 GtkWidget* gtk_table_new              (guint            rows,
99                                        guint            columns,
100                                        gboolean         homogeneous);
101 void       gtk_table_resize           (GtkTable        *table,
102                                        guint            rows,
103                                        guint            columns);
104 void       gtk_table_attach           (GtkTable        *table,
105                                        GtkWidget       *child,
106                                        guint            left_attach,
107                                        guint            right_attach,
108                                        guint            top_attach,
109                                        guint            bottom_attach,
110                                        GtkAttachOptions xoptions,
111                                        GtkAttachOptions yoptions,
112                                        guint            xpadding,
113                                        guint            ypadding);
114 void       gtk_table_attach_defaults  (GtkTable        *table,
115                                        GtkWidget       *widget,
116                                        guint            left_attach,
117                                        guint            right_attach,
118                                        guint            top_attach,
119                                        guint            bottom_attach);
120 void       gtk_table_set_row_spacing  (GtkTable        *table,
121                                        guint            row,
122                                        guint            spacing);
123 guint      gtk_table_get_row_spacing  (GtkTable        *table,
124                                        guint            row);
125 void       gtk_table_set_col_spacing  (GtkTable        *table,
126                                        guint            column,
127                                        guint            spacing);
128 guint      gtk_table_get_col_spacing  (GtkTable        *table,
129                                        guint            column);
130 void       gtk_table_set_row_spacings (GtkTable        *table,
131                                        guint            spacing);
132 guint      gtk_table_get_default_row_spacing (GtkTable        *table);
133 void       gtk_table_set_col_spacings (GtkTable        *table,
134                                        guint            spacing);
135 guint      gtk_table_get_default_col_spacing (GtkTable        *table);
136 void       gtk_table_set_homogeneous  (GtkTable        *table,
137                                        gboolean         homogeneous);
138 gboolean   gtk_table_get_homogeneous  (GtkTable        *table);
139 void       gtk_table_get_size         (GtkTable        *table,
140                                        guint           *rows,
141                                        guint           *columns);
142
143
144 G_END_DECLS
145
146 #endif /* __GTK_TABLE_H__ */