1/*
2 Copyright (c) 2008 Volker Krause <vkrause@kde.org>
3
4 This library is free software; you can redistribute it and/or modify it
5 under the terms of the GNU Library General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or (at your
7 option) any later version.
8
9 This library is distributed in the hope that it will be useful, but WITHOUT
10 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
12 License for more details.
13
14 You should have received a copy of the GNU Library General Public License
15 along with this library; see the file COPYING.LIB. If not, write to the
16 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 02110-1301, USA.
18*/
19
20#ifndef SERVERCONFIGMODULE_H
21#define SERVERCONFIGMODULE_H
22
23#include "ui_serverconfigmodule.h"
24#include "ui_servermysqlstorage.h"
25#include "ui_serverpsqlstorage.h"
26#include "ui_serverstoragedriver.h"
27
28#include <KCModule>
29
30class QComboBox;
31class QStackedWidget;
32
33class ServerConfigModule : public KCModule
34{
35 Q_OBJECT
36 public:
37 explicit ServerConfigModule( QWidget * parent, const QVariantList & args );
38
39 void load();
40 void save();
41 void defaults();
42
43 private slots:
44 void updateStatus();
45 void startStopClicked();
46 void restartClicked();
47 void selfTestClicked();
48 void driverChanged(int);
49
50 private:
51 Ui::ServerConfigModule ui;
52 Ui::StorageDriver ui_driver;
53 Ui::MySQLStoragePage ui_mysql;
54 Ui::PSQLStoragePage ui_psql;
55
56 QStackedWidget *m_stackWidget;
57 QWidget *m_mysqlWidget;
58 QWidget *m_psqlWidget;
59 QWidget *m_sqliteWidget;
60
61 QComboBox *m_driverBox;
62};
63
64#endif
65