1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433
|
/** <title>NSActionCell</title>
<abstract>Abstract cell for target/action paradigm</abstract>
Copyright (C) 1996-1999 Free Software Foundation, Inc.
Author: Scott Christley <scottc@net-community.com>
Date: 1996
This file is part of the GNUstep GUI Library.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; see the file COPYING.LIB.
If not, see <http://www.gnu.org/licenses/> or write to the
Free Software Foundation, 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#import "config.h"
#import <Foundation/NSCoder.h>
#import "AppKit/NSActionCell.h"
#import "AppKit/NSControl.h"
@implementation NSActionCell
static Class controlClass;
/*
* Class methods
*/
+ (void) initialize
{
if (self == [NSActionCell class])
{
controlClass = [NSControl class];
[self setVersion: 1];
}
}
/*
* Instance methods
*/
/*
* Configuring an NSActionCell
*/
/**
* Sets the alignment of text within the receiver.
*/
- (void) setAlignment: (NSTextAlignment)mode
{
[super setAlignment: mode];
if (_control_view)
if ([_control_view isKindOfClass: controlClass])
[(NSControl *)_control_view updateCell: self];
}
/**
* If <code>YES</code> 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 <code>YES</code> 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 <code>YES</code> 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
|