Cog/Preferences/PreferencesController.h
Christopher Snowhill ba33218ddf [Path Suggester] Automatically pop where required
The Path Suggester will now automatically open when new files are added
to the playlist and a given path is not in the sandbox settings. It will
also pop for both the File Tree and MIDI SoundFont path configuration
settings being changed.

Signed-off-by: Christopher Snowhill <kode54@gmail.com>
2022-06-24 00:52:03 -07:00

19 lines
359 B
Objective-C

//
// PreferencesController.h
// Cog
//
// Created by Vincent Spader on 9/4/06.
// Copyright 2006 Vincent Spader. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@class PreferencesWindow;
@interface PreferencesController : NSObject {
PreferencesWindow *window;
}
- (IBAction)showPreferences:(id)sender;
- (IBAction)showPathSuggester:(id)sender;
@end