summaryrefslogtreecommitdiffabout
path: root/pwmanager/pwmanager/getkeycardwnd.h
Unidiff
Diffstat (limited to 'pwmanager/pwmanager/getkeycardwnd.h') (more/less context) (show whitespace changes)
-rw-r--r--pwmanager/pwmanager/getkeycardwnd.h53
1 files changed, 53 insertions, 0 deletions
diff --git a/pwmanager/pwmanager/getkeycardwnd.h b/pwmanager/pwmanager/getkeycardwnd.h
new file mode 100644
index 0000000..fbe46ee
--- a/dev/null
+++ b/pwmanager/pwmanager/getkeycardwnd.h
@@ -0,0 +1,53 @@
1/***************************************************************************
2 * *
3 * copyright (C) 2003 by Michael Buesch *
4 * email: fsdeveloper@yahoo.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 GETKEYCARDWND_H
21#define GETKEYCARDWND_H
22
23#include <qvbox.h>
24#include <qhbox.h>
25#include <qdialog.h>
26#include <qlabel.h>
27#include <qpushbutton.h>
28#include <qevent.h>
29
30/** The equivalent to GetMasterPwWndImpl for chipcards */
31class GetKeyCardWnd : public QDialog
32{
33 Q_OBJECT
34public:
35 GetKeyCardWnd(QWidget *parent = 0, const char *name = 0,
36 bool modal = FALSE, WFlags f = 0);
37 ~GetKeyCardWnd();
38
39protected slots:
40 void okButton_slot();
41
42protected:
43 QVBox *vbox1;
44 QHBox *hbox1;
45 QLabel *text_label;
46 QPushButton *okButton;
47 QPushButton *cancelButton;
48
49protected:
50 void resizeEvent(QResizeEvent *);
51};
52
53#endif