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 <QtGlobal>
|
|
|
|
#include <QColor>
|
|
|
|
|
2022-02-17 00:29:18 +00:00
|
|
|
namespace md
|
|
|
|
{
|
|
|
|
|
|
|
|
class AppBar;
|
2017-10-05 14:11:41 +00:00
|
|
|
|
2022-02-17 00:29:18 +00:00
|
|
|
class AppBarPrivate
|
2017-10-05 14:11:41 +00:00
|
|
|
{
|
2022-02-17 00:29:18 +00:00
|
|
|
Q_DISABLE_COPY(AppBarPrivate)
|
|
|
|
Q_DECLARE_PUBLIC(AppBar)
|
2017-10-05 14:11:41 +00:00
|
|
|
|
|
|
|
public:
|
2022-02-17 00:29:18 +00:00
|
|
|
AppBarPrivate(AppBar *q);
|
|
|
|
~AppBarPrivate();
|
2017-10-05 14:11:41 +00:00
|
|
|
|
|
|
|
void init();
|
|
|
|
|
2022-02-17 00:29:18 +00:00
|
|
|
AppBar *const q_ptr;
|
2017-10-05 14:11:41 +00:00
|
|
|
bool useThemeColors;
|
|
|
|
QColor foregroundColor;
|
|
|
|
QColor backgroundColor;
|
|
|
|
};
|
|
|
|
|
2022-02-17 00:29:18 +00:00
|
|
|
}
|
|
|
|
|
2017-10-05 11:31:52 +00:00
|
|
|
#endif // QTMATERIALAPPBAR_P_H
|