summaryrefslogtreecommitdiffstats
path: root/src/maingui/pwgui.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/maingui/pwgui.h')
-rw-r--r--src/maingui/pwgui.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/maingui/pwgui.h b/src/maingui/pwgui.h
new file mode 100644
index 0000000..fa3f465
--- /dev/null
+++ b/src/maingui/pwgui.h
@@ -0,0 +1,40 @@
+#ifndef AUTHENTICATION_H
+#define AUTHENTICATION_H
+
+#include <QDialog>
+#include <QDebug>
+
+namespace Ui
+{
+class PwGui;
+}
+
+class QTimer;
+
+class PwGui : public QDialog
+{
+ Q_OBJECT
+
+public:
+ explicit PwGui(QWidget *parent = 0);
+ ~PwGui();
+ const QString getUser() const;
+ const QString getPassword() const;
+ const bool isCancelled() const { return cancelled; };
+ int exec();
+
+protected:
+ void hideEvent(QHideEvent * e);
+ void keyPressEvent(QKeyEvent * e);
+
+private slots:
+ void on_accept();
+ void on_reject();
+
+private:
+ Ui::PwGui *ui;
+ void initializeUI(char *username);
+ bool cancelled;
+};
+
+#endif // AUTHENTICATION_H