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

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

from qt import QFrame, QVBoxLayout
from kdeui import KTextEdit


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