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.

27 lines
451 B

#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