##// END OF EJS Templates
Fix __getattr__ problems.
Fix __getattr__ problems.

File last commit:

r10:21d959e02207
r207:99eb8a233276
Show More
example.py
15 lines | 331 B | text/x-python | PythonLexer
florianlink
syncing with my current work, updating to 1.2, see changelog...
r10 from PythonQt.QtGui import *
ezust
reorganized SVN tree into branches, tags and trunk...
r0
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()