123456789101112131415161718192021222324252627282930 |
- #ifndef QTMATERIALICONBUTTON_P_H
- #define QTMATERIALICONBUTTON_P_H
- #include <QtGlobal>
- class QtMaterialIconButton;
- class QtMaterialRippleOverlay;
- class QColor;
- class QtMaterialIconButtonPrivate
- {
- Q_DISABLE_COPY(QtMaterialIconButtonPrivate)
- Q_DECLARE_PUBLIC(QtMaterialIconButton)
- public:
- QtMaterialIconButtonPrivate(QtMaterialIconButton *q);
- virtual ~QtMaterialIconButtonPrivate();
- void init();
- void updateRipple();
- QtMaterialIconButton *const q_ptr;
- QtMaterialRippleOverlay *rippleOverlay;
- QColor color;
- QColor disabledColor;
- bool useThemeColors;
- };
- #endif // QTMATERIALICONBUTTON_P_H
|