Cog/Preferences/General/PrefPaneController.h

36 lines
845 B
C
Raw Normal View History

2006-09-04 14:06:23 -04:00
//
// PreferencesController.h
// Preferences
//
// 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"
#import "FileDrawerPane.h"
#import "RemotePane.h"
#import "UpdatesPane.h"
#import "OutputPane.h"
2007-02-24 23:23:48 -03:00
#import "ScrobblerPane.h"
2006-09-04 14:06:23 -04:00
@interface PrefPaneController : NSObject <SS_PreferencePaneProtocol> {
IBOutlet HotKeyPane *hotKeyPane;
IBOutlet FileDrawerPane *fileDrawerPane;
IBOutlet RemotePane *remotePane;
IBOutlet UpdatesPane *updatesPane;
IBOutlet OutputPane *outputPane;
2007-02-24 23:23:48 -03:00
IBOutlet ScrobblerPane *scrobblerPane;
2006-09-04 14:06:23 -04:00
}
- (HotKeyPane *)hotKeyPane;
- (FileDrawerPane *)fileDrawerPane;
- (RemotePane *)remotePane;
- (UpdatesPane *)updatesPane;
2007-02-24 23:23:48 -03:00
- (OutputPane *)outputPane;
- (ScrobblerPane *)scrobblerPane;
2006-09-04 14:06:23 -04:00
@end