qtmaterialappbar_p.h 552 B

123456789101112131415161718192021222324252627
  1. #ifndef QTMATERIALAPPBAR_P_H
  2. #define QTMATERIALAPPBAR_P_H
  3. #include <QtGlobal>
  4. #include <QColor>
  5. class QtMaterialAppBar;
  6. class QtMaterialAppBarPrivate
  7. {
  8. Q_DISABLE_COPY(QtMaterialAppBarPrivate)
  9. Q_DECLARE_PUBLIC(QtMaterialAppBar)
  10. public:
  11. QtMaterialAppBarPrivate(QtMaterialAppBar *q);
  12. ~QtMaterialAppBarPrivate();
  13. void init();
  14. QtMaterialAppBar *const q_ptr;
  15. bool useThemeColors;
  16. QColor foregroundColor;
  17. QColor backgroundColor;
  18. };
  19. #endif // QTMATERIALAPPBAR_P_H