gtk :: GtkShadowType
Used to change the appearance of an outline typically provided by a GtkFrame. @https://developer.gnome.org/gtk3/3.2/gtk3-Standard-Enumerations.html#GtkShadowType
gtk :: GtkShadowType :: defaultinit
gtk :: GtkShadowType :: etched_id
The outline has a sunken 3d appearance.gtk :: GtkShadowType :: etched_out
The outline has a raised 3d appearance.gtk :: GtkShadowType :: shadow_out
The outline is bevelled outwards like a button.gtk $ GtkShadowType :: 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 :: GtkShadowType :: defaultinit
core :: Object :: defaultinit
core :: Pointer :: defaultinit
gtk :: GtkShadowType :: etched_id
The outline has a sunken 3d appearance.gtk :: GtkShadowType :: etched_out
The outline has a raised 3d appearance.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 :: GtkShadowType :: shadow_out
The outline is bevelled outwards like a button.
#enum GtkShadowType
#Used to change the appearance of an outline typically provided by a GtkFrame.
#@https://developer.gnome.org/gtk3/3.2/gtk3-Standard-Enumerations.html#GtkShadowType
extern class GtkShadowType `{GtkShadowType`}
	#No outline.
	new none `{ return GTK_SHADOW_NONE; `}
	#The outline is bevelled inwards.
	new shadow_in `{ return GTK_SHADOW_IN; `}
	#The outline is bevelled outwards like a button.
	new shadow_out `{ return GTK_SHADOW_OUT; `}
	#The outline has a sunken 3d appearance.
	new etched_id `{ return GTK_SHADOW_ETCHED_IN; `}
	#The outline has a raised 3d appearance.
	new etched_out `{ return GTK_SHADOW_ETCHED_OUT; `}
end
					lib/gtk/v3_4/gtk_enums.nit:236,1--254,3