27 lines
490 B
C
27 lines
490 B
C
|
#ifndef DRAWERSETTINGSEDITOR_H
|
||
|
#define DRAWERSETTINGSEDITOR_H
|
||
|
|
||
|
#include <QWidget>
|
||
|
#include "ui_drawersettingsform.h"
|
||
|
|
||
|
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;
|
||
|
QtMaterialDrawer *const m_drawer;
|
||
|
};
|
||
|
|
||
|
#endif // DRAWERSETTINGSEDITOR_H
|