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 = 'X Windows Features'
|
||
|
iconName = 'kcmx'
|
||
|
|
||
|
helpText = """KDE and PyKDE allow interaction with the X Window system. Check
|
||
|
out the nifty samples below."""
|
||
|
|
||
13 years ago
|
from qt import TQFrame, TQLabel, TQVBoxLayout
|
||
14 years ago
|
|
||
13 years ago
|
class MainFrame(TQFrame):
|
||
14 years ago
|
def __init__(self, parent=None):
|
||
13 years ago
|
TQFrame.__init__(self, parent)
|
||
|
layout = TQVBoxLayout(self)
|
||
|
self.text = TQLabel(helpText, self)
|
||
14 years ago
|
layout.addWidget(self.text, 1)
|
||
|
|
||
|
|
||
|
|
||
|
|