summaryrefslogtreecommitdiffstats
path: root/examples/pytde-sampler/qt_widgets/__init__.py
blob: a2da4db1c61d75afd5bbe975061b885cda3f9ed4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 PyTQt.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)