forked from AuroraMiddleware/gtk
372c4d2627
1999-09-22 Damon Chaplin <damon@karuna.freeserve.co.uk> * gtk/tmpl/*.sgml: ran make templates, to fix problems with structs. * gtk/gtk-sections.txt: rearranged GtkCombo section. * gtk/tmpl/gtkvseparator.sgml: * gtk/tmpl/gtkhseparator.sgml: * gtk/tmpl/gtkgc.sgml: * gtk/tmpl/gtkfeatures.sgml: * gtk/tmpl/gtktipsquery.sgml: * gtk/tmpl/gtkitem.sgml: * gtk/tmpl/gtkinvisible.sgml: * gtk/tmpl/gtkgamma.sgml: * gtk/tmpl/gtkdata.sgml: * gtk/tmpl/gtkcurve.sgml: * gtk/tmpl/gtkcombo.sgml: * gtk/tmpl/gtkaccellabel.sgml: documented.
60 lines
1.5 KiB
Plaintext
60 lines
1.5 KiB
Plaintext
<!-- ##### SECTION Title ##### -->
|
|
GtkCheckButton
|
|
|
|
<!-- ##### SECTION Short_Description ##### -->
|
|
create widgets with a discrete toggle button.
|
|
|
|
<!-- ##### SECTION Long_Description ##### -->
|
|
<para>
|
|
A #GtkCheckButton places a discrete #GtkToggleButton next to a widget, (usually a #GtkLabel). See the section on #GtkToggleButton widgets for more information about toggle/check buttons.
|
|
</para>
|
|
<para>
|
|
The important signal ('toggled') is also inherited from #GtkToggleButton.
|
|
</para>
|
|
|
|
<!-- ##### SECTION See_Also ##### -->
|
|
<para>
|
|
<variablelist>
|
|
<varlistentry>
|
|
<term>#GtkCheckMenuItem</term>
|
|
<listitem><para>add check buttons to your menus.</para></listitem>
|
|
</varlistentry>
|
|
<varlistentry>
|
|
<term>#GtkButton</term>
|
|
<listitem><para>a more general button.</para></listitem>
|
|
</varlistentry>
|
|
<varlistentry>
|
|
<term>#GtkToggleButton</term>
|
|
<listitem><para>#GtkCheckButton's parent.</para></listitem>
|
|
</varlistentry>
|
|
<varlistentry>
|
|
<term>#GtkRadioButton</term>
|
|
<listitem><para>group check buttons together.</para></listitem>
|
|
</varlistentry>
|
|
</variablelist>
|
|
</para>
|
|
|
|
<!-- ##### STRUCT GtkCheckButton ##### -->
|
|
<para>
|
|
<structfield>toggle_button</structfield> is a #GtkToggleButton representing the actual toggle button that composes the check button.
|
|
</para>
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_check_button_new ##### -->
|
|
<para>
|
|
Creates a new #GtkCheckButton.
|
|
</para>
|
|
|
|
@Returns: a #GtkWidget.
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_check_button_new_with_label ##### -->
|
|
<para>
|
|
Creates a new #GtkCheckButton with a #GtkLabel to the right of it.
|
|
</para>
|
|
|
|
@label: the text for the check button.
|
|
@Returns: a #GtkWidget.
|
|
|
|
|