Make a branch to make krunner Good Enough For Aaron™.
[kdebase/uwolfer.git] / apps / kinfocenter / dockcontainer.h
blob29c434397a0ede74e2def70a0f6db0899898efe2
1 /*
2 Copyright (c) 2000 Matthias Elter <elter@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
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 #ifndef __dockcontainer_h__
21 #define __dockcontainer_h__
23 #include <QStackedWidget>
24 #include <QLabel>
25 #include <kvbox.h>
27 class ConfigModule;
28 class ModuleWidget;
29 class ProxyWidget;
31 class DockContainer : public QStackedWidget
33 Q_OBJECT
35 public:
36 DockContainer(QWidget *parent=0);
37 virtual ~DockContainer();
39 void setBaseWidget(QWidget *widget);
40 QWidget *baseWidget() { return _basew; }
42 bool dockModule(ConfigModule *module);
43 ConfigModule *module() { return _module; }
45 public Q_SLOTS:
46 void removeModule();
48 protected Q_SLOTS:
49 void quickHelpChanged();
51 protected:
52 void deleteModule();
53 ProxyWidget* loadModule( ConfigModule *module );
55 Q_SIGNALS:
56 void newModule(const QString &name, const QString& docPath, const QString &quickhelp);
57 void changedModule(ConfigModule *module);
59 private:
60 QWidget *_basew;
61 QLabel *_busyw;
62 ModuleWidget *_modulew;
63 ConfigModule *_module;
67 #endif