2015-09-18 03:06:38 +00:00
|
|
|
// Copyright (c) 2015 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#include "atom/common/native_mate_converters/blink_converter.h"
|
|
|
|
|
2016-08-01 00:14:11 +00:00
|
|
|
#include <algorithm>
|
2015-09-18 03:10:32 +00:00
|
|
|
#include <string>
|
2015-09-18 05:33:06 +00:00
|
|
|
#include <vector>
|
2015-09-18 03:10:32 +00:00
|
|
|
|
2016-01-31 01:27:14 +00:00
|
|
|
#include "atom/common/keyboard_util.h"
|
2015-09-18 03:06:38 +00:00
|
|
|
#include "base/strings/string_util.h"
|
2015-09-28 00:41:06 +00:00
|
|
|
#include "base/strings/utf_string_conversions.h"
|
2015-09-18 05:33:06 +00:00
|
|
|
#include "content/public/browser/native_web_keyboard_event.h"
|
2015-09-18 03:06:38 +00:00
|
|
|
#include "native_mate/dictionary.h"
|
2017-01-26 07:21:26 +00:00
|
|
|
#include "third_party/WebKit/public/platform/WebInputEvent.h"
|
2017-04-11 07:18:40 +00:00
|
|
|
#include "third_party/WebKit/public/platform/WebMouseEvent.h"
|
|
|
|
#include "third_party/WebKit/public/platform/WebMouseWheelEvent.h"
|
2015-09-18 03:06:38 +00:00
|
|
|
#include "third_party/WebKit/public/web/WebDeviceEmulationParams.h"
|
2015-12-17 23:10:42 +00:00
|
|
|
#include "third_party/WebKit/public/web/WebFindOptions.h"
|
2016-05-03 00:02:33 +00:00
|
|
|
#include "ui/base/clipboard/clipboard.h"
|
2016-12-13 23:52:37 +00:00
|
|
|
#include "ui/events/keycodes/dom/keycode_converter.h"
|
2016-10-07 19:46:33 +00:00
|
|
|
#include "ui/events/keycodes/keyboard_code_conversion.h"
|
2015-09-18 05:33:06 +00:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
int VectorToBitArray(const std::vector<T>& vec) {
|
|
|
|
int bits = 0;
|
|
|
|
for (const T& item : vec)
|
|
|
|
bits |= item;
|
|
|
|
return bits;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
2015-09-18 03:06:38 +00:00
|
|
|
|
|
|
|
namespace mate {
|
|
|
|
|
2015-09-18 05:33:06 +00:00
|
|
|
template<>
|
2015-09-28 00:41:06 +00:00
|
|
|
struct Converter<base::char16> {
|
2015-09-18 05:33:06 +00:00
|
|
|
static bool FromV8(v8::Isolate* isolate, v8::Handle<v8::Value> val,
|
2015-09-28 00:41:06 +00:00
|
|
|
base::char16* out) {
|
|
|
|
base::string16 code = base::UTF8ToUTF16(V8ToString(val));
|
2015-09-18 05:33:06 +00:00
|
|
|
if (code.length() != 1)
|
|
|
|
return false;
|
|
|
|
*out = code[0];
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<>
|
|
|
|
struct Converter<blink::WebInputEvent::Type> {
|
|
|
|
static bool FromV8(v8::Isolate* isolate, v8::Handle<v8::Value> val,
|
|
|
|
blink::WebInputEvent::Type* out) {
|
2015-12-07 11:56:23 +00:00
|
|
|
std::string type = base::ToLowerASCII(V8ToString(val));
|
2015-09-18 05:33:06 +00:00
|
|
|
if (type == "mousedown")
|
2017-06-16 20:42:33 +00:00
|
|
|
*out = blink::WebInputEvent::kMouseDown;
|
2015-09-18 05:33:06 +00:00
|
|
|
else if (type == "mouseup")
|
2017-06-16 20:42:33 +00:00
|
|
|
*out = blink::WebInputEvent::kMouseUp;
|
2015-09-18 05:33:06 +00:00
|
|
|
else if (type == "mousemove")
|
2017-06-16 20:42:33 +00:00
|
|
|
*out = blink::WebInputEvent::kMouseMove;
|
2015-09-18 05:33:06 +00:00
|
|
|
else if (type == "mouseenter")
|
2017-06-16 20:42:33 +00:00
|
|
|
*out = blink::WebInputEvent::kMouseEnter;
|
2015-09-18 05:33:06 +00:00
|
|
|
else if (type == "mouseleave")
|
2017-06-16 20:42:33 +00:00
|
|
|
*out = blink::WebInputEvent::kMouseLeave;
|
2015-09-18 05:33:06 +00:00
|
|
|
else if (type == "contextmenu")
|
2017-06-16 20:42:33 +00:00
|
|
|
*out = blink::WebInputEvent::kContextMenu;
|
2015-09-18 05:33:06 +00:00
|
|
|
else if (type == "mousewheel")
|
2017-06-16 20:42:33 +00:00
|
|
|
*out = blink::WebInputEvent::kMouseWheel;
|
2015-09-18 05:33:06 +00:00
|
|
|
else if (type == "keydown")
|
2017-06-16 20:42:33 +00:00
|
|
|
*out = blink::WebInputEvent::kRawKeyDown;
|
2015-09-18 05:33:06 +00:00
|
|
|
else if (type == "keyup")
|
2017-06-16 20:42:33 +00:00
|
|
|
*out = blink::WebInputEvent::kKeyUp;
|
2015-09-18 05:33:06 +00:00
|
|
|
else if (type == "char")
|
2017-06-16 20:42:33 +00:00
|
|
|
*out = blink::WebInputEvent::kChar;
|
2015-09-18 05:33:06 +00:00
|
|
|
else if (type == "touchstart")
|
2017-06-16 20:42:33 +00:00
|
|
|
*out = blink::WebInputEvent::kTouchStart;
|
2015-09-18 05:33:06 +00:00
|
|
|
else if (type == "touchmove")
|
2017-06-16 20:42:33 +00:00
|
|
|
*out = blink::WebInputEvent::kTouchMove;
|
2015-09-18 05:33:06 +00:00
|
|
|
else if (type == "touchend")
|
2017-06-16 20:42:33 +00:00
|
|
|
*out = blink::WebInputEvent::kTouchEnd;
|
2015-09-18 05:33:06 +00:00
|
|
|
else if (type == "touchcancel")
|
2017-06-16 20:42:33 +00:00
|
|
|
*out = blink::WebInputEvent::kTouchCancel;
|
2015-09-18 10:21:51 +00:00
|
|
|
return true;
|
2015-09-18 05:33:06 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-09-25 11:01:52 +00:00
|
|
|
template<>
|
|
|
|
struct Converter<blink::WebMouseEvent::Button> {
|
|
|
|
static bool FromV8(v8::Isolate* isolate, v8::Handle<v8::Value> val,
|
|
|
|
blink::WebMouseEvent::Button* out) {
|
2015-12-07 11:56:23 +00:00
|
|
|
std::string button = base::ToLowerASCII(V8ToString(val));
|
2015-09-25 11:01:52 +00:00
|
|
|
if (button == "left")
|
2017-06-16 20:42:33 +00:00
|
|
|
*out = blink::WebMouseEvent::Button::kLeft;
|
2015-09-25 11:01:52 +00:00
|
|
|
else if (button == "middle")
|
2017-06-16 20:42:33 +00:00
|
|
|
*out = blink::WebMouseEvent::Button::kMiddle;
|
2015-09-25 11:01:52 +00:00
|
|
|
else if (button == "right")
|
2017-06-16 20:42:33 +00:00
|
|
|
*out = blink::WebMouseEvent::Button::kRight;
|
2016-05-23 05:26:38 +00:00
|
|
|
else
|
|
|
|
return false;
|
2015-09-25 11:01:52 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-09-18 05:33:06 +00:00
|
|
|
template<>
|
|
|
|
struct Converter<blink::WebInputEvent::Modifiers> {
|
|
|
|
static bool FromV8(v8::Isolate* isolate, v8::Handle<v8::Value> val,
|
|
|
|
blink::WebInputEvent::Modifiers* out) {
|
2015-12-07 11:56:23 +00:00
|
|
|
std::string modifier = base::ToLowerASCII(V8ToString(val));
|
2015-09-18 05:33:06 +00:00
|
|
|
if (modifier == "shift")
|
2017-06-16 20:42:33 +00:00
|
|
|
*out = blink::WebInputEvent::kShiftKey;
|
2015-09-18 05:33:06 +00:00
|
|
|
else if (modifier == "control" || modifier == "ctrl")
|
2017-06-16 20:42:33 +00:00
|
|
|
*out = blink::WebInputEvent::kControlKey;
|
2015-09-18 05:33:06 +00:00
|
|
|
else if (modifier == "alt")
|
2017-06-16 20:42:33 +00:00
|
|
|
*out = blink::WebInputEvent::kAltKey;
|
2015-09-18 05:33:06 +00:00
|
|
|
else if (modifier == "meta" || modifier == "command" || modifier == "cmd")
|
2017-06-16 20:42:33 +00:00
|
|
|
*out = blink::WebInputEvent::kMetaKey;
|
2015-09-18 05:33:06 +00:00
|
|
|
else if (modifier == "iskeypad")
|
2017-06-16 20:42:33 +00:00
|
|
|
*out = blink::WebInputEvent::kIsKeyPad;
|
2015-09-18 05:33:06 +00:00
|
|
|
else if (modifier == "isautorepeat")
|
2017-06-16 20:42:33 +00:00
|
|
|
*out = blink::WebInputEvent::kIsAutoRepeat;
|
2015-09-18 05:33:06 +00:00
|
|
|
else if (modifier == "leftbuttondown")
|
2017-06-16 20:42:33 +00:00
|
|
|
*out = blink::WebInputEvent::kLeftButtonDown;
|
2015-09-18 05:33:06 +00:00
|
|
|
else if (modifier == "middlebuttondown")
|
2017-06-16 20:42:33 +00:00
|
|
|
*out = blink::WebInputEvent::kMiddleButtonDown;
|
2015-09-18 05:33:06 +00:00
|
|
|
else if (modifier == "rightbuttondown")
|
2017-06-16 20:42:33 +00:00
|
|
|
*out = blink::WebInputEvent::kRightButtonDown;
|
2015-09-18 05:33:06 +00:00
|
|
|
else if (modifier == "capslock")
|
2017-06-16 20:42:33 +00:00
|
|
|
*out = blink::WebInputEvent::kCapsLockOn;
|
2015-09-18 05:33:06 +00:00
|
|
|
else if (modifier == "numlock")
|
2017-06-16 20:42:33 +00:00
|
|
|
*out = blink::WebInputEvent::kNumLockOn;
|
2015-09-18 05:33:06 +00:00
|
|
|
else if (modifier == "left")
|
2017-06-16 20:42:33 +00:00
|
|
|
*out = blink::WebInputEvent::kIsLeft;
|
2015-09-18 05:33:06 +00:00
|
|
|
else if (modifier == "right")
|
2017-06-16 20:42:33 +00:00
|
|
|
*out = blink::WebInputEvent::kIsRight;
|
2015-09-18 10:21:51 +00:00
|
|
|
return true;
|
2015-09-18 05:33:06 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-08-08 01:06:31 +00:00
|
|
|
blink::WebInputEvent::Type GetWebInputEventType(v8::Isolate* isolate,
|
|
|
|
v8::Local<v8::Value> val) {
|
2017-06-16 20:42:33 +00:00
|
|
|
blink::WebInputEvent::Type type = blink::WebInputEvent::kUndefined;
|
2015-09-18 06:09:31 +00:00
|
|
|
mate::Dictionary dict;
|
|
|
|
ConvertFromV8(isolate, val, &dict) && dict.Get("type", &type);
|
|
|
|
return type;
|
|
|
|
}
|
|
|
|
|
2015-09-18 05:33:06 +00:00
|
|
|
bool Converter<blink::WebInputEvent>::FromV8(
|
|
|
|
v8::Isolate* isolate, v8::Local<v8::Value> val,
|
|
|
|
blink::WebInputEvent* out) {
|
|
|
|
mate::Dictionary dict;
|
|
|
|
if (!ConvertFromV8(isolate, val, &dict))
|
|
|
|
return false;
|
2017-04-11 07:18:40 +00:00
|
|
|
blink::WebInputEvent::Type type;
|
|
|
|
if (!dict.Get("type", &type))
|
2015-09-18 05:33:06 +00:00
|
|
|
return false;
|
2017-06-16 20:42:33 +00:00
|
|
|
out->SetType(type);
|
2015-09-18 05:33:06 +00:00
|
|
|
std::vector<blink::WebInputEvent::Modifiers> modifiers;
|
|
|
|
if (dict.Get("modifiers", &modifiers))
|
2017-06-16 20:42:33 +00:00
|
|
|
out->SetModifiers(VectorToBitArray(modifiers));
|
|
|
|
out->SetTimeStampSeconds(base::Time::Now().ToDoubleT());
|
2015-09-18 05:33:06 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Converter<blink::WebKeyboardEvent>::FromV8(
|
|
|
|
v8::Isolate* isolate, v8::Local<v8::Value> val,
|
|
|
|
blink::WebKeyboardEvent* out) {
|
|
|
|
mate::Dictionary dict;
|
|
|
|
if (!ConvertFromV8(isolate, val, &dict))
|
|
|
|
return false;
|
|
|
|
if (!ConvertFromV8(isolate, val, static_cast<blink::WebInputEvent*>(out)))
|
|
|
|
return false;
|
2015-11-16 03:15:13 +00:00
|
|
|
|
2016-03-06 06:04:05 +00:00
|
|
|
std::string str;
|
2016-10-07 19:46:33 +00:00
|
|
|
if (!dict.Get("keyCode", &str))
|
2015-11-16 03:15:13 +00:00
|
|
|
return false;
|
|
|
|
|
2016-10-07 19:46:33 +00:00
|
|
|
bool shifted = false;
|
|
|
|
ui::KeyboardCode keyCode = atom::KeyboardCodeFromStr(str, &shifted);
|
2017-06-16 20:42:33 +00:00
|
|
|
out->windows_key_code = keyCode;
|
2015-09-18 05:33:06 +00:00
|
|
|
if (shifted)
|
2017-06-16 20:42:33 +00:00
|
|
|
out->SetModifiers(out->GetModifiers() | blink::WebInputEvent::kShiftKey);
|
2016-10-07 19:46:33 +00:00
|
|
|
|
|
|
|
ui::DomCode domCode = ui::UsLayoutKeyboardCodeToDomCode(keyCode);
|
2017-06-16 20:42:33 +00:00
|
|
|
out->dom_code = static_cast<int>(domCode);
|
2016-10-07 19:46:33 +00:00
|
|
|
|
|
|
|
ui::DomKey domKey;
|
|
|
|
ui::KeyboardCode dummy_code;
|
2017-06-16 20:42:33 +00:00
|
|
|
int flags = atom::WebEventModifiersToEventFlags(out->GetModifiers());
|
2016-10-07 19:46:33 +00:00
|
|
|
if (ui::DomCodeToUsLayoutDomKey(domCode, flags, &domKey, &dummy_code))
|
2017-06-16 20:42:33 +00:00
|
|
|
out->dom_key = static_cast<int>(domKey);
|
2016-10-07 19:46:33 +00:00
|
|
|
|
2017-06-16 20:42:33 +00:00
|
|
|
if ((out->GetType() == blink::WebInputEvent::kChar ||
|
|
|
|
out->GetType() == blink::WebInputEvent::kRawKeyDown)) {
|
2016-08-01 00:14:11 +00:00
|
|
|
// Make sure to not read beyond the buffer in case some bad code doesn't
|
|
|
|
// NULL-terminate it (this is called from plugins).
|
2017-06-16 20:42:33 +00:00
|
|
|
size_t text_length_cap = blink::WebKeyboardEvent::kTextLengthCap;
|
2016-08-01 00:14:11 +00:00
|
|
|
base::string16 text16 = base::UTF8ToUTF16(str);
|
|
|
|
|
|
|
|
memset(out->text, 0, text_length_cap);
|
2017-06-16 20:42:33 +00:00
|
|
|
memset(out->unmodified_text, 0, text_length_cap);
|
2016-08-01 00:14:11 +00:00
|
|
|
for (size_t i = 0; i < std::min(text_length_cap, text16.size()); ++i) {
|
|
|
|
out->text[i] = text16[i];
|
2017-06-16 20:42:33 +00:00
|
|
|
out->unmodified_text[i] = text16[i];
|
2016-08-01 00:14:11 +00:00
|
|
|
}
|
2015-09-28 00:41:06 +00:00
|
|
|
}
|
2015-09-18 10:21:51 +00:00
|
|
|
return true;
|
2015-09-18 05:33:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool Converter<content::NativeWebKeyboardEvent>::FromV8(
|
|
|
|
v8::Isolate* isolate, v8::Local<v8::Value> val,
|
|
|
|
content::NativeWebKeyboardEvent* out) {
|
|
|
|
mate::Dictionary dict;
|
|
|
|
if (!ConvertFromV8(isolate, val, &dict))
|
|
|
|
return false;
|
|
|
|
if (!ConvertFromV8(isolate, val, static_cast<blink::WebKeyboardEvent*>(out)))
|
|
|
|
return false;
|
|
|
|
dict.Get("skipInBrowser", &out->skip_in_browser);
|
2015-09-18 10:21:51 +00:00
|
|
|
return true;
|
2015-09-18 05:33:06 +00:00
|
|
|
}
|
|
|
|
|
2016-12-13 23:52:37 +00:00
|
|
|
v8::Local<v8::Value> Converter<content::NativeWebKeyboardEvent>::ToV8(
|
|
|
|
v8::Isolate* isolate, const content::NativeWebKeyboardEvent& in) {
|
|
|
|
mate::Dictionary dict = mate::Dictionary::CreateEmpty(isolate);
|
|
|
|
|
2017-06-16 20:42:33 +00:00
|
|
|
if (in.GetType() == blink::WebInputEvent::Type::kRawKeyDown)
|
2016-12-13 23:52:37 +00:00
|
|
|
dict.Set("type", "keyDown");
|
2017-06-16 20:42:33 +00:00
|
|
|
else if (in.GetType() == blink::WebInputEvent::Type::kKeyUp)
|
2016-12-13 23:52:37 +00:00
|
|
|
dict.Set("type", "keyUp");
|
2017-06-16 20:42:33 +00:00
|
|
|
dict.Set("key", ui::KeycodeConverter::DomKeyToKeyString(in.dom_key));
|
2017-02-02 13:16:30 +00:00
|
|
|
dict.Set("code", ui::KeycodeConverter::DomCodeToCodeString(
|
2017-06-16 20:42:33 +00:00
|
|
|
static_cast<ui::DomCode>(in.dom_code)));
|
2016-12-13 23:52:37 +00:00
|
|
|
|
|
|
|
using Modifiers = blink::WebInputEvent::Modifiers;
|
2017-06-16 20:42:33 +00:00
|
|
|
dict.Set("isAutoRepeat", (in.GetModifiers() & Modifiers::kIsAutoRepeat) != 0);
|
|
|
|
dict.Set("shift", (in.GetModifiers() & Modifiers::kShiftKey) != 0);
|
|
|
|
dict.Set("control", (in.GetModifiers() & Modifiers::kControlKey) != 0);
|
|
|
|
dict.Set("alt", (in.GetModifiers() & Modifiers::kAltKey) != 0);
|
|
|
|
dict.Set("meta", (in.GetModifiers() & Modifiers::kMetaKey) != 0);
|
2016-12-13 23:52:37 +00:00
|
|
|
|
|
|
|
return dict.GetHandle();
|
|
|
|
}
|
|
|
|
|
2015-09-18 05:33:06 +00:00
|
|
|
bool Converter<blink::WebMouseEvent>::FromV8(
|
|
|
|
v8::Isolate* isolate, v8::Local<v8::Value> val, blink::WebMouseEvent* out) {
|
|
|
|
mate::Dictionary dict;
|
|
|
|
if (!ConvertFromV8(isolate, val, &dict))
|
|
|
|
return false;
|
|
|
|
if (!ConvertFromV8(isolate, val, static_cast<blink::WebInputEvent*>(out)))
|
|
|
|
return false;
|
2017-06-20 18:23:11 +00:00
|
|
|
|
|
|
|
float x = 0.f;
|
|
|
|
float y = 0.f;
|
|
|
|
if (!dict.Get("x", &x) || !dict.Get("y", &y))
|
2015-09-18 05:33:06 +00:00
|
|
|
return false;
|
2017-06-20 18:23:11 +00:00
|
|
|
out->SetPositionInWidget(x, y);
|
|
|
|
|
2016-05-23 05:26:38 +00:00
|
|
|
if (!dict.Get("button", &out->button))
|
2017-06-16 20:42:33 +00:00
|
|
|
out->button = blink::WebMouseEvent::Button::kLeft;
|
2017-06-20 18:23:11 +00:00
|
|
|
|
|
|
|
float global_x = 0.f;
|
|
|
|
float global_y = 0.f;
|
|
|
|
dict.Get("globalX", &global_x);
|
|
|
|
dict.Get("globalY", &global_y);
|
|
|
|
out->SetPositionInScreen(global_x, global_y);
|
|
|
|
|
2017-06-16 20:42:33 +00:00
|
|
|
dict.Get("movementX", &out->movement_x);
|
|
|
|
dict.Get("movementY", &out->movement_y);
|
|
|
|
dict.Get("clickCount", &out->click_count);
|
2015-09-18 10:21:51 +00:00
|
|
|
return true;
|
2015-09-18 05:33:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool Converter<blink::WebMouseWheelEvent>::FromV8(
|
|
|
|
v8::Isolate* isolate, v8::Local<v8::Value> val,
|
|
|
|
blink::WebMouseWheelEvent* out) {
|
|
|
|
mate::Dictionary dict;
|
|
|
|
if (!ConvertFromV8(isolate, val, &dict))
|
|
|
|
return false;
|
|
|
|
if (!ConvertFromV8(isolate, val, static_cast<blink::WebMouseEvent*>(out)))
|
|
|
|
return false;
|
2017-06-16 20:42:33 +00:00
|
|
|
dict.Get("deltaX", &out->delta_x);
|
|
|
|
dict.Get("deltaY", &out->delta_y);
|
|
|
|
dict.Get("wheelTicksX", &out->wheel_ticks_x);
|
|
|
|
dict.Get("wheelTicksY", &out->wheel_ticks_y);
|
|
|
|
dict.Get("accelerationRatioX", &out->acceleration_ratio_x);
|
|
|
|
dict.Get("accelerationRatioY", &out->acceleration_ratio_y);
|
|
|
|
dict.Get("hasPreciseScrollingDeltas", &out->has_precise_scrolling_deltas);
|
2016-09-09 10:28:32 +00:00
|
|
|
|
|
|
|
#if defined(USE_AURA)
|
|
|
|
// Matches the behavior of ui/events/blink/web_input_event_traits.cc:
|
|
|
|
bool can_scroll = true;
|
|
|
|
if (dict.Get("canScroll", &can_scroll) && !can_scroll) {
|
2017-06-16 20:42:33 +00:00
|
|
|
out->has_precise_scrolling_deltas = false;
|
2017-06-28 14:58:47 +00:00
|
|
|
out->SetModifiers(out->GetModifiers() & ~blink::WebInputEvent::kControlKey);
|
2016-09-09 10:28:32 +00:00
|
|
|
}
|
|
|
|
#endif
|
2015-09-18 10:21:51 +00:00
|
|
|
return true;
|
2015-09-18 05:33:06 +00:00
|
|
|
}
|
|
|
|
|
2015-09-18 03:06:38 +00:00
|
|
|
bool Converter<blink::WebFloatPoint>::FromV8(
|
|
|
|
v8::Isolate* isolate, v8::Local<v8::Value> val, blink::WebFloatPoint* out) {
|
|
|
|
mate::Dictionary dict;
|
|
|
|
if (!ConvertFromV8(isolate, val, &dict))
|
|
|
|
return false;
|
|
|
|
return dict.Get("x", &out->x) && dict.Get("y", &out->y);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Converter<blink::WebPoint>::FromV8(
|
|
|
|
v8::Isolate* isolate, v8::Local<v8::Value> val, blink::WebPoint* out) {
|
|
|
|
mate::Dictionary dict;
|
|
|
|
if (!ConvertFromV8(isolate, val, &dict))
|
|
|
|
return false;
|
|
|
|
return dict.Get("x", &out->x) && dict.Get("y", &out->y);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Converter<blink::WebSize>::FromV8(
|
|
|
|
v8::Isolate* isolate, v8::Local<v8::Value> val, blink::WebSize* out) {
|
|
|
|
mate::Dictionary dict;
|
|
|
|
if (!ConvertFromV8(isolate, val, &dict))
|
|
|
|
return false;
|
|
|
|
return dict.Get("width", &out->width) && dict.Get("height", &out->height);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Converter<blink::WebDeviceEmulationParams>::FromV8(
|
|
|
|
v8::Isolate* isolate, v8::Local<v8::Value> val,
|
|
|
|
blink::WebDeviceEmulationParams* out) {
|
|
|
|
mate::Dictionary dict;
|
|
|
|
if (!ConvertFromV8(isolate, val, &dict))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
std::string screen_position;
|
|
|
|
if (dict.Get("screenPosition", &screen_position)) {
|
2015-12-07 11:56:23 +00:00
|
|
|
screen_position = base::ToLowerASCII(screen_position);
|
2015-09-18 03:06:38 +00:00
|
|
|
if (screen_position == "mobile")
|
2017-06-16 20:42:33 +00:00
|
|
|
out->screen_position = blink::WebDeviceEmulationParams::kMobile;
|
2015-09-18 03:06:38 +00:00
|
|
|
else if (screen_position == "desktop")
|
2017-06-16 20:42:33 +00:00
|
|
|
out->screen_position = blink::WebDeviceEmulationParams::kDesktop;
|
2015-09-18 03:06:38 +00:00
|
|
|
else
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-06-16 20:42:33 +00:00
|
|
|
dict.Get("screenSize", &out->screen_size);
|
|
|
|
dict.Get("viewPosition", &out->view_position);
|
|
|
|
dict.Get("deviceScaleFactor", &out->device_scale_factor);
|
|
|
|
dict.Get("viewSize", &out->view_size);
|
2015-09-18 03:06:38 +00:00
|
|
|
dict.Get("scale", &out->scale);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-12-17 17:27:56 +00:00
|
|
|
bool Converter<blink::WebFindOptions>::FromV8(
|
|
|
|
v8::Isolate* isolate,
|
|
|
|
v8::Local<v8::Value> val,
|
|
|
|
blink::WebFindOptions* out) {
|
|
|
|
mate::Dictionary dict;
|
|
|
|
if (!ConvertFromV8(isolate, val, &dict))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
dict.Get("forward", &out->forward);
|
2017-06-16 20:42:33 +00:00
|
|
|
dict.Get("matchCase", &out->match_case);
|
|
|
|
dict.Get("findNext", &out->find_next);
|
|
|
|
dict.Get("wordStart", &out->word_start);
|
|
|
|
dict.Get("medialCapitalAsWordStart", &out->medial_capital_as_word_start);
|
2015-12-17 17:27:56 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-05-03 00:02:33 +00:00
|
|
|
// static
|
|
|
|
v8::Local<v8::Value> Converter<blink::WebContextMenuData::MediaType>::ToV8(
|
|
|
|
v8::Isolate* isolate, const blink::WebContextMenuData::MediaType& in) {
|
|
|
|
switch (in) {
|
2017-06-16 20:42:33 +00:00
|
|
|
case blink::WebContextMenuData::kMediaTypeImage:
|
2016-05-03 00:02:33 +00:00
|
|
|
return mate::StringToV8(isolate, "image");
|
2017-06-16 20:42:33 +00:00
|
|
|
case blink::WebContextMenuData::kMediaTypeVideo:
|
2016-05-03 00:02:33 +00:00
|
|
|
return mate::StringToV8(isolate, "video");
|
2017-06-16 20:42:33 +00:00
|
|
|
case blink::WebContextMenuData::kMediaTypeAudio:
|
2016-05-03 00:02:33 +00:00
|
|
|
return mate::StringToV8(isolate, "audio");
|
2017-06-16 20:42:33 +00:00
|
|
|
case blink::WebContextMenuData::kMediaTypeCanvas:
|
2016-05-03 00:02:33 +00:00
|
|
|
return mate::StringToV8(isolate, "canvas");
|
2017-06-16 20:42:33 +00:00
|
|
|
case blink::WebContextMenuData::kMediaTypeFile:
|
2016-05-03 00:02:33 +00:00
|
|
|
return mate::StringToV8(isolate, "file");
|
2017-06-16 20:42:33 +00:00
|
|
|
case blink::WebContextMenuData::kMediaTypePlugin:
|
2016-05-03 00:02:33 +00:00
|
|
|
return mate::StringToV8(isolate, "plugin");
|
|
|
|
default:
|
|
|
|
return mate::StringToV8(isolate, "none");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
v8::Local<v8::Value> Converter<blink::WebContextMenuData::InputFieldType>::ToV8(
|
|
|
|
v8::Isolate* isolate,
|
|
|
|
const blink::WebContextMenuData::InputFieldType& in) {
|
|
|
|
switch (in) {
|
2017-06-16 20:42:33 +00:00
|
|
|
case blink::WebContextMenuData::kInputFieldTypePlainText:
|
2016-05-04 14:41:10 +00:00
|
|
|
return mate::StringToV8(isolate, "plainText");
|
2017-06-16 20:42:33 +00:00
|
|
|
case blink::WebContextMenuData::kInputFieldTypePassword:
|
2016-05-03 00:02:33 +00:00
|
|
|
return mate::StringToV8(isolate, "password");
|
2017-06-16 20:42:33 +00:00
|
|
|
case blink::WebContextMenuData::kInputFieldTypeOther:
|
2016-05-03 00:02:33 +00:00
|
|
|
return mate::StringToV8(isolate, "other");
|
|
|
|
default:
|
|
|
|
return mate::StringToV8(isolate, "none");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
v8::Local<v8::Value> EditFlagsToV8(v8::Isolate* isolate, int editFlags) {
|
|
|
|
mate::Dictionary dict = mate::Dictionary::CreateEmpty(isolate);
|
|
|
|
dict.Set("canUndo",
|
2017-06-16 20:42:33 +00:00
|
|
|
!!(editFlags & blink::WebContextMenuData::kCanUndo));
|
2016-05-03 00:02:33 +00:00
|
|
|
dict.Set("canRedo",
|
2017-06-16 20:42:33 +00:00
|
|
|
!!(editFlags & blink::WebContextMenuData::kCanRedo));
|
2016-05-03 00:02:33 +00:00
|
|
|
dict.Set("canCut",
|
2017-06-16 20:42:33 +00:00
|
|
|
!!(editFlags & blink::WebContextMenuData::kCanCut));
|
2016-05-03 00:02:33 +00:00
|
|
|
dict.Set("canCopy",
|
2017-06-16 20:42:33 +00:00
|
|
|
!!(editFlags & blink::WebContextMenuData::kCanCopy));
|
2016-05-03 00:02:33 +00:00
|
|
|
|
|
|
|
bool pasteFlag = false;
|
2017-06-16 20:42:33 +00:00
|
|
|
if (editFlags & blink::WebContextMenuData::kCanPaste) {
|
2016-05-03 00:02:33 +00:00
|
|
|
std::vector<base::string16> types;
|
|
|
|
bool ignore;
|
|
|
|
ui::Clipboard::GetForCurrentThread()->ReadAvailableTypes(
|
|
|
|
ui::CLIPBOARD_TYPE_COPY_PASTE, &types, &ignore);
|
|
|
|
pasteFlag = !types.empty();
|
|
|
|
}
|
|
|
|
dict.Set("canPaste", pasteFlag);
|
|
|
|
|
|
|
|
dict.Set("canDelete",
|
2017-06-16 20:42:33 +00:00
|
|
|
!!(editFlags & blink::WebContextMenuData::kCanDelete));
|
2016-05-03 00:02:33 +00:00
|
|
|
dict.Set("canSelectAll",
|
2017-06-16 20:42:33 +00:00
|
|
|
!!(editFlags & blink::WebContextMenuData::kCanSelectAll));
|
2016-05-03 00:02:33 +00:00
|
|
|
|
|
|
|
return mate::ConvertToV8(isolate, dict);
|
|
|
|
}
|
|
|
|
|
|
|
|
v8::Local<v8::Value> MediaFlagsToV8(v8::Isolate* isolate, int mediaFlags) {
|
|
|
|
mate::Dictionary dict = mate::Dictionary::CreateEmpty(isolate);
|
|
|
|
dict.Set("inError",
|
2017-06-16 20:42:33 +00:00
|
|
|
!!(mediaFlags & blink::WebContextMenuData::kMediaInError));
|
2016-05-03 00:02:33 +00:00
|
|
|
dict.Set("isPaused",
|
2017-06-16 20:42:33 +00:00
|
|
|
!!(mediaFlags & blink::WebContextMenuData::kMediaPaused));
|
2016-05-03 00:02:33 +00:00
|
|
|
dict.Set("isMuted",
|
2017-06-16 20:42:33 +00:00
|
|
|
!!(mediaFlags & blink::WebContextMenuData::kMediaMuted));
|
2016-05-03 00:02:33 +00:00
|
|
|
dict.Set("hasAudio",
|
2017-06-16 20:42:33 +00:00
|
|
|
!!(mediaFlags & blink::WebContextMenuData::kMediaHasAudio));
|
2016-05-03 00:02:33 +00:00
|
|
|
dict.Set("isLooping",
|
2017-06-16 20:42:33 +00:00
|
|
|
(mediaFlags & blink::WebContextMenuData::kMediaLoop) != 0);
|
2016-05-03 00:02:33 +00:00
|
|
|
dict.Set("isControlsVisible",
|
2017-06-16 20:42:33 +00:00
|
|
|
(mediaFlags & blink::WebContextMenuData::kMediaControls) != 0);
|
2016-05-03 00:02:33 +00:00
|
|
|
dict.Set("canToggleControls",
|
2017-06-16 20:42:33 +00:00
|
|
|
!!(mediaFlags & blink::WebContextMenuData::kMediaCanToggleControls));
|
2016-05-03 00:02:33 +00:00
|
|
|
dict.Set("canRotate",
|
2017-06-16 20:42:33 +00:00
|
|
|
!!(mediaFlags & blink::WebContextMenuData::kMediaCanRotate));
|
2016-05-03 00:02:33 +00:00
|
|
|
return mate::ConvertToV8(isolate, dict);
|
|
|
|
}
|
|
|
|
|
2016-05-12 20:48:01 +00:00
|
|
|
v8::Local<v8::Value> Converter<blink::WebCache::ResourceTypeStat>::ToV8(
|
|
|
|
v8::Isolate* isolate,
|
|
|
|
const blink::WebCache::ResourceTypeStat& stat) {
|
|
|
|
mate::Dictionary dict = mate::Dictionary::CreateEmpty(isolate);
|
2016-05-14 13:40:18 +00:00
|
|
|
dict.Set("count", static_cast<uint32_t>(stat.count));
|
|
|
|
dict.Set("size", static_cast<double>(stat.size));
|
2017-06-16 20:42:33 +00:00
|
|
|
dict.Set("liveSize", static_cast<double>(stat.decoded_size));
|
2016-05-12 20:48:01 +00:00
|
|
|
return dict.GetHandle();
|
|
|
|
}
|
|
|
|
|
|
|
|
v8::Local<v8::Value> Converter<blink::WebCache::ResourceTypeStats>::ToV8(
|
|
|
|
v8::Isolate* isolate,
|
|
|
|
const blink::WebCache::ResourceTypeStats& stats) {
|
|
|
|
mate::Dictionary dict = mate::Dictionary::CreateEmpty(isolate);
|
2016-05-14 13:50:05 +00:00
|
|
|
dict.Set("images", stats.images);
|
|
|
|
dict.Set("scripts", stats.scripts);
|
2017-06-16 20:42:33 +00:00
|
|
|
dict.Set("cssStyleSheets", stats.css_style_sheets);
|
|
|
|
dict.Set("xslStyleSheets", stats.xsl_style_sheets);
|
2016-05-14 13:50:05 +00:00
|
|
|
dict.Set("fonts", stats.fonts);
|
|
|
|
dict.Set("other", stats.other);
|
2016-05-12 20:48:01 +00:00
|
|
|
return dict.GetHandle();
|
|
|
|
}
|
|
|
|
|
2015-09-18 03:06:38 +00:00
|
|
|
} // namespace mate
|