qt-material-widgets/components/appbar_p.h

32 lines
461 B
C++

#ifndef APPBAR_P_H
#define APPBAR_P_H
#include <QtGlobal>
#include <QColor>
namespace md
{
class AppBar;
class AppBarPrivate
{
Q_DISABLE_COPY(AppBarPrivate)
Q_DECLARE_PUBLIC(AppBar)
public:
AppBarPrivate(AppBar *q);
~AppBarPrivate();
void init();
AppBar *const q_ptr;
bool useThemeColors;
QColor foregroundColor;
QColor backgroundColor;
};
}
#endif // APPBAR_P_H