2002-04-21 02:59:40 +04:00
|
|
|
#import <Foundation/NSBundle.h>
|
|
|
|
#import <AppKit/NSView.h>
|
|
|
|
#import <AppKit/NSNibDeclarations.h>
|
|
|
|
|
|
|
|
@class MVPreferencesController;
|
|
|
|
|
|
|
|
extern const NSSize buttonSize, iconSize;
|
|
|
|
extern const unsigned int titleBaseline, iconBaseline, bottomBorder;
|
|
|
|
|
2002-08-20 01:53:42 +04:00
|
|
|
@interface MVPreferencesMultipleIconView : NSView
|
|
|
|
{
|
2002-04-21 02:59:40 +04:00
|
|
|
IBOutlet MVPreferencesController *preferencesController;
|
|
|
|
unsigned int pressedIconIndex, focusedIndex;
|
|
|
|
int tag;
|
|
|
|
NSBundle *selectedPane;
|
|
|
|
NSArray *preferencePanes;
|
|
|
|
}
|
|
|
|
- (void) setPreferencesController:(MVPreferencesController *) newPreferencesController;
|
|
|
|
|
|
|
|
- (void) setPreferencePanes:(NSArray *) newPreferencePanes;
|
|
|
|
- (NSArray *) preferencePanes;
|
|
|
|
|
|
|
|
- (void) setSelectedPane:(NSBundle *) newSelectedClientRecord;
|
|
|
|
|
|
|
|
- (int) tag;
|
|
|
|
- (void) setTag:(int) newTag;
|
|
|
|
@end
|