2017-07-13 10:26:03 +02:00
|
|
|
/*
|
|
|
|
* csettingsview_moc.h, part of VCMI engine
|
|
|
|
*
|
|
|
|
* Authors: listed in file AUTHORS in main folder
|
|
|
|
*
|
|
|
|
* License: GNU General Public License v2.0 or later
|
|
|
|
* Full text of license available in license.txt file, in main folder
|
|
|
|
*
|
|
|
|
*/
|
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
|
|
|
|
2018-04-13 07:34:58 +02:00
|
|
|
namespace Ui
|
|
|
|
{
|
|
|
|
class CSettingsView;
|
2013-08-22 17:22:49 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
class CSettingsView : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2018-04-13 07:34:58 +02:00
|
|
|
|
2013-08-22 17:22:49 +03:00
|
|
|
public:
|
2018-04-13 07:34:58 +02:00
|
|
|
explicit CSettingsView(QWidget * parent = 0);
|
2013-08-22 17:22:49 +03:00
|
|
|
~CSettingsView();
|
|
|
|
|
|
|
|
void loadSettings();
|
2017-08-24 03:52:02 +02:00
|
|
|
void setDisplayList();
|
2016-01-09 22:23:55 +02:00
|
|
|
|
2022-09-27 10:51:49 +02:00
|
|
|
bool isExtraResolutionsModEnabled{};
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void fillValidResolutions(bool isExtraResolutionsModEnabled);
|
|
|
|
|
2013-08-22 17:22:49 +03:00
|
|
|
private slots:
|
2017-07-08 18:01:58 +02:00
|
|
|
void on_checkBoxFullScreen_stateChanged(int state);
|
|
|
|
|
2022-09-26 15:39:10 +02:00
|
|
|
void on_comboBoxResolution_currentTextChanged(const QString & arg1);
|
2013-08-22 17:22:49 +03:00
|
|
|
|
|
|
|
void on_comboBoxFullScreen_currentIndexChanged(int index);
|
|
|
|
|
2018-04-13 07:34:58 +02:00
|
|
|
void on_comboBoxPlayerAI_currentIndexChanged(const QString & arg1);
|
2013-08-22 17:22:49 +03:00
|
|
|
|
2018-04-13 07:34:58 +02:00
|
|
|
void on_comboBoxFriendlyAI_currentIndexChanged(const QString & arg1);
|
2017-01-17 13:17:37 +02:00
|
|
|
|
2018-04-13 07:34:58 +02:00
|
|
|
void on_comboBoxNeutralAI_currentIndexChanged(const QString & arg1);
|
2013-08-22 17:22:49 +03:00
|
|
|
|
2018-04-13 07:34:58 +02:00
|
|
|
void on_comboBoxEnemyAI_currentIndexChanged(const QString & arg1);
|
2017-01-17 13:17:37 +02:00
|
|
|
|
2013-08-22 17:22:49 +03:00
|
|
|
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);
|
|
|
|
|
2016-08-30 20:54:37 +02:00
|
|
|
void on_comboBoxDisplayIndex_currentIndexChanged(int index);
|
|
|
|
|
2018-04-03 03:37:09 +02:00
|
|
|
void on_comboBoxAutoSave_currentIndexChanged(int index);
|
|
|
|
|
2022-09-04 18:32:48 +02:00
|
|
|
void on_updatesButton_clicked();
|
|
|
|
|
2013-08-22 17:22:49 +03:00
|
|
|
private:
|
2018-04-13 07:34:58 +02:00
|
|
|
Ui::CSettingsView * ui;
|
2022-09-26 15:58:27 +02:00
|
|
|
|
|
|
|
void fillValidResolutionsForScreen(int screenIndex);
|
2013-08-22 17:22:49 +03:00
|
|
|
};
|