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

112 lines
2.3 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/>.
*/
2016-12-25 22:28:00 +03:00
#ifndef DOCK_H
#define DOCK_H
#include <QObject>
#include <QMetaEnum>
#include <QMetaType>
namespace Latte {
class Dock {
Q_GADGET
2017-01-16 22:07:49 +03:00
2016-12-25 22:28:00 +03:00
public:
Dock() = delete;
~Dock() {}
2017-01-16 22:07:49 +03:00
2016-12-25 22:28:00 +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
};
Q_ENUM(Visibility)
2017-01-16 22:07:49 +03:00
2016-12-25 22:28:00 +03:00
enum Alignment {
Center = 0,
Left,
Right,
Top,
Bottom,
2017-01-04 19:57:41 +03:00
Justify = 10
2016-12-25 22:28:00 +03:00
};
Q_ENUM(Alignment)
2017-01-16 22:07:49 +03:00
enum SessionType {
DefaultSession = 0,
AlternativeSession
};
Q_ENUM(SessionType)
enum Modifier {
Shift = 0,
Ctrl,
Alt,
Meta
};
Q_ENUM(Modifier)
enum ClickAction {
LeftClick = 0,
MiddleClick,
RightClick
};
Q_ENUM(ClickAction)
enum TaskAction {
NoneAction = 0,
Close,
NewInstance,
ToggleMinimized,
2017-06-10 16:28:41 +03:00
CycleThroughTasks,
ToggleGrouping
};
Q_ENUM(TaskAction)
enum ActiveAppletIndicator {
NoneIndicator = 0,
InternalsIndicator = 1,
AllIndicator = 2
};
Q_ENUM(ActiveAppletIndicator)
2017-07-24 17:56:07 +03:00
enum LaunchersGroup {
UniqueLaunchers = 0,
2017-07-24 17:56:07 +03:00
LayoutLaunchers = 1,
GlobalLaunchers = 2
};
Q_ENUM(LaunchersGroup)
enum GlowGroup {
GlowOnlyOnActive = 0,
GlowAll = 1
};
Q_ENUM(GlowGroup)
2016-12-25 22:28:00 +03:00
};
}//end of namespace
#endif