diff options
Diffstat (limited to 'src/mainwindow.h')
-rw-r--r-- | src/mainwindow.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mainwindow.h b/src/mainwindow.h index 35498ee..986a911 100644 --- a/src/mainwindow.h +++ b/src/mainwindow.h @@ -32,6 +32,7 @@ private: void connectzw(); void connectRotationSlider(); void connectNegativeRotation(); + void connectW(); RayTracer *rayTracer; AspectRatioWidget *aspectRatioWidget; @@ -52,6 +53,8 @@ private: QSlider *rotationSlider; QDoubleSpinBox *rotationBox; QCheckBox *rotateNegative; + QSlider *wSlider; + QDoubleSpinBox *wBox; private slots: @@ -78,4 +81,6 @@ private slots: void updateYzSlider(double newValue); void updateYwSlider(double newValue); void updateZwSlider(double newValue); + void onValChangeWSlider(int newValue); + void onValChangeWBox(double newValue); }; |