ample/MA2ME/MediaViewController.h

30 lines
578 B
C
Raw Normal View History

2020-08-21 22:38:02 +00:00
//
// MediaViewController.h
// MA2ME
//
// 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 04:13:23 +00:00
@property (weak) IBOutlet NSOutlineView *outlineView;
- (IBAction)buttonDelete:(id)sender;
@end
@interface TablePathView : NSTableCellView
@property (weak) IBOutlet NSPathControl *pathControl;
@property (weak) IBOutlet NSButton *deleteButton;
2020-08-21 22:38:02 +00:00
@end
NS_ASSUME_NONNULL_END