qskinny/support/SkinnyShortcut.h
2019-01-07 09:13:53 +01:00

46 lines
1.1 KiB
C++

/******************************************************************************
* QSkinny - Copyright (C) 2016 Uwe Rathmann
* This file may be used under the terms of the 3-clause BSD License
*****************************************************************************/
#ifndef SKINNY_SHORTCUT_H_
#define SKINNY_SHORTCUT_H_
#include "SkinnyGlobal.h"
#include <QObject>
class SKINNY_EXPORT SkinnyShortcut : public QObject
{
Q_OBJECT
public:
enum Type
{
Quit = 1 << 0,
RotateSkin = 1 << 1,
ChangeFonts = 1 << 2,
DebugBackground = 1 << 3,
DebugStatistics = 1 << 4,
DebugShortcuts = DebugBackground | DebugStatistics,
AllShortcuts = Quit | RotateSkin | ChangeFonts | DebugBackground | DebugStatistics
};
Q_ENUM( Type )
Q_DECLARE_FLAGS( Types, Type )
static void enable( Types );
private:
SkinnyShortcut( QObject* parent = nullptr );
void rotateSkin();
void changeFonts( int increment );
void showBackground();
void debugStatistics();
};
Q_DECLARE_OPERATORS_FOR_FLAGS( SkinnyShortcut::Types )
#endif