diff options
Diffstat (limited to 'src/mainwindow.h')
-rw-r--r-- | src/mainwindow.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/mainwindow.h b/src/mainwindow.h index d6a929b..db7b096 100644 --- a/src/mainwindow.h +++ b/src/mainwindow.h @@ -29,7 +29,7 @@ private: void connectyz(); void connectyw(); void connectzw(); - void connectRotationSlider(); + void connectMaxTimeSlider(); void connectNegativeRotation(); void connectW(); @@ -37,6 +37,7 @@ private: AspectRatioWidget *aspectRatioWidget; QPushButton *uploadFile; QPushButton *saveImage; + QPushButton *bulkRender; QSlider *xySlider; QDoubleSpinBox *xyBox; QSlider *xzSlider; @@ -49,8 +50,8 @@ private: QDoubleSpinBox *ywBox; QSlider *zwSlider; QDoubleSpinBox *zwBox; - QSlider *rotationSlider; - QDoubleSpinBox *rotationBox; + QSlider *maxTimeSlider; + QSpinBox *maxTimeSpinBox; QCheckBox *rotateNegative; QSlider *wSlider; QDoubleSpinBox *wBox; @@ -71,8 +72,8 @@ private slots: void onValChangeywBox(double newValue); void onValChangezwSlider(int newValue); void onValChangezwBox(double newValue); - void onValChangeRotationSlider(int newValue); - void onValChangeRotationBox(double newValue); + void onValChangeMaxTimeSlider(int newValue); + void onValChangeMaxTimeBox(double newValue); void onRotateNegative(); void updateXySlider(double newValue); void updateXzSlider(double newValue); |