summaryrefslogtreecommitdiff
path: root/docs/reference/gtk/tmpl/gtkcontainer.sgml
blob: 458db11bc6ab939746815952f85d6120ed4d263d (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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
<!-- ##### SECTION Title ##### -->
GtkContainer

<!-- ##### SECTION Short_Description ##### -->
Base class for widgets which contain other widgets

<!-- ##### SECTION Long_Description ##### -->
<para>
A GTK+ user interface is constructed by nesting widgets inside widgets. Container widgets are the inner
nodes in the resulting tree of widgets: they contain other widgets. So, for example, you might have a 
#GtkWindow containing a #GtkFrame containing a GtkLabel. If you wanted an image instead of a textual label 
inside the frame, you might replace the #GtkLabel widget with a #GtkImage widget.
</para>
<para>
There are two major kinds of container widgets in GTK+. Both are subclasses of the abstract #GtkContainer 
base class.
</para>
<para>
The first type of container widget has a single child widget and derives from #GtkBin. These containers
are <firstterm>decorators</firstterm>, which add some kind of functionality to the child. For example, 
a #GtkButton makes its child into a clickable button; a #GtkFrame draws a frame around its child and 
a #GtkWindow places its child widget inside a top-level window.
</para>
<para>
The second type of container can have more than one child; its purpose is to manage 
<firstterm>layout</firstterm>. This means that these containers assign sizes and positions to their children. 
For example, a #GtkHBox arranges its children in a horizontal row, and a #GtkTable arranges the widgets it
contains in a two-dimensional grid. 
</para>
<para>
To fulfill its task, a layout container must negotiate the size requirements with its parent and its children.
This negotiation is carried out in two phases, <firstterm>size requisition</firstterm> and 
<firstterm>size allocation</firstterm>. 
</para>
<refsect2 id="size-requisition"><title>Size Requisition</title>
<para>
The size requisition of a widget is it's desired width and height. This is represented by a #GtkRequisition.
</para>
<para>
How a widget determines its desired size depends on the widget. A #GtkLabel, for example, requests enough space 
to display all its text. Container widgets generally base their size request on the requisitions of their 
children.  
</para>
<para>
The size requisition phase of the widget layout process operates top-down. It starts at a top-level widget,
typically a #GtkWindow. The top-level widget asks its child for its size requisition by calling
gtk_widget_size_request(). To determine its requisition, the child asks its own children for their requisitions 
and so on. Finally, the top-level widget will get a requisition back from its child. 
</para>
</refsect2>
<refsect2 id="size-allocation"><title>Size Allocation</title>
<para>
When the top-level widget has determined how much space its child would like to have, the second phase of the
size negotiation, size allocation, begins. Depending on its configuration (see gtk_window_set_resizable()), the 
top-level widget may be able to expand in order to satisfy the size request or it may have to ignore the size 
request and keep its fixed size. It then tells its child widget how much space it gets by calling 
gtk_widget_size_allocate(). The child widget divides the space among its children and tells each child how much 
space it got, and so on. Under normal circumstances, a #GtkWindow will always give its child the amount of space
the child requested.
</para>
<para>
A child's size allocation is represented by a #GtkAllocation. This struct contains not only a width and height, 
but also a position (i.e. X and Y coordinates), so that containers can tell their children not only how much
space they have gotten, but also where they are positioned inside the space available to the container. 
</para>
<para>
Widgets are required to honor the size allocation they receive; a size request is only a request, and widgets
must be able to cope with any size.
</para>
</refsect2>
<refsect2 id="child-properties"><title>Child properties</title>
<para>
<structname>GtkContainer</structname> introduces <firstterm>child 
properties</firstterm> - these are object properties that are not specific
to either the container or the contained widget, but rather to their relation.
Typical examples of child properties are the position or pack-type of a widget
which is contained in a #GtkBox.</para>
<para>
Use gtk_container_class_install_child_property() to install child properties 
for a container class and gtk_container_class_find_child_property() or
gtk_container_class_list_child_properties() to get information about existing
child properties.
</para>
<para>
To set the value of a child property, use gtk_container_child_set_property(), 
gtk_container_child_set() or gtk_container_child_set_valist(). 
To obtain the value of a child property, use 
gtk_container_child_get_property(), gtk_container_child_get() or
gtk_container_child_get_valist(). To emit notification about child property 
changes, use gtk_widget_child_notify().
</para>
</refsect2>

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

</para>

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


<!-- ##### STRUCT GtkContainer ##### -->
<para>

</para>


<!-- ##### SIGNAL GtkContainer::add ##### -->
<para>

</para>

@container: the object which received the signal.
@widget: 

<!-- ##### SIGNAL GtkContainer::check-resize ##### -->
<para>

</para>

@container: the object which received the signal.

<!-- ##### SIGNAL GtkContainer::remove ##### -->
<para>

</para>

@container: the object which received the signal.
@widget: 

<!-- ##### SIGNAL GtkContainer::set-focus-child ##### -->
<para>

</para>

@container: the object which received the signal.
@widget: 

<!-- ##### ARG GtkContainer:border-width ##### -->
<para>

</para>

<!-- ##### ARG GtkContainer:child ##### -->
<para>

</para>

<!-- ##### ARG GtkContainer:resize-mode ##### -->
<para>

</para>

<!-- ##### MACRO GTK_IS_RESIZE_CONTAINER ##### -->
<para>

</para>

@widget: 


<!-- ##### MACRO GTK_CONTAINER_WARN_INVALID_CHILD_PROPERTY_ID ##### -->
<para>

</para>

@object: 
@property_id: 
@pspec: 


<!-- ##### MACRO gtk_container_border_width ##### -->
<para>
Does the same as gtk_container_set_border_width().
</para>

@Deprecated: Use gtk_container_set_border_width() instead.


<!-- ##### FUNCTION gtk_container_add ##### -->
<para>

</para>

@container: 
@widget: 


<!-- ##### FUNCTION gtk_container_remove ##### -->
<para>

</para>

@container: 
@widget: 


<!-- ##### FUNCTION gtk_container_add_with_properties ##### -->
<para>

</para>

@container: 
@widget: 
@first_prop_name: 
@Varargs: 


<!-- ##### FUNCTION gtk_container_get_resize_mode ##### -->
<para>

</para>

@container: 
@Returns: 


<!-- ##### FUNCTION gtk_container_set_resize_mode ##### -->
<para>

</para>

@container: 
@resize_mode: 


<!-- ##### FUNCTION gtk_container_check_resize ##### -->
<para>

</para>

@container: 


<!-- ##### FUNCTION gtk_container_foreach ##### -->
<para>

</para>

@container: 
@callback: 
@callback_data: 


<!-- ##### FUNCTION gtk_container_foreach_full ##### -->
<para>

</para>

@container: 
@callback: 
@marshal: 
@callback_data: 
@notify: 
@Deprecated: Use gtk_container_foreach() instead.


<!-- ##### MACRO gtk_container_children ##### -->
<para>
Does the same as gtk_container_get_children().
</para>

@Returns: 
@Deprecated: Use gtk_container_get_children() instead.


<!-- ##### FUNCTION gtk_container_get_children ##### -->
<para>

</para>

@container: 
@Returns: 


<!-- ##### FUNCTION gtk_container_set_reallocate_redraws ##### -->
<para>

</para>

@container: 
@needs_redraws: 


<!-- ##### FUNCTION gtk_container_set_focus_child ##### -->
<para>

</para>

@container: 
@child: 


<!-- ##### FUNCTION gtk_container_get_focus_vadjustment ##### -->
<para>

</para>

@container: 
@Returns: 


<!-- ##### FUNCTION gtk_container_set_focus_vadjustment ##### -->
<para>

</para>

@container: 
@adjustment: 


<!-- ##### FUNCTION gtk_container_get_focus_hadjustment ##### -->
<para>

</para>

@container: 
@Returns: 


<!-- ##### FUNCTION gtk_container_set_focus_hadjustment ##### -->
<para>

</para>

@container: 
@adjustment: 


<!-- ##### FUNCTION gtk_container_resize_children ##### -->
<para>

</para>

@container: 


<!-- ##### FUNCTION gtk_container_child_type ##### -->
<para>

</para>

@container: 
@Returns: 


<!-- ##### FUNCTION gtk_container_child_get ##### -->
<para>

</para>

@container: 
@child: 
@first_prop_name: 
@Varargs: 


<!-- ##### FUNCTION gtk_container_child_set ##### -->
<para>

</para>

@container: 
@child: 
@first_prop_name: 
@Varargs: 


<!-- ##### FUNCTION gtk_container_child_get_property ##### -->
<para>

</para>

@container: 
@child: 
@property_name: 
@value: 


<!-- ##### FUNCTION gtk_container_child_set_property ##### -->
<para>

</para>

@container: 
@child: 
@property_name: 
@value: 


<!-- ##### FUNCTION gtk_container_child_get_valist ##### -->
<para>

</para>

@container: 
@child: 
@first_property_name: 
@var_args: 


<!-- ##### FUNCTION gtk_container_child_set_valist ##### -->
<para>

</para>

@container: 
@child: 
@first_property_name: 
@var_args: 


<!-- ##### FUNCTION gtk_container_forall ##### -->
<para>

</para>

@container: 
@callback: 
@callback_data: 


<!-- ##### FUNCTION gtk_container_get_border_width ##### -->
<para>

</para>

@container: 
@Returns: 


<!-- ##### FUNCTION gtk_container_set_border_width ##### -->
<para>

</para>

@container: 
@border_width: 


<!-- ##### FUNCTION gtk_container_propagate_expose ##### -->
<para>

</para>

@container: 
@child: 
@event: 


<!-- ##### FUNCTION gtk_container_get_focus_chain ##### -->
<para>

</para>

@container: 
@focusable_widgets: 
@Returns: 


<!-- ##### FUNCTION gtk_container_set_focus_chain ##### -->
<para>

</para>

@container: 
@focusable_widgets: 


<!-- ##### FUNCTION gtk_container_unset_focus_chain ##### -->
<para>

</para>

@container: 


<!-- ##### FUNCTION gtk_container_class_find_child_property ##### -->
<para>

</para>

@cclass: 
@property_name: 
@Returns: 


<!-- ##### FUNCTION gtk_container_class_install_child_property ##### -->
<para>

</para>

@cclass: 
@property_id: 
@pspec: 


<!-- ##### FUNCTION gtk_container_class_list_child_properties ##### -->
<para>

</para>

@cclass: 
@n_properties: 
@Returns: