]> Pileus Git - ~andy/gtk/blob - gtk/deprecated/gtktable.h
a4cc1dd182bd6bd61fa763be10bcf670f30ac8b9
[~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, 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 #include <gtk/gtkcontainer.h>
35
36 G_BEGIN_DECLS
37
38 #define GTK_TYPE_TABLE                  (gtk_table_get_type ())
39 #define GTK_TABLE(obj)                  (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_TABLE, GtkTable))
40 #define GTK_TABLE_CLASS(klass)          (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_TABLE, GtkTableClass))
41 #define GTK_IS_TABLE(obj)               (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_TABLE))
42 #define GTK_IS_TABLE_CLASS(klass)       (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_TABLE))
43 #define GTK_TABLE_GET_CLASS(obj)        (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_TABLE, GtkTableClass))
44
45
46 typedef struct _GtkTable              GtkTable;
47 typedef struct _GtkTablePrivate       GtkTablePrivate;
48 typedef struct _GtkTableClass         GtkTableClass;
49 typedef struct _GtkTableChild         GtkTableChild;
50 typedef struct _GtkTableRowCol        GtkTableRowCol;
51
52 struct _GtkTable
53 {
54   GtkContainer container;
55
56   /*< private >*/
57   GtkTablePrivate *priv;
58 };
59
60 struct _GtkTableClass
61 {
62   GtkContainerClass parent_class;
63
64   /* Padding for future expansion */
65   void (*_gtk_reserved1) (void);
66   void (*_gtk_reserved2) (void);
67   void (*_gtk_reserved3) (void);
68   void (*_gtk_reserved4) (void);
69 };
70
71 struct _GtkTableChild
72 {
73   GtkWidget *widget;
74   guint16 left_attach;
75   guint16 right_attach;
76   guint16 top_attach;
77   guint16 bottom_attach;
78   guint16 xpadding;
79   guint16 ypadding;
80   guint xexpand : 1;
81   guint yexpand : 1;
82   guint xshrink : 1;
83   guint yshrink : 1;
84   guint xfill : 1;
85   guint yfill : 1;
86 };
87
88 struct _GtkTableRowCol
89 {
90   guint16 requisition;
91   guint16 allocation;
92   guint16 spacing;
93   guint need_expand : 1;
94   guint need_shrink : 1;
95   guint expand : 1;
96   guint shrink : 1;
97   guint empty : 1;
98 };
99
100
101 GType      gtk_table_get_type         (void) G_GNUC_CONST;
102 GDK_DEPRECATED_IN_3_4_FOR(GtkGrid)
103 GtkWidget* gtk_table_new              (guint            rows,
104                                        guint            columns,
105                                        gboolean         homogeneous);
106 GDK_DEPRECATED_IN_3_4_FOR(GtkGrid)
107 void       gtk_table_resize           (GtkTable        *table,
108                                        guint            rows,
109                                        guint            columns);
110 GDK_DEPRECATED_IN_3_4_FOR(GtkGrid)
111 void       gtk_table_attach           (GtkTable        *table,
112                                        GtkWidget       *child,
113                                        guint            left_attach,
114                                        guint            right_attach,
115                                        guint            top_attach,
116                                        guint            bottom_attach,
117                                        GtkAttachOptions xoptions,
118                                        GtkAttachOptions yoptions,
119                                        guint            xpadding,
120                                        guint            ypadding);
121 GDK_DEPRECATED_IN_3_4_FOR(GtkGrid)
122 void       gtk_table_attach_defaults  (GtkTable        *table,
123                                        GtkWidget       *widget,
124                                        guint            left_attach,
125                                        guint            right_attach,
126                                        guint            top_attach,
127                                        guint            bottom_attach);
128 GDK_DEPRECATED_IN_3_4_FOR(GtkGrid)
129 void       gtk_table_set_row_spacing  (GtkTable        *table,
130                                        guint            row,
131                                        guint            spacing);
132 GDK_DEPRECATED_IN_3_4_FOR(GtkGrid)
133 guint      gtk_table_get_row_spacing  (GtkTable        *table,
134                                        guint            row);
135 GDK_DEPRECATED_IN_3_4_FOR(GtkGrid)
136 void       gtk_table_set_col_spacing  (GtkTable        *table,
137                                        guint            column,
138                                        guint            spacing);
139 GDK_DEPRECATED_IN_3_4_FOR(GtkGrid)
140 guint      gtk_table_get_col_spacing  (GtkTable        *table,
141                                        guint            column);
142 GDK_DEPRECATED_IN_3_4_FOR(GtkGrid)
143 void       gtk_table_set_row_spacings (GtkTable        *table,
144                                        guint            spacing);
145 GDK_DEPRECATED_IN_3_4_FOR(GtkGrid)
146 guint      gtk_table_get_default_row_spacing (GtkTable        *table);
147 GDK_DEPRECATED_IN_3_4_FOR(GtkGrid)
148 void       gtk_table_set_col_spacings (GtkTable        *table,
149                                        guint            spacing);
150 GDK_DEPRECATED_IN_3_4_FOR(GtkGrid)
151 guint      gtk_table_get_default_col_spacing (GtkTable        *table);
152 GDK_DEPRECATED_IN_3_4_FOR(GtkGrid)
153 void       gtk_table_set_homogeneous  (GtkTable        *table,
154                                        gboolean         homogeneous);
155 GDK_DEPRECATED_IN_3_4_FOR(GtkGrid)
156 gboolean   gtk_table_get_homogeneous  (GtkTable        *table);
157 GDK_DEPRECATED_IN_3_4_FOR(GtkGrid)
158 void       gtk_table_get_size         (GtkTable        *table,
159                                        guint           *rows,
160                                        guint           *columns);
161
162 G_END_DECLS
163
164 #endif /* __GTK_TABLE_H__ */