1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
/* This file is part of the KDE project
* SPDX-FileCopyrightText: 2012 Arjen Hiemstra <ahiemstra@heimr.nl>
*
* SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef CONSTANTS_H
#define CONSTANTS_H
#include <QColor>
#include <QObject>
class Constants : public QObject
{
Q_OBJECT
Q_PROPERTY(int AnimationDuration READ animationDuration CONSTANT)
Q_PROPERTY(int GridRows READ gridRows NOTIFY gridSizeChanged)
Q_PROPERTY(int GridColumns READ gridColumns CONSTANT)
Q_PROPERTY(bool IsLandscape READ isLandscape NOTIFY gridSizeChanged)
Q_PROPERTY(qreal DefaultMargin READ defaultMargin NOTIFY gridSizeChanged)
Q_PROPERTY(qreal GridHeight READ gridHeight NOTIFY gridSizeChanged)
Q_PROPERTY(qreal GridWidth READ gridWidth NOTIFY gridSizeChanged)
Q_PROPERTY(qreal ToolbarButtonSize READ toolbarButtonSize NOTIFY gridSizeChanged)
Q_PROPERTY(qreal ToolbarHeight READ toolbarHeight NOTIFY gridSizeChanged)
Q_PROPERTY(qreal SmallFontSize READ smallFontSize NOTIFY gridSizeChanged)
Q_PROPERTY(qreal DefaultFontSize READ defaultFontSize NOTIFY gridSizeChanged)
Q_PROPERTY(qreal LargeFontSize READ largeFontSize NOTIFY gridSizeChanged)
Q_PROPERTY(qreal HugeFontSize READ hugeFontSize NOTIFY gridSizeChanged)
public:
explicit Constants(QObject *parent = nullptr);
int animationDuration() const;
qreal gridHeight() const;
qreal gridWidth() const;
qreal toolbarButtonSize() const;
qreal toolbarHeight() const;
int gridRows() const;
int gridColumns() const;
qreal defaultMargin() const;
qreal smallFontSize() const;
qreal defaultFontSize() const;
qreal largeFontSize() const;
qreal hugeFontSize() const;
bool isLandscape() const;
Q_INVOKABLE void setGridWidth(qreal width);
Q_INVOKABLE void setGridHeight(qreal height);
Q_SIGNALS:
void gridSizeChanged();
private:
qreal m_gridWidth;
qreal m_gridHeight;
qreal m_toolbarButtonSize;
qreal m_toolbarHeight;
};
#endif // CONSTANTS_H
|