forked from AuroraMiddleware/gtk
cf9f0b7741
Sat Oct 13 07:09:30 2001 Tim Janik <timj@gtk.org> * gtk/gtkbindings.c (gtk_binding_set_add_path): to compare pattern specs, use g_pattern_spec_equal() instead of direct field accesses. upon compressing two equal paths of the same type, the resulting priority has to be the maximum. * gtk/gtkenums.h (enum): take GTK_PATH_PRIO_MASK out of the GtkPathPriorityType enum and make it a macro.
121 lines
2.9 KiB
Plaintext
121 lines
2.9 KiB
Plaintext
<!-- ##### 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>
|
|
|
|
<!-- ##### STRUCT GtkSizeGroup ##### -->
|
|
<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:
|
|
|
|
|
|
<!-- ##### ARG GtkSizeGroup:mode ##### -->
|
|
<para>
|
|
|
|
</para>
|
|
|