1
0
mirror of https://github.com/KDE/latte-dock.git synced 2024-12-26 23:21:37 +03:00
latte-dock/liblatte2/types.h

212 lines
4.1 KiB
C
Raw Normal View History

2017-01-03 01:05:30 +03:00
/*
* Copyright 2016 Smith AR <audoban@openmailbox.org>
* Michail Vourlakos <mvourlakos@gmail.com>
*
* This file is part of Latte-Dock
*
* Latte-Dock 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.
*
* Latte-Dock 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, see <http://www.gnu.org/licenses/>.
*/
#ifndef TYPES_H
#define TYPES_H
2016-12-25 22:28:00 +03:00
2018-12-02 03:05:52 +03:00
// Qt
2016-12-25 22:28:00 +03:00
#include <QObject>
#include <QMetaEnum>
#include <QMetaType>
namespace Latte {
class Types
2018-07-03 22:15:45 +03:00
{
2016-12-25 22:28:00 +03:00
Q_GADGET
2017-01-16 22:07:49 +03:00
2016-12-25 22:28:00 +03:00
public:
Types() = delete;
~Types() {}
2017-01-16 22:07:49 +03:00
enum ViewType
{
DockView = 0,
PanelView
};
Q_ENUM(ViewType);
2018-07-03 22:15:45 +03:00
enum Visibility
{
None = -1,
2016-12-25 22:28:00 +03:00
AlwaysVisible = 0,
AutoHide,
DodgeActive,
DodgeMaximized,
DodgeAllWindows,
WindowsGoBelow
2016-12-25 22:28:00 +03:00
};
2019-02-09 16:20:43 +03:00
Q_ENUM(Visibility);
2017-01-16 22:07:49 +03:00
2018-07-03 22:15:45 +03:00
enum Alignment
{
2016-12-25 22:28:00 +03:00
Center = 0,
Left,
Right,
Top,
Bottom,
2017-01-04 19:57:41 +03:00
Justify = 10
2016-12-25 22:28:00 +03:00
};
2019-02-09 16:20:43 +03:00
Q_ENUM(Alignment);
2017-01-16 22:07:49 +03:00
2018-07-03 22:15:45 +03:00
enum SessionType
{
DefaultSession = 0,
AlternativeSession
};
Q_ENUM(SessionType)
2018-07-03 22:15:45 +03:00
enum Modifier
{
Shift = 0,
Ctrl,
Alt,
Meta
};
2019-02-09 16:20:43 +03:00
Q_ENUM(Modifier);
2018-07-03 22:15:45 +03:00
enum ClickAction
{
LeftClick = 0,
MiddleClick,
RightClick
};
2019-02-09 16:20:43 +03:00
Q_ENUM(ClickAction);
2018-07-03 22:15:45 +03:00
enum TaskAction
{
NoneAction = 0,
Close,
NewInstance,
ToggleMinimized,
2017-06-10 16:28:41 +03:00
CycleThroughTasks,
ToggleGrouping,
PresentWindows,
PreviewWindows,
HighlightWindows,
PreviewAndHighlightWindows
};
2019-02-09 16:20:43 +03:00
Q_ENUM(TaskAction);
enum IndicatorStyle
{
LatteIndicator = 0,
PlasmaIndicator,
UnityIndicator
};
Q_ENUM(IndicatorStyle);
2018-07-03 22:15:45 +03:00
enum ActiveAppletIndicator
{
NoneIndicator = 0,
InternalsIndicator = 1,
AllIndicator = 2
};
Q_ENUM(ActiveAppletIndicator)
2017-07-24 17:56:07 +03:00
2018-07-03 22:15:45 +03:00
enum ActiveIndicatorType
{
2017-11-18 14:59:58 +03:00
LineIndicator = 0,
DotIndicator = 1
};
2019-02-09 16:20:43 +03:00
Q_ENUM(ActiveIndicatorType);
2017-11-18 14:59:58 +03:00
2018-07-03 22:15:45 +03:00
enum LaunchersGroup
{
UniqueLaunchers = 0,
2017-07-24 17:56:07 +03:00
LayoutLaunchers = 1,
GlobalLaunchers = 2
};
2019-02-09 16:20:43 +03:00
Q_ENUM(LaunchersGroup);
2018-07-03 22:15:45 +03:00
enum GlowGroup
{
2018-12-28 21:05:36 +03:00
GlowNone = -1,
GlowOnlyOnActive = 0,
GlowAll = 1
};
2019-02-09 16:20:43 +03:00
Q_ENUM(GlowGroup);
enum ShadowGroup
{
NoneAppletShadow = 0,
LockedAppletsShadow, /* DEPRECATED, apply shadow only to locked applets */
AllAppletsShadow
};
2019-02-09 16:20:43 +03:00
Q_ENUM(ShadowGroup);
enum ShadowColorGroup
{
DefaultColorShadow = 0,
ThemeColorShadow,
UserColorShadow
};
2019-02-09 16:20:43 +03:00
Q_ENUM(ShadowColorGroup);
enum ThemeColorsGroup
{
PlasmaThemeColors = 0,
ReverseThemeColors,
SmartThemeColors
};
Q_ENUM(ThemeColorsGroup);
enum WindowColorsGroup
{
NoneWindowColors = 0,
ActiveWindowColors,
TouchingWindowColors
};
Q_ENUM(WindowColorsGroup);
2018-07-03 22:15:45 +03:00
enum LayoutsMemoryUsage
{
SingleLayout = 0, /* a single Layout is loaded in each time */
MultipleLayouts /* multiple layouts are loaded on runtime,based on Activities and one central layout for the rest unassigned Activities */
};
2019-02-09 16:20:43 +03:00
Q_ENUM(LayoutsMemoryUsage);
2018-07-03 22:15:45 +03:00
enum MouseSensitivity
{
LowSensitivity = 0,
MediumSensitivity,
HighSensitivity
};
2019-02-09 16:20:43 +03:00
Q_ENUM(MouseSensitivity);
2018-07-03 22:15:45 +03:00
enum LatteConfigPage
{
LayoutPage = 0,
PreferencesPage
};
2019-02-09 16:20:43 +03:00
Q_ENUM(LatteConfigPage);
2018-12-26 00:57:41 +03:00
enum SettingsComplexity
{
BasicSettings = 0,
AdvancedSettings = 2,
ExpertSettings = 4
};
2019-02-09 16:20:43 +03:00
Q_ENUM(SettingsComplexity);
2016-12-25 22:28:00 +03:00
};
}//end of namespace
#endif