summaryrefslogtreecommitdiffstats
path: root/examples/pytde-sampler/basic_widgets/__init__.py
blob: 014db50f52b6fa85d3d9b4d0c26463f91d1965aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
labelText = 'Widgets'
iconName = 'about_kde'

helpText = """TDE provides a large set of basic widgets for application use.  
Select the children of this item to see for yourself."""

from PyTQt.qt import TQFrame, TQVBoxLayout
from tdeui import KTextEdit


class MainFrame(TQFrame):
    def __init__(self, parent=None):
        TQFrame.__init__(self, parent)
        layout = TQVBoxLayout(self)
        self.text = KTextEdit(helpText, '', self)
        layout.addWidget(self.text, 1)
        layout.addStretch(1)