ApplicationWindow (Vala) Tiffany Antopolski tiffany.antopolski@gmail.com 2012 Subclase GtkWindow con soporte de GtkApplication Daniel Mustieles daniel.mustieles@gmail.com 2011 - 2017 Nicolás Satragno nsatragno@gmail.com 2012 - 2013 Jorge González jorgegonz@svn.gnome.org 2011 ApplicationWindow

La ventana de GtkApplication más sencilla que puede soportar menús.

/* This is the application. */ public class MyApplication : Gtk.Application { /* Override the 'activate' signal of GLib.Application. */ protected override void activate () { /* Create the window of this application and show it. */ var window = new Gtk.ApplicationWindow (this); window.title = "Welcome to GNOME"; window.show (); } } /* main creates and runs the application. */ public int main (string[] args) { return new MyApplication ().run (args); }

En este ejemplo se usa lo siguiente:

Gtk.Application

Gtk.ApplicationWindow