mirror of
https://github.com/zakk4223/CocoaSplit.git
synced 2026-05-15 14:15:50 -06:00
28 lines
722 B
Objective-C
28 lines
722 B
Objective-C
//
|
|
// CSFFMpegCaptureViewController.h
|
|
// CSFFMpegCapturePlugin
|
|
//
|
|
// Created by Zakk on 6/14/16.
|
|
// Copyright © 2016 Zakk. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "CSFFMpegCapture.h"
|
|
|
|
@interface CSFFMpegCaptureViewController : NSViewController
|
|
|
|
@property (weak) CSFFMpegCapture *captureObj;
|
|
@property (weak) IBOutlet NSSegmentedControl *playlistControl;
|
|
@property (strong) IBOutlet NSArrayController *queueArrayController;
|
|
|
|
|
|
- (IBAction)queueTableDoubleClick:(NSTableView *)sender;
|
|
|
|
- (IBAction)chooseFile:(id)sender;
|
|
- (IBAction)nextAction:(id)sender;
|
|
- (IBAction)sliderValueChanged:(id)sender;
|
|
- (IBAction)pauseAction:(id)sender;
|
|
|
|
- (IBAction)tableControlAction:(NSSegmentedControl *)sender;
|
|
|
|
@end
|