Initial community commit
This commit is contained in:
parent
537bcbc862
commit
fc06254474
16440 changed files with 4239995 additions and 2 deletions
22
Src/Wasabi/api/skin/widgets/seeker.h
Normal file
22
Src/Wasabi/api/skin/widgets/seeker.h
Normal file
|
@ -0,0 +1,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
|
Loading…
Add table
Add a link
Reference in a new issue