mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-16 10:19:47 +02:00
4287b2b7bb
- renamed files that should be preprocessed with moc: they will have _moc suffix (cpp files were also renamed for consistency) - fixed disabling of mods that have dependent on them mods - repositories will be reloaded if changed - may have fixed non-starting vcmi client on Win
35 lines
683 B
C++
35 lines
683 B
C++
#pragma once
|
|
|
|
namespace Ui {
|
|
class CSettingsView;
|
|
}
|
|
|
|
class CSettingsView : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit CSettingsView(QWidget *parent = 0);
|
|
~CSettingsView();
|
|
|
|
void loadSettings();
|
|
|
|
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_comboBoxEnableMods_currentIndexChanged(int index);
|
|
|
|
void on_spinBoxNetworkPort_valueChanged(int arg1);
|
|
|
|
void on_plainTextEditRepos_textChanged();
|
|
|
|
private:
|
|
Ui::CSettingsView *ui;
|
|
};
|