-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathInputPopupControllerViewController.h
65 lines (44 loc) · 2.04 KB
/
InputPopupControllerViewController.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
//
// InputPopupControllerViewController.h
// CocoaSplit
//
// Created by Zakk on 7/26/14.
// Copyright (c) 2014 Zakk. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import <Quartz/Quartz.h>
@class InputSource;
@interface InputPopupControllerViewController : NSViewController <NSPopoverDelegate, NSWindowDelegate, NSTableViewDelegate>
@property (strong) IBOutlet NSWindow *popupWIndow;
@property (strong) NSPopover *myPopover;
@property (strong) NSWindow *transitionFilterWindow;
@property (strong) NSWindow *userFilterWindow;
@property (strong) NSWindow *screenCropWindow;
@property (weak) InputSource *inputSource;
@property (strong) NSDictionary *inputConstraintMap;
@property (strong) NSArray *constraintSortDescriptors;
@property (assign) NSString *selectedVideoType;
@property (weak) IBOutlet NSTableView *sourceFilterTableView;
@property (weak) IBOutlet NSTableView *backgroundFilterTableView;
@property (weak) IBOutlet NSTableView *layerFilterTableView;
@property (assign) bool sourceTableHasSelection;
@property (assign) bool backgroundTableHasSelection;
@property (assign) bool layerTableHasSelection;
@property (strong) NSMutableDictionary *availableTransitions;
@property (strong) NSArray *compositionFilterNames;
- (IBAction)configureFilter:(NSSegmentedControl *)sender;
- (IBAction)resetConstraints:(id)sender;
- (IBAction)removeFilter:(NSSegmentedControl *)sender;
- (IBAction)filterControlAction:(id)sender;
- (IBAction)deleteMultiSource:(id)sender;
-(void)openTransitionFilterPanel:(CIFilter *)forFilter;
-(IBAction) configureInputTransition:(NSButton *)sender;
- (IBAction)addFilterAction:(NSSegmentedControl *)sender;
-(IBAction) clearGradient:(NSButton *)sender;
@property (weak) IBOutlet NSArrayController *multiSourceController;
@property (weak) IBOutlet NSArrayController *currentEffectsController;
@property (weak) IBOutlet NSWindow *cropSelectionWindow;
@property (weak) IBOutlet NSView *sourceConfigView;
@property (strong) IBOutlet NSObjectController *inputobjctrl;
@property (strong) NSViewController *inputConfigViewController;
@end