GtkCheckButton

GtkCheckButton

Synopsis

#include <gtk/gtk.h>

                    GtkCheckButton;
GtkWidget*          gtk_check_button_new                (void);
GtkWidget*          gtk_check_button_new_with_label     (const gchar *label);
GtkWidget*          gtk_check_button_new_with_mnemonic  (const gchar *label);

Description

Details

GtkCheckButton

typedef struct {
  GtkToggleButton toggle_button;
} GtkCheckButton;


gtk_check_button_new ()

GtkWidget*          gtk_check_button_new                (void);

Returns :


gtk_check_button_new_with_label ()

GtkWidget*          gtk_check_button_new_with_label     (const gchar *label);

label :

Returns :


gtk_check_button_new_with_mnemonic ()

GtkWidget*          gtk_check_button_new_with_mnemonic  (const gchar *label);

Creates a new GtkCheckButton containing a label. The label will be created using gtk_label_new_with_mnemonic(), so underscores in label indicate the mnemonic for the check button.

label :

The text of the button, with an underscore in front of the mnemonic character

Returns :

a new GtkCheckButton