Mozilla/mozilla/chimera/PreferencePanes/MVPreferencesMultipleIconView.h
sfraser%netscape.com c8e5d5ca01 Fix for bug 163480 (dragging from inactive tabs). Also add disabled generic icon to about:blank tabs.
git-svn-id: svn://10.0.0.236/trunk@127646 18797224-902f-48f8-a5cc-f745e15eee43
2002-08-19 21:53:42 +00:00

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