Starts the internal setup of graphical and other stuff

Is called just before run

Property definitions

app $ App :: setup
	# Starts the internal setup of graphical and other stuff
	# Is called just before run
	fun setup do end
lib/app/app_base.nit:34,2--36,17

linux :: linux $ App :: setup
	redef fun setup
	do
		super

		on_create
		on_restore_state
		on_resume
	end
lib/linux/linux.nit:30,2--37,4

android :: native_app_glue $ App :: setup
	redef fun setup
	do
		var native_app_glue = native_app_glue
		native_app_glue.user_data = self

		set_as_cmd_handler(native_app_glue)
	end
lib/android/native_app_glue.nit:149,2--155,4

android :: nit_activity $ App :: setup
	redef fun setup do set_global_app
lib/android/nit_activity.nit:186,2--34

linux :: ui $ App :: setup
	redef fun setup do gtk_init
lib/linux/ui.nit:29,2--28

android :: service $ App :: setup
	redef fun setup
	do
		super

		# Call the dummy method to force their compilation in global compilation
		force_service_callbacks_in_c
	end
lib/android/service/service.nit:101,2--107,4