seeker.h 342 B

12345678910111213141516171819202122
  1. #ifndef _SEEKER_H
  2. #define _SEEKER_H
  3. #include "../common/slider.h"
  4. #define SEEKER_PARENT SliderWnd
  5. class Seeker : public SliderWnd {
  6. public:
  7. Seeker();
  8. virtual ~Seeker();
  9. virtual int onInit();
  10. virtual int onResize();
  11. protected:
  12. virtual int onSetFinalPosition();
  13. // from BaseWnd
  14. virtual void timerCallback(int id);
  15. };
  16. #endif