qt-material-widgets/components/lib/theme_p.h

28 lines
382 B
C
Raw Normal View History

2022-02-17 15:17:19 +00:00
#ifndef THEME_P_H
#define THEME_P_H
#include <QHash>
#include <QColor>
namespace md
{
class Theme;
class ThemePrivate
{
Q_DISABLE_COPY(ThemePrivate)
Q_DECLARE_PUBLIC(Theme)
public:
ThemePrivate(Theme *q);
~ThemePrivate();
QColor rgba(int r, int g, int b, qreal a) const;
Theme *const q_ptr;
QHash<QString, QColor> colors;
};
}
2022-02-17 15:17:19 +00:00
#endif // THEME_P_H