Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(11)

Side by Side Diff: webkit/api/src/mac/WebInputEventFactory.mm

Issue 159021: Flip screen coordinates when converting NSEvent to WebMouseEvent. Enable proc... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/tab_contents/tab_contents_view_mac.mm ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2004, 2006, 2007 Apple Inc. All rights reserved. 2 * Copyright (C) 2004, 2006, 2007 Apple Inc. All rights reserved.
3 * Copyright (C) 2006-2009 Google Inc. 3 * Copyright (C) 2006-2009 Google Inc.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 949 matching lines...) Expand 10 before | Expand all | Expand 10 after
960 case NSRightMouseDragged: 960 case NSRightMouseDragged:
961 result.type = WebInputEvent::MouseMove; 961 result.type = WebInputEvent::MouseMove;
962 result.button = WebMouseEvent::ButtonRight; 962 result.button = WebMouseEvent::ButtonRight;
963 break; 963 break;
964 default: 964 default:
965 ASSERT_NOT_REACHED(); 965 ASSERT_NOT_REACHED();
966 } 966 }
967 967
968 NSPoint location = [NSEvent mouseLocation]; // global coordinates 968 NSPoint location = [NSEvent mouseLocation]; // global coordinates
969 result.globalX = location.x; 969 result.globalX = location.x;
970 result.globalY = location.y; 970 result.globalY = [[[view window] screen] frame].size.height - location.y;
971 971
972 NSPoint windowLocal = [event locationInWindow]; 972 NSPoint windowLocal = [event locationInWindow];
973 location = [view convertPoint:windowLocal fromView:nil]; 973 location = [view convertPoint:windowLocal fromView:nil];
974 result.y = [view frame].size.height - location.y; // flip y 974 result.y = [view frame].size.height - location.y; // flip y
975 result.x = location.x; 975 result.x = location.x;
976 result.windowX = result.x; 976 result.windowX = result.x;
977 result.windowY = result.y; 977 result.windowY = result.y;
978 978
979 result.modifiers = modifiersFromEvent(event); 979 result.modifiers = modifiersFromEvent(event);
980 980
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
1131 result.deltaX = [event deltaX] * scrollbarPixelsPerCocoaTick; 1131 result.deltaX = [event deltaX] * scrollbarPixelsPerCocoaTick;
1132 result.deltaY = [event deltaY] * scrollbarPixelsPerCocoaTick; 1132 result.deltaY = [event deltaY] * scrollbarPixelsPerCocoaTick;
1133 } 1133 }
1134 1134
1135 result.timeStampSeconds = [event timestamp]; 1135 result.timeStampSeconds = [event timestamp];
1136 1136
1137 return result; 1137 return result;
1138 } 1138 }
1139 1139
1140 } // namespace WebKit 1140 } // namespace WebKit
OLDNEW
« no previous file with comments | « chrome/browser/tab_contents/tab_contents_view_mac.mm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698