most settings are saved and restored

This commit is contained in:
Anakin
2017-02-08 14:29:22 +01:00
parent 49585945c3
commit fa75e17d58
6 changed files with 376 additions and 26 deletions

View File

@@ -9,7 +9,7 @@ class SettingsWindow : public QWidget
Q_OBJECT
public:
SettingsWindow(QVector3D bgOffColor, QVector3D bgOnColor, QVector3D lightColor, bool autoColor, double ambCoef, double attFac, int lightType, QWidget * parent = Q_NULLPTR);
SettingsWindow(QWidget * parent = Q_NULLPTR);
~SettingsWindow();
private:
@@ -33,5 +33,6 @@ signals:
void sendHeadlight(bool value);
void sendBackfaceCulling(bool value);
void sendZommSpeed(int percent);
void changeLightType(int value);
};