summaryrefslogtreecommitdiffabout
path: root/pwmanager/pwmanager/pwgenwndimpl.h
authorulf69 <ulf69>2004-09-15 17:53:22 (UTC)
committer ulf69 <ulf69>2004-09-15 17:53:22 (UTC)
commitd3925ba5bd25224bc4a60d3d6a107c464994a1ea (patch) (unidiff)
tree60f69da1d2b79ee3081e7ef5c09a46470ca6eda0 /pwmanager/pwmanager/pwgenwndimpl.h
parentce83a3479d23b9e8a59c745ccd0a0b14f64ef4e8 (diff)
downloadkdepimpi-d3925ba5bd25224bc4a60d3d6a107c464994a1ea.zip
kdepimpi-d3925ba5bd25224bc4a60d3d6a107c464994a1ea.tar.gz
kdepimpi-d3925ba5bd25224bc4a60d3d6a107c464994a1ea.tar.bz2
initial revision
Diffstat (limited to 'pwmanager/pwmanager/pwgenwndimpl.h') (more/less context) (ignore whitespace changes)
-rw-r--r--pwmanager/pwmanager/pwgenwndimpl.h54
1 files changed, 54 insertions, 0 deletions
diff --git a/pwmanager/pwmanager/pwgenwndimpl.h b/pwmanager/pwmanager/pwgenwndimpl.h
new file mode 100644
index 0000000..5c25643
--- a/dev/null
+++ b/pwmanager/pwmanager/pwgenwndimpl.h
@@ -0,0 +1,54 @@
1/***************************************************************************
2 * *
3 * copyright (C) 2004 by Michael Buesch *
4 * email: mbuesch@freenet.de *
5 * *
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License version 2 *
8 * as published by the Free Software Foundation. *
9 * *
10 ***************************************************************************/
11
12/***************************************************************************
13 * copyright (C) 2004 by Ulf Schenk
14 * This file is originaly based on version 1.0.1 of pwmanager
15 * and was modified to run on embedded devices that run microkde
16 *
17 * $Id$
18 **************************************************************************/
19
20#ifndef __PWGENWNDIMPL_H
21#define __PWGENWNDIMPL_H
22
23#include "pwgenwnd.h"
24
25class PwGenWndImpl : public pwGenWnd
26{
27public:
28 PwGenWndImpl(QWidget *parent = 0,
29 const char *name = 0,
30 bool modal = FALSE,
31 WFlags fl = 0);
32 ~PwGenWndImpl();
33
34 /** returns the generated password */
35 QString getPassword();
36
37protected slots:
38 /** generate button pressed */
39 void genButton_slot();
40 /** cancel button pressed */
41 void cancelButton_slot();
42
43protected:
44 /** start the internal generator */
45 bool startIntGen();
46 /** check all options of the internal generator */
47 bool optionsSanityIntGen();
48
49protected:
50 /** the generated password */
51 QString password;
52};
53
54#endif // __PWGENWNDIMPL_H