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 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682
|
/** <title>NSCursor</title>
<abstract>Holds an image to use as a cursor</abstract>
Copyright (C) 1996,1999,2001 Free Software Foundation, Inc.
Author: Scott Christley <scottc@net-community.com>
Date: 1996
Author: Adam Fedor <fedor@gnu.org>
Date: Dec 2001
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 <Foundation/NSArray.h>
#import <Foundation/NSDebug.h>
#import <Foundation/NSDictionary.h>
#import <Foundation/NSKeyedArchiver.h>
#import "AppKit/NSColor.h"
#import "AppKit/NSCursor.h"
#import "AppKit/NSGraphics.h"
#import "AppKit/NSImage.h"
#import "AppKit/NSBitmapImageRep.h"
#import "GNUstepGUI/GSDisplayServer.h"
// Class variables
static NSMutableArray *gnustep_gui_cursor_stack;
static NSCursor *gnustep_gui_current_cursor;
static BOOL gnustep_gui_hidden_until_move;
static Class NSCursor_class;
static NSMutableDictionary *cursorDict = nil;
@implementation NSCursor
/*
* Class methods
*/
+ (void) initialize
{
if (self == [NSCursor class])
{
// Initial version
[self setVersion: 1];
// Initialize class variables
NSCursor_class = self;
gnustep_gui_cursor_stack = [[NSMutableArray alloc] initWithCapacity: 1];
gnustep_gui_hidden_until_move = NO;
cursorDict = [NSMutableDictionary new];
[[self arrowCursor] set];
}
}
#ifdef WIN32
+ (NSUInteger) count
{
return [gnustep_gui_cursor_stack count];
}
#endif
- (void *) _cid
{
return _cid;
}
- (void) _setCid: (void *)val
{
_cid = val;
}
- (void) _computeCid
{
void *c;
if (_cursor_image == nil)
{
_cid = NULL;
return;
}
[GSCurrentServer() imagecursor: _hot_spot : _cursor_image : &c];
_cid = c;
}
/**<p>Hides the current cursor.</p>
*/
+ (void) hide
{
[GSCurrentServer() hidecursor];
}
/**<p>Pops the cursor off the top of the stack and makes the previous one
as the current cursor.</p>
*/
+ (void) pop
{
/*
* The object we pop is the current cursor
*/
if ([gnustep_gui_cursor_stack count] > 0)
{
NSCursor *c = RETAIN([gnustep_gui_cursor_stack lastObject]);
[gnustep_gui_cursor_stack removeLastObject];
NSDebugLLog(@"NSCursor", @"Cursor pop");
[c set];
RELEASE(c);
}
}
/**<p>Hides the cursor if <var>flag</var> is YES. Unhides it if NO</p>
*/
+ (void) setHiddenUntilMouseMoves: (BOOL)flag
{
if (flag)
{
[self hide];
}
else
{
[self unhide];
}
gnustep_gui_hidden_until_move = flag;
}
/**<p>Returns whther the cursor is hidden until mouse moves</p>
*/
+ (BOOL) isHiddenUntilMouseMoves
{
return gnustep_gui_hidden_until_move;
}
/**<p>Shows the NSCursor.</p>
<p>See Also: +hide</p>
*/
+ (void) unhide
{
[GSCurrentServer() showcursor];
}
/*
* Getting the Cursor
*/
static
NSCursor *getStandardCursor(NSString *name, int style)
{
NSCursor *cursor = [cursorDict objectForKey: name];
if (cursor == nil)
{
void *c = NULL;
cursor = [[NSCursor_class alloc] initWithImage: nil
hotSpot: NSZeroPoint];
if (nil != cursor)
{
[GSCurrentServer() standardcursor: style : &c];
if (c == NULL)
{
/*
There is no standard cursor with this name defined in the
backend, so try an image with this name.
*/
[cursor setImage: [NSImage imageNamed: name]];
}
else
{
[cursor _setCid: c];
}
cursor->_cursor_flags.type = style;
[cursorDict setObject: cursor forKey: name];
RELEASE(cursor);
}
}
return cursor;
}
/**<p>Returns an arrow cursor.</p>
*/
+ (NSCursor*) arrowCursor
{
return getStandardCursor(@"GSArrowCursor", GSArrowCursor);
}
/**<p>Returns an I-beam cursor.</p>
*/
+ (NSCursor*) IBeamCursor
{
return getStandardCursor(@"GSIBeamCursor", GSIBeamCursor);
}
+ (NSCursor*) closedHandCursor
{
return getStandardCursor(@"GSClosedHandCursor", GSClosedHandCursor);
}
+ (NSCursor*) contextualMenuCursor
{
return getStandardCursor(@"GSContextualMenuCursor", GSContextualMenuCursor);
}
+ (NSCursor*) crosshairCursor
{
return getStandardCursor(@"GSCrosshairCursor", GSCrosshairCursor);
}
+ (NSCursor*) dragCopyCursor
{
return getStandardCursor(@"GSDragCopyCursor", GSDragCopyCursor);
}
+ (NSCursor*) dragLinkCursor
{
return getStandardCursor(@"GSDragLinkCursor", GSDragLinkCursor);
}
+ (NSCursor*) disappearingItemCursor
{
return getStandardCursor(@"GSDisappearingItemCursor", GSDisappearingItemCursor);
}
+ (NSCursor*) openHandCursor
{
return getStandardCursor(@"GSOpenHandCursor", GSOpenHandCursor);
}
+ (NSCursor*) operationNotAllowedCursor
{
return getStandardCursor(@"GSOperationNotAllowedCursor",
GSOperationNotAllowedCursor);
}
+ (NSCursor*) pointingHandCursor
{
return getStandardCursor(@"GSPointingHandCursor", GSPointingHandCursor);
}
+ (NSCursor*) resizeDownCursor
{
return getStandardCursor(@"GSResizeDownCursor", GSResizeDownCursor);
}
+ (NSCursor*) resizeLeftCursor
{
return getStandardCursor(@"GSResizeLeftCursor", GSResizeLeftCursor);
}
+ (NSCursor*) resizeLeftRightCursor
{
return getStandardCursor(@"GSResizeLeftRightCursor", GSResizeLeftRightCursor);
}
+ (NSCursor*) resizeRightCursor
{
return getStandardCursor(@"GSResizeRightCursor", GSResizeRightCursor);
}
+ (NSCursor*) resizeUpCursor
{
return getStandardCursor(@"GSResizeUpCursor", GSResizeUpCursor);
}
+ (NSCursor*) resizeUpDownCursor
{
return getStandardCursor(@"GSResizeUpDownCursor", GSResizeUpDownCursor);
}
/**<p>Returns the current cursor.</p>
*/
+ (NSCursor*) currentCursor
{
return gnustep_gui_current_cursor;
}
+ (NSCursor*) currentSystemCursor
{
// FIXME
return nil;
}
+ (NSCursor*) greenArrowCursor
{
NSString *name = @"GSGreenArrowCursor";
NSCursor *cursor = [cursorDict objectForKey: name];
if (cursor == nil)
{
void *c;
cursor = [[NSCursor_class alloc] initWithImage: nil
hotSpot: NSZeroPoint];
[GSCurrentServer() standardcursor: GSArrowCursor : &c];
[GSCurrentServer() recolorcursor: [NSColor greenColor]
: [NSColor blackColor] : c];
[cursor _setCid: c];
[cursorDict setObject: cursor forKey: name];
RELEASE(cursor);
}
return cursor;
}
/*
* Initializing a New NSCursor Object
*/
- (id) init
{
return [self initWithImage: nil hotSpot: NSZeroPoint];
}
/**<p>Initializes and returns a new NSCursor with a NSImage <var>newImage</var>
and a hot spot point with x=0 and y=0 (top left corner).</p>
<p>See Also: -initWithImage:hotSpot:</p>
*/
- (id) initWithImage: (NSImage *)newImage
{
return [self initWithImage: newImage
hotSpot: NSZeroPoint];
}
/**<p>Initializes and returns a new NSCursor with a NSImage <var>newImage</var>
and the hot spot to <var>hotSpot</var>.</p>
<p>NB. The coordinate system of an NSCursor is flipped, so a hotSpot at
0,0 is in the top left corner of the cursor.</p>
<p>See Also: -initWithImage: -setImage:</p>
*/
- (id) initWithImage: (NSImage *)newImage hotSpot: (NSPoint)hotSpot
{
//_cursor_flags.is_set_on_mouse_entered = NO;
//_cursor_flags.is_set_on_mouse_exited = NO;
_hot_spot = hotSpot;
[self setImage: newImage];
return self;
}
- (id)initWithImage:(NSImage *)newImage
foregroundColorHint:(NSColor *)fg
backgroundColorHint:(NSColor *)bg
hotSpot:(NSPoint)hotSpot
{
self = [self initWithImage: newImage hotSpot: hotSpot];
if (self == nil)
return nil;
if (fg || bg)
{
if (bg == nil)
bg = [NSColor whiteColor];
if (fg == nil)
fg = [NSColor blackColor];
bg = [bg colorUsingColorSpaceName: NSDeviceRGBColorSpace];
fg = [fg colorUsingColorSpaceName: NSDeviceRGBColorSpace];
[GSCurrentServer() recolorcursor: fg : bg : _cid];
}
return self;
}
- (void) dealloc
{
RELEASE(_cursor_image);
if (_cid)
{
[GSCurrentServer() freecursor: _cid];
}
[super dealloc];
}
/**<p>Returns the hot spot point of the NSCursor. This is in the
* cursor's coordinate system which is a flipped on (origin at the
* top left of the cursor).</p>
*/
- (NSPoint) hotSpot
{
// FIXME: This wont work for the standard cursor
return _hot_spot;
}
/**<p>Returns the image of the NSCursor</p>
*/
- (NSImage*) image
{
// FIXME: This wont work for the standard cursor
return _cursor_image;
}
/**<p>Sets the hot spot point of the NSCursor to <var>spot</var></p>
*/
- (void) setHotSpot: (NSPoint)spot
{
_hot_spot = spot;
[self _computeCid];
}
/**<p>Sets <var>newImage</var> the image of the NSCursor</p>
*/
- (void) setImage: (NSImage *)newImage
{
ASSIGN(_cursor_image, newImage);
[self _computeCid];
}
/** <p>Returns whether if the cursor is set on -mouseEntered:.
</p><p>See Also: -setOnMouseEntered: -mouseEntered: -set
-isSetOnMouseExited</p>
*/
- (BOOL) isSetOnMouseEntered
{
return _cursor_flags.is_set_on_mouse_entered;
}
/** <p>Returns whether if the cursor is push on -mouseExited:.
</p><p>See Also: -setOnMouseEntered: -mouseExited: -set
-isSetOnMouseEntered</p>
*/
- (BOOL) isSetOnMouseExited
{
return _cursor_flags.is_set_on_mouse_exited;
}
/**<p>Sets the cursor if -isSetOnMouseEntered is YES or pushs the cursor
if -isSetOnMouseExited is NO</p>
<p>See Also: -isSetOnMouseEntered -isSetOnMouseExited</p>
*/
- (void) mouseEntered: (NSEvent*)theEvent
{
NSDebugLLog(@"NSCursor", @"Cursor mouseEntered:enter %d exit %d",
_cursor_flags.is_set_on_mouse_entered, _cursor_flags.is_set_on_mouse_exited);
if (_cursor_flags.is_set_on_mouse_entered == YES)
{
[self set];
}
else if (_cursor_flags.is_set_on_mouse_exited == NO)
{
/*
* Undocumented behavior - if a cursor is not set on exit or entry,
* we assume a push-pop situation instead.
*/
[self push];
}
}
/**<p>Sets the cursor if -isSetOnMouseExited is YES or pops the cursor
if -isSetOnMouseEntered is NO</p>
<p>See Also: -isSetOnMouseExited -isSetOnMouseEntered </p>
*/
- (void) mouseExited: (NSEvent*)theEvent
{
NSDebugLLog(@"NSCursor", @"Cursor mouseExited: enter %d exit %d",
_cursor_flags.is_set_on_mouse_entered, _cursor_flags.is_set_on_mouse_exited);
if (_cursor_flags.is_set_on_mouse_exited == YES)
{
[self set];
}
else if (_cursor_flags.is_set_on_mouse_entered == NO)
{
/*
* Undocumented behavior - if a cursor is not set on exit or entry,
* we assume a push-pop situation instead.
*/
[self pop];
}
else
{
/*
* The cursor was set on entry, we reset it to the default cursor on exit.
* Using push and pop all the time would seem to be a clearer way.
*/
[[NSCursor arrowCursor] set];
}
}
/**<p>Pops the cursor off the top of the stack and makes the previous
the current cursor.</p>
*/
- (void) pop
{
[NSCursor_class pop];
}
/**<p>Adds the NSCursor into the cursor stack and makes it the current
cursor.</p><p>See Also: -pop -set</p>
*/
- (void) push
{
[gnustep_gui_cursor_stack addObject: gnustep_gui_current_cursor];
[self set];
NSDebugLLog(@"NSCursor", @"Cursor push %p", _cid);
}
/**<p>Sets the NSCursor as the current cursor.</p>
*/
- (void) set
{
ASSIGN(gnustep_gui_current_cursor, self);
if (_cid)
{
[GSCurrentServer() setcursor: _cid];
}
else
{
/*
* No image? This is odd, so we set an standard
* cursor image (GSArrowCursor).
*/
void *c = NULL;
[GSCurrentServer() standardcursor: GSArrowCursor : &c];
if (c != NULL)
{
[self _setCid: c];
[GSCurrentServer() setcursor: _cid];
}
}
}
/** <p>Sets whether if the cursor is set on -mouseEntered:.
</p><p>See Also: -isSetOnMouseEntered -mouseEntered: -set</p>
*/
- (void) setOnMouseEntered: (BOOL)flag
{
_cursor_flags.is_set_on_mouse_entered = flag;
}
/** <p>Sets whether if the cursor is push on -mouseExited:.
</p><p>See Also: -isSetOnMouseExited -mouseExited: -set</p>
*/
- (void) setOnMouseExited: (BOOL)flag
{
_cursor_flags.is_set_on_mouse_exited = flag;
}
/*
* NSCoding protocol
*/
- (void) encodeWithCoder: (NSCoder*)aCoder
{
if ([aCoder allowsKeyedCoding])
{
if (nil != _cursor_image)
{
[aCoder encodeObject: _cursor_image forKey: @"NSImage"];
}
else
{
int type = _cursor_flags.type;
[aCoder encodeInt: type forKey: @"NSCursorType"];
}
[aCoder encodePoint: _hot_spot forKey: @"NSHotSpot"];
}
else
{
BOOL flag;
// FIXME: This wont work for the standard cursor
flag = _cursor_flags.is_set_on_mouse_entered;
[aCoder encodeValueOfObjCType: @encode(BOOL) at: &flag];
flag = _cursor_flags.is_set_on_mouse_exited;
[aCoder encodeValueOfObjCType: @encode(BOOL) at: &flag];
[aCoder encodeObject: _cursor_image];
[aCoder encodePoint: _hot_spot];
}
}
- (id) initWithCoder: (NSCoder*)aDecoder
{
if ([aDecoder allowsKeyedCoding])
{
DESTROY(self);
if ([aDecoder containsValueForKey: @"NSCursorType"])
{
int type = [aDecoder decodeIntForKey: @"NSCursorType"];
switch (type)
{
case 0:
self = [NSCursor arrowCursor];
break;
case 1:
self = [NSCursor IBeamCursor];
break;
case 2:
self = [NSCursor dragLinkCursor];
break;
case 3:
self = [NSCursor operationNotAllowedCursor];
break;
case 5:
self = [NSCursor dragCopyCursor];
break;
case 11:
self = [NSCursor closedHandCursor];
break;
case 12:
self = [NSCursor openHandCursor];
break;
case 13:
self = [NSCursor pointingHandCursor];
break;
case 17:
self = [NSCursor resizeLeftCursor];
break;
case 18:
self = [NSCursor resizeRightCursor];
break;
case 19:
self = [NSCursor resizeLeftRightCursor];
break;
case 20:
self = [NSCursor crosshairCursor];
break;
case 21:
self = [NSCursor resizeUpCursor];
break;
case 22:
self = [NSCursor resizeDownCursor];
break;
case 24:
self = [NSCursor contextualMenuCursor];
break;
case 25:
self = [NSCursor disappearingItemCursor];
break;
default:
// FIXME
self = [NSCursor arrowCursor];
break;
}
RETAIN(self);
}
else
{
NSPoint hotSpot = NSMakePoint(0, 0);
NSImage *image = nil;
if ([aDecoder containsValueForKey: @"NSHotSpot"])
{
hotSpot = [aDecoder decodePointForKey: @"NSHotSpot"];
}
if ([aDecoder containsValueForKey: @"NSImage"])
{
image = [aDecoder decodeObjectForKey: @"NSImage"];
}
self = [[NSCursor alloc] initWithImage: image
hotSpot: hotSpot];
}
}
else
{
BOOL flag;
[aDecoder decodeValueOfObjCType: @encode(BOOL)
at: &flag];
_cursor_flags.is_set_on_mouse_entered = flag;
[aDecoder decodeValueOfObjCType: @encode(BOOL)
at: &flag];
_cursor_flags.is_set_on_mouse_exited = flag;
_cursor_image = [aDecoder decodeObject];
_hot_spot = [aDecoder decodePoint];
[self _computeCid];
}
return self;
}
@end
|