summaryrefslogtreecommitdiffstats
path: root/examples/pytde-sampler/dialogs/__init__.py
blob: 50d45229d6cb8f978e1b6cc3ed308a05d89125ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
labelText = 'Dialog Boxes'
iconName = 'launch'


helpText = ("TDE provides a convenient set of dialog boxes for application use. "
            "Select the children of this item to see for yourself.")


from PyTQt.tqt 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)