ApplicationWindow (Python) Tiffany Antopolski tiffany.antopolski@gmail.com 2012 Marta Maria Casetti mmcasetti@gmail.com 2012 Sous-classe GtkWindow avec la prise en charge de GtkApplication Luc Rebert, traduc@rebert.name 2011 Alain Lojewski, allomervan@gmail.com 2011-2012 Luc Pionchon pionchon.luc@gmail.com 2011 Bruno Brouard annoa.b@gmail.com 2011-12 Luis Menina liberforce@freeside.fr 2014 ApplicationWindow

The simplest GtkApplication Window which can support .

Code utilisé pour générer cet exemple from gi.repository import Gtk import sys # a Gtk ApplicationWindow class MyWindow(Gtk.ApplicationWindow): # constructor: the title is "Welcome to GNOME" and the window belongs # to the application app def __init__(self, app): Gtk.Window.__init__(self, title="Welcome to GNOME", application=app) class MyApplication(Gtk.Application): # constructor of the Gtk Application def __init__(self): Gtk.Application.__init__(self) # create and activate a MyWindow, with self (the MyApplication) as # application the window belongs to. # Note that the function in C activate() becomes do_activate() in Python def do_activate(self): win = MyWindow(self) # show the window and all its content # this line could go in the constructor of MyWindow as well win.show_all() # start up the application # Note that the function in C startup() becomes do_startup() in Python def do_startup(self): Gtk.Application.do_startup(self) # create and run the application, exit with the value returned by # running the program app = MyApplication() exit_status = app.run(sys.argv) sys.exit(exit_status)
Méthodes utiles pour un élément graphique Gtk.ApplicationWindow

set_default_size(200, 100) définit la taille par défaut de la fenêtre à une largeur de 200 et une hauteur de 100 ; si, au lieu d'un nombre positif, vous lui transmettez -1, vous obtenez la taille par défaut.

set_position(Gtk.WindowPosition.CENTER) place la fenêtre au centre de l'écran. Les autres options possibles sont : Gtk.WindowPosition.NONE, Gtk.WindowPosition.MOUSE, Gtk.WindowPosition.CENTER_ALWAYS, Gtk.WindowPosition.CENTER_ON_PARENT.

Références API

Dans cet exemple, les éléments suivants sont utilisés :

GtkApplication

GtkApplicationWindow