// // PreferencesController.h // Preferences // // Created by Vincent Spader on 9/4/06. // Copyright 2006 Vincent Spader. All rights reserved. // #import #import "PreferencePanePlugin.h" #import "HotKeyPane.h" #import "OutputPane.h" #import "MIDIPane.h" @interface GeneralPreferencesPlugin : NSObject { IBOutlet HotKeyPane *hotKeyPane; IBOutlet OutputPane *outputPane; IBOutlet MIDIPane *midiPane; IBOutlet NSView *playlistView; IBOutlet NSView *scrobblerView; IBOutlet NSView *remoteView; IBOutlet NSView *updatesView; IBOutlet NSView *growlView; IBOutlet NSView *appearanceView; IBOutlet NSView *midiView; } - (HotKeyPane *)hotKeyPane; - (OutputPane *)outputPane; - (MIDIPane *)midiPane; - (GeneralPreferencePane *)remotePane; - (GeneralPreferencePane *)updatesPane; - (GeneralPreferencePane *)scrobblerPane; - (GeneralPreferencePane *)playlistPane; - (GeneralPreferencePane *)growlPane; - (GeneralPreferencePane *)appearancePane; @end