2017-09-28 10:12:30 +00:00
|
|
|
#ifndef QTMATERIALTHEME_P_H
|
|
|
|
#define QTMATERIALTHEME_P_H
|
|
|
|
|
|
|
|
#include <QColor>
|
2022-07-05 07:49:55 +00:00
|
|
|
#include <QHash>
|
2017-09-28 10:12:30 +00:00
|
|
|
|
|
|
|
class QtMaterialTheme;
|
|
|
|
|
|
|
|
class QtMaterialThemePrivate
|
|
|
|
{
|
|
|
|
Q_DISABLE_COPY(QtMaterialThemePrivate)
|
|
|
|
Q_DECLARE_PUBLIC(QtMaterialTheme)
|
|
|
|
|
|
|
|
public:
|
|
|
|
QtMaterialThemePrivate(QtMaterialTheme *q);
|
|
|
|
~QtMaterialThemePrivate();
|
|
|
|
|
|
|
|
QColor rgba(int r, int g, int b, qreal a) const;
|
|
|
|
|
|
|
|
QtMaterialTheme *const q_ptr;
|
|
|
|
QHash<QString, QColor> colors;
|
|
|
|
};
|
|
|
|
|
2022-07-05 07:49:55 +00:00
|
|
|
#endif // QTMATERIALTHEME_P_H
|