See: https://developer.gnome.org/gtk3/3.2/GtkSwitch.html
gtk :: GtkSwitch :: defaultinit
core :: Pointer :: address_is_null
Is the address behind this Object at NULL?core :: Object :: class_factory
Implementation used byget_class to create the specific class.
			gtk :: GtkSwitch :: defaultinit
core :: Pointer :: defaultinit
core :: Object :: defaultinit
gtk :: GtkWidget :: defaultinit
core :: Object :: is_same_instance
Return true ifself and other are the same instance (i.e. same identity).
			core :: Object :: is_same_serialized
Isself the same as other in a serialization context?
			core :: Object :: is_same_type
Return true ifself and other have the same dynamic type.
			core :: Object :: output_class_name
Display class name on stdout (debug only).gtk :: GtkWidget :: sensitive=
Sets the sensitivity of a widget. sensitive -> the user can interact with it.gtk :: GtkWidget :: set_size_request
Set the minimum dimension of this widgetgtk :: GtkWidget :: signal_connect
# A "light switch" style toggle
# See: https://developer.gnome.org/gtk3/3.2/GtkSwitch.html
extern class GtkSwitch `{GtkSwitch *`}
	super GtkWidget
	new `{
		 return (GtkSwitch *)gtk_switch_new();
	`}
	fun active: Bool `{
		return gtk_switch_get_active(self);
	`}
	fun active=(is_active: Bool) `{
		return gtk_switch_set_active(self, is_active);
	`}
end
					lib/gtk/v3_4/gtk_core.nit:1061,1--1077,3