blob: f05d7099d3535cda573d03366ba80de517321e05 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
labelText = 'Misc'
iconName = 'misc'
helpText = ("")
from PyTQt.tqt 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)
|