📄 gtksizegroup.sgml
字号:
<!-- ##### 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 widgetstogether so they all request the same amount of space. This istypically useful when you want a column of widgets to have the samesize, but you can't use a #GtkTable widget.</para><para>In detail, the size requested for each widget in a #GtkSizeGroup isthe maximum of the sizes that would have been requested for eachwidget in the size group if they were not in the size group. The modeof the size group (see gtk_size_group_set_mode()) determines whetherthis applies to the horizontal size, the vertical size, or both sizes.</para><para>Note that size groups only affect the amount of space requested, notthe size that the widgets finally receive. If you want the widgets ina #GtkSizeGroup to actually be the same size, you need to pack them insuch a way that they get the size they request and not more. Forexample, if you are packing your widgets into a table, you would notinclude 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 dropthe initial reference to the size group with g_object_unref(). If thewidgets in the size group are subsequently destroyed, then they willbe removed from the size group and drop their references on the sizegroup; when all widgets have been removed, the size group will befreed.</para><para>Widgets can be part of multiple size groups; GTK+ will compute thehorizontal size of a widget from the horizontal requisition of allwidgets that can be reached from the widget by a chain of size groupsof type %GTK_SIZE_GROUP_HORIZONTAL or %GTK_SIZE_GROUP_BOTH, and thevertical size from the vertical requisition of all widgets that can bereached from the widget by a chain of size groups of type%GTK_SIZE_GROUP_VERTICAL or %GTK_SIZE_GROUP_BOTH.</para><refsect2 id="GtkSizeGroup-BUILDER-UI"><title>GtkSizeGroup as GtkBuildable</title><para>Size groups can be specified in a UI definition by placing an<object> element with <literal>class="GtkSizeGroup"</literal>somewhere in the UI definition. The widgets that belong to thesize group are specified by a <widgets> element that maycontain multiple <widget> elements, one for each memberof the size group. The name attribute gives the id of the widget.</para><example><title>A UI definition fragment with GtkSizeGroup</title><programlisting><![CDATA[<object class="GtkSizeGroup"> <property name="mode">GTK_SIZE_GROUP_HORIZONTAL</property> <widgets> <widget name="radio1"/> <widget name="radio2"/> </widgets></object>]]></programlisting></example></refsect2><!-- ##### SECTION See_Also ##### --><para></para><!-- ##### SECTION Stability_Level ##### --><!-- ##### STRUCT GtkSizeGroup ##### --><para></para><!-- ##### ARG GtkSizeGroup:ignore-hidden ##### --><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: <!-- ##### FUNCTION gtk_size_group_get_mode ##### --><para></para>@size_group: @Returns: <!-- ##### FUNCTION gtk_size_group_set_ignore_hidden ##### --><para></para>@size_group: @ignore_hidden: <!-- ##### FUNCTION gtk_size_group_get_ignore_hidden ##### --><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: <!-- ##### FUNCTION gtk_size_group_get_widgets ##### --><para></para>@size_group: @Returns:
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -