mirror of
https://github.com/ksherlock/ample.git
synced 2025-01-09 15:30:04 +00:00
376f808d29
uses bound nsarray controller.
30 lines
570 B
Objective-C
30 lines
570 B
Objective-C
//
|
|
// MediaViewController.h
|
|
// Ample
|
|
//
|
|
// 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>
|
|
|
|
@property (weak) IBOutlet NSOutlineView *outlineView;
|
|
@property (nonatomic) NSDictionary *media;
|
|
@property NSArray *args;
|
|
|
|
- (IBAction)ejectAction:(id)sender;
|
|
- (IBAction)pathAction:(id)sender;
|
|
|
|
|
|
//-(void)setMedia: (NSDictionary *)media;
|
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|