2012-03-12から1日間の記事一覧

PyQt QListWidget サンプル

シグナルはとりあえず後回し 量が増えると勝手にスクロールバーが出る #!/usr/bin/python # -*- coding: utf-8 -*- import sys from PyQt4 import QtGui, QtCore class Example(QtGui.QWidget): def __init__(self): super(Example, self).__init__() self.i…

PyQt QComboBox サンプル

Tutorialからだいたいそのまま #!/usr/bin/python # -*- coding: utf-8 -*- import sys from PyQt4 import QtGui, QtCore class Example(QtGui.QWidget): def __init__(self): super(Example, self).__init__() self.initUI() def initUI(self): combo = QtG…

PyQt scrollAreaサンプル

#!/usr/bin/python # -*- coding: utf-8 -*- import sys from PyQt4.QtCore import * from PyQt4.QtGui import * class Example(QMainWindow): def __init__(self, parent=None): super(Example, self).__init__(parent) self.setWindowTitle("Main Window")…