Ardour  8.7-14-g57a6773833
gtktable.h
Go to the documentation of this file.
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 #if defined(GTK_DISABLE_SINGLE_INCLUDES) && !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
32 #error "Only <gtk/gtk.h> can be included directly."
33 #endif
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 _GtkTableClass GtkTableClass;
50 typedef struct _GtkTableChild GtkTableChild;
51 typedef struct _GtkTableRowCol GtkTableRowCol;
52 
53 struct _GtkTable
54 {
56 
57  GList *GSEAL (children);
60  guint16 GSEAL (nrows);
61  guint16 GSEAL (ncols);
62  guint16 GSEAL (column_spacing);
63  guint16 GSEAL (row_spacing);
64  guint GSEAL (homogeneous) : 1;
65 };
66 
68 {
70 };
71 
73 {
75  guint16 left_attach;
76  guint16 right_attach;
77  guint16 top_attach;
78  guint16 bottom_attach;
79  guint16 xpadding;
80  guint16 ypadding;
81  guint xexpand : 1;
82  guint yexpand : 1;
83  guint xshrink : 1;
84  guint yshrink : 1;
85  guint xfill : 1;
86  guint yfill : 1;
87 };
88 
90 {
91  guint16 requisition;
92  guint16 allocation;
93  guint16 spacing;
94  guint need_expand : 1;
95  guint need_shrink : 1;
96  guint expand : 1;
97  guint shrink : 1;
98  guint empty : 1;
99 };
100 
101 
102 GType gtk_table_get_type (void) G_GNUC_CONST;
104  guint columns,
105  gboolean homogeneous);
107  guint rows,
108  guint columns);
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);
120  GtkWidget *widget,
121  guint left_attach,
122  guint right_attach,
123  guint top_attach,
124  guint bottom_attach);
126  guint row,
127  guint spacing);
129  guint row);
131  guint column,
132  guint spacing);
134  guint column);
136  guint spacing);
139  guint spacing);
142  gboolean homogeneous);
145  guint *rows,
146  guint *columns);
147 
148 
149 G_END_DECLS
150 
151 #endif /* __GTK_TABLE_H__ */
GtkAttachOptions
Definition: gtkenums.h:80
void gtk_table_set_col_spacing(GtkTable *table, guint column, guint spacing)
guint gtk_table_get_row_spacing(GtkTable *table, guint row)
gboolean gtk_table_get_homogeneous(GtkTable *table)
void gtk_table_attach_defaults(GtkTable *table, GtkWidget *widget, guint left_attach, guint right_attach, guint top_attach, guint bottom_attach)
guint gtk_table_get_col_spacing(GtkTable *table, guint column)
void gtk_table_set_col_spacings(GtkTable *table, guint spacing)
GtkWidget * gtk_table_new(guint rows, guint columns, gboolean homogeneous)
void gtk_table_get_size(GtkTable *table, guint *rows, guint *columns)
guint gtk_table_get_default_col_spacing(GtkTable *table)
void gtk_table_attach(GtkTable *table, GtkWidget *child, guint left_attach, guint right_attach, guint top_attach, guint bottom_attach, GtkAttachOptions xoptions, GtkAttachOptions yoptions, guint xpadding, guint ypadding)
void gtk_table_set_row_spacings(GtkTable *table, guint spacing)
guint gtk_table_get_default_row_spacing(GtkTable *table)
void gtk_table_set_row_spacing(GtkTable *table, guint row, guint spacing)
void gtk_table_resize(GtkTable *table, guint rows, guint columns)
GType gtk_table_get_type(void) G_GNUC_CONST
void gtk_table_set_homogeneous(GtkTable *table, gboolean homogeneous)
guint xexpand
Definition: gtktable.h:81
guint16 ypadding
Definition: gtktable.h:80
guint16 bottom_attach
Definition: gtktable.h:78
guint16 left_attach
Definition: gtktable.h:75
guint yfill
Definition: gtktable.h:86
guint16 right_attach
Definition: gtktable.h:76
guint xfill
Definition: gtktable.h:85
guint xshrink
Definition: gtktable.h:83
guint16 top_attach
Definition: gtktable.h:77
guint yexpand
Definition: gtktable.h:82
GtkWidget * widget
Definition: gtktable.h:74
guint16 xpadding
Definition: gtktable.h:79
guint yshrink
Definition: gtktable.h:84
GtkContainerClass parent_class
Definition: gtktable.h:69
guint16 allocation
Definition: gtktable.h:92
guint expand
Definition: gtktable.h:96
guint shrink
Definition: gtktable.h:97
guint need_expand
Definition: gtktable.h:94
guint16 spacing
Definition: gtktable.h:93
guint need_shrink
Definition: gtktable.h:95
guint16 requisition
Definition: gtktable.h:91
GtkTableRowCol * GSEAL(cols)
guint16 GSEAL(ncols)
guint16 GSEAL(nrows)
GtkTableRowCol * GSEAL(rows)
GtkContainer container
Definition: gtktable.h:55
guint16 GSEAL(column_spacing)
guint16 GSEAL(row_spacing)
GList * GSEAL(children)