1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
// Copyright (c) 2011 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 "aura/desktop_host_win.h"
#include "aura/desktop.h"
#include "aura/event.h"
#include "base/message_loop.h"
namespace aura {
// static
DesktopHost* DesktopHost::Create(const gfx::Rect& bounds) {
return new DesktopHostWin(bounds);
}
DesktopHostWin::DesktopHostWin(const gfx::Rect& bounds) : desktop_(NULL) {
Init(NULL, bounds);
}
DesktopHostWin::~DesktopHostWin() {
DestroyWindow(hwnd());
}
bool DesktopHostWin::Dispatch(const MSG& msg) {
TranslateMessage(&msg);
DispatchMessage(&msg);
return true;
}
void DesktopHostWin::SetDesktop(Desktop* desktop) {
desktop_ = desktop;
}
gfx::AcceleratedWidget DesktopHostWin::GetAcceleratedWidget() {
return hwnd();
}
void DesktopHostWin::Show() {
ShowWindow(hwnd(), SW_SHOWNORMAL);
}
gfx::Size DesktopHostWin::GetSize() {
RECT r;
GetClientRect(hwnd(), &r);
return gfx::Rect(r).size();
}
void DesktopHostWin::SetSize(const gfx::Size& size) {
SetWindowPos(
hwnd(),
NULL,
0,
0,
size.width(),
size.height(),
SWP_NOMOVE | SWP_NOOWNERZORDER | SWP_NOREDRAW | SWP_NOREPOSITION);
}
void DesktopHostWin::OnClose() {
// TODO: this obviously shouldn't be here.
MessageLoopForUI::current()->Quit();
}
LRESULT DesktopHostWin::OnMouseRange(UINT message,
WPARAM w_param,
LPARAM l_param) {
MSG msg = { hwnd(), message, w_param, l_param, 0,
{ GET_X_LPARAM(l_param), GET_Y_LPARAM(l_param) } };
MouseEvent event(msg);
bool handled = false;
if (!(event.flags() & ui::EF_IS_NON_CLIENT))
handled = desktop_->OnMouseEvent(event);
SetMsgHandled(handled);
return 0;
}
void DesktopHostWin::OnPaint(HDC dc) {
if (desktop_)
desktop_->Draw();
ValidateRect(hwnd(), NULL);
}
} // namespace aura
|