qt-material-widgets/examples/appbarsettingseditor.h

28 lines
514 B
C
Raw Permalink Normal View History

2017-10-11 17:16:52 +00:00
#ifndef APPBARSETTINGSEDITOR_H
#define APPBARSETTINGSEDITOR_H
#include <QWidget>
2017-10-11 19:25:22 +00:00
#include "ui_appbarsettingsform.h"
2017-10-11 17:16:52 +00:00
class QtMaterialAppBar;
class AppBarSettingsEditor : public QWidget
{
Q_OBJECT
public:
explicit AppBarSettingsEditor(QWidget *parent = 0);
~AppBarSettingsEditor();
protected slots:
void setupForm();
void updateWidget();
2017-10-11 19:44:35 +00:00
void selectColor();
2017-10-11 17:16:52 +00:00
private:
Ui::AppBarSettingsForm *const ui;
QtMaterialAppBar *const m_appBar;
};
#endif // APPBARSETTINGSEDITOR_H