2013-08-22 17:22:49 +03:00
|
|
|
#pragma once
|
|
|
|
|
2016-01-27 22:08:08 +02:00
|
|
|
#include "../StdInc.h"
|
2016-01-09 22:23:55 +02:00
|
|
|
|
2013-08-22 17:22:49 +03:00
|
|
|
namespace Ui {
|
|
|
|
class CSettingsView;
|
|
|
|
}
|
|
|
|
|
|
|
|
class CSettingsView : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2016-01-09 22:23:55 +02:00
|
|
|
|
2013-08-22 17:22:49 +03:00
|
|
|
public:
|
|
|
|
explicit CSettingsView(QWidget *parent = 0);
|
|
|
|
~CSettingsView();
|
|
|
|
|
|
|
|
void loadSettings();
|
2016-01-09 22:23:55 +02:00
|
|
|
|
2013-08-22 17:22:49 +03:00
|
|
|
private slots:
|
|
|
|
void on_comboBoxResolution_currentIndexChanged(const QString &arg1);
|
|
|
|
|
|
|
|
void on_comboBoxFullScreen_currentIndexChanged(int index);
|
|
|
|
|
|
|
|
void on_comboBoxPlayerAI_currentIndexChanged(const QString &arg1);
|
|
|
|
|
|
|
|
void on_comboBoxNeutralAI_currentIndexChanged(const QString &arg1);
|
|
|
|
|
|
|
|
void on_spinBoxNetworkPort_valueChanged(int arg1);
|
|
|
|
|
|
|
|
void on_plainTextEditRepos_textChanged();
|
|
|
|
|
2013-09-21 21:29:26 +03:00
|
|
|
void on_comboBoxEncoding_currentIndexChanged(int index);
|
|
|
|
|
2014-08-04 14:03:57 +03:00
|
|
|
void on_openTempDir_clicked();
|
|
|
|
|
|
|
|
void on_openUserDataDir_clicked();
|
|
|
|
|
|
|
|
void on_openGameDataDir_clicked();
|
|
|
|
|
|
|
|
void on_comboBoxShowIntro_currentIndexChanged(int index);
|
|
|
|
|
|
|
|
void on_changeGameDataDir_clicked();
|
|
|
|
|
2014-11-03 17:47:37 +02:00
|
|
|
void on_comboBoxAutoCheck_currentIndexChanged(int index);
|
|
|
|
|
2013-08-22 17:22:49 +03:00
|
|
|
private:
|
|
|
|
Ui::CSettingsView *ui;
|
|
|
|
};
|