// For license of this file, see /LICENSE.md. #ifndef SETTINGSGENERAL_H #define SETTINGSGENERAL_H #include "gui/settings/settingspanel.h" #include "ui_settingsgeneral.h" class SettingsGeneral : public SettingsPanel { Q_OBJECT public: explicit SettingsGeneral(Settings* settings, QWidget* parent = nullptr); virtual ~SettingsGeneral(); virtual QString title() const; virtual void loadSettings(); virtual void saveSettings(); private: Ui::SettingsGeneral* m_ui; }; inline QString SettingsGeneral::title() const { return tr("General"); } #endif // SETTINGSGENERAL_H