2017-09-29 17:43:19 +00:00
|
|
|
#ifndef TABSSETTINGSEDITOR_H
|
|
|
|
#define TABSSETTINGSEDITOR_H
|
|
|
|
|
|
|
|
#include <QWidget>
|
2022-02-17 14:22:14 +00:00
|
|
|
#include <QVBoxLayout>
|
|
|
|
#include <QColorDialog>
|
|
|
|
|
|
|
|
#include <qtmaterialtabs.h>
|
|
|
|
|
2017-09-29 22:44:29 +00:00
|
|
|
#include "ui_tabssettingsform.h"
|
2017-09-29 17:43:19 +00:00
|
|
|
|
2022-02-17 14:22:14 +00:00
|
|
|
using namespace md;
|
2017-09-29 17:43:19 +00:00
|
|
|
|
|
|
|
class TabsSettingsEditor : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit TabsSettingsEditor(QWidget *parent = 0);
|
|
|
|
~TabsSettingsEditor();
|
|
|
|
|
|
|
|
protected slots:
|
|
|
|
void setupForm();
|
|
|
|
void updateWidget();
|
|
|
|
|
|
|
|
private:
|
2017-09-29 22:44:29 +00:00
|
|
|
Ui::TabsSettingsForm *const ui;
|
2022-02-17 14:22:14 +00:00
|
|
|
Tabs *const m_tabs;
|
2017-09-29 17:43:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // TABSSETTINGSEDITOR_H
|