2
* Copyright (C) 2007 Ivan Cukic <ivan.cukic(at)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 version 2,
6
* or (at your option) any later version, as published by the Free
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
15
* License along with this program; if not, write to the
16
* Free Software Foundation, Inc.,
17
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20
#ifndef LANCELOT_APPLET_CONFIG_H
21
#define LANCELOT_APPLET_CONFIG_H
23
#include <ui_LancelotAppletConfigBase.h>
25
class LancelotAppletConfig: public QObject, Ui::LancelotAppletConfigBase {
28
void setupUi(QWidget * widget);
30
bool showCategories() const;
31
bool showCategory(const QString & id) const;
32
bool clickActivation() const;
33
QStringList showingCategories(bool value) const;
36
void setShowCategories(bool value);
37
void setShowingCategories(QStringList ids, bool value);
39
void setShowCategory(const QString & id, bool value);
40
void setShowAllCategories(bool value);
42
void setClickActivation(bool value);
43
void setIcon(const QString & icon);
45
QButtonGroup * qbgIcons;
46
QButtonGroup * qbgChooseIcon;
47
QButtonGroup * qbgMenuActivation;
49
QMap < QString, QListWidgetItem * > categories;
50
QMap < QString, QListWidgetItem * > icons;
55
void iconItemClicked();
58
#endif /* LANCELOT_LAUNCHER_APPLET_CONFIG_H_ */