-
Notifications
You must be signed in to change notification settings - Fork 0
/
PVApplication.h
68 lines (63 loc) · 1.93 KB
/
PVApplication.h
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/*
* PVApplication.h
* CouchPreview
*
* Created by Hugo Camboulive on 21/05/09.
* Copyright 2009 Université du Maine - IUP MIME. All rights reserved.
*
*/
@class PVGrabbingFeedback;
@class PVGrabbingCoordView;
@class PVDocumentController;
@class PVGrabbingPie;
#import <Cocoa/Cocoa.h>
@interface PVApplication : NSApplication
{
PVGrabbingFeedback *_feedbackWindow;
PVGrabbingCoordView *_feedbackInfoView;
PVGrabbingPie *_feedbackPie;
PVGrabbingFeedback *_coordWindow;
PVGrabbingCoordView *_coordView;
unsigned int _outlineWindow;
unsigned int _selectionWindow;
unsigned int _lastWindow;
NSString *_tempFolderPath;
PVDocumentController *_documentController;
NSBitmapImageRep *_lastGrabbedImageRep;
float _coordWindowWidth;
int _selectionMode;
NSTimer *_stopwatchTimer;
int _tickCount;
struct _NSSize _screenDPI;
NSMenuItem *_bookmarkMenu;
}
- (id)init;
- (void)awakeFromNib;
- (void)dealloc;
- (void)applicationDidFinishLaunching:(id)fp8;
- (void)didChangeScreenParametersNotification:(id)fp8;
- (void)applicationWillFinishLaunching:(id)fp8;
- (void)orderFrontColorPanel:(id)fp8;
- (void)orderFrontStandardAboutPanel:(id)fp8;
- (void)applicationWillTerminate:(id)fp8;
- (void)repopulateBookmarksMenu:(id)fp8;
- (void)activateBookmark:(id)fp8;
- (void)showBookmarks:(id)fp8;
- (void)deleteItem:(id)fp8;
- (void)doPrint:(id)fp8;
- (void)application:(id)fp8 openFiles:(id)fp12;
- (void)openPreferencePanel:(id)fp8;
- (BOOL)applicationShouldOpenUntitledFile:(id)fp8;
- (void)sendEvent:(id)fp8;
- (BOOL)validateMenuItem:(id)fp8;
- (id)tempFileFolderPath;
- (id)tempFileName:(id)fp8 untitledString:(id)fp12;
- (id)tempFileName:(id)fp8;
- (struct _NSPoint)annotationWindowOrigin:(id)fp8;
- (void)initiallyPositionWindowOrigin:(id)fp8;
- (void)newFromThisPasteboard:(id)fp8;
- (void)newFromClipboard:(id)fp8;
- (void)importImage:(id)fp8;
- (void)application:(id)fp8 runTest:(unsigned int)fp12 duration:(double)fp16;
- (id)documentController;
@end