30 lines
694 B
C
30 lines
694 B
C
|
#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
|