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"
24 #include <QHBoxLayout>
25 #include <QVBoxLayout>
26 #include <QResizeEvent>
27 #include <QScrollArea>
30 #include <kpushbutton.h>
32 #include <kapplication.h>
34 #include <kseparator.h>
36 #include <kstandardguiitem.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());
51 setWhatsThis(i18n("The currently loaded configuration module."));
53 QVBoxLayout
*top
= new QVBoxLayout(this);
56 top
->addWidget(_client
);
58 kDebug() << "Proxy Widget created" << endl
;
61 ProxyWidget::~ProxyWidget() {
65 QString
ProxyWidget::quickHelp() const {
67 return _client
->quickHelp();
72 const KAboutData
*ProxyWidget::aboutData() const {
73 return _client
->aboutData();