// // PreferencePanePlugin.h // Cog // // Created by Vincent Spader on 3/7/09. // Copyright 2009 __MyCompanyName__. All rights reserved. // #import #define NSLocalizedPrefString(key) \ [[NSBundle bundleWithIdentifier:@"org.cogx.cog.preferences"] localizedStringForKey:(key) value:@"" table:nil] @protocol PreferencePane @required @property(readonly) NSView *view; @property(readonly, copy) NSString *title; @property(readonly) NSImage *icon; @optional - (IBAction)refreshPathList:(id)sender; - (IBAction)showPathSuggester:(id)sender; @end @protocol PreferencePanePlugin @required // An array of PrefPaneController instances that the plugin has available + (NSArray> *)preferencePanes; @end