darling-cocotron/AppKit/NSEvent.subproj/NSEvent_mouse.m
Christopher Lloyd ac8c6a74cd - Issue #50, Binary bplist reader from Mike Ash and Jens Ayton
- Issue #55, Rolf Jansen's NSEvent deltaZ to deltaY fix
- Issue #56, Rolf Jansen's Recent Documents fix
- thinkertons NSRangeFromString implementation added
- Small amount of NSUTF16BigEndianStringEncoding added to support bplist reader
2007-12-19 15:51:38 +00:00

45 lines
1.9 KiB
Objective-C
Executable File

/* Copyright (c) 2006-2007 Christopher J. W. Lloyd
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
// Original - Christopher Lloyd <cjwl@objc.net>
#import <AppKit/NSEvent_mouse.h>
@implementation NSEvent_mouse
-initWithType:(NSEventType)type location:(NSPoint)location modifierFlags:(unsigned)modifierFlags window:(NSWindow *)window clickCount:(int)clickCount {
[super initWithType:type location:location modifierFlags:modifierFlags window:window];
_clickCount=clickCount;
return self;
}
-(int)clickCount {
return _clickCount;
}
-initWithType:(NSEventType)type location:(NSPoint)location modifierFlags:(unsigned)modifierFlags window:(NSWindow *)window deltaY:(float)deltaY {
[super initWithType:type location:location modifierFlags:modifierFlags window:window];
_deltaY=deltaY;
return self;
}
-(float)deltaX {
return 0.0;
}
-(float)deltaY {
return _deltaY;
}
-(float)deltaZ {
return 0.0;
}
@end