blob: 760d95525bff8834f7e474b75fbcc0b03e087d52 [file] [log] [blame]
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/aura/remote_root_window_host_win.h"
#include <windows.h>
#include <algorithm>
#include "base/message_loop/message_loop.h"
#include "ipc/ipc_message.h"
#include "ipc/ipc_sender.h"
#include "ui/aura/client/aura_constants.h"
#include "ui/aura/client/cursor_client.h"
#include "ui/aura/root_window.h"
#include "ui/aura/window_property.h"
#include "ui/base/cursor/cursor_loader_win.h"
#include "ui/base/ime/composition_text.h"
#include "ui/base/ime/input_method.h"
#include "ui/base/ime/remote_input_method_win.h"
#include "ui/base/ime/text_input_client.h"
#include "ui/events/event_utils.h"
#include "ui/events/keycodes/keyboard_code_conversion_win.h"
#include "ui/base/view_prop.h"
#include "ui/gfx/insets.h"
#include "ui/metro_viewer/metro_viewer_messages.h"
namespace aura {
namespace {
const char* kRootWindowHostWinKey = "__AURA_REMOTE_ROOT_WINDOW_HOST_WIN__";
// Sets the keystate for the virtual key passed in to down or up.
void SetKeyState(uint8* key_states, bool key_down, uint32 virtual_key_code) {
DCHECK(key_states);
if (key_down)
key_states[virtual_key_code] |= 0x80;
else
key_states[virtual_key_code] &= 0x7F;
}
// Sets the keyboard states for the Shift/Control/Alt/Caps lock keys.
void SetVirtualKeyStates(uint32 flags) {
uint8 keyboard_state[256] = {0};
::GetKeyboardState(keyboard_state);
SetKeyState(keyboard_state, !!(flags & ui::EF_SHIFT_DOWN), VK_SHIFT);
SetKeyState(keyboard_state, !!(flags & ui::EF_CONTROL_DOWN), VK_CONTROL);
SetKeyState(keyboard_state, !!(flags & ui::EF_ALT_DOWN), VK_MENU);
SetKeyState(keyboard_state, !!(flags & ui::EF_CAPS_LOCK_DOWN), VK_CAPITAL);
SetKeyState(keyboard_state, !!(flags & ui::EF_LEFT_MOUSE_BUTTON), VK_LBUTTON);
SetKeyState(keyboard_state, !!(flags & ui::EF_RIGHT_MOUSE_BUTTON),
VK_RBUTTON);
SetKeyState(keyboard_state, !!(flags & ui::EF_MIDDLE_MOUSE_BUTTON),
VK_MBUTTON);
::SetKeyboardState(keyboard_state);
}
void FillCompositionText(
const string16& text,
int32 selection_start,
int32 selection_end,
const std::vector<metro_viewer::UnderlineInfo>& underlines,
ui::CompositionText* composition_text) {
composition_text->Clear();
composition_text->text = text;
composition_text->selection.set_start(selection_start);
composition_text->selection.set_end(selection_end);
composition_text->underlines.resize(underlines.size());
for (size_t i = 0; i < underlines.size(); ++i) {
composition_text->underlines[i].start_offset = underlines[i].start_offset;
composition_text->underlines[i].end_offset = underlines[i].end_offset;
composition_text->underlines[i].color = SK_ColorBLACK;
composition_text->underlines[i].thick = underlines[i].thick;
}
}
} // namespace
void HandleOpenFile(const base::string16& title,
const base::FilePath& default_path,
const base::string16& filter,
const OpenFileCompletion& on_success,
const FileSelectionCanceled& on_failure) {
DCHECK(aura::RemoteRootWindowHostWin::Instance());
aura::RemoteRootWindowHostWin::Instance()->HandleOpenFile(title,
default_path,
filter,
on_success,
on_failure);
}
void HandleOpenMultipleFiles(const base::string16& title,
const base::FilePath& default_path,
const base::string16& filter,
const OpenMultipleFilesCompletion& on_success,
const FileSelectionCanceled& on_failure) {
DCHECK(aura::RemoteRootWindowHostWin::Instance());
aura::RemoteRootWindowHostWin::Instance()->HandleOpenMultipleFiles(
title,
default_path,
filter,
on_success,
on_failure);
}
void HandleSaveFile(const base::string16& title,
const base::FilePath& default_path,
const base::string16& filter,
int filter_index,
const base::string16& default_extension,
const SaveFileCompletion& on_success,
const FileSelectionCanceled& on_failure) {
DCHECK(aura::RemoteRootWindowHostWin::Instance());
aura::RemoteRootWindowHostWin::Instance()->HandleSaveFile(title,
default_path,
filter,
filter_index,
default_extension,
on_success,
on_failure);
}
void HandleSelectFolder(const base::string16& title,
const SelectFolderCompletion& on_success,
const FileSelectionCanceled& on_failure) {
DCHECK(aura::RemoteRootWindowHostWin::Instance());
aura::RemoteRootWindowHostWin::Instance()->HandleSelectFolder(title,
on_success,
on_failure);
}
void HandleActivateDesktop(const base::FilePath& shortcut,
bool ash_exit) {
DCHECK(aura::RemoteRootWindowHostWin::Instance());
aura::RemoteRootWindowHostWin::Instance()->HandleActivateDesktop(shortcut,
ash_exit);
}
RemoteRootWindowHostWin* g_instance = NULL;
RemoteRootWindowHostWin* RemoteRootWindowHostWin::Instance() {
if (g_instance)
return g_instance;
return Create(gfx::Rect());
}
RemoteRootWindowHostWin* RemoteRootWindowHostWin::Create(
const gfx::Rect& bounds) {
g_instance = g_instance ? g_instance : new RemoteRootWindowHostWin(bounds);
return g_instance;
}
RemoteRootWindowHostWin::RemoteRootWindowHostWin(const gfx::Rect& bounds)
: remote_window_(NULL),
host_(NULL),
ignore_mouse_moves_until_set_cursor_ack_(false),
event_flags_(0),
window_size_(aura::RootWindowHost::GetNativeScreenSize()) {
prop_.reset(new ui::ViewProp(NULL, kRootWindowHostWinKey, this));
}
RemoteRootWindowHostWin::~RemoteRootWindowHostWin() {
g_instance = NULL;
}
void RemoteRootWindowHostWin::Connected(IPC::Sender* host, HWND remote_window) {
CHECK(host_ == NULL);
host_ = host;
remote_window_ = remote_window;
}
void RemoteRootWindowHostWin::Disconnected() {
// Don't CHECK here, Disconnected is called on a channel error which can
// happen before we're successfully Connected.
if (!host_)
return;
ui::RemoteInputMethodPrivateWin* remote_input_method_private =
GetRemoteInputMethodPrivate();
if (remote_input_method_private)
remote_input_method_private->SetRemoteDelegate(NULL);
host_ = NULL;
remote_window_ = NULL;
}
bool RemoteRootWindowHostWin::OnMessageReceived(const IPC::Message& message) {
bool handled = true;
IPC_BEGIN_MESSAGE_MAP(RemoteRootWindowHostWin, message)
IPC_MESSAGE_HANDLER(MetroViewerHostMsg_MouseMoved, OnMouseMoved)
IPC_MESSAGE_HANDLER(MetroViewerHostMsg_MouseButton, OnMouseButton)
IPC_MESSAGE_HANDLER(MetroViewerHostMsg_KeyDown, OnKeyDown)
IPC_MESSAGE_HANDLER(MetroViewerHostMsg_KeyUp, OnKeyUp)
IPC_MESSAGE_HANDLER(MetroViewerHostMsg_Character, OnChar)
IPC_MESSAGE_HANDLER(MetroViewerHostMsg_WindowActivated,
OnWindowActivated)
IPC_MESSAGE_HANDLER(MetroViewerHostMsg_TouchDown,
OnTouchDown)
IPC_MESSAGE_HANDLER(MetroViewerHostMsg_TouchUp,
OnTouchUp)
IPC_MESSAGE_HANDLER(MetroViewerHostMsg_TouchMoved,
OnTouchMoved)
IPC_MESSAGE_HANDLER(MetroViewerHostMsg_FileSaveAsDone,
OnFileSaveAsDone)
IPC_MESSAGE_HANDLER(MetroViewerHostMsg_FileOpenDone,
OnFileOpenDone)
IPC_MESSAGE_HANDLER(MetroViewerHostMsg_MultiFileOpenDone,
OnMultiFileOpenDone)
IPC_MESSAGE_HANDLER(MetroViewerHostMsg_SelectFolderDone,
OnSelectFolderDone)
IPC_MESSAGE_HANDLER(MetroViewerHostMsg_SetCursorPosAck,
OnSetCursorPosAck)
IPC_MESSAGE_HANDLER(MetroViewerHostMsg_ImeCandidatePopupChanged,
OnImeCandidatePopupChanged)
IPC_MESSAGE_HANDLER(MetroViewerHostMsg_ImeCompositionChanged,
OnImeCompositionChanged)
IPC_MESSAGE_HANDLER(MetroViewerHostMsg_ImeTextCommitted,
OnImeTextCommitted)
IPC_MESSAGE_HANDLER(MetroViewerHostMsg_ImeInputSourceChanged,
OnImeInputSourceChanged)
IPC_MESSAGE_UNHANDLED(handled = false)
IPC_END_MESSAGE_MAP()
return handled;
}
void RemoteRootWindowHostWin::HandleOpenURLOnDesktop(
const base::FilePath& shortcut,
const base::string16& url) {
if (!host_)
return;
host_->Send(new MetroViewerHostMsg_OpenURLOnDesktop(shortcut, url));
}
void RemoteRootWindowHostWin::HandleActivateDesktop(
const base::FilePath& shortcut,
bool ash_exit) {
if (!host_)
return;
host_->Send(new MetroViewerHostMsg_ActivateDesktop(shortcut, ash_exit));
}
void RemoteRootWindowHostWin::HandleOpenFile(
const base::string16& title,
const base::FilePath& default_path,
const base::string16& filter,
const OpenFileCompletion& on_success,
const FileSelectionCanceled& on_failure) {
if (!host_)
return;
// Can only have one of these operations in flight.
DCHECK(file_open_completion_callback_.is_null());
DCHECK(failure_callback_.is_null());
file_open_completion_callback_ = on_success;
failure_callback_ = on_failure;
host_->Send(new MetroViewerHostMsg_DisplayFileOpen(title,
filter,
default_path,
false));
}
void RemoteRootWindowHostWin::HandleOpenMultipleFiles(
const base::string16& title,
const base::FilePath& default_path,
const base::string16& filter,
const OpenMultipleFilesCompletion& on_success,
const FileSelectionCanceled& on_failure) {
if (!host_)
return;
// Can only have one of these operations in flight.
DCHECK(multi_file_open_completion_callback_.is_null());
DCHECK(failure_callback_.is_null());
multi_file_open_completion_callback_ = on_success;
failure_callback_ = on_failure;
host_->Send(new MetroViewerHostMsg_DisplayFileOpen(title,
filter,
default_path,
true));
}
void RemoteRootWindowHostWin::HandleSaveFile(
const base::string16& title,
const base::FilePath& default_path,
const base::string16& filter,
int filter_index,
const base::string16& default_extension,
const SaveFileCompletion& on_success,
const FileSelectionCanceled& on_failure) {
if (!host_)
return;
MetroViewerHostMsg_SaveAsDialogParams params;
params.title = title;
params.default_extension = default_extension;
params.filter = filter;
params.filter_index = filter_index;
params.suggested_name = default_path;
// Can only have one of these operations in flight.
DCHECK(file_saveas_completion_callback_.is_null());
DCHECK(failure_callback_.is_null());
file_saveas_completion_callback_ = on_success;
failure_callback_ = on_failure;
host_->Send(new MetroViewerHostMsg_DisplayFileSaveAs(params));
}
void RemoteRootWindowHostWin::HandleSelectFolder(
const base::string16& title,
const SelectFolderCompletion& on_success,
const FileSelectionCanceled& on_failure) {
if (!host_)
return;
// Can only have one of these operations in flight.
DCHECK(select_folder_completion_callback_.is_null());
DCHECK(failure_callback_.is_null());
select_folder_completion_callback_ = on_success;
failure_callback_ = on_failure;
host_->Send(new MetroViewerHostMsg_DisplaySelectFolder(title));
}
void RemoteRootWindowHostWin::HandleWindowSizeChanged(uint32 width,
uint32 height) {
SetBounds(gfx::Rect(0, 0, width, height));
}
bool RemoteRootWindowHostWin::IsForegroundWindow() {
return ::GetForegroundWindow() == remote_window_;
}
Window* RemoteRootWindowHostWin::GetAshWindow() {
return GetRootWindow()->window();
}
RootWindow* RemoteRootWindowHostWin::GetRootWindow() {
return delegate_->AsRootWindow();
}
gfx::AcceleratedWidget RemoteRootWindowHostWin::GetAcceleratedWidget() {
if (remote_window_)
return remote_window_;
// Getting here should only happen for ash_unittests.exe and related code.
return ::GetDesktopWindow();
}
void RemoteRootWindowHostWin::Show() {
ui::RemoteInputMethodPrivateWin* remote_input_method_private =
GetRemoteInputMethodPrivate();
if (remote_input_method_private)
remote_input_method_private->SetRemoteDelegate(this);
}
void RemoteRootWindowHostWin::Hide() {
NOTIMPLEMENTED();
}
void RemoteRootWindowHostWin::ToggleFullScreen() {
}
gfx::Rect RemoteRootWindowHostWin::GetBounds() const {
return gfx::Rect(window_size_);
}
void RemoteRootWindowHostWin::SetBounds(const gfx::Rect& bounds) {
window_size_ = bounds.size();
delegate_->OnHostResized(bounds.size());
}
gfx::Insets RemoteRootWindowHostWin::GetInsets() const {
return gfx::Insets();
}
void RemoteRootWindowHostWin::SetInsets(const gfx::Insets& insets) {
}
gfx::Point RemoteRootWindowHostWin::GetLocationOnNativeScreen() const {
return gfx::Point(0, 0);
}
void RemoteRootWindowHostWin::SetCursor(gfx::NativeCursor native_cursor) {
if (!host_)
return;
host_->Send(
new MetroViewerHostMsg_SetCursor(uint64(native_cursor.platform())));
}
void RemoteRootWindowHostWin::SetCapture() {
}
void RemoteRootWindowHostWin::ReleaseCapture() {
}
bool RemoteRootWindowHostWin::QueryMouseLocation(gfx::Point* location_return) {
aura::client::CursorClient* cursor_client =
aura::client::GetCursorClient(GetRootWindow()->window());
if (cursor_client && !cursor_client->IsMouseEventsEnabled()) {
*location_return = gfx::Point(0, 0);
return false;
}
POINT pt;
GetCursorPos(&pt);
*location_return =
gfx::Point(static_cast<int>(pt.x), static_cast<int>(pt.y));
return true;
}
bool RemoteRootWindowHostWin::ConfineCursorToRootWindow() {
return true;
}
void RemoteRootWindowHostWin::UnConfineCursor() {
}
void RemoteRootWindowHostWin::OnCursorVisibilityChanged(bool show) {
NOTIMPLEMENTED();
}
void RemoteRootWindowHostWin::MoveCursorTo(const gfx::Point& location) {
VLOG(1) << "In MoveCursorTo: " << location.x() << ", " << location.y();
if (!host_)
return;
// This function can be called in cases like when the mouse cursor is
// restricted within a viewport (For e.g. LockCursor) which assumes that
// subsequent mouse moves would be received starting with the new cursor
// coordinates. This is a challenge for Windows ASH for the reasons
// outlined below.
// Other cases which don't expect this behavior should continue to work
// without issues.
// The mouse events are received by the viewer process and sent to the
// browser. If we invoke the SetCursor API here we continue to receive
// mouse messages from the viewer which were posted before the SetCursor
// API executes which messes up the state in the browser. To workaround
// this we invoke the SetCursor API in the viewer process and ignore
// mouse messages until we received an ACK from the viewer indicating that
// the SetCursor operation completed.
ignore_mouse_moves_until_set_cursor_ack_ = true;
VLOG(1) << "In MoveCursorTo. Sending IPC";
host_->Send(new MetroViewerHostMsg_SetCursorPos(location.x(), location.y()));
}
void RemoteRootWindowHostWin::PostNativeEvent(
const base::NativeEvent& native_event) {
}
void RemoteRootWindowHostWin::OnDeviceScaleFactorChanged(
float device_scale_factor) {
NOTIMPLEMENTED();
}
void RemoteRootWindowHostWin::PrepareForShutdown() {
}
void RemoteRootWindowHostWin::CancelComposition() {
host_->Send(new MetroViewerHostMsg_ImeCancelComposition);
}
void RemoteRootWindowHostWin::OnTextInputClientUpdated(
const std::vector<int32>& input_scopes,
const std::vector<gfx::Rect>& composition_character_bounds) {
std::vector<metro_viewer::CharacterBounds> character_bounds;
for (size_t i = 0; i < composition_character_bounds.size(); ++i) {
const gfx::Rect& rect = composition_character_bounds[i];
metro_viewer::CharacterBounds bounds;
bounds.left = rect.x();
bounds.top = rect.y();
bounds.right = rect.right();
bounds.bottom = rect.bottom();
character_bounds.push_back(bounds);
}
host_->Send(new MetroViewerHostMsg_ImeTextInputClientUpdated(
input_scopes, character_bounds));
}
void RemoteRootWindowHostWin::OnMouseMoved(int32 x, int32 y, int32 flags) {
if (ignore_mouse_moves_until_set_cursor_ack_)
return;
gfx::Point location(x, y);
ui::MouseEvent event(ui::ET_MOUSE_MOVED, location, location, flags);
delegate_->OnHostMouseEvent(&event);
}
void RemoteRootWindowHostWin::OnMouseButton(
int32 x,
int32 y,
int32 extra,
ui::EventType type,
ui::EventFlags flags) {
gfx::Point location(x, y);
ui::MouseEvent mouse_event(type, location, location, flags);
SetEventFlags(flags | key_event_flags());
if (type == ui::ET_MOUSEWHEEL) {
ui::MouseWheelEvent wheel_event(mouse_event, 0, extra);
delegate_->OnHostMouseEvent(&wheel_event);
} else if (type == ui::ET_MOUSE_PRESSED) {
// TODO(shrikant): Ideally modify code in event.cc by adding automatic
// tracking of double clicks in synthetic MouseEvent constructor code.
// Non-synthetic MouseEvent constructor code does automatically track
// this. Need to use some caution while modifying synthetic constructor
// as many tests and other code paths depend on it and apparently
// specifically depend on non implicit tracking of previous mouse event.
if (last_mouse_click_event_ &&
ui::MouseEvent::IsRepeatedClickEvent(mouse_event,
*last_mouse_click_event_)) {
mouse_event.SetClickCount(2);
} else {
mouse_event.SetClickCount(1);
}
last_mouse_click_event_ .reset(new ui::MouseEvent(mouse_event));
delegate_->OnHostMouseEvent(&mouse_event);
} else {
delegate_->OnHostMouseEvent(&mouse_event);
}
}
void RemoteRootWindowHostWin::OnKeyDown(uint32 vkey,
uint32 repeat_count,
uint32 scan_code,
uint32 flags) {
DispatchKeyboardMessage(ui::ET_KEY_PRESSED, vkey, repeat_count, scan_code,
flags, false);
}
void RemoteRootWindowHostWin::OnKeyUp(uint32 vkey,
uint32 repeat_count,
uint32 scan_code,
uint32 flags) {
DispatchKeyboardMessage(ui::ET_KEY_RELEASED, vkey, repeat_count, scan_code,
flags, false);
}
void RemoteRootWindowHostWin::OnChar(uint32 key_code,
uint32 repeat_count,
uint32 scan_code,
uint32 flags) {
DispatchKeyboardMessage(ui::ET_KEY_PRESSED, key_code, repeat_count,
scan_code, flags, true);
}
void RemoteRootWindowHostWin::OnWindowActivated() {
delegate_->OnHostActivated();
}
void RemoteRootWindowHostWin::OnTouchDown(int32 x,
int32 y,
uint64 timestamp,
uint32 pointer_id) {
ui::TouchEvent event(ui::ET_TOUCH_PRESSED,
gfx::Point(x, y),
pointer_id,
base::TimeDelta::FromMicroseconds(timestamp));
delegate_->OnHostTouchEvent(&event);
}
void RemoteRootWindowHostWin::OnTouchUp(int32 x,
int32 y,
uint64 timestamp,
uint32 pointer_id) {
ui::TouchEvent event(ui::ET_TOUCH_RELEASED,
gfx::Point(x, y),
pointer_id,
base::TimeDelta::FromMicroseconds(timestamp));
delegate_->OnHostTouchEvent(&event);
}
void RemoteRootWindowHostWin::OnTouchMoved(int32 x,
int32 y,
uint64 timestamp,
uint32 pointer_id) {
ui::TouchEvent event(ui::ET_TOUCH_MOVED,
gfx::Point(x, y),
pointer_id,
base::TimeDelta::FromMicroseconds(timestamp));
delegate_->OnHostTouchEvent(&event);
}
void RemoteRootWindowHostWin::OnFileSaveAsDone(bool success,
const base::FilePath& filename,
int filter_index) {
if (success)
file_saveas_completion_callback_.Run(filename, filter_index, NULL);
else
failure_callback_.Run(NULL);
file_saveas_completion_callback_.Reset();
failure_callback_.Reset();
}
void RemoteRootWindowHostWin::OnFileOpenDone(bool success,
const base::FilePath& filename) {
if (success)
file_open_completion_callback_.Run(base::FilePath(filename), 0, NULL);
else
failure_callback_.Run(NULL);
file_open_completion_callback_.Reset();
failure_callback_.Reset();
}
void RemoteRootWindowHostWin::OnMultiFileOpenDone(
bool success,
const std::vector<base::FilePath>& files) {
if (success)
multi_file_open_completion_callback_.Run(files, NULL);
else
failure_callback_.Run(NULL);
multi_file_open_completion_callback_.Reset();
failure_callback_.Reset();
}
void RemoteRootWindowHostWin::OnSelectFolderDone(
bool success,
const base::FilePath& folder) {
if (success)
select_folder_completion_callback_.Run(base::FilePath(folder), 0, NULL);
else
failure_callback_.Run(NULL);
select_folder_completion_callback_.Reset();
failure_callback_.Reset();
}
void RemoteRootWindowHostWin::OnSetCursorPosAck() {
DCHECK(ignore_mouse_moves_until_set_cursor_ack_);
ignore_mouse_moves_until_set_cursor_ack_ = false;
}
ui::RemoteInputMethodPrivateWin*
RemoteRootWindowHostWin::GetRemoteInputMethodPrivate() {
ui::InputMethod* input_method = GetAshWindow()->GetProperty(
aura::client::kRootWindowInputMethodKey);
return ui::RemoteInputMethodPrivateWin::Get(input_method);
}
void RemoteRootWindowHostWin::OnImeCandidatePopupChanged(bool visible) {
ui::RemoteInputMethodPrivateWin* remote_input_method_private =
GetRemoteInputMethodPrivate();
if (!remote_input_method_private)
return;
remote_input_method_private->OnCandidatePopupChanged(visible);
}
void RemoteRootWindowHostWin::OnImeCompositionChanged(
const string16& text,
int32 selection_start,
int32 selection_end,
const std::vector<metro_viewer::UnderlineInfo>& underlines) {
ui::RemoteInputMethodPrivateWin* remote_input_method_private =
GetRemoteInputMethodPrivate();
if (!remote_input_method_private)
return;
ui::CompositionText composition_text;
FillCompositionText(
text, selection_start, selection_end, underlines, &composition_text);
remote_input_method_private->OnCompositionChanged(composition_text);
}
void RemoteRootWindowHostWin::OnImeTextCommitted(const string16& text) {
ui::RemoteInputMethodPrivateWin* remote_input_method_private =
GetRemoteInputMethodPrivate();
if (!remote_input_method_private)
return;
remote_input_method_private->OnTextCommitted(text);
}
void RemoteRootWindowHostWin::OnImeInputSourceChanged(uint16 language_id,
bool is_ime) {
ui::RemoteInputMethodPrivateWin* remote_input_method_private =
GetRemoteInputMethodPrivate();
if (!remote_input_method_private)
return;
remote_input_method_private->OnInputSourceChanged(language_id, is_ime);
}
void RemoteRootWindowHostWin::DispatchKeyboardMessage(ui::EventType type,
uint32 vkey,
uint32 repeat_count,
uint32 scan_code,
uint32 flags,
bool is_character) {
SetEventFlags(flags | mouse_event_flags());
if (base::MessageLoop::current()->IsNested()) {
int index = (flags & ui::EF_ALT_DOWN) ? 1 : 0;
const int char_message[] = {WM_CHAR, WM_SYSCHAR};
const int keydown_message[] = {WM_KEYDOWN, WM_SYSKEYDOWN};
const int keyup_message[] = {WM_KEYUP, WM_SYSKEYUP};
uint32 message = is_character
? char_message[index]
: (type == ui::ET_KEY_PRESSED ? keydown_message[index]
: keyup_message[index]);
::PostThreadMessage(::GetCurrentThreadId(),
message,
vkey,
repeat_count | scan_code >> 15);
} else {
ui::KeyEvent event(type,
ui::KeyboardCodeForWindowsKeyCode(vkey),
flags,
is_character);
delegate_->OnHostKeyEvent(&event);
}
}
void RemoteRootWindowHostWin::SetEventFlags(uint32 flags) {
if (flags == event_flags_)
return;
event_flags_ = flags;
SetVirtualKeyStates(event_flags_);
}
} // namespace aura