summary refs log tree commit diff
path: root/include/dialogs/ReCaptcha.hpp
diff options
context:
space:
mode:
authorKonstantinos Sideris <sideris.konstantin@gmail.com>2018-07-17 16:37:25 +0300
committerKonstantinos Sideris <sideris.konstantin@gmail.com>2018-07-17 16:37:25 +0300
commit0e814da91c8e041897a4c3f7e6e9234bbc7c6f7a (patch)
tree21f655d30630fe77ba48d07e4b357e2b6c6a5730 /include/dialogs/ReCaptcha.hpp
parentMerge pull request #372 from bebehei/notification (diff)
downloadnheko-0e814da91c8e041897a4c3f7e6e9234bbc7c6f7a.tar.xz
Move all files under src/
Diffstat (limited to 'include/dialogs/ReCaptcha.hpp')
-rw-r--r--include/dialogs/ReCaptcha.hpp28
1 files changed, 0 insertions, 28 deletions
diff --git a/include/dialogs/ReCaptcha.hpp b/include/dialogs/ReCaptcha.hpp
deleted file mode 100644

index 5f47b0eb..00000000 --- a/include/dialogs/ReCaptcha.hpp +++ /dev/null
@@ -1,28 +0,0 @@ -#pragma once - -#include <QWidget> - -class FlatButton; -class RaisedButton; - -namespace dialogs { - -class ReCaptcha : public QWidget -{ - Q_OBJECT - -public: - ReCaptcha(const QString &session, QWidget *parent = nullptr); - -protected: - void paintEvent(QPaintEvent *event) override; - -signals: - void closing(); - -private: - FlatButton *openCaptchaBtn_; - RaisedButton *confirmBtn_; - RaisedButton *cancelBtn_; -}; -} // dialogs