2006-09-04 18:06:23 +00:00
|
|
|
//
|
|
|
|
// PreferencesController.h
|
|
|
|
// Cog
|
|
|
|
//
|
2006-09-04 18:46:18 +00:00
|
|
|
// Created by Vincent Spader on 9/4/06.
|
|
|
|
// Copyright 2006 Vincent Spader. All rights reserved.
|
2006-09-04 18:06:23 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
2009-03-08 01:49:50 +00:00
|
|
|
@class PreferencesWindow;
|
2006-09-04 18:06:23 +00:00
|
|
|
@interface PreferencesController : NSObject {
|
2009-03-08 01:49:50 +00:00
|
|
|
PreferencesWindow *window;
|
2006-09-04 18:06:23 +00:00
|
|
|
}
|
|
|
|
|
2009-03-08 01:49:50 +00:00
|
|
|
- (IBAction)showPreferences:(id)sender;
|
2022-06-24 07:29:50 +00:00
|
|
|
- (IBAction)showPathSuggester:(id)sender;
|
2006-09-04 18:06:23 +00:00
|
|
|
|
|
|
|
@end
|