mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-24 10:52:53 +00:00
99 lines
2.6 KiB
C++
99 lines
2.6 KiB
C++
/*
|
|
* Copyright (C) 2007, 2008, 2009, 2010 Ivan Cukic <ivan.cukic(at)kde.org>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2,
|
|
* or (at your option) any later version, as published by the Free
|
|
* Software Foundation
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details
|
|
*
|
|
* You should have received a copy of the GNU General Public
|
|
* License along with this program; if not, write to the
|
|
* Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#ifndef LANCELOTCONFIG_H
|
|
#define LANCELOTCONFIG_H
|
|
|
|
#include "ui_LancelotConfigBase.h"
|
|
|
|
#include <QButtonGroup>
|
|
#include <QHash>
|
|
#include <QMenu>
|
|
#include <QPushButton>
|
|
|
|
#include <KConfig>
|
|
#include <KConfigGroup>
|
|
#include <KPluginSelector>
|
|
|
|
class LancelotConfig: public QObject, public Ui::LancelotConfigBase {
|
|
Q_OBJECT
|
|
public:
|
|
LancelotConfig();
|
|
|
|
void setupUi(QWidget * widget);
|
|
|
|
void loadConfig();
|
|
void saveConfig();
|
|
|
|
enum ActivationMethod {
|
|
Click = 0,
|
|
Classic = 1,
|
|
NoClick = 2
|
|
};
|
|
|
|
ActivationMethod activationMethod() const;
|
|
void setActivationMethod(ActivationMethod method);
|
|
|
|
bool appbrowserColumnLimitted() const;
|
|
void setAppbrowserColumnLimitted(bool value);
|
|
|
|
bool appbrowserPopupSubmenus() const;
|
|
void setAppbrowserPopupSubmenus(bool value);
|
|
|
|
bool appbrowserReset() const;
|
|
void setAppbrowserReset(bool value);
|
|
|
|
bool enableUsageStatistics() const;
|
|
void setEnableUsageStatistics(bool value);
|
|
|
|
bool appNameFirst() const;
|
|
void setAppNameFirst(bool value);
|
|
|
|
QStringList searchHistory() const;
|
|
void setSearchHistory(const QStringList & history);
|
|
|
|
QButtonGroup * qbgActivationMethod;
|
|
QButtonGroup * qbgAppbrowserColumnLimit;
|
|
|
|
QHash < QPushButton *, QString > systemButtonActions;
|
|
QMenu * systemButtonActionsMenu;
|
|
QPushButton * clickedSystemButton;
|
|
|
|
KConfig m_config;
|
|
KConfigGroup m_mainConfig;
|
|
|
|
signals:
|
|
void systemButtonChanged();
|
|
void searchPluginChanged();
|
|
private Q_SLOTS:
|
|
void systemButtonClicked();
|
|
void systemButtonActionsMenuClicked();
|
|
|
|
void buttonSystemApplicationsEditClicked();
|
|
void buttonNewDocumentsEditClicked();
|
|
|
|
void setButtonData(QPushButton * button);
|
|
|
|
private:
|
|
KPluginSelector * m_searchPlugins;
|
|
};
|
|
|
|
#endif // LANCELOTCONFIG_H
|
|
|
|
|