gtk :: GtkSpinner
See: https://developer.gnome.org/gtk3/3.2/GtkSpinner.html
gtk :: GtkSpinner :: defaultinit
gtk :: GtkSpinner :: new
gtk :: GtkSpinner :: start
gtk :: GtkSpinner :: stop
gtk $ GtkSpinner :: SELF
Type of this instance, automatically specialized in every classcore :: 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 :: GtkSpinner :: 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.
			gtk :: GtkSpinner :: new
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
gtk :: GtkSpinner :: start
gtk :: GtkSpinner :: stop
# Show a spinner animation
# See: https://developer.gnome.org/gtk3/3.2/GtkSpinner.html
extern class GtkSpinner `{GtkSpinner *`}
	super GtkWidget
	new `{
		 return (GtkSpinner *)gtk_spinner_new();
	`}
	fun start `{
		return gtk_spinner_start(self);
	`}
	fun stop `{
		return gtk_spinner_stop(self);
	`}
end
					lib/gtk/v3_4/gtk_core.nit:1043,1--1059,3