project_files/HedgewarsMobile/Classes/OverlayViewController.h
changeset 5174 f5294509783e
parent 5166 d1eb1560b4d5
child 5175 a3da220dbb3f
equal deleted inserted replaced
5173:4056310a161a 5174:f5294509783e
    51     BOOL useClassicMenu;
    51     BOOL useClassicMenu;
    52     NSInteger initialOrientation;
    52     NSInteger initialOrientation;
    53     
    53     
    54     // dual head support
    54     // dual head support
    55     NSInteger initialScreenCount;
    55     NSInteger initialScreenCount;
       
    56 
       
    57     // spinning icons low
       
    58     UIActivityIndicatorView *lowerIndicator;
       
    59     UIActivityIndicatorView *savesIndicator;
    56 }
    60 }
    57 
    61 
    58 @property (nonatomic,retain) id popoverController;
    62 @property (nonatomic,retain) id popoverController;
    59 @property (nonatomic,retain) InGameMenuViewController *popupMenu;
    63 @property (nonatomic,retain) InGameMenuViewController *popupMenu;
    60 @property (nonatomic,retain) HelpPageViewController *helpPage;
    64 @property (nonatomic,retain) HelpPageViewController *helpPage;
    61 @property (nonatomic,retain) AmmoMenuViewController *amvc;
    65 @property (nonatomic,retain) AmmoMenuViewController *amvc;
       
    66 @property (nonatomic,retain) UIActivityIndicatorView *lowerIndicator;
       
    67 @property (nonatomic,retain) UIActivityIndicatorView *savesIndicator;
    62 @property (assign) BOOL useClassicMenu;
    68 @property (assign) BOOL useClassicMenu;
    63 @property (assign) NSInteger initialOrientation;
    69 @property (assign) NSInteger initialOrientation;
    64 @property (assign) NSInteger initialScreenCount;
    70 @property (assign) NSInteger initialScreenCount;
    65 
    71 
    66 -(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event;
    72 -(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event;
    75 -(void) dismissPopover;
    81 -(void) dismissPopover;
    76 -(void) dimOverlay;
    82 -(void) dimOverlay;
    77 -(void) activateOverlay;
    83 -(void) activateOverlay;
    78 -(void) removeOverlay;
    84 -(void) removeOverlay;
    79 
    85 
       
    86 #define ANIMATION_DURATION 0.25
       
    87 #define CONFIRMATION_TAG 5959
       
    88 #define GRENADE_TAG 9595
       
    89 
    80 @end
    90 @end