qt-material-widgets/components/qtmaterialappbar_p.h

27 lines
500 B
C
Raw Normal View History

2017-10-05 11:31:52 +00:00
#ifndef QTMATERIALAPPBAR_P_H
#define QTMATERIALAPPBAR_P_H
2017-10-05 14:11:41 +00:00
#include <QColor>
2022-07-05 07:49:55 +00:00
#include <QtGlobal>
2017-10-05 14:11:41 +00:00
class QtMaterialAppBar;
class QtMaterialAppBarPrivate
{
Q_DISABLE_COPY(QtMaterialAppBarPrivate)
Q_DECLARE_PUBLIC(QtMaterialAppBar)
public:
QtMaterialAppBarPrivate(QtMaterialAppBar *q);
~QtMaterialAppBarPrivate();
void init();
QtMaterialAppBar *const q_ptr;
2022-07-05 07:49:55 +00:00
bool useThemeColors;
QColor foregroundColor;
QColor backgroundColor;
2017-10-05 14:11:41 +00:00
};
2022-07-05 07:49:55 +00:00
#endif // QTMATERIALAPPBAR_P_H