diff -r beab48f963d5 -r d8b98aa486a6 project_files/HedgewarsMobile/Classes/MNEValueTrackingSlider.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/project_files/HedgewarsMobile/Classes/MNEValueTrackingSlider.h Sun Feb 12 18:50:22 2012 +0100 @@ -0,0 +1,22 @@ +// +// MNEValueTrackingSlider +// +// Copyright 2011 Michael Neuwert +// "You can use the code in your own project and modify it as you like." +// http://blog.neuwert-media.com/2011/04/customized-uislider-with-visual-value-tracking/ +// + + +#import + +@class SliderValuePopupView; + +@interface MNEValueTrackingSlider : UISlider { + SliderValuePopupView *valuePopupView; + NSString *textValue; +} + +@property (nonatomic, readonly) CGRect thumbRect; +@property (nonatomic, retain) NSString *textValue; + +@end