27 lines
451 B
C++
27 lines
451 B
C++
#ifndef GENERALSETTINGSTAB_H
|
|
#define GENERALSETTINGSTAB_H
|
|
|
|
#include <QVariant>
|
|
#include <QWidget>
|
|
|
|
namespace Ui {
|
|
class GeneralSettingsTab;
|
|
}
|
|
|
|
class GeneralSettingsTab : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit GeneralSettingsTab(QWidget *parent = nullptr);
|
|
~GeneralSettingsTab();
|
|
|
|
QVariantMap readSettings();
|
|
void loadSettings(QVariantMap settings);
|
|
|
|
private:
|
|
Ui::GeneralSettingsTab *ui;
|
|
};
|
|
|
|
#endif // GENERALSETTINGSTAB_H
|