summaryrefslogtreecommitdiff
path: root/libopie2/opiesecurity/multiauthmainwindow.h
Unidiff
Diffstat (limited to 'libopie2/opiesecurity/multiauthmainwindow.h') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiesecurity/multiauthmainwindow.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/libopie2/opiesecurity/multiauthmainwindow.h b/libopie2/opiesecurity/multiauthmainwindow.h
index d5f53c6..626b8b3 100644
--- a/libopie2/opiesecurity/multiauthmainwindow.h
+++ b/libopie2/opiesecurity/multiauthmainwindow.h
@@ -38,12 +38,16 @@
38 38
39#include <qdialog.h> 39#include <qdialog.h>
40#include <qlayout.h> 40#include <qlayout.h>
41#include <qpushbutton.h> 41#include <qpushbutton.h>
42#include <qlabel.h> 42#include <qlabel.h>
43 43
44
45namespace Opie {
46namespace Security {
47
44/// Multiauth main window 48/// Multiauth main window
45/** 49/**
46 * This QDialog window displays some information and an exit button, 50 * This QDialog window displays some information and an exit button,
47 * and completely hides the desktop, preventing user interactions 51 * and completely hides the desktop, preventing user interactions
48 * with it. 52 * with it.
49 */ 53 */
@@ -65,10 +69,16 @@ class MultiauthMainWindow : public QDialog {
65 bool allowBypass; 69 bool allowBypass;
66 /// true when the authentication has been done successfully 70 /// true when the authentication has been done successfully
67 bool alreadyDone; 71 bool alreadyDone;
68 72
69 private slots: 73 private slots:
70 void proceed(); 74 void proceed();
75 private:
76 struct Private;
77 Private *d;
71}; 78};
72 79
80}
81}
82
73#endif // MULTIAUTHMAINWINDOW_H 83#endif // MULTIAUTHMAINWINDOW_H
74 84