OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "base/logging.h" | 5 #include "base/logging.h" |
6 #include "base/pickle.h" | 6 #include "base/pickle.h" |
7 #include "grit/webkit_resources.h" | 7 #include "grit/webkit_resources.h" |
8 #include "third_party/skia/include/core/SkBitmap.h" | 8 #include "third_party/skia/include/core/SkBitmap.h" |
9 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCursorInfo.h" | 9 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCursorInfo.h" |
10 #include "ui/gfx/gdi_util.h" | 10 #include "ui/gfx/gdi_util.h" |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 case WebCursorInfo::TypeCopy: | 89 case WebCursorInfo::TypeCopy: |
90 return MAKEINTRESOURCE(IDC_COPYCUR); | 90 return MAKEINTRESOURCE(IDC_COPYCUR); |
91 case WebCursorInfo::TypeNone: | 91 case WebCursorInfo::TypeNone: |
92 return MAKEINTRESOURCE(IDC_CURSOR_NONE); | 92 return MAKEINTRESOURCE(IDC_CURSOR_NONE); |
93 case WebCursorInfo::TypeNotAllowed: | 93 case WebCursorInfo::TypeNotAllowed: |
94 return IDC_NO; | 94 return IDC_NO; |
95 case WebCursorInfo::TypeZoomIn: | 95 case WebCursorInfo::TypeZoomIn: |
96 return MAKEINTRESOURCE(IDC_ZOOMIN); | 96 return MAKEINTRESOURCE(IDC_ZOOMIN); |
97 case WebCursorInfo::TypeZoomOut: | 97 case WebCursorInfo::TypeZoomOut: |
98 return MAKEINTRESOURCE(IDC_ZOOMOUT); | 98 return MAKEINTRESOURCE(IDC_ZOOMOUT); |
| 99 // TODO(avi): get cursor images for grab/grabbing |
| 100 // http://crbug.com/74699 |
99 case WebCursorInfo::TypeGrab: | 101 case WebCursorInfo::TypeGrab: |
100 return MAKEINTRESOURCE(IDC_HAND_GRAB); | |
101 case WebCursorInfo::TypeGrabbing: | 102 case WebCursorInfo::TypeGrabbing: |
102 return MAKEINTRESOURCE(IDC_HAND_GRABBING); | 103 return IDC_ARROW; |
103 } | 104 } |
104 NOTREACHED(); | 105 NOTREACHED(); |
105 return NULL; | 106 return NULL; |
106 } | 107 } |
107 | 108 |
108 static bool IsSystemCursorID(LPCWSTR cursor_id) { | 109 static bool IsSystemCursorID(LPCWSTR cursor_id) { |
109 return cursor_id >= IDC_ARROW; // See WinUser.h | 110 return cursor_id >= IDC_ARROW; // See WinUser.h |
110 } | 111 } |
111 | 112 |
112 static WebCursorInfo::Type ToCursorType(HCURSOR cursor) { | 113 static WebCursorInfo::Type ToCursorType(HCURSOR cursor) { |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
235 } | 236 } |
236 | 237 |
237 void WebCursor::CleanupPlatformData() { | 238 void WebCursor::CleanupPlatformData() { |
238 external_cursor_ = NULL; | 239 external_cursor_ = NULL; |
239 | 240 |
240 if (custom_cursor_) { | 241 if (custom_cursor_) { |
241 DestroyIcon(custom_cursor_); | 242 DestroyIcon(custom_cursor_); |
242 custom_cursor_ = NULL; | 243 custom_cursor_ = NULL; |
243 } | 244 } |
244 } | 245 } |
OLD | NEW |