You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
470 B

#ifndef GENERALSETTINGSTAB_H
#define GENERALSETTINGSTAB_H
#include <QWidget>
#include <QString>
#include <QVariant>
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