| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "ash/host/ash_window_tree_host.h" | 5 #include "ash/host/ash_window_tree_host.h" |
| 6 | 6 |
| 7 #include "ash/ash_export.h" | 7 #include "ash/ash_export.h" |
| 8 #include "ash/ash_switches.h" | 8 #include "ash/ash_switches.h" |
| 9 #include "ash/host/ash_remote_window_tree_host_win.h" | 9 #include "ash/host/ash_remote_window_tree_host_win.h" |
| 10 #include "ash/host/ash_window_tree_host_init_params.h" | 10 #include "ash/host/ash_window_tree_host_init_params.h" |
| 11 #include "ash/host/root_window_transformer.h" | 11 #include "ash/host/root_window_transformer.h" |
| 12 #include "ash/host/transformer_helper.h" | 12 #include "ash/host/transformer_helper.h" |
| 13 #include "ash/ime/input_method_event_handler.h" | 13 #include "ash/ime/input_method_event_handler.h" |
| 14 #include "base/command_line.h" | 14 #include "base/command_line.h" |
| 15 #include "base/win/windows_version.h" | 15 #include "base/win/windows_version.h" |
| 16 #include "ui/aura/window_tree_host_win.h" | 16 #include "ui/aura/window_tree_host_platform.h" |
| 17 #include "ui/events/event_processor.h" | 17 #include "ui/events/event_processor.h" |
| 18 #include "ui/gfx/geometry/insets.h" | 18 #include "ui/gfx/geometry/insets.h" |
| 19 #include "ui/gfx/transform.h" | 19 #include "ui/gfx/transform.h" |
| 20 | 20 |
| 21 namespace ash { | 21 namespace ash { |
| 22 namespace { | 22 namespace { |
| 23 | 23 |
| 24 class AshWindowTreeHostWin : public AshWindowTreeHost, | 24 class AshWindowTreeHostWin : public AshWindowTreeHost, |
| 25 public aura::WindowTreeHostWin { | 25 public aura::WindowTreeHostPlatform { |
| 26 public: | 26 public: |
| 27 explicit AshWindowTreeHostWin(const gfx::Rect& initial_bounds) | 27 explicit AshWindowTreeHostWin(const gfx::Rect& initial_bounds) |
| 28 : aura::WindowTreeHostWin(initial_bounds), | 28 : aura::WindowTreeHostPlatform(initial_bounds), |
| 29 fullscreen_(false), | 29 fullscreen_(false), |
| 30 saved_window_style_(0), | 30 saved_window_style_(0), |
| 31 saved_window_ex_style_(0), | 31 saved_window_ex_style_(0), |
| 32 transformer_helper_(this) { | 32 transformer_helper_(this) { |
| 33 transformer_helper_.Init(); | 33 transformer_helper_.Init(); |
| 34 } | 34 } |
| 35 ~AshWindowTreeHostWin() override {} | 35 ~AshWindowTreeHostWin() override {} |
| 36 | 36 |
| 37 private: | 37 private: |
| 38 // AshWindowTreeHost: | 38 // AshWindowTreeHost: |
| 39 void ToggleFullScreen() override { | 39 void ToggleFullScreen() override { |
| 40 gfx::Rect target_rect; | 40 gfx::Rect target_rect; |
| 41 gfx::AcceleratedWidget hwnd = GetAcceleratedWidget(); |
| 41 if (!fullscreen_) { | 42 if (!fullscreen_) { |
| 42 fullscreen_ = true; | 43 fullscreen_ = true; |
| 43 saved_window_style_ = GetWindowLong(hwnd(), GWL_STYLE); | 44 saved_window_style_ = GetWindowLong(hwnd, GWL_STYLE); |
| 44 saved_window_ex_style_ = GetWindowLong(hwnd(), GWL_EXSTYLE); | 45 saved_window_ex_style_ = GetWindowLong(hwnd, GWL_EXSTYLE); |
| 45 GetWindowRect(hwnd(), &saved_window_rect_); | 46 GetWindowRect(hwnd, &saved_window_rect_); |
| 46 SetWindowLong(hwnd(), | 47 SetWindowLong(hwnd, GWL_STYLE, |
| 47 GWL_STYLE, | |
| 48 saved_window_style_ & ~(WS_CAPTION | WS_THICKFRAME)); | 48 saved_window_style_ & ~(WS_CAPTION | WS_THICKFRAME)); |
| 49 SetWindowLong( | 49 SetWindowLong(hwnd, GWL_EXSTYLE, |
| 50 hwnd(), | 50 saved_window_ex_style_ & |
| 51 GWL_EXSTYLE, | 51 ~(WS_EX_DLGMODALFRAME | WS_EX_WINDOWEDGE | |
| 52 saved_window_ex_style_ & ~(WS_EX_DLGMODALFRAME | WS_EX_WINDOWEDGE | | 52 WS_EX_CLIENTEDGE | WS_EX_STATICEDGE)); |
| 53 WS_EX_CLIENTEDGE | WS_EX_STATICEDGE)); | |
| 54 | 53 |
| 55 MONITORINFO mi; | 54 MONITORINFO mi; |
| 56 mi.cbSize = sizeof(mi); | 55 mi.cbSize = sizeof(mi); |
| 57 GetMonitorInfo(MonitorFromWindow(hwnd(), MONITOR_DEFAULTTONEAREST), &mi); | 56 GetMonitorInfo(MonitorFromWindow(hwnd, MONITOR_DEFAULTTONEAREST), &mi); |
| 58 target_rect = gfx::Rect(mi.rcMonitor); | 57 target_rect = gfx::Rect(mi.rcMonitor); |
| 59 } else { | 58 } else { |
| 60 fullscreen_ = false; | 59 fullscreen_ = false; |
| 61 SetWindowLong(hwnd(), GWL_STYLE, saved_window_style_); | 60 SetWindowLong(hwnd, GWL_STYLE, saved_window_style_); |
| 62 SetWindowLong(hwnd(), GWL_EXSTYLE, saved_window_ex_style_); | 61 SetWindowLong(hwnd, GWL_EXSTYLE, saved_window_ex_style_); |
| 63 target_rect = gfx::Rect(saved_window_rect_); | 62 target_rect = gfx::Rect(saved_window_rect_); |
| 64 } | 63 } |
| 65 SetWindowPos(hwnd(), | 64 SetWindowPos(hwnd, NULL, target_rect.x(), target_rect.y(), |
| 66 NULL, | 65 target_rect.width(), target_rect.height(), |
| 67 target_rect.x(), | |
| 68 target_rect.y(), | |
| 69 target_rect.width(), | |
| 70 target_rect.height(), | |
| 71 SWP_NOZORDER | SWP_NOACTIVATE | SWP_FRAMECHANGED); | 66 SWP_NOZORDER | SWP_NOACTIVATE | SWP_FRAMECHANGED); |
| 72 } | 67 } |
| 73 bool ConfineCursorToRootWindow() override { return false; } | 68 bool ConfineCursorToRootWindow() override { return false; } |
| 74 void UnConfineCursor() override { NOTIMPLEMENTED(); } | 69 void UnConfineCursor() override { NOTIMPLEMENTED(); } |
| 75 void SetRootWindowTransformer( | 70 void SetRootWindowTransformer( |
| 76 scoped_ptr<RootWindowTransformer> transformer) override { | 71 scoped_ptr<RootWindowTransformer> transformer) override { |
| 77 transformer_helper_.SetRootWindowTransformer(transformer.Pass()); | 72 transformer_helper_.SetRootWindowTransformer(transformer.Pass()); |
| 78 } | 73 } |
| 79 gfx::Insets GetHostInsets() const override { | 74 gfx::Insets GetHostInsets() const override { |
| 80 return transformer_helper_.GetHostInsets(); | 75 return transformer_helper_.GetHostInsets(); |
| 81 } | 76 } |
| 82 aura::WindowTreeHost* AsWindowTreeHost() override { return this; } | 77 aura::WindowTreeHost* AsWindowTreeHost() override { return this; } |
| 83 | 78 |
| 84 // WindowTreeHostWin: | 79 // WindowTreeHost: |
| 85 void SetBounds(const gfx::Rect& bounds) override { | 80 void SetBounds(const gfx::Rect& bounds) override { |
| 86 if (fullscreen_) { | 81 if (fullscreen_) { |
| 87 saved_window_rect_.right = saved_window_rect_.left + bounds.width(); | 82 saved_window_rect_.right = saved_window_rect_.left + bounds.width(); |
| 88 saved_window_rect_.bottom = saved_window_rect_.top + bounds.height(); | 83 saved_window_rect_.bottom = saved_window_rect_.top + bounds.height(); |
| 89 return; | 84 return; |
| 90 } | 85 } |
| 91 WindowTreeHostWin::SetBounds(bounds); | 86 aura::WindowTreeHostPlatform::SetBounds(bounds); |
| 92 } | 87 } |
| 93 void SetRootTransform(const gfx::Transform& transform) override { | 88 void SetRootTransform(const gfx::Transform& transform) override { |
| 94 transformer_helper_.SetTransform(transform); | 89 transformer_helper_.SetTransform(transform); |
| 95 } | 90 } |
| 96 gfx::Transform GetRootTransform() const override { | 91 gfx::Transform GetRootTransform() const override { |
| 97 return transformer_helper_.GetTransform(); | 92 return transformer_helper_.GetTransform(); |
| 98 } | 93 } |
| 99 gfx::Transform GetInverseRootTransform() const override { | 94 gfx::Transform GetInverseRootTransform() const override { |
| 100 return transformer_helper_.GetInverseTransform(); | 95 return transformer_helper_.GetInverseTransform(); |
| 101 } | 96 } |
| (...skipping 28 matching lines...) Expand all Loading... |
| 130 const AshWindowTreeHostInitParams& init_params) { | 125 const AshWindowTreeHostInitParams& init_params) { |
| 131 if (base::win::GetVersion() >= base::win::VERSION_WIN7 && | 126 if (base::win::GetVersion() >= base::win::VERSION_WIN7 && |
| 132 !base::CommandLine::ForCurrentProcess()->HasSwitch( | 127 !base::CommandLine::ForCurrentProcess()->HasSwitch( |
| 133 ash::switches::kForceAshToDesktop)) | 128 ash::switches::kForceAshToDesktop)) |
| 134 return new AshRemoteWindowTreeHostWin(init_params.remote_hwnd); | 129 return new AshRemoteWindowTreeHostWin(init_params.remote_hwnd); |
| 135 | 130 |
| 136 return new AshWindowTreeHostWin(init_params.initial_bounds); | 131 return new AshWindowTreeHostWin(init_params.initial_bounds); |
| 137 } | 132 } |
| 138 | 133 |
| 139 } // namespace ash | 134 } // namespace ash |
| OLD | NEW |