procedure Gtk_New
(Check_Button : out Gtk_Check_Button;
Label : UTF8_String := ""); |
Create a check button.
if Label is null, then no widget is associated with the button, and
any widget can be added to the button (with Gtk.Container.Add).
|
procedure Gtk_New_With_Mnemonic
(Check_Button : out Gtk_Check_Button;
Label : UTF8_String); |
Create a new check button containing a label.
If characters in Label are preceded by an underscore, they are
underlined indicating that they represent a keyboard accelerator called
a mnemonic.
Pressing Alt and that key activates the checkbutton.
Label: The text of the button, with an underscore in front of the
mnemonic character
|
procedure Initialize_With_Mnemonic
(Check_Button : access Gtk_Check_Button_Record'Class;
Label : UTF8_String); |
Internal initialization function.
|
function Get_Type return Glib.GType; |
Return the internal value associated with a Gtk_Check_Button.
|