add more spacing
[personal-kdebase.git] / runtime / kcontrol / icons / main.h
blob066080d5b312ff23a0b50cc85804379af8c56a06
1 /*
2 * main.h
4 * Copyright (c) 1999 Matthias Hoelzer-Kluepfel <hoelzer@kde.org>
6 * Requires the Qt widget libraries, available at no cost at
7 * http://www.troll.no/
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
25 #ifndef __MAIN_H__
26 #define __MAIN_H__
29 #include <QTabWidget>
30 #include <kcmodule.h>
32 class IconModule : public KCModule
34 Q_OBJECT
36 public:
37 IconModule(QWidget *parent, const QVariantList &);
39 void load();
40 void save();
41 void defaults();
42 QString quickHelp() const;
44 protected Q_SLOTS:
45 void moduleChanged(bool state);
47 private:
48 QTabWidget *tab;
50 KCModule *tab1;
51 KCModule *tab2;
55 #endif