158 lines
4.2 KiB
C++
158 lines
4.2 KiB
C++
/*
|
|
Copyright 2019 Harald Sitter <sitter@kde.org>
|
|
|
|
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) version 3 or any later version
|
|
accepted by the membership of KDE e.V. (or its successor approved
|
|
by the membership of KDE e.V.), which shall act as a proxy
|
|
defined in Section 14 of version 3 of the license.
|
|
|
|
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, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef DOODAD_H
|
|
#define DOODAD_H
|
|
|
|
#include <QColor>
|
|
#include <QVariant>
|
|
|
|
#include "xkbobject.h"
|
|
|
|
class Shape;
|
|
|
|
class Doodad : public XkbObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
#define D_P(type, name) \
|
|
private: \
|
|
Q_PROPERTY(type name READ auto_prop_##name CONSTANT) \
|
|
public: \
|
|
type auto_prop_##name () const { return doodad->any. name ; }
|
|
|
|
D_P(unsigned char, priority)
|
|
|
|
static Doodad *factorize(XkbDoodadPtr doodad, XkbDescPtr xkb, QObject *parent);
|
|
|
|
XkbDoodadPtr doodad = nullptr;
|
|
|
|
protected:
|
|
Doodad(XkbDoodadPtr doodad_, XkbDescPtr xkb_, QObject *parent = nullptr);
|
|
};
|
|
|
|
class ShapeDoodad : public Doodad
|
|
{
|
|
Q_OBJECT
|
|
|
|
#define SD_P(type, name) \
|
|
private: \
|
|
Q_PROPERTY(type name READ auto_prop_##name CONSTANT) \
|
|
public: \
|
|
type auto_prop_##name () const { return doodad->shape. name ; }
|
|
|
|
SD_P(short, top)
|
|
SD_P(short, left)
|
|
SD_P(short, angle)
|
|
|
|
Q_PROPERTY(Shape *shape MEMBER shape CONSTANT)
|
|
Q_PROPERTY(QColor color MEMBER color CONSTANT)
|
|
// Whether this shape is an outline only. If it is not it's solid/filled.
|
|
Q_PROPERTY(bool outlineOnly MEMBER outlineOnly CONSTANT)
|
|
|
|
public:
|
|
ShapeDoodad(XkbDoodadPtr doodad_, XkbDescPtr xkb_, QObject *parent = nullptr);
|
|
|
|
Shape *shape = nullptr;
|
|
QColor color;
|
|
bool outlineOnly = false;
|
|
};
|
|
|
|
class TextDoodad : public Doodad
|
|
{
|
|
Q_OBJECT
|
|
|
|
#define TD_P(type, name) \
|
|
private: \
|
|
Q_PROPERTY(type name READ auto_prop_##name CONSTANT) \
|
|
public: \
|
|
type auto_prop_##name () const { return doodad->text. name ; }
|
|
|
|
TD_P(short, top)
|
|
TD_P(short, left)
|
|
TD_P(short, angle)
|
|
TD_P(short, width)
|
|
TD_P(short, height)
|
|
TD_P(QString, text)
|
|
TD_P(QString, font)
|
|
public:
|
|
TextDoodad(XkbDoodadPtr doodad_, XkbDescPtr xkb_, QObject *parent = nullptr);
|
|
|
|
Shape *shape = nullptr;
|
|
};
|
|
|
|
// NB: This is technically kind of like a shape doodad, but in reality
|
|
// only top/left/angle are actually equal across doodad.indicator. and doodad.shape.
|
|
// As such there is no benefit in modelling the classes like there is inheritance
|
|
// because there really isn't. The actual shape definition is abstracted by
|
|
// Shape objects in either case.
|
|
// On the GUI side this can still be rendered like a shape, since it has a Shape*,
|
|
// it's just not specifically a shape doodad.
|
|
class IndicatorDoodad : public Doodad
|
|
{
|
|
Q_OBJECT
|
|
|
|
#define ID_P(type, name) \
|
|
private: \
|
|
Q_PROPERTY(type name READ auto_prop_##name CONSTANT) \
|
|
public: \
|
|
type auto_prop_##name () const { return doodad->indicator. name ; }
|
|
|
|
ID_P(short, top)
|
|
ID_P(short, left)
|
|
ID_P(short, angle)
|
|
|
|
Q_PROPERTY(Shape *shape MEMBER shape CONSTANT)
|
|
Q_PROPERTY(bool on MEMBER on NOTIFY onChanged)
|
|
public:
|
|
IndicatorDoodad(XkbDoodadPtr doodad_, XkbDescPtr xkb_, QObject *parent = nullptr);
|
|
|
|
Shape *shape = nullptr;
|
|
bool on = false;
|
|
|
|
signals:
|
|
void onChanged();
|
|
|
|
private slots:
|
|
void refreshState();
|
|
};
|
|
|
|
class LogoDoodad : public ShapeDoodad
|
|
{
|
|
Q_OBJECT
|
|
|
|
#define LD_P(type, name) \
|
|
private: \
|
|
Q_PROPERTY(type name READ auto_prop_##name CONSTANT) \
|
|
public: \
|
|
type auto_prop_##name () const { return doodad->logo. name ; }
|
|
|
|
LD_P(short, top)
|
|
LD_P(short, left)
|
|
LD_P(short, angle)
|
|
LD_P(QString, logo_name)
|
|
public:
|
|
LogoDoodad(XkbDoodadPtr doodad_, XkbDescPtr xkb_, QObject *parent = nullptr);
|
|
|
|
Shape *shape = nullptr;
|
|
};
|
|
|
|
#endif // DOODAD_H
|