qt-material-widgets/examples/drawersettingseditor.h

32 lines
545 B
C
Raw Normal View History

2017-09-30 00:20:12 +00:00
#ifndef DRAWERSETTINGSEDITOR_H
#define DRAWERSETTINGSEDITOR_H
#include <QWidget>
#include <QVBoxLayout>
#include <QColorDialog>
2022-02-17 15:17:19 +00:00
#include <drawer.h>
2017-09-30 00:20:12 +00:00
#include "ui_drawersettingsform.h"
using namespace md;
2017-09-30 00:20:12 +00:00
class DrawerSettingsEditor : public QWidget
{
Q_OBJECT
public:
explicit DrawerSettingsEditor(QWidget *parent = 0);
~DrawerSettingsEditor();
protected slots:
void setupForm();
void updateWidget();
private:
Ui::DrawerSettingsForm *const ui;
Drawer *const m_drawer;
2017-09-30 00:20:12 +00:00
};
#endif // DRAWERSETTINGSEDITOR_H