forked from lorenbrichter/SimFinger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFakeFingerAppDelegate.h
More file actions
executable file
·45 lines (33 loc) · 1019 Bytes
/
FakeFingerAppDelegate.h
File metadata and controls
executable file
·45 lines (33 loc) · 1019 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
//
// SimFingerAppDelegate.h
// SimFinger
//
// Created by Loren Brichter on 2/11/09.
// Copyright 2009 atebits. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@interface FakeFingerAppDelegate : NSObject
{
NSRect screenRect;
NSWindow *pointerOverlay;
NSWindow *hardwareOverlay;
NSWindow *fadeOverlay;
BOOL pointerOverlayIsHidden;
BOOL hardwareOverlayIsHidden;
int setTextMode;
NSMutableDictionary *springboardPrefs;
IBOutlet NSPanel *setTextPanel;
IBOutlet NSTextField *setTextLabel;
IBOutlet NSTextField *setTextField;
}
- (AXUIElementRef)simulatorApplication;
- (IBAction)configureHardwareOverlay:(NSMenuItem *)sender;
- (IBAction)configurePointerOverlay:(NSMenuItem *)sender;
- (IBAction)positionSimulatorWindow:(id)sender;
//- (IBAction)promptCarrierText:(id)sender;
//- (IBAction)promptTimeText:(id)sender;
//- (IBAction)restoreSpringboardPrefs:(id)sender;
//- (IBAction)cancelSetText:(id)sender;
//- (IBAction)saveSetText:(id)sender;
//- (IBAction)installFakeApps:(id)sender;
@end