2017-10-15 13:40:11 +00:00
|
|
|
#ifndef QTMATERIALMENU_H
|
|
|
|
#define QTMATERIALMENU_H
|
|
|
|
|
2017-10-15 13:54:35 +00:00
|
|
|
#include <QtWidgets/QWidget>
|
2021-06-30 09:30:12 +00:00
|
|
|
#include <QtUiPlugin/QDesignerExportWidget>
|
2021-07-01 10:04:11 +00:00
|
|
|
#include <QtUiPlugin/QDesignerExportWidget>
|
2017-10-15 13:54:35 +00:00
|
|
|
|
2021-06-30 09:30:12 +00:00
|
|
|
class QDESIGNER_WIDGET_EXPORT QtMaterialMenu : public QWidget
|
2017-10-15 13:54:35 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit QtMaterialMenu(QWidget *parent = 0);
|
2021-06-30 09:30:12 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
void paintEvent(QPaintEvent *event) override;
|
2017-10-15 13:54:35 +00:00
|
|
|
};
|
|
|
|
|
2017-10-15 13:40:11 +00:00
|
|
|
#endif // QTMATERIALMENU_H
|