You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pytde/examples/pykde-sampler/qt_widgets/__init__.py

18 lines
503 B

labelText = 'Qt Widgets'
iconName = 'designer'
helpText = """Qt provides a rich set of widgets for application use.
Select the children of this item to see for yourself."""
from qt import QFrame, QVBoxLayout, SIGNAL
from kdeui import KTextEdit
class MainFrame(QFrame):
def __init__(self, parent=None):
QFrame.__init__(self, parent)
self.help = KTextEdit(helpText, '', self)
layout = QVBoxLayout(self, 4)
layout.addWidget(self.help)
layout.addStretch(1)