ample/Ample/MediaViewController.h

31 lines
580 B
C
Raw Normal View History

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