mirror of
https://github.com/ksherlock/ample.git
synced 2024-11-19 02:11:08 +00:00
376f808d29
uses bound nsarray controller.
23 lines
450 B
Objective-C
23 lines
450 B
Objective-C
//
|
|
// TableCellView.h
|
|
// Ample
|
|
//
|
|
// Created by Kelvin Sherlock on 9/13/2020.
|
|
// Copyright © 2020 Kelvin Sherlock. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
//NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
|
|
@interface TablePathView : NSTableCellView
|
|
@property (weak) IBOutlet NSPathControl *pathControl;
|
|
@property (weak) IBOutlet NSButton *ejectButton;
|
|
@property (weak) IBOutlet NSImageView *dragHandle;
|
|
@property BOOL movable;
|
|
@end
|
|
|
|
//NS_ASSUME_NONNULL_END
|