Make a branch to make krunner Good Enough For Aaron™.
[kdebase/uwolfer.git] / apps / kinfocenter / indexwidget.h
blob9e84bd5ab28c53c330a46cbc8eb24c53331a87fa
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 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 #ifndef __indexwidget_h__
20 #define __indexwidget_h__
22 #include "global.h"
24 #include <QStackedWidget>
26 class ConfigModuleList;
27 class ConfigModule;
28 class ModuleTreeView;
29 class ModuleIconView;
30 class Q3ListViewItem;
31 class IndexWidget : public QStackedWidget
33 Q_OBJECT
35 public:
36 IndexWidget(ConfigModuleList *list, QWidget *parent, const char *name=0);
37 virtual ~IndexWidget();
39 Q3ListViewItem *firstTreeViewItem();
40 public Q_SLOTS:
41 void makeVisible(ConfigModule *module);
42 void makeSelected(ConfigModule *module);
43 void activateView(IndexViewMode);
44 void reload();
46 protected Q_SLOTS:
47 void moduleSelected(ConfigModule *);
49 Q_SIGNALS:
50 void moduleActivated(ConfigModule *module);
51 void categorySelected(Q3ListViewItem *);
53 private:
54 ModuleTreeView *_tree;
55 ModuleIconView *_icon;
56 ConfigModuleList *_modules;
57 IndexViewMode viewMode;
60 #endif