普通按钮GtkButton
//创建普通按钮
GtkWidget* gtk_button_new (void);
GtkWidget* gtk_button_new_with_label (const gchar* label);
//设置按钮文本内容
void gtk_button_set_label (GtkButton* button, const gchar* label);
//获取按钮文本内容
const char* gtk_button_get_label (GtkButton* button);
//设置按钮焦点
void gtk_button_set_focus_on_click (GtkButton* button, gboolean focus_on_click);
//设置按钮带图标
void gtk_button_set_image (GtkButton* button, GtkWidget* i
//创建普通按钮
GtkWidget* gtk_button_new (void);
GtkWidget* gtk_button_new_with_label (const gchar* label);
//设置按钮文本内容
void gtk_button_set_label (GtkButton* button, const gchar* label);
//获取按钮文本内容
const char* gtk_button_get_label (GtkButton* button);
//设置按钮焦点
void gtk_button_set_focus_on_click (GtkButton* button, gboolean focus_on_click);
//设置按钮带图标
void gtk_button_set_image (GtkButton* button, GtkWidget* i