Merged logout implementation to new refactored master
[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  * MEMBER FUNCTIONS AND SLOTS
53  ******************************************************************************/
54
55 public slots:
56
57     /**
58     * @brief Sets email address to emailEdit field
59     *
60     * @param email E-mail address to be set
61     */
62     void setEmailField(const QString &email);
63
64     /**
65     * @brief Clears line edits
66     *
67     */
68     void clearTextFields();
69
70 private slots:
71
72     /**
73     * @brief Private slot for connect button
74     *
75     */
76     void connectPressed();
77
78 signals:
79
80     /**
81     * @brief Signal for sending email and password to facebookauthentication class
82     *
83     * @param email E-mail
84     * @param password Password
85     */
86     void loginDialogDone(const QString &email, const QString &password);
87
88 /*******************************************************************************
89  * DATA MEMBERS
90  ******************************************************************************/
91
92 private:
93
94     QLineEdit *m_emailEdit; ///< Pointer to email line edit
95     QLineEdit *m_passwordEdit; ///< Pointer to password line edit
96 };
97
98
99
100 #endif // LOGINDIALOG_H