Home | History | Annotate | Download | only in cursors

Lines Matching refs:WebCursorInfo

11 using blink::WebCursorInfo;
18 : type_(WebCursorInfo::TypePointer),
27 : type_(WebCursorInfo::TypePointer) {
73 cursor_info->type = static_cast<WebCursorInfo::Type>(type_);
111 if (type == WebCursorInfo::TypeCustom) {
154 return type_ == WebCursorInfo::TypeCustom;
172 static WebCursorInfo::Type ToCursorType(HCURSOR cursor) {
175 WebCursorInfo::Type type;
177 { LoadCursor(NULL, IDC_ARROW), WebCursorInfo::TypePointer },
178 { LoadCursor(NULL, IDC_CROSS), WebCursorInfo::TypeCross },
179 { LoadCursor(NULL, IDC_HAND), WebCursorInfo::TypeHand },
180 { LoadCursor(NULL, IDC_IBEAM), WebCursorInfo::TypeIBeam },
181 { LoadCursor(NULL, IDC_WAIT), WebCursorInfo::TypeWait },
182 { LoadCursor(NULL, IDC_HELP), WebCursorInfo::TypeHelp },
183 { LoadCursor(NULL, IDC_SIZENESW), WebCursorInfo::TypeNorthEastResize },
184 { LoadCursor(NULL, IDC_SIZENWSE), WebCursorInfo::TypeNorthWestResize },
185 { LoadCursor(NULL, IDC_SIZENS), WebCursorInfo::TypeNorthSouthResize },
186 { LoadCursor(NULL, IDC_SIZEWE), WebCursorInfo::TypeEastWestResize },
187 { LoadCursor(NULL, IDC_SIZEALL), WebCursorInfo::TypeMove },
188 { LoadCursor(NULL, IDC_APPSTARTING), WebCursorInfo::TypeProgress },
189 { LoadCursor(NULL, IDC_NO), WebCursorInfo::TypeNotAllowed },
195 return WebCursorInfo::TypeCustom;
199 WebCursorInfo::Type cursor_type = ToCursorType(cursor);
203 if (cursor_type == WebCursorInfo::TypeCustom)
210 type_ = WebCursorInfo::TypePointer;