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