2009-03-08 01:49:50 +00:00
|
|
|
//
|
|
|
|
// PreferencePanePlugin.h
|
|
|
|
// Cog
|
|
|
|
//
|
|
|
|
// Created by Vincent Spader on 3/7/09.
|
|
|
|
// Copyright 2009 __MyCompanyName__. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
2021-01-08 05:25:30 +00:00
|
|
|
#define NSLocalizedPrefString(key) \
|
2022-02-07 05:49:27 +00:00
|
|
|
[[NSBundle bundleWithIdentifier:@"org.cogx.cog.preferences"] localizedStringForKey:(key) value:@"" table:nil]
|
2009-03-08 01:49:50 +00:00
|
|
|
|
2021-01-08 05:25:30 +00:00
|
|
|
@protocol PreferencePane <NSObject>
|
2009-03-08 01:49:50 +00:00
|
|
|
@required
|
2021-01-08 05:25:30 +00:00
|
|
|
@property(readonly) NSView *view;
|
|
|
|
@property(readonly, copy) NSString *title;
|
|
|
|
@property(readonly) NSImage *icon;
|
2009-03-08 01:49:50 +00:00
|
|
|
|
2022-06-24 07:29:50 +00:00
|
|
|
@optional
|
2022-07-25 06:14:52 +00:00
|
|
|
- (IBAction)refreshPathList:(id)sender;
|
2022-06-24 07:29:50 +00:00
|
|
|
- (IBAction)showPathSuggester:(id)sender;
|
|
|
|
|
2009-03-08 01:49:50 +00:00
|
|
|
@end
|
|
|
|
|
2022-02-07 05:49:27 +00:00
|
|
|
@protocol PreferencePanePlugin <NSObject>
|
2009-03-08 01:49:50 +00:00
|
|
|
@required
|
|
|
|
|
2021-01-08 05:25:30 +00:00
|
|
|
// An array of PrefPaneController instances that the plugin has available
|
|
|
|
+ (NSArray<id<PreferencePane>> *)preferencePanes;
|
2009-03-08 01:49:50 +00:00
|
|
|
|
|
|
|
@end
|