cog/Preferences/General/PrefPaneController.h

35 lines
766 B
C
Raw Normal View History

2006-09-04 18:06:23 +00:00
//
// PreferencesController.h
// Preferences
//
// Created by Vincent Spader on 9/4/06.
// Copyright 2006 Vincent Spader. All rights reserved.
2006-09-04 18:06:23 +00:00
//
#import <Cocoa/Cocoa.h>
#import "SS_PreferencePaneProtocol.h"
#import "HotKeyPane.h"
#import "FileDrawerPane.h"
#import "OutputPane.h"
2006-09-04 18:06:23 +00:00
@interface PrefPaneController : NSObject <SS_PreferencePaneProtocol> {
IBOutlet HotKeyPane *hotKeyPane;
IBOutlet FileDrawerPane *fileDrawerPane;
IBOutlet OutputPane *outputPane;
IBOutlet NSView *scrobblerView;
IBOutlet NSView *remoteView;
IBOutlet NSView *updatesView;
2006-09-04 18:06:23 +00:00
}
- (HotKeyPane *)hotKeyPane;
- (FileDrawerPane *)fileDrawerPane;
2007-02-25 02:23:48 +00:00
- (OutputPane *)outputPane;
- (PreferencePane *)remotePane;
- (PreferencePane *)updatesPane;
- (PreferencePane *)scrobblerPane;
2006-09-04 18:06:23 +00:00
@end