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