Fix crash if key bindings specified in profile cannot be found. Improve
[personal-kdebase.git] / apps / kinfocenter / proxywidget.cpp
blob83e37de499582fd9a4573f1e341b80ee08305679
1 /*
2 Copyright (c) 1999 Matthias Hoelzer-Kluepfel <hoelzer@kde.org>
4 This program 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 2 of the License, or
7 (at your option) any later version.
9 This program 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.
14 You should have received a copy of the GNU General Public License along
15 with this program; if not, write to the Free Software Foundation, Inc.,
16 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 #include "proxywidget.h"
20 #include "global.h"
22 #include <QByteArray>
23 #include <QFrame>
24 #include <QHBoxLayout>
25 #include <QVBoxLayout>
26 #include <QResizeEvent>
27 #include <QScrollArea>
28 #include <QLabel>
30 #include <kpushbutton.h>
31 #include <klocale.h>
32 #include <kapplication.h>
33 #include <kcmodule.h>
34 #include <kseparator.h>
35 #include <kdialog.h>
36 #include <kstandardguiitem.h>
37 #include <kdebug.h>
39 #include <unistd.h> // for getuid()
40 #include "proxywidget.moc"
43 ProxyWidget::ProxyWidget(KCModule *client) :
44 QWidget(), _changed(false), _client(client) {
46 kDebug() << "Creating Proxy Widget..." << endl;
48 if (_client->quickHelp().isEmpty() == false )
49 setWhatsThis(_client->quickHelp());
50 else
51 setWhatsThis(i18n("The currently loaded configuration module."));
53 QVBoxLayout *top = new QVBoxLayout(this);
54 top->setMargin(0);
55 top->setSpacing(0);
56 top->addWidget(_client);
58 kDebug() << "Proxy Widget created" << endl;
61 ProxyWidget::~ProxyWidget() {
62 delete _client;
65 QString ProxyWidget::quickHelp() const {
66 if (_client)
67 return _client->quickHelp();
68 else
69 return "";
72 const KAboutData *ProxyWidget::aboutData() const {
73 return _client->aboutData();