„WxPython“ – Versionsunterschied
Erscheinungsbild
[gesichtete Version] | [gesichtete Version] |
Inhalt gelöscht Inhalt hinzugefügt
K mehr Daten der Infobox von <!-- Wikidata --> mit deren Quellenangabe |
Aka (Diskussion | Beiträge) K https |
||
Zeile 13: | Zeile 13: | ||
| Kategorie = [[Klassenbibliothek]] |
| Kategorie = [[Klassenbibliothek]] |
||
| Sprache = |
| Sprache = |
||
| Website = [ |
| Website = [https://wxpython.org/ wxpython.org] |
||
| Beschreibung = |
| Beschreibung = |
||
}} |
}} |
||
Zeile 50: | Zeile 50: | ||
== Weblinks == |
== Weblinks == |
||
* [ |
* [https://www.wxpython.org/ Projekthomepage] |
||
* [ |
* [https://wiki.wxpython.org/ Wiki des wxPython-Projekts] |
||
* [ |
* [https://sourceforge.net/projects/wxpython wxPython] bei Sourceforge.net |
||
* [ |
* [https://wiki.wxpython.org/wxPythonPit%20Apps Liste von Software, die wxPython nutzen] |
||
== Einzelnachweise == |
== Einzelnachweise == |
Version vom 7. Februar 2021, 18:55 Uhr
wxPython
| |
---|---|
![]() | |
Basisdaten
| |
Entwickler | Robin Dunn Harri Pasanen |
Aktuelle Version | 4.1.1 (21. November 2020) |
Betriebssystem | plattformunabhängig |
Programmiersprache | C++, Python[1] |
Kategorie | Klassenbibliothek |
Lizenz | Freie-Software-Lizenz, GNU General Public License |
wxpython.org |
wxPython ist ein Wrapper des GUI-Toolkits wxWidgets für die Programmiersprache Python. Die Verwendung ist fast identisch mit der der C++-Version. wxPython stellt eine Alternative zu Tkinter dar, das zum Pythonpaket gehört und auf der Tk-API basiert. Wie Python und wxWidgets ist wxPython quellcodeoffen und plattformunabhängig.
Beispiel
Dieses Programm erzeugt ein Fenster mit dem Text "Hallo Welt!"
#!/usr/bin/env python
import wx
class TestFrame(wx.Frame):
def __init__(self, parent, title):
wx.Frame.__init__(self, parent, wx.ID_ANY, title=title)
text = wx.StaticText(self, label="Hallo Welt!")
app = wx.App(0)
frame = TestFrame(None, "Ein kleines Beispiel")
frame.Show()
app.MainLoop()
wxPython-basierende Programme
- BitTorrent, ist ein Programm für Filesharing über das BitTorrent-Protokoll
- Dropbox, Online-Speicher/Datensynchronisierungsdienst
- PlayOnLinux[2] und PlayOnMac,[3] grafische Konfigurationsprogramme für Wine mit dem Fokus auf Spielen
- GRASS GIS, ein freies Open-Source-Geo-Informationssystem
- Google Drive, Desktop-Client-Anwendung für Googles cloud-basierendes Speichersystem.[4]
Literatur
- Noel Rappin, Robin Dunn: wxPython in Action. 2006, ISBN 1-932394-62-1
- Cody Precord: wxPython 2.8 Application Development Cookbook 2010, ISBN 1-849511-78-0
Weblinks
- Projekthomepage
- Wiki des wxPython-Projekts
- wxPython bei Sourceforge.net
- Liste von Software, die wxPython nutzen
Einzelnachweise
- ↑ The wxpython Open Source Project on Open Hub: Languages Page. In: Open Hub. (abgerufen am 14. Juli 2018).
- ↑ PlayOnLinux in der englischsprachigen Wikipedia
- ↑ Mac gaming in der englischsprachigen Wikipedia
- ↑ Open source components and licenses. Google, abgerufen am 4. April 2013.