I can not find information or examples about "Gtk.Application" in Genie.
What is the correct way of using the Gtk.Application class in Genie?
Good day and thank you
EDIT: I do not know if this is the best way to do it, but my code is this:
// compila con valac --pkg gtk+-3.0 nombre_archivo.gs
uses Gtk
class MyApplication : Gtk.Application
def override activate ()
var window = new Gtk.ApplicationWindow (this)
window.title = "Welcome to GNOME"
window.set_default_size (400, 400)
window.show ()
init
new MyApplication ().run (args)
You're example looks like a pretty good start to me, but I think you should add an application ID and some application flags.
Three good resources are the GTK+3 Reference Manual's documentation for GtkApplication, the GNOME Wiki "HowDoI" section's page called "Using GtkApplication" and the GIO Reference Manual's documentation for GApplication. GApplication, or GLib.Application in the Vala binding, is the parent class for GtkApplication.
The "HowDoI" page advises:
Your
main()
function in Genie is:and that's about as simple as you can get.
The "HowDoI" page also advises:
You're not doing any start up tasks with your example, which is fine. So there is no need to use the
startup
signal, but you are using theactivate
signal by overriding a virtual function withdef override activate ()
.activate
is effectively the default signal when the Gtk.Application runs, but alternative signals can be emitted when the appropriateApplicatonFlags
are set. For example if theHANDLES_OPEN
flag is set then theopen
signal will be sent if there are unparsed command line arguments. The unparsed arguments are taken to be filenames or URIs. The default flags areFLAGS_NONE
and that will be made explicit in the example code later.The GTK+3 Reference Manual's section on GtkApplication states:
The application ID should be made up of at least two names separated by a dot. If the application is run a second time then the second instance's window becomes part of the first application, but the second application instance is then closed. This is the application uniqueness feature and can be disabled using
ApplicationFlags.NON_UNIQUE
. The application is registered on the session bus using the application ID. If you are using Linux you can use a tool like D-Feet to see the application appear on the session bus and also what happens when you run the application again (you need to refresh the view).Time for some code:
This adds an application ID and makes the
ApplicationFlags
explicit.