2006-09-04 14:06:23 -04:00
|
|
|
//
|
|
|
|
// PreferencesController.h
|
|
|
|
// Preferences
|
|
|
|
//
|
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>
|
|
|
|
#import "SS_PreferencePaneProtocol.h"
|
|
|
|
|
|
|
|
#import "HotKeyPane.h"
|
2007-02-19 22:02:23 -03:00
|
|
|
#import "OutputPane.h"
|
2006-09-04 14:06:23 -04:00
|
|
|
|
|
|
|
@interface PrefPaneController : NSObject <SS_PreferencePaneProtocol> {
|
|
|
|
IBOutlet HotKeyPane *hotKeyPane;
|
2007-02-19 22:02:23 -03:00
|
|
|
IBOutlet OutputPane *outputPane;
|
2007-02-27 21:35:27 -03:00
|
|
|
|
|
|
|
IBOutlet NSView *scrobblerView;
|
|
|
|
IBOutlet NSView *remoteView;
|
|
|
|
IBOutlet NSView *updatesView;
|
2006-09-04 14:06:23 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
- (HotKeyPane *)hotKeyPane;
|
2007-02-24 23:23:48 -03:00
|
|
|
- (OutputPane *)outputPane;
|
2007-02-27 21:35:27 -03:00
|
|
|
|
|
|
|
- (PreferencePane *)remotePane;
|
|
|
|
- (PreferencePane *)updatesPane;
|
|
|
|
- (PreferencePane *)scrobblerPane;
|
2006-09-04 14:06:23 -04:00
|
|
|
|
|
|
|
@end
|