Single GTK window of this application

Property definitions

linux :: ui $ App :: native_window=
	# Single GTK window of this application
	var native_window: GtkWindow is lazy do
		var win = new GtkWindow(new GtkWindowType.toplevel)
		win.connect_destroy_signal_to_quit
		win.titlebar = native_header_bar
		win.add native_stack
		return win
	end
lib/linux/ui.nit:31,2--38,4