The GTK element used to implement self

Property definitions

linux :: ui $ Control :: native
	# The GTK element used to implement `self`
	fun native: NATIVE is abstract
lib/linux/ui.nit:105,2--106,31

linux :: ui $ ListLayout :: native
	redef var native = new GtkScrolledWindow
lib/linux/ui.nit:190,2--41

linux :: ui $ Label :: native
	redef var native = new GtkLabel("")
lib/linux/ui.nit:269,2--36

linux :: ui $ CheckBox :: native
	redef var native = new GtkCheckButton
lib/linux/ui.nit:316,2--38

linux :: ui $ TextInput :: native
	redef var native = new GtkEntry
lib/linux/ui.nit:330,2--32

linux :: ui $ Button :: native
	redef var native = new GtkButton
lib/linux/ui.nit:242,2--33

linux :: ui $ VerticalLayout :: native
	redef var native = new GtkBox(new GtkOrientation.vertical, app.control_spacing)
lib/linux/ui.nit:175,2--80