mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
27 lines
753 B
Objective-C
27 lines
753 B
Objective-C
#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;
|
|
|
|
@interface MVPreferencesMultipleIconView : NSView
|
|
{
|
|
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 |