/**
YES
then the receiver is drawn with a bezeled border.
*/
- (void) setBezeled: (BOOL)flag
{
_cell.is_bezeled = flag;
if (_cell.is_bezeled)
_cell.is_bordered = NO;
if (_control_view)
if ([_control_view isKindOfClass: controlClass])
[(NSControl *)_control_view updateCell: self];
}
/**
* If YES
then receiver is drawn with a border.
*/
- (void) setBordered: (BOOL)flag
{
_cell.is_bordered = flag;
if (_cell.is_bordered)
_cell.is_bezeled = NO;
if (_control_view)
if ([_control_view isKindOfClass: controlClass])
[(NSControl *)_control_view updateCell: self];
}
/**
* If YES
then the receiver is capable of accepting input.
*/
- (void) setEnabled: (BOOL)flag
{
_cell.is_disabled = !flag;
if (_control_view)
if ([_control_view isKindOfClass: controlClass])
[(NSControl *)_control_view updateCell: self];
}
- (void) setFloatingPointFormat: (BOOL)autoRange
left: (NSUInteger)leftDigits
right: (NSUInteger)rightDigits
{
[super setFloatingPointFormat: autoRange
left: leftDigits
right: rightDigits];
if (_control_view)
if ([_control_view isKindOfClass: controlClass])
[(NSControl *)_control_view updateCell: self];
}
/**
* Sets the font to be used in the receiver.
*/
- (void) setFont: (NSFont*)fontObject
{
[super setFont: fontObject];
if (_control_view)
if ([_control_view isKindOfClass: controlClass])
[(NSControl *)_control_view updateCell: self];
// TODO: This should also set the font of the text object, when selected
}
/**
* Sets the image to be displayed in the receiver.
*/
- (void) setImage: (NSImage*)image
{
[super setImage: image];
if (_control_view)
if ([_control_view isKindOfClass: controlClass])
[(NSControl *)_control_view updateCell: self];
}
/*
* Manipulating NSActionCell Values
*/
/**
* Retrieve the value of the receiver
*/
- (id) objectValue
{
if (_cell.in_editing && _control_view)
if ([_control_view isKindOfClass: controlClass])
[(NSControl *)_control_view validateEditing];
return [super objectValue];
}
/**
* Retrieve the value of the receiver as an NSAttributedString.
*/
- (NSAttributedString*) attributedStringValue
{
if (_cell.in_editing && _control_view)
if ([_control_view isKindOfClass: controlClass])
[(NSControl *)_control_view validateEditing];
return [super attributedStringValue];
}
/**
* Retrieve the value of the receiver as an NSString.
*/
- (NSString *) stringValue
{
if (_cell.in_editing && _control_view)
if ([_control_view isKindOfClass: controlClass])
[(NSControl *)_control_view validateEditing];
return [super stringValue];
}
/**
* Retrieve the value of the receiver as a double.
*/
- (double) doubleValue
{
if (_cell.in_editing && _control_view)
if ([_control_view isKindOfClass: controlClass])
[(NSControl *)_control_view validateEditing];
return [super doubleValue];
}
/**
* Retrieve the value of the receiver as a float.
*/
- (float) floatValue
{
if (_cell.in_editing && _control_view)
if ([_control_view isKindOfClass: controlClass])
[(NSControl *)_control_view validateEditing];
return [super floatValue];
}
/**
* Retrieve the value of the receiver as an int.
*/
- (int) intValue
{
if (_cell.in_editing && _control_view)
if ([_control_view isKindOfClass: controlClass])
[(NSControl *)_control_view validateEditing];
return [super intValue];
}
/**
* Retrieve the value of the receiver as an NSInteger.
*/
- (NSInteger) integerValue
{
if (_cell.in_editing && _control_view)
if ([_control_view isKindOfClass: controlClass])
[(NSControl *)_control_view validateEditing];
return [super integerValue];
}
/**
* Set the value of the receiver from anObject.
*/
- (void) setObjectValue: (id)anObject
{
[super setObjectValue: anObject];
if (_control_view)
{
if ([_control_view isKindOfClass: controlClass])
{
if (_cell.in_editing)
{
[self _updateFieldEditor:
[(NSControl *)_control_view currentEditor]];
}
else
{
[(NSControl *)_control_view updateCell: self];
}
}
}
}
/**
* Set the value of the receiver from aString.
*/
// This method is currently needed, as NSCells implementation
// sometimes does not call setObjectValue:
- (void) setStringValue: (NSString*)aString
{
[super setStringValue: aString];
if (_control_view)
{
if ([_control_view isKindOfClass: controlClass])
{
if (_cell.in_editing)
{
[self _updateFieldEditor:
[(NSControl *)_control_view currentEditor]];
}
else
{
[(NSControl *)_control_view updateCell: self];
}
}
}
}
- (void) setAttributedStringValue: (NSAttributedString*)attribStr
{
[super setAttributedStringValue: attribStr];
if (_control_view)
{
if ([_control_view isKindOfClass: controlClass])
{
if (_cell.in_editing)
{
[self _updateFieldEditor:
[(NSControl *)_control_view currentEditor]];
}
else
{
[(NSControl *)_control_view updateCell: self];
}
}
}
}
/*
* Target and Action
*/
/**
* Retrieve the action from the receiver.
*/
- (SEL) action
{
return _action;
}
/**
* Set the action in the receiver as the selector aSelector.
*/
- (void) setAction: (SEL)aSelector
{
_action = aSelector;
}
/**
* Set the target in the receiver as anObject. NSActionCell does not retain its target!
*/
- (void) setTarget: (id)anObject
{
_target = anObject;
}
/**
* Return the target of the receiver.
*/
- (id) target
{
return _target;
}
/**
* Assigning a Tag.
*/
- (void) setTag: (NSInteger)anInt
{
_tag = anInt;
}
/**
* Return the tag.
*/
- (NSInteger) tag
{
return _tag;
}
/**
* Returns the control view of the receiver.
*/
-(NSView *) controlView
{
return _control_view;
}
/**
* Set the control view of the receiver.
*/
- (void) setControlView: (NSView*)view
{
_control_view = view;
}
- (void) drawWithFrame: (NSRect)cellFrame inView: (NSView*)controlView
{
if (_control_view != controlView)
_control_view = controlView;
[super drawWithFrame: cellFrame
inView: controlView];
}
/*
* NSCoding protocol
*/
- (void) encodeWithCoder: (NSCoder*)aCoder
{
[super encodeWithCoder: aCoder];
if ([aCoder allowsKeyedCoding])
{
[aCoder encodeInteger: [self tag] forKey: @"NSTag"];
if ([self target] != nil)
{
[aCoder encodeObject: [self target] forKey: @"NSTarget"];
}
if ([self action] != NULL)
{
[aCoder encodeObject: NSStringFromSelector([self action]) forKey: @"NSAction"];
}
[aCoder encodeObject: _control_view forKey: @"NSControlView"];
}
else
{
[aCoder encodeValueOfObjCType: @encode(NSInteger) at: &_tag];
[aCoder encodeConditionalObject: _target];
[aCoder encodeValueOfObjCType: @encode(SEL) at: &_action];
// This is only encoded for backward compatibility and won't be decoded.
[aCoder encodeConditionalObject: nil];
}
}
- (id) initWithCoder: (NSCoder*)aDecoder
{
self = [super initWithCoder: aDecoder];
if (!self)
return nil;
if ([aDecoder allowsKeyedCoding])
{
if ([aDecoder containsValueForKey: @"NSTag"])
{
[self setTag: [aDecoder decodeIntegerForKey: @"NSTag"]];
}
if ([aDecoder containsValueForKey: @"NSTarget"])
{
[self setTarget: [aDecoder decodeObjectForKey: @"NSTarget"]];
}
if ([aDecoder containsValueForKey: @"NSAction"])
{
NSString *action = [aDecoder decodeObjectForKey: @"NSAction"];
[self setAction: NSSelectorFromString(action)];
}
}
else
{
id dummy;
[aDecoder decodeValueOfObjCType: @encode(NSInteger) at: &_tag];
_target = [aDecoder decodeObject];
[aDecoder decodeValueOfObjCType: @encode(SEL) at: &_action];
// Don't decode _control_view, as this may no longer be valid.
dummy = [aDecoder decodeObject];
}
return self;
}
@end