30 lines
538 B
C++
30 lines
538 B
C++
#ifndef MENUSETTINGSEDITOR_H
|
|
#define MENUSETTINGSEDITOR_H
|
|
|
|
#include <QWidget>
|
|
//#include "ui_menusettingsform.h"
|
|
|
|
#include "lib/qtmaterialoverlaywidget.h"
|
|
|
|
class QtMaterialMenu;
|
|
|
|
class MenuSettingsEditor : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit MenuSettingsEditor(QWidget *parent = 0);
|
|
~MenuSettingsEditor();
|
|
|
|
protected slots:
|
|
void setupForm();
|
|
void updateWidget();
|
|
void selectColor();
|
|
|
|
private:
|
|
//Ui::MenuSettingsForm *const ui;
|
|
QtMaterialMenu *const m_menu;
|
|
};
|
|
|
|
#endif // MENUSETTINGSEDITOR_H
|