##// END OF EJS Templates
Updated build scripts, now everything builds.
Updated build scripts, now everything builds.

File last commit:

r0:983744ce1d13 default
r9:2b3d939ebb38 default
Show More
example.py
15 lines | 331 B | text/x-python | PythonLexer
from PythonQt.QtGui import *
group = QGroupBox()
box = QVBoxLayout(group)
push1 = QPushButton(group)
box.addWidget(push1)
push2 = QPushButton(group)
box.addWidget(push2)
check = QCheckBox(group)
check.text = 'check me'
group.title = 'my title'
push1.text = 'press me'
push2.text = 'press me2'
box.addWidget(check)
group.show()