project_files/HedgewarsMobile/Classes/MNEValueTrackingSlider.h
changeset 6679 d8b98aa486a6
child 6700 e04da46ee43c
equal deleted inserted replaced
6678:beab48f963d5 6679:d8b98aa486a6
       
     1 //
       
     2 // MNEValueTrackingSlider
       
     3 //
       
     4 // Copyright 2011 Michael Neuwert
       
     5 // "You can use the code in your own project and modify it as you like."
       
     6 // http://blog.neuwert-media.com/2011/04/customized-uislider-with-visual-value-tracking/
       
     7 //
       
     8 
       
     9 
       
    10 #import <Foundation/Foundation.h>
       
    11 
       
    12 @class SliderValuePopupView;
       
    13 
       
    14 @interface MNEValueTrackingSlider : UISlider {
       
    15     SliderValuePopupView *valuePopupView;
       
    16     NSString *textValue;
       
    17 }
       
    18 
       
    19 @property (nonatomic, readonly) CGRect thumbRect;
       
    20 @property (nonatomic, retain) NSString *textValue;
       
    21 
       
    22 @end