]> Pileus Git - ~andy/gtk/blob - gtk/deprecated/gtktable.h
Change FSF Address
[~andy/gtk] / gtk / deprecated / 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, see <http://www.gnu.org/licenses/>.
16  */
17
18 /*
19  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
20  * file for a list of people on the GTK+ Team.  See the ChangeLog
21  * files for a list of changes.  These files are distributed with
22  * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
23  */
24
25 #if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
26 #error "Only <gtk/gtk.h> can be included directly."
27 #endif
28
29 #ifndef __GTK_TABLE_H__
30 #define __GTK_TABLE_H__
31
32 #include <gtk/gtkcontainer.h>
33
34 G_BEGIN_DECLS
35
36 #define GTK_TYPE_TABLE                  (gtk_table_get_type ())
37 #define GTK_TABLE(obj)                  (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_TABLE, GtkTable))
38 #define GTK_TABLE_CLASS(klass)          (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_TABLE, GtkTableClass))
39 #define GTK_IS_TABLE(obj)               (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_TABLE))
40 #define GTK_IS_TABLE_CLASS(klass)       (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_TABLE))
41 #define GTK_TABLE_GET_CLASS(obj)        (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_TABLE, GtkTableClass))
42
43
44 typedef struct _GtkTable              GtkTable;
45 typedef struct _GtkTablePrivate       GtkTablePrivate;
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   /*< private >*/
55   GtkTablePrivate *priv;
56 };
57
58 struct _GtkTableClass
59 {
60   GtkContainerClass parent_class;
61
62   /* Padding for future expansion */
63   void (*_gtk_reserved1) (void);
64   void (*_gtk_reserved2) (void);
65   void (*_gtk_reserved3) (void);
66   void (*_gtk_reserved4) (void);
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 GDK_DEPRECATED_IN_3_4_FOR(GtkGrid)
101 GtkWidget* gtk_table_new              (guint            rows,
102                                        guint            columns,
103                                        gboolean         homogeneous);
104 GDK_DEPRECATED_IN_3_4_FOR(GtkGrid)
105 void       gtk_table_resize           (GtkTable        *table,
106                                        guint            rows,
107                                        guint            columns);
108 GDK_DEPRECATED_IN_3_4_FOR(GtkGrid)
109 void       gtk_table_attach           (GtkTable        *table,
110                                        GtkWidget       *child,
111                                        guint            left_attach,
112                                        guint            right_attach,
113                                        guint            top_attach,
114                                        guint            bottom_attach,
115                                        GtkAttachOptions xoptions,
116                                        GtkAttachOptions yoptions,
117                                        guint            xpadding,
118                                        guint            ypadding);
119 GDK_DEPRECATED_IN_3_4_FOR(GtkGrid)
120 void       gtk_table_attach_defaults  (GtkTable        *table,
121                                        GtkWidget       *widget,
122                                        guint            left_attach,
123                                        guint            right_attach,
124                                        guint            top_attach,
125                                        guint            bottom_attach);
126 GDK_DEPRECATED_IN_3_4_FOR(GtkGrid)
127 void       gtk_table_set_row_spacing  (GtkTable        *table,
128                                        guint            row,
129                                        guint            spacing);
130 GDK_DEPRECATED_IN_3_4_FOR(GtkGrid)
131 guint      gtk_table_get_row_spacing  (GtkTable        *table,
132                                        guint            row);
133 GDK_DEPRECATED_IN_3_4_FOR(GtkGrid)
134 void       gtk_table_set_col_spacing  (GtkTable        *table,
135                                        guint            column,
136                                        guint            spacing);
137 GDK_DEPRECATED_IN_3_4_FOR(GtkGrid)
138 guint      gtk_table_get_col_spacing  (GtkTable        *table,
139                                        guint            column);
140 GDK_DEPRECATED_IN_3_4_FOR(GtkGrid)
141 void       gtk_table_set_row_spacings (GtkTable        *table,
142                                        guint            spacing);
143 GDK_DEPRECATED_IN_3_4_FOR(GtkGrid)
144 guint      gtk_table_get_default_row_spacing (GtkTable        *table);
145 GDK_DEPRECATED_IN_3_4_FOR(GtkGrid)
146 void       gtk_table_set_col_spacings (GtkTable        *table,
147                                        guint            spacing);
148 GDK_DEPRECATED_IN_3_4_FOR(GtkGrid)
149 guint      gtk_table_get_default_col_spacing (GtkTable        *table);
150 GDK_DEPRECATED_IN_3_4_FOR(GtkGrid)
151 void       gtk_table_set_homogeneous  (GtkTable        *table,
152                                        gboolean         homogeneous);
153 GDK_DEPRECATED_IN_3_4_FOR(GtkGrid)
154 gboolean   gtk_table_get_homogeneous  (GtkTable        *table);
155 GDK_DEPRECATED_IN_3_4_FOR(GtkGrid)
156 void       gtk_table_get_size         (GtkTable        *table,
157                                        guint           *rows,
158                                        guint           *columns);
159
160 G_END_DECLS
161
162 #endif /* __GTK_TABLE_H__ */