diff options
Diffstat (limited to 'examples/pytde-sampler/qt_widgets/__init__.py')
-rw-r--r-- | examples/pytde-sampler/qt_widgets/__init__.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/examples/pytde-sampler/qt_widgets/__init__.py b/examples/pytde-sampler/qt_widgets/__init__.py new file mode 100644 index 0000000..fdd6539 --- /dev/null +++ b/examples/pytde-sampler/qt_widgets/__init__.py @@ -0,0 +1,17 @@ +labelText = 'TQt Widgets' +iconName = 'designer' + +helpText = """TQt provides a rich set of widgets for application use. +Select the children of this item to see for yourself.""" + +from qt import TQFrame, TQVBoxLayout, SIGNAL +from tdeui import KTextEdit + + +class MainFrame(TQFrame): + def __init__(self, parent=None): + TQFrame.__init__(self, parent) + self.help = KTextEdit(helpText, '', self) + layout = TQVBoxLayout(self, 4) + layout.addWidget(self.help) + layout.addStretch(1) |