翻訳と辞書
Words near each other
・ Pythium paddicum
・ Pythium paroecandrum
・ Pythium perniciosum
・ Pythium rostratum
・ Pythium scleroteichum
・ Pythium spinosum
・ Pythium splendens
・ Pythium sulcatum
・ Pythium sylvaticum
・ Pyshma River
・ Pyshminsky
・ Pyshminsky District
・ Pysht Formation
・ Pysht River
・ Pysht, Washington
PySide
・ Pysio
・ Pyskowice
・ Pyskowice, Lower Silesian Voivodeship
・ PySol
・ Pyspread
・ Pyst
・ Pystynen
・ PySynth
・ Pyszczyn
・ Pyszczyn, Greater Poland Voivodeship
・ Pyszczyn, Kuyavian-Pomeranian Voivodeship
・ Pyszczyn, Lower Silesian Voivodeship
・ Pyszczynek
・ Pyszka


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

PySide : ウィキペディア英語版
PySide

PySide is a Python binding of the cross-platform GUI toolkit Qt. It is one of the alternatives to the standard library package Tkinter. Like Qt, PySide is free software. The project started out using ''Boost.Python'' from the Boost C++ Libraries for the bindings and later switched to the binding generator ''Shiboken'' to reduce the size of the binaries and the memory footprint.
PySide was released under the LGPL in August 2009 by Nokia,〔 the former owners of the Qt toolkit, after Nokia failed to reach an agreement with PyQt developers Riverbank Computing to change its licensing terms to include LGPL as an alternative license.
PySide supports Linux/X11, Mac OS X, Windows and Maemo. Support for Android and Symbian is currently being added by the PySide community.
==Hello world example==

import sys
from PySide import QtGui
app = QtGui.QApplication(sys.argv)
win = QtGui.QWidget()
win.resize(320, 240)
win.setWindowTitle("Hello, World!")
win.show()
sys.exit(app.exec_())


抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「PySide」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.