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.
30 lines
1006 B
30 lines
1006 B
13 years ago
|
iconName = 'about_kde'
|
||
|
labelText = 'KAboutApplication'
|
||
|
|
||
13 years ago
|
from qt import TQFrame, TQHBoxLayout, TQVBoxLayout, SIGNAL
|
||
13 years ago
|
from tdecore import i18n
|
||
|
from tdeui import KAboutApplication, KPushButton, KTextEdit
|
||
13 years ago
|
|
||
|
|
||
|
helpText = ("Typically available via the applications 'Help' menu, this "
|
||
|
"dialog presents the user with the applications About widget.")
|
||
|
|
||
13 years ago
|
docParts = ('tdeui', 'KAboutDialog')
|
||
13 years ago
|
|
||
13 years ago
|
class MainFrame(TQFrame):
|
||
13 years ago
|
def __init__(self, parent=None):
|
||
13 years ago
|
TQFrame.__init__(self, parent)
|
||
13 years ago
|
self.button = KPushButton(i18n('About Application'), self)
|
||
|
self.help = KTextEdit(helpText, '', self)
|
||
13 years ago
|
layout = TQVBoxLayout(self, 4)
|
||
13 years ago
|
layout.addWidget(self.help)
|
||
13 years ago
|
buttonlayout = TQHBoxLayout(layout, 4)
|
||
13 years ago
|
buttonlayout.addWidget(self.button)
|
||
|
buttonlayout.addStretch(1)
|
||
|
layout.addStretch(1)
|
||
|
self.connect(self.button, SIGNAL('clicked()'), self.showAboutDialog)
|
||
|
|
||
|
def showAboutDialog(self):
|
||
|
dlg = KAboutApplication(self)
|
||
|
dlg.show()
|