]> Pileus Git - ~andy/gtk/blob - gtk/gtktable.h
Add optional colord support to the CUPS print module
[~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 _GtkTablePrivate       GtkTablePrivate;
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   GtkTablePrivate *priv;
60 };
61
62 struct _GtkTableClass
63 {
64   GtkContainerClass parent_class;
65
66   /* Padding for future expansion */
67   void (*_gtk_reserved1) (void);
68   void (*_gtk_reserved2) (void);
69   void (*_gtk_reserved3) (void);
70   void (*_gtk_reserved4) (void);
71 };
72
73 struct _GtkTableChild
74 {
75   GtkWidget *widget;
76   guint16 left_attach;
77   guint16 right_attach;
78   guint16 top_attach;
79   guint16 bottom_attach;
80   guint16 xpadding;
81   guint16 ypadding;
82   guint xexpand : 1;
83   guint yexpand : 1;
84   guint xshrink : 1;
85   guint yshrink : 1;
86   guint xfill : 1;
87   guint yfill : 1;
88 };
89
90 struct _GtkTableRowCol
91 {
92   guint16 requisition;
93   guint16 allocation;
94   guint16 spacing;
95   guint need_expand : 1;
96   guint need_shrink : 1;
97   guint expand : 1;
98   guint shrink : 1;
99   guint empty : 1;
100 };
101
102
103 GType      gtk_table_get_type         (void) G_GNUC_CONST;
104 GtkWidget* gtk_table_new              (guint            rows,
105                                        guint            columns,
106                                        gboolean         homogeneous);
107 void       gtk_table_resize           (GtkTable        *table,
108                                        guint            rows,
109                                        guint            columns);
110 void       gtk_table_attach           (GtkTable        *table,
111                                        GtkWidget       *child,
112                                        guint            left_attach,
113                                        guint            right_attach,
114                                        guint            top_attach,
115                                        guint            bottom_attach,
116                                        GtkAttachOptions xoptions,
117                                        GtkAttachOptions yoptions,
118                                        guint            xpadding,
119                                        guint            ypadding);
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 void       gtk_table_set_row_spacing  (GtkTable        *table,
127                                        guint            row,
128                                        guint            spacing);
129 guint      gtk_table_get_row_spacing  (GtkTable        *table,
130                                        guint            row);
131 void       gtk_table_set_col_spacing  (GtkTable        *table,
132                                        guint            column,
133                                        guint            spacing);
134 guint      gtk_table_get_col_spacing  (GtkTable        *table,
135                                        guint            column);
136 void       gtk_table_set_row_spacings (GtkTable        *table,
137                                        guint            spacing);
138 guint      gtk_table_get_default_row_spacing (GtkTable        *table);
139 void       gtk_table_set_col_spacings (GtkTable        *table,
140                                        guint            spacing);
141 guint      gtk_table_get_default_col_spacing (GtkTable        *table);
142 void       gtk_table_set_homogeneous  (GtkTable        *table,
143                                        gboolean         homogeneous);
144 gboolean   gtk_table_get_homogeneous  (GtkTable        *table);
145 void       gtk_table_get_size         (GtkTable        *table,
146                                        guint           *rows,
147                                        guint           *columns);
148
149
150 G_END_DECLS
151
152 #endif /* __GTK_TABLE_H__ */