mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 00:55:37 +00:00
24 lines
742 B
Objective-C
24 lines
742 B
Objective-C
#import <Foundation/NSBundle.h>
|
|
#import <Foundation/NSArray.h>
|
|
#import <AppKit/NSView.h>
|
|
#import <AppKit/NSNibDeclarations.h>
|
|
|
|
@class MVPreferencesController;
|
|
|
|
extern const unsigned int groupViewHeight, multiIconViewYOffset;
|
|
|
|
@interface MVPreferencesGroupedIconView : NSView {
|
|
IBOutlet MVPreferencesController *preferencesController;
|
|
NSBundle *selectedPane;
|
|
NSArray *preferencePanes, *preferencePaneGroups;
|
|
NSMutableArray *groupMultiIconViews;
|
|
}
|
|
- (void) setPreferencesController:(MVPreferencesController *) newPreferencesController;
|
|
|
|
- (void) setPreferencePanes:(NSArray *) newPreferencePanes;
|
|
- (NSArray *) preferencePanes;
|
|
|
|
- (void) setPreferencePaneGroups:(NSArray *) newPreferencePaneGroups;
|
|
- (NSArray *) preferencePaneGroups;
|
|
@end
|