-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCMCaptureImagePopoverViewControllerOSX.h
More file actions
29 lines (22 loc) · 1.14 KB
/
CMCaptureImagePopoverViewControllerOSX.h
File metadata and controls
29 lines (22 loc) · 1.14 KB
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
#import "RequiredAppUIKit.h"
#import "CMCaptureImageControllerBase.h"
#import "CMCaptureImagePopoverControllerProtocol.h"
#if !TARGET_OS_IPHONE
@interface CMCaptureImagePopoverViewControllerOSX : NSViewController<CMCaptureImagePopoverControllerProtocol>
ARC_BEGIN_IVAR_DECL(CMCaptureImagePopoverViewControllerOSX)
ARC_IVAR_DECLARE(NSImage*,currentImage,__currentImage);
ARC_IVAR_DECLARE(NSData*,imageData,__imageData);
@public
ARC_IVAR_DECLAREOUTLET(CMCaptureImageModel*,outletCaptureStillImage);
ARC_IVAR_DECLAREOUTLET(CMCaptureImageModel*,outletCaptureVideoImage);
ARC_IVAR_DECLAREOUTLET(CMCaptureImageControllerBase*,outletCaptureController);
@private
ARC_IVAR_DECLAREOUTLET(NSPopover*,outletPopover);
ARC_IVAR_DECLARE(NSPopover*,popover,__popover);
ARC_END_IVAR_DECL(CMCaptureImagePopoverViewControllerOSX)
@property (ARC_PROP_OUTLET) IBOutlet CMCaptureImageModel* outletCaptureStillImage;
@property (ARC_PROP_OUTLET) IBOutlet CMCaptureImageModel* outletCaptureVideoImage;
@property (ARC_PROP_OUTLET) IBOutlet NSPopover* outletPopover;
-(IBAction) actionPopoverDisplayWithPositioningViewSender:(NSView*)positioningView;
@end
#endif /* !TARGET_OS_IPHONE */