Check buttons inherit many properties and functions from the the
toggle buttons above, but look a little different. Rather than being
buttons with text inside them, they are small squares with the text to
the right of them. These are often used for toggling options on and
off in applications.
The two creation functions are similar to those of the normal button.
GtkWidget *gtk_check_button_new( void );
GtkWidget *gtk_check_button_new_with_label ( gchar *label ); |
The new_with_label function creates a check button with a label beside
it.
Checking the state of the check button is identical to that of the
toggle button.