Some fixes to connection manager.
[jenirok] / src / gui / emptyguiconfig.cpp
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 #include <QtGui/QVBoxLayout>
20 #include <QtGui/QLabel>
21 #include "emptyguiconfig.h"
22
23 EmptyGuiConfig::EmptyGuiConfig(QWidget* parent):
24 SourceGuiConfig(parent), EmptyCoreConfig()
25 {
26     QVBoxLayout* layout = new QVBoxLayout(this);
27     QLabel* info = new QLabel(tr("Selected phonebook has no settings to configure."));
28     info->setAlignment(Qt::AlignCenter);
29     info->setWordWrap(true);
30     layout->addWidget(info);
31     setLayout(layout);
32 }
33
34 EmptyGuiConfig::~EmptyGuiConfig()
35 {
36 }
37
38 void EmptyGuiConfig::save()
39 {
40 }