-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCaptureController.h
94 lines (72 loc) · 2.76 KB
/
CaptureController.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
//
// DelegateWindow.h
// SimpleCap
//
// Created by - on 08/03/08.
// Copyright 2008 Hiroshi Hashiguchi. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@class FileManager;
@class AppController;
@class CaptureView;
@class CaptureWindow;
@class Handler;
@class TimerController;
@class WindowShadow;
@class Screen;
@class Transition;
@class HandlerFactory;
@protocol TimerClient;
@interface CaptureController : NSObject {
AppController* _app_controller;
FileManager* _file_manager;
CaptureView* _view;
CaptureWindow* _window;
HandlerFactory* _handler_factory;
Handler* _current_handler;
Handler* _previous_handler;
TimerController* _timer_controller;
Transition* _transition;
NSMenu* _context_menu;
BOOL _result_flag;
BOOL _cancel_flag;
BOOL _copy_flag;
BOOL _continuous_flag;
}
- (id)initWithAppController:(AppController*)appController;
- (void)setFileManager:(FileManager*)fileManager;
- (void)startCaptureWithHandlerName:(NSString*)handlerName withObject:(id)object;
// for handlers
- (void)exit;
- (void)showResultMessage;
- (void)cancel;
- (AppController*)appController;
- (BOOL)isSameHandlerWhenPreviousCapture;
- (void)setContinouslyFlag:(BOOL)flag;
- (void)openViewerWithLastfile;
- (void)saveImage:(CGImageRef)cgimage imageFrame:(NSRect)frame;
- (void)saveImage:(CGImageRef)cgimage withMouseCursorInRect:(NSRect)rect imageFrame:(NSRect)frame;
- (void)saveImage:(CGImageRef)cgimage withMouseCursorInWindowList:(NSArray*)list imageFrame:(NSRect)frame;
- (void)saveImage:(CGImageRef)cgimage withMouseCursorInRect:(NSRect)rect offset:(NSSize)offset imageFrame:(NSRect)frame;
- (void)copyImageWithBitmapImageRep:(NSBitmapImageRep*)bitmap_rep;
- (void)copyImage:(CGImageRef)cgimage imageFrame:(NSRect)frame;
- (void)copyImage:(CGImageRef)cgimage withMouseCursorInRect:(NSRect)rect imageFrame:(NSRect)frame;
- (void)copyImage:(CGImageRef)cgimage withMouseCursorInWindowList:(NSArray*)list imageFrame:(NSRect)frame;
- (void)copyImage:(CGImageRef)cgimage withMouseCursorInRect:(NSRect)rect offset:(NSSize)offset imageFrame:(NSRect)frame;
- (void)disableMouseEventInWindow;
- (void)enableMouseEventInWindow;
- (CGWindowID)windowID;
- (CaptureView*)view;
- (CaptureWindow*)window;
- (Transition*)transition;
- (void)setMenuTitle:(NSString*)title;
- (void)startTimerOnClient:(id<TimerClient>)client title:(NSString*)title image:(NSImage*)image;
- (void)openWindowConfigMenuWithView:(NSView*)view event:(NSEvent*)event;
- (void)openSelectionConfigMenuWithView:(NSView*)view event:(NSEvent*)event;
- (void)openScreenConfigMenuWithView:(NSView*)view event:(NSEvent*)event;
- (void)openMenuConfigMenuWithView:(NSView*)view event:(NSEvent*)event;
// for conroller
- (void)resetSelection;
// delegate
- (void)changedImageFormatTo:(int)image_format;
@end