add more spacing
[personal-kdebase.git] / workspace / kcontrol / input / core / themepage.h
blob3af90205c1e417940df1387569a1e1a42f065e1a
1 /*
2 * Copyright (C) 2003 Fredrik Höglund <fredrik@kde.org>
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License version 2 as published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program; see the file COPYING. If not, write to
15 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
16 * Boston, MA 02110-1301, USA.
19 #ifndef __THEMEPAGE_H
20 #define __THEMEPAGE_H
22 class K3ListView;
23 class Q3ListViewItem;
25 class ThemePage : public QWidget
27 Q_OBJECT
29 public:
30 explicit ThemePage( QWidget* parent = 0, const char* name = 0 );
31 ~ThemePage();
33 // Called by the KCM
34 void save();
35 void load();
36 void defaults();
38 Q_SIGNALS:
39 void changed( bool );
41 private Q_SLOTS:
42 void selectionChanged( Q3ListViewItem * );
44 private:
45 void insertThemes();
46 void fixCursorFile();
48 K3ListView *listview;
49 QString currentTheme, selectedTheme;
52 #endif // __THEMEPAGE_H
54 // vim: set noet ts=4 sw=4: