2017-09-30 00:20:12 +00:00
|
|
|
#ifndef DRAWERSETTINGSEDITOR_H
|
|
|
|
#define DRAWERSETTINGSEDITOR_H
|
|
|
|
|
|
|
|
#include "ui_drawersettingsform.h"
|
2022-07-14 09:54:17 +00:00
|
|
|
#include <QWidget>
|
2017-09-30 00:20:12 +00:00
|
|
|
|
|
|
|
class QtMaterialDrawer;
|
|
|
|
|
|
|
|
class DrawerSettingsEditor : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit DrawerSettingsEditor(QWidget *parent = 0);
|
|
|
|
~DrawerSettingsEditor();
|
|
|
|
|
|
|
|
protected slots:
|
|
|
|
void setupForm();
|
|
|
|
void updateWidget();
|
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::DrawerSettingsForm *const ui;
|
2022-07-14 09:54:17 +00:00
|
|
|
QtMaterialDrawer *const m_drawer;
|
2017-09-30 00:20:12 +00:00
|
|
|
};
|
|
|
|
|
2022-07-14 09:54:17 +00:00
|
|
|
#endif // DRAWERSETTINGSEDITOR_H
|