connected settings window with software

This commit is contained in:
Anakin
2017-01-24 17:09:51 +01:00
parent 15cd551f7c
commit 30d41f7d85
5 changed files with 108 additions and 14 deletions

View File

@@ -1,6 +1,7 @@
#pragma once
#include <QWidget>
#include "ui_SettingsWindow.h"
#include <QVector3D>
class SettingsWindow : public QWidget
{
@@ -16,4 +17,14 @@ private:
private slots:
void autoColorToggled();
void radioToggled();
void backgroundColorOffChanged();
void backgroundColorOnChanged();
void lightColorChanged();
signals:
void updateBGColorOff(QVector3D value);
void updateBGColorOn(QVector3D value);
void updateLightColor(QVector3D value);
void updateAttFac(double value);
void updateAmbCoef(double value);
};