##// END OF EJS Templates
reorganized SVN tree into branches, tags and trunk...
reorganized SVN tree into branches, tags and trunk git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@32 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r0:2978a919fc4e
r0:2978a919fc4e
Show More
example.py
15 lines | 325 B | text/x-python | PythonLexer
from PythonQt 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()