home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
NeXTSTEP 3.2 (Developer)
/
NS_dev_3.2.iso
/
NextDeveloper
/
Headers
/
appkit
/
NXColorWell.h
< prev
next >
Wrap
Text File
|
1992-02-03
|
966b
|
50 lines
/*
NXColorWell.h
Application Kit, Release 2.0
Copyright (c) 1990, NeXT, Inc. All rights reserved.
*/
#import "Control.h"
@interface NXColorWell : Control
{
NXColor color;
id _target;
SEL _action;
BOOL _isActive, _isBordered, _cantDraw, _isNotContinuous;
void *_reservedPtr;
}
+ deactivateAllWells;
+ activeWellsTakeColorFrom:sender;
+ activeWellsTakeColorFrom:sender continuous:(BOOL)flag;
- initFrame:(const NXRect *)theFrame;
- deactivate;
- (int)activate:(int)exclusive;
- (BOOL)isActive;
- (BOOL)isContinuous;
- setContinuous:(BOOL)flag;
- drawWellInside:(const NXRect *)insideRect;
- drawSelf:(const NXRect *)rects :(int)rectCount;
- setEnabled:(BOOL)flag;
- (BOOL)isBordered;
- setBordered:(BOOL)flag;
- awake;
- (BOOL)acceptsFirstMouse;
- mouseDown:(NXEvent *)theEvent;
- takeColorFrom:sender;
- setColor:(NXColor)color;
- (NXColor)color;
- target;
- setTarget:anObject;
- (SEL)action;
- setAction:(SEL)aSelector;
@end