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