summaryrefslogtreecommitdiffstats
path: root/examples/pykde-sampler/dialogs/about/__init__.py
blob: ea1ad17927af6905bc9073dcf3a5268f12e099e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
labelText = 'About Dialogs'
iconName = 'info'

helpText = ("KDE has multiple dialog types to display information about your "
"applicaiton and environment.  They provide a tremendous amount of functionality "
"and consistency.  They're easy to use, and they're good for the environment!")

from 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)