labelText = 'Icons' iconName = 'icons' helpText = ("KDE icons are nice. " "Select the children of this item to see for yourself.") 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)