36 lines
958 B
C++
36 lines
958 B
C++
// For license of this file, see <project-root-folder>/LICENSE.md.
|
|
|
|
#ifndef SETTINGSDATABASE_H
|
|
#define SETTINGSDATABASE_H
|
|
|
|
#include "gui/settings/settingspanel.h"
|
|
|
|
#include "ui_settingsdatabase.h"
|
|
|
|
class SettingsDatabase : public SettingsPanel {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit SettingsDatabase(Settings* settings, QWidget* parent = nullptr);
|
|
virtual ~SettingsDatabase();
|
|
|
|
virtual QString title() const;
|
|
virtual void loadSettings();
|
|
virtual void saveSettings();
|
|
|
|
private:
|
|
void mysqlTestConnection();
|
|
void onMysqlHostnameChanged(const QString& new_hostname);
|
|
void onMysqlUsernameChanged(const QString& new_username);
|
|
void onMysqlPasswordChanged(const QString& new_password);
|
|
void onMysqlDatabaseChanged(const QString& new_database);
|
|
void selectSqlBackend(int index);
|
|
|
|
Ui::SettingsDatabase* m_ui;
|
|
};
|
|
|
|
inline QString SettingsDatabase::title() const {
|
|
return tr("Data storage");
|
|
}
|
|
|
|
#endif // SETTINGSDATABASE_H
|