diff options
author | Timothy Pearson <[email protected]> | 2011-12-05 00:17:19 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-05 00:17:19 -0600 |
commit | d070aee4c277d331e54b81ac2881977a8d8cb7c0 (patch) | |
tree | 81fc5f857e6f4eafafd48f2ae70a787e02d10c5d /examples/pytde-sampler/dialogs/passwd.py | |
parent | 01bd7e2ffdc3caa95228e03ad501d778b05270a9 (diff) | |
download | pytde-d070aee4c277d331e54b81ac2881977a8d8cb7c0.tar.gz pytde-d070aee4c277d331e54b81ac2881977a8d8cb7c0.zip |
Finish pykde to pytde rename
Diffstat (limited to 'examples/pytde-sampler/dialogs/passwd.py')
-rw-r--r-- | examples/pytde-sampler/dialogs/passwd.py | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/examples/pytde-sampler/dialogs/passwd.py b/examples/pytde-sampler/dialogs/passwd.py new file mode 100644 index 0000000..3081c3d --- /dev/null +++ b/examples/pytde-sampler/dialogs/passwd.py @@ -0,0 +1,34 @@ +from qt import TQFrame, TQHBoxLayout, TQVBoxLayout, SIGNAL +from tdecore import i18n +from tdeui import KPushButton, KPasswordDialog, KTextEdit + +iconName = 'password' +labelText = 'KPasswordDialog' +docParts = ('tdeui', 'KPasswordDialog') +helpText = ("KDE provides two variations on the password dialog. The simple " + "one shown here prompts for a password. The other type allows the " + "user to enter a new password, and provides a second field to " + "confirm the first entry.") + + +class MainFrame(TQFrame): + def __init__(self, parent=None): + TQFrame.__init__(self, parent) + self.button = KPushButton(i18n('Show Password Dialog'), self) + self.help = KTextEdit(helpText, '', self) + layout = TQVBoxLayout(self, 4) + layout.addWidget(self.help) + buttonlayout = TQHBoxLayout(layout, 4) + buttonlayout.addWidget(self.button) + buttonlayout.addStretch(1) + layout.addStretch(1) + self.connect(self.button, SIGNAL('clicked()'), self.showPasswordDialog) + + + def showPasswordDialog(self): + old = 'foo bar baz' + prompt = "Enter your super-secret password (enter anything, it's just an example):" + result = KPasswordDialog.getPassword(old, prompt) + if result == KPasswordDialog.Accepted: + pass + |