...
[jenirok] / src / gui / eniroguiconfig.h
1 /*
2  * This file is part of Jenirok.
3  *
4  * Jenirok is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * Jenirok is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with Jenirok.  If not, see <http://www.gnu.org/licenses/>.
16  *
17  */
18
19 #ifndef ENIROGUICONFIG_H
20 #define ENIROGUICONFIG_H
21
22 #include <QtGui/QLineEdit>
23 #include <QtGui/QVBoxLayout>
24 #include <QtGui/QLabel>
25 #include "buttonselector.h"
26 #include "enirocoreconfig.h"
27 #include "sourceguiconfig.h"
28
29 class EniroGuiConfig : public SourceGuiConfig, public EniroCoreConfig
30 {
31
32     Q_OBJECT
33
34 public:
35     EniroGuiConfig(QWidget* parent = 0);
36     virtual ~EniroGuiConfig();
37     virtual void save();
38
39 private slots:
40     void siteChanged(unsigned int index, QString const& text, QVariant const& value);
41
42 private:
43     void loadLayout(QString const& site);
44     QVBoxLayout* layout_;
45     QLineEdit* usernameInput_;
46     QLineEdit* passwordInput_;
47     ButtonSelector* siteSelector_;
48     QLabel* usernameLabel_;
49     QLabel* passwordLabel_;
50
51 };
52
53 #endif