Cog/Preferences/General/PrefPaneController.h
2008-02-17 19:27:29 +00:00

34 lines
756 B
Objective-C

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