// // PreferencesController.h // Preferences // // Created by Vincent Spader on 9/4/06. // Copyright 2006 Vincent Spader. All rights reserved. // #import #import "SS_PreferencePaneProtocol.h" #import "HotKeyPane.h" #import "OutputPane.h" @interface PrefPaneController : NSObject { IBOutlet HotKeyPane *hotKeyPane; IBOutlet OutputPane *outputPane; IBOutlet NSView *scrobblerView; IBOutlet NSView *remoteView; IBOutlet NSView *updatesView; } - (HotKeyPane *)hotKeyPane; - (OutputPane *)outputPane; - (PreferencePane *)remotePane; - (PreferencePane *)updatesPane; - (PreferencePane *)scrobblerPane; @end