diff options
Diffstat (limited to 'kcontrol/taskbar/kcmtaskbar.h')
-rw-r--r-- | kcontrol/taskbar/kcmtaskbar.h | 101 |
1 files changed, 101 insertions, 0 deletions
diff --git a/kcontrol/taskbar/kcmtaskbar.h b/kcontrol/taskbar/kcmtaskbar.h new file mode 100644 index 000000000..f14500a68 --- /dev/null +++ b/kcontrol/taskbar/kcmtaskbar.h @@ -0,0 +1,101 @@ +/* + * Copyright (c) 2000 Kurt Granroth <[email protected]> + * Copyright (c) 2000 Matthias Elter <[email protected]> + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * 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 + + -------------------------------------------------------------- + Additional changes: + - 2013/10/22 Michele Calgaro + * added support for display mode (Icons and Text, Text only, Icons only) + and removed "Show application icons" + */ + +#ifndef __kcmtaskbar_h__ +#define __kcmtaskbar_h__ + +#include <tqvaluelist.h> + +#include <tdecmodule.h> + +class TaskbarConfigUI; +class TaskBarSettings; + +class TaskbarAppearance +{ + public: + typedef TQValueList<TaskbarAppearance> List; + + TaskbarAppearance(); + TaskbarAppearance(TQString name, + bool drawButtons, + bool haloText, + bool showButtonOnHover, + TaskBarSettings* settingsObject); + + bool matchesSettings() const; + void alterSettings() const; + TQString name() const { return m_name; } + + private: + TQString m_name; + bool m_drawButtons; + bool m_haloText; + bool m_showButtonOnHover; + TaskBarSettings* m_settingsObject; +}; + +class TaskbarConfig : public TDECModule +{ + Q_OBJECT + +public: + TaskbarConfig(TQWidget *parent = 0, const char* name = 0, + const TQStringList &list = TQStringList()); + ~TaskbarConfig(); + +public slots: + void load(); + void save(); + void defaults(); + +protected slots: + void slotUpdateComboBox(); + void appearanceChanged(int); + void notChanged(); + void slotUpdateCustomColors(); + +private slots: + void slotReloadConfigurationFromGlobals(); + void slotEditGlobalConfiguration(); + void processLockouts(); + +private: + TaskbarAppearance::List m_appearances; + void updateAppearanceCombo(); + static const TQStringList& actionList(); + static TQStringList i18nActionList(); + static const TQStringList& groupModeList(); + static TQStringList i18nGroupModeList(); + static const TQStringList& showTaskStatesList(); + static TQStringList i18nShowTaskStatesList(); + static const TQStringList& displayIconsNText(); + static TQStringList i18ndisplayIconsNText(); + TaskbarConfigUI *m_widget; + TQString m_configFileName; + TaskBarSettings* m_settingsObject; + bool m_isGlobalConfig; +}; + +#endif |