Cog/Preferences/Preferences/PathSuggester.h
Christopher Snowhill e8dacdabda [Sandbox] Add Playlist Path Suggester
Add a dialog for suggesting sandbox paths to the Preferences general
page, in the context menu.

Signed-off-by: Christopher Snowhill <kode54@gmail.com>
2022-06-21 02:45:45 -07:00

23 lines
441 B
Objective-C

//
// PathSuggester.h
// Preferences
//
// Created by Christopher Snowhill on 6/21/22.
//
#import <Cocoa/Cocoa.h>
#import "SandboxPathBehaviorController.h"
NS_ASSUME_NONNULL_BEGIN
@interface PathSuggester : NSWindowController <NSTableViewDelegate> {
IBOutlet SandboxPathBehaviorController *sandboxPathBehaviorController;
IBOutlet NSArrayController *pathsList;
}
- (IBAction)beginSuggestion:(id)sender;
@end
NS_ASSUME_NONNULL_END