2004-02-04 02:35:57 +00:00
|
|
|
#ifndef __ruamoko_gui_Slider_h
|
|
|
|
#define __ruamoko_gui_Slider_h
|
2004-02-03 08:31:26 +00:00
|
|
|
|
|
|
|
#include "View.h"
|
|
|
|
|
2011-07-10 08:33:43 +00:00
|
|
|
/** \addtogroup gui */
|
|
|
|
//@{
|
|
|
|
|
2004-02-03 08:31:26 +00:00
|
|
|
@interface Slider: View
|
|
|
|
{
|
2011-03-25 07:46:32 +00:00
|
|
|
int index;
|
|
|
|
int size;
|
|
|
|
int dir;
|
2004-02-03 08:31:26 +00:00
|
|
|
}
|
|
|
|
|
2011-03-25 07:46:32 +00:00
|
|
|
- (id) initWithBounds: (Rect)aRect size: (int) aSize;
|
|
|
|
- (void) setIndex: (int) ind;
|
2004-02-03 08:31:26 +00:00
|
|
|
- (void) draw;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
2011-07-10 08:33:43 +00:00
|
|
|
//@}
|
|
|
|
|
2004-02-04 02:35:57 +00:00
|
|
|
#endif //__ruamoko_gui_Slider_h
|