2017-09-29 17:54:41 +00:00
|
|
|
#ifndef QTMATERIALMENUITEM_P_H
|
|
|
|
#define QTMATERIALMENUITEM_P_H
|
|
|
|
|
2017-09-29 17:59:35 +00:00
|
|
|
#include "qtmaterialflatbutton_p.h"
|
2017-09-29 17:54:41 +00:00
|
|
|
|
|
|
|
class QtMaterialMenuItem;
|
|
|
|
class QtMaterialMenuItemStateMachine;
|
|
|
|
|
|
|
|
class QtMaterialMenuItemPrivate : public QtMaterialFlatButtonPrivate
|
|
|
|
{
|
|
|
|
Q_DISABLE_COPY(QtMaterialMenuItemPrivate)
|
|
|
|
Q_DECLARE_PUBLIC(QtMaterialMenuItem)
|
|
|
|
|
|
|
|
public:
|
|
|
|
QtMaterialMenuItemPrivate(QtMaterialMenuItem *q);
|
|
|
|
~QtMaterialMenuItemPrivate();
|
|
|
|
|
|
|
|
void init();
|
|
|
|
|
|
|
|
bool highlighted;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // QTMATERIALMENUITEM_P_H
|