qskinny/qmlexport/QskRgbValueQml.h

29 lines
603 B
C
Raw Normal View History

2020-10-29 19:26:16 +01:00
/******************************************************************************
* QSkinny - Copyright (C) 2016 Uwe Rathmann
* This file may be used under the terms of the QSkinny License, Version 1.0
*****************************************************************************/
#ifndef QSK_RGBVALUE_QML_H
#define QSK_RGBVALUE_QML_H
#include "QskQmlGlobal.h"
#include <QskRgbValue.h>
#include <qmetatype.h>
class QskRgbValueQml
{
Q_GADGET
public:
enum Enum
{
2022-04-22 08:21:20 +02:00
#define RGBVALUE( name, value ) name = value,
2020-10-29 19:26:16 +01:00
QSK_RGB_VALUES
2022-04-22 08:21:20 +02:00
#undef RGBVALUE
2020-10-29 19:26:16 +01:00
};
Q_ENUM( Enum )
};
#endif