author | koda |
Sun, 20 Jun 2010 23:05:11 +0200 | |
changeset 3525 | 1d7b056ff866 |
parent 3514 | 59dbd31e9953 |
child 3535 | 9e78c1f3d8d8 |
permissions | -rw-r--r-- |
3117
f3e363a9b7db
complete previous commit (which broken my local copy as well)
koda
parents:
diff
changeset
|
1 |
// |
f3e363a9b7db
complete previous commit (which broken my local copy as well)
koda
parents:
diff
changeset
|
2 |
// overlayViewController.h |
f3e363a9b7db
complete previous commit (which broken my local copy as well)
koda
parents:
diff
changeset
|
3 |
// HedgewarsMobile |
f3e363a9b7db
complete previous commit (which broken my local copy as well)
koda
parents:
diff
changeset
|
4 |
// |
f3e363a9b7db
complete previous commit (which broken my local copy as well)
koda
parents:
diff
changeset
|
5 |
// Created by Vittorio on 16/03/10. |
f3e363a9b7db
complete previous commit (which broken my local copy as well)
koda
parents:
diff
changeset
|
6 |
// Copyright 2010 __MyCompanyName__. All rights reserved. |
f3e363a9b7db
complete previous commit (which broken my local copy as well)
koda
parents:
diff
changeset
|
7 |
// |
f3e363a9b7db
complete previous commit (which broken my local copy as well)
koda
parents:
diff
changeset
|
8 |
|
f3e363a9b7db
complete previous commit (which broken my local copy as well)
koda
parents:
diff
changeset
|
9 |
#import <UIKit/UIKit.h> |
f3e363a9b7db
complete previous commit (which broken my local copy as well)
koda
parents:
diff
changeset
|
10 |
|
3308 | 11 |
@class PopoverMenuViewController; |
3117
f3e363a9b7db
complete previous commit (which broken my local copy as well)
koda
parents:
diff
changeset
|
12 |
|
f3e363a9b7db
complete previous commit (which broken my local copy as well)
koda
parents:
diff
changeset
|
13 |
@interface OverlayViewController : UIViewController { |
f3e363a9b7db
complete previous commit (which broken my local copy as well)
koda
parents:
diff
changeset
|
14 |
NSTimer *dimTimer; |
3513
f589230fa21b
now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents:
3490
diff
changeset
|
15 |
#if __IPHONE_3_2 |
3308 | 16 |
UIPopoverController *popoverController; |
17 |
#else |
|
18 |
id popoverController; |
|
19 |
#endif |
|
20 |
PopoverMenuViewController *popupMenu; |
|
21 |
BOOL isPopoverVisible; |
|
3347 | 22 |
|
3463 | 23 |
UITextField *writeChatTextField; |
24 |
||
3117
f3e363a9b7db
complete previous commit (which broken my local copy as well)
koda
parents:
diff
changeset
|
25 |
CGFloat initialDistanceForPinching; |
f3e363a9b7db
complete previous commit (which broken my local copy as well)
koda
parents:
diff
changeset
|
26 |
CGPoint gestureStartPoint; |
3525 | 27 |
UIActivityIndicatorView *spinningWheel; |
3117
f3e363a9b7db
complete previous commit (which broken my local copy as well)
koda
parents:
diff
changeset
|
28 |
} |
f3e363a9b7db
complete previous commit (which broken my local copy as well)
koda
parents:
diff
changeset
|
29 |
|
3308 | 30 |
@property (nonatomic,retain) id popoverController; |
31 |
@property (nonatomic,retain) PopoverMenuViewController *popupMenu; |
|
3463 | 32 |
@property (nonatomic,retain) UITextField *writeChatTextField; |
3525 | 33 |
@property (nonatomic,retain) IBOutlet UIActivityIndicatorView *spinningWheel; |
34 |
||
35 |
UIActivityIndicatorView *singleton; |
|
36 |
BOOL canDim; |
|
3117
f3e363a9b7db
complete previous commit (which broken my local copy as well)
koda
parents:
diff
changeset
|
37 |
|
f3e363a9b7db
complete previous commit (which broken my local copy as well)
koda
parents:
diff
changeset
|
38 |
-(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event; |
f3e363a9b7db
complete previous commit (which broken my local copy as well)
koda
parents:
diff
changeset
|
39 |
-(void) touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event; |
f3e363a9b7db
complete previous commit (which broken my local copy as well)
koda
parents:
diff
changeset
|
40 |
-(void) touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event; |
3361 | 41 |
-(void) touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event; |
3117
f3e363a9b7db
complete previous commit (which broken my local copy as well)
koda
parents:
diff
changeset
|
42 |
|
f3e363a9b7db
complete previous commit (which broken my local copy as well)
koda
parents:
diff
changeset
|
43 |
-(IBAction) buttonReleased:(id) sender; |
f3e363a9b7db
complete previous commit (which broken my local copy as well)
koda
parents:
diff
changeset
|
44 |
-(IBAction) buttonPressed:(id) sender; |
f3e363a9b7db
complete previous commit (which broken my local copy as well)
koda
parents:
diff
changeset
|
45 |
|
3308 | 46 |
-(void) showPopover; |
47 |
-(void) dismissPopover; |
|
3117
f3e363a9b7db
complete previous commit (which broken my local copy as well)
koda
parents:
diff
changeset
|
48 |
-(void) dimOverlay; |
3463 | 49 |
-(void) activateOverlay; |
50 |
-(void) chatAppear; |
|
51 |
-(void) chatDisappear; |
|
3117
f3e363a9b7db
complete previous commit (which broken my local copy as well)
koda
parents:
diff
changeset
|
52 |
|
f3e363a9b7db
complete previous commit (which broken my local copy as well)
koda
parents:
diff
changeset
|
53 |
@end |