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.
19 lines
436 B
19 lines
436 B
14 years ago
|
labelText = 'Icons'
|
||
|
iconName = 'icons'
|
||
|
|
||
|
|
||
|
helpText = ("KDE icons are nice. "
|
||
|
"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)
|