2020-08-21 18:38:02 -04:00
|
|
|
//
|
|
|
|
// MediaViewController.h
|
2020-08-29 23:24:49 -04:00
|
|
|
// Ample
|
2020-08-21 18:38:02 -04:00
|
|
|
//
|
|
|
|
// Created by Kelvin Sherlock on 8/20/2020.
|
|
|
|
// Copyright © 2020 Kelvin Sherlock. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
|
|
@interface MediaViewController : NSViewController <NSOutlineViewDelegate, NSOutlineViewDataSource>
|
|
|
|
|
2020-08-22 00:13:23 -04:00
|
|
|
@property (weak) IBOutlet NSOutlineView *outlineView;
|
2020-08-25 00:35:40 -04:00
|
|
|
@property (nonatomic) NSDictionary *media;
|
2020-08-25 20:13:37 -04:00
|
|
|
@property NSArray *args;
|
|
|
|
|
2020-09-04 23:39:10 -04:00
|
|
|
- (IBAction)ejectAction:(id)sender;
|
2020-08-25 20:13:37 -04:00
|
|
|
- (IBAction)pathAction:(id)sender;
|
2020-08-22 00:13:23 -04:00
|
|
|
|
2020-08-24 20:23:56 -04:00
|
|
|
|
2020-08-25 00:35:40 -04:00
|
|
|
//-(void)setMedia: (NSDictionary *)media;
|
2020-08-24 20:23:56 -04:00
|
|
|
|
2020-08-22 00:13:23 -04:00
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-08-21 18:38:02 -04:00
|
|
|
NS_ASSUME_NONNULL_END
|