summaryrefslogtreecommitdiff
path: root/docs/reference/gtk/tmpl/gtksizegroup.sgml
blob: 260eb7ae798998c58c56f5272becd8674492d982 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!-- ##### SECTION Title ##### -->
GtkSizeGroup

<!-- ##### SECTION Short_Description ##### -->
Grouping widgets so they request the same size

<!-- ##### SECTION Long_Description ##### -->
<para>
#GtkSizeGroup provides a mechanism for grouping a number of widgets
together so they all request the same amount of space.  This is
typically useful when you want a column of widgets to have the same
size, but you can't use a #GtkTable widget.
</para>
<para>
In detail, the size requested for each widget in a #GtkSizeGroup is
the maximum of the sizes that would have been requested for each
widget in the size group if they were not in the size group. The mode
of the size group (see gtk_size_group_set_mode()) determines whether
this applies to the horizontal size, the vertical size, or both sizes.
</para>
<para>
Note that size groups only affect the amount of space requested, not
the size that the widgets finally receive. If you want the widgets in
a #GtkSizeGroup to actually be the same size, you need to pack them in
such a way that they get the size they request and not more. For
example, if you are packing your widgets into a table, you would not
include the %GTK_FILL flag.
</para>
<para>
#GtkSizeGroup objects are referenced by each widget in the size group,
so once you have added all widgets to a #GtkSizeGroup, you can drop
the initial reference to the size group with g_object_unref(). If the
widgets in the size group are subsequently destroyed, then they will
be removed from the size group and drop their references on the size
group; when all widgets have been removed, the size group will be
freed.
</para>
<para>
Widgets can be part of multiple size groups; GTK+ will compute the
horizontal size of a widget from the horizontal requisition of all
widgets that can be reached from the widget by a chain of size groups
of type %GTK_SIZE_GROUP_HORIZONTAL or %GTK_SIZE_GROUP_BOTH, and the
vertical size from the vertical requisition of all widgets that can be
reached from the widget by a chain of size groups of type
%GTK_SIZE_GROUP_VERTICAL or %GTK_SIZE_GROUP_BOTH.
</para>

<!-- ##### SECTION See_Also ##### -->
<para>

</para>

<!-- ##### SECTION Stability_Level ##### -->


<!-- ##### STRUCT GtkSizeGroup ##### -->
<para>

</para>


<!-- ##### ARG GtkSizeGroup:mode ##### -->
<para>

</para>

<!-- ##### ENUM GtkSizeGroupMode ##### -->
<para>

</para>

@GTK_SIZE_GROUP_NONE: 
@GTK_SIZE_GROUP_HORIZONTAL: 
@GTK_SIZE_GROUP_VERTICAL: 
@GTK_SIZE_GROUP_BOTH: 

<!-- ##### FUNCTION gtk_size_group_new ##### -->
<para>

</para>

@mode: 
@Returns: 


<!-- ##### FUNCTION gtk_size_group_set_mode ##### -->
<para>

</para>

@size_group: 
@mode: 
<!-- # Unused Parameters # -->
@type: 


<!-- ##### FUNCTION gtk_size_group_get_mode ##### -->
<para>

</para>

@size_group: 
@Returns: 


<!-- ##### FUNCTION gtk_size_group_add_widget ##### -->
<para>

</para>

@size_group: 
@widget: 


<!-- ##### FUNCTION gtk_size_group_remove_widget ##### -->
<para>

</para>

@size_group: 
@widget: