Property definitions

gtk $ GtkCheckButton :: defaultinit
# Check box next to a label
extern class GtkCheckButton `{ GtkCheckButton * `}
	super GtkToggleButton

	new `{ return (GtkCheckButton *)gtk_check_button_new(); `}

	new with_label(lbl: CString) `{ return (GtkCheckButton *)gtk_check_button_new_with_label((gchar *)lbl); `}
end
lib/gtk/v3_4/gtk_widgets_ext.nit:272,1--279,3