Added control of auto option into slideshow3D

This commit is contained in:
Robert Osfield
2003-07-23 15:12:52 +00:00
parent b925dcabaa
commit 46680be5eb
4 changed files with 25 additions and 9 deletions

View File

@@ -53,6 +53,12 @@ public:
bool nextLayer();
bool previousLayer();
void setAutoSteppingActive(bool flag) { _autoSteppingActive = true; }
bool getAutoSteppingActive() const { return _autoSteppingActive; }
void setTimeDelayBetweenSlides(double dt) { _timePerSlide = dt; }
double getTimeDelayBetweenSlides() const { return _timePerSlide; }
protected:
~SlideEventHandler() {}