Make a branch to make krunner Good Enough For Aaron™.
[kdebase/uwolfer.git] / apps / konqueror / settings / performance / kcmperformance.h
blob3c7ca11dd57efd83a7b6af8956c788fb4b78211f
1 /*
2 * Copyright (c) 2003 Lubos Lunak <l.lunak@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.
19 #ifndef _KCM_PERFORMANCE_H
20 #define _KCM_PERFORMANCE_H
22 #include <kcmodule.h>
24 namespace KCMPerformance
27 class Konqueror;
28 class SystemWidget;
30 class Config
31 : public KCModule
33 Q_OBJECT
34 public:
35 Config( QWidget* parent_P, const QVariantList &args );
36 virtual void load();
37 virtual void save();
38 virtual void defaults();
39 private:
40 Konqueror* konqueror_widget;
41 SystemWidget* system_widget;
44 class KonquerorConfig
45 : public KCModule
47 Q_OBJECT
48 public:
49 KonquerorConfig( QWidget* parent_P, const QVariantList &args );
50 virtual void load();
51 virtual void save();
52 virtual void defaults();
53 private:
54 Konqueror* widget;
57 } // namespace
59 #endif