Emit error signal when login fails
[situare] / src / ui / logindialog.h
1 /*
2    Situare - A location system for Facebook
3    Copyright (C) 2010  Ixonos Plc. Authors:
4
5       Henri Lampela - henri.lampela@ixonos.com
6
7    Situare is free software; you can redistribute it and/or
8    modify it under the terms of the GNU General Public License
9    version 2 as published by the Free Software Foundation.
10
11    Situare is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with Situare; if not, write to the Free Software
18    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301,
19    USA.
20 */
21
22 #ifndef LOGINDIALOG_H
23 #define LOGINDIALOG_H
24
25 #include <QDialog>
26
27 class QDialogButtonBox;
28 class QLabel;
29 class QLineEdit;
30 class QPushButton;
31
32 /**
33 * @brief Custom login dialog. Email and password inserted into dialog will be forwarded to webview
34 *        Email and password will not be saved.
35 *
36 * @author Henri Lampela
37 */
38 class LoginDialog : public QDialog
39 {
40     Q_OBJECT
41
42 public:
43
44     /**
45     * @brief Default constructor
46     *
47     * @param parent Instance of parent widget
48     */
49     LoginDialog(QWidget *parent = 0);
50
51     /**
52     * @brief Gets email and password
53     *
54     * @param email Email address
55     * @param password Password
56     */
57     void userInput(QString &email, QString &password);
58
59 /*******************************************************************************
60  * MEMBER FUNCTIONS AND SLOTS
61  ******************************************************************************/
62
63 public slots:
64
65     /**
66     * @brief Sets email address to emailEdit field
67     *
68     * @param email E-mail address to be set
69     */
70     void setEmailField(const QString &email);
71
72     /**
73     * @brief Clears line edits
74     *
75     */
76     void clearTextFields();
77
78 /*******************************************************************************
79  * DATA MEMBERS
80  ******************************************************************************/
81
82 private:
83
84     QLineEdit *m_emailEdit; ///< Pointer to email line edit
85     QLineEdit *m_passwordEdit; ///< Pointer to password line edit
86 };
87
88 #endif // LOGINDIALOG_H