PyGTK est un module Python permettant la création d'interfaces graphiques utilisant la bibliothèque GTK 2. À partir de GTK 3, PyGObject remplace PyGTK dans ce rôle.
PyGTK
Développé par | James Henstridge |
---|---|
Dernière version | 2.24.0 () |
Dépôt | gitlab.gnome.org/Archive/pygtk |
Écrit en | Python |
Environnement | Multiplate-forme |
Type | module Python |
Licence | GNU LGPL |
Site web | www.pygtk.org |
Syntaxe
Le code Python ci-dessous produira une fenêtre de 200x200 pixels avec les mots Hello World à l'intérieur.
import gtk
def create_window():
window = gtk.Window()
window.set_default_size(200, 200)
window.connect("destroy", gtk.main_quit)
label = gtk.Label("Hello World")
window.add(label)
label.show()
window.show()
create_window()
gtk.main()
Logiciels qui ont utilisé PyGTK
- BitTorrent
- GIMP
- GNOME Sudoku
- Gwibber
- Jokosher
- Logithèque Ubuntu
- Puddletag
- PyMusique
- Tryton
- ROX Desktop
- Ubiquity
- Wing IDE
Voir aussi
Liens externes
Wikiwand in your browser!
Seamless Wikipedia browsing. On steroids.
Every time you click a link to Wikipedia, Wiktionary or Wikiquote in your browser's search results, it will show the modern Wikiwand interface.
Wikiwand extension is a five stars, simple, with minimum permission required to keep your browsing private, safe and transparent.