project_files/HedgewarsMobile/Classes/MNEValueTrackingSlider.h
author koda
Sun, 12 Feb 2012 18:50:22 +0100
changeset 6679 d8b98aa486a6
child 6700 e04da46ee43c
permissions -rwxr-xr-x
tweaks to the value tracking slider (doesn't draw outside the superview bounds) and assign proper copyright notice to it

//
// 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 <Foundation/Foundation.h>

@class SliderValuePopupView;

@interface MNEValueTrackingSlider : UISlider {
    SliderValuePopupView *valuePopupView;
    NSString *textValue;
}

@property (nonatomic, readonly) CGRect thumbRect;
@property (nonatomic, retain) NSString *textValue;

@end