2017-09-29 23:40:00 +00:00
|
|
|
#ifndef DIALOGSETTINGSEDITOR_H
|
|
|
|
#define DIALOGSETTINGSEDITOR_H
|
|
|
|
|
|
|
|
#include <QWidget>
|
2022-02-17 14:22:14 +00:00
|
|
|
#include <QVBoxLayout>
|
|
|
|
#include <QColorDialog>
|
2022-02-17 15:17:19 +00:00
|
|
|
#include <dialog.h>
|
2022-02-17 14:22:14 +00:00
|
|
|
|
2022-02-17 15:17:19 +00:00
|
|
|
#include <flatbutton.h>
|
2022-02-17 14:22:14 +00:00
|
|
|
|
2017-09-29 23:40:00 +00:00
|
|
|
#include "ui_dialogsettingsform.h"
|
|
|
|
|
2022-02-17 14:22:14 +00:00
|
|
|
using namespace md;
|
2017-09-29 23:40:00 +00:00
|
|
|
|
|
|
|
class DialogSettingsEditor : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit DialogSettingsEditor(QWidget *parent = 0);
|
|
|
|
~DialogSettingsEditor();
|
|
|
|
|
|
|
|
protected slots:
|
|
|
|
void setupForm();
|
|
|
|
void updateWidget();
|
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::DialogSettingsForm *const ui;
|
2022-02-17 14:22:14 +00:00
|
|
|
Dialog *const m_dialog;
|
2017-09-29 23:40:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // DIALOGSETTINGSEDITOR_H
|