Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(109)

Side by Side Diff: remoting/host/single_window_input_injector_mac.cc

Issue 422503004: Adding ability to stream windows and inject events to them (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: added exit code to remoting_host when unable to parse window_id Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "remoting/host/single_window_input_injector.h"
6
7 #include <ApplicationServices/ApplicationServices.h>
8 #include <Carbon/Carbon.h>
9
10 #include "base/mac/foundation_util.h"
11 #include "base/mac/scoped_cftyperef.h"
12 #include "remoting/proto/event.pb.h"
13 #include "third_party/webrtc/modules/desktop_capture/mac/desktop_configuration.h "
14
15 namespace remoting {
16
17 using protocol::ClipboardEvent;
18 using protocol::KeyEvent;
19 using protocol::TextEvent;
20 using protocol::MouseEvent;
21
22 class SingleWindowInputInjectorMac : public SingleWindowInputInjector {
23 public:
24 SingleWindowInputInjectorMac(
25 webrtc::WindowId window_id,
26 scoped_ptr<InputInjector> input_injector);
27 virtual ~SingleWindowInputInjectorMac();
28
29 // InputInjector interface.
30 virtual void Start(
31 scoped_ptr<protocol::ClipboardStub> client_clipboard) OVERRIDE;
32 virtual void InjectKeyEvent(const KeyEvent& event) OVERRIDE;
33 virtual void InjectTextEvent(const TextEvent& event) OVERRIDE;
34 virtual void InjectMouseEvent(const MouseEvent& event) OVERRIDE;
35 virtual void InjectClipboardEvent(const ClipboardEvent& event) OVERRIDE;
36
37 private:
38 CGRect FindCGRectOfWindow();
39
40 CGWindowID window_id_;
41 scoped_ptr<InputInjector> input_injector_;
42
43 DISALLOW_COPY_AND_ASSIGN(SingleWindowInputInjectorMac);
44 };
45
46 SingleWindowInputInjectorMac::SingleWindowInputInjectorMac(
47 webrtc::WindowId window_id,
48 scoped_ptr<InputInjector> input_injector)
49 : window_id_(static_cast<CGWindowID>(window_id)),
50 input_injector_(input_injector.Pass()) {
51 }
52
53 SingleWindowInputInjectorMac::~SingleWindowInputInjectorMac() {
54 }
55
56 void SingleWindowInputInjectorMac::Start(
57 scoped_ptr<protocol::ClipboardStub> client_clipboard) {
58 input_injector_->Start(client_clipboard.Pass());
59 }
60
61 void SingleWindowInputInjectorMac::InjectKeyEvent(const KeyEvent& event) {
62 input_injector_->InjectKeyEvent(event);
63 }
64
65 void SingleWindowInputInjectorMac::InjectTextEvent(const TextEvent& event) {
66 input_injector_->InjectTextEvent(event);
67 }
68
69 void SingleWindowInputInjectorMac::InjectMouseEvent(const MouseEvent& event) {
70 if (event.has_x() && event.has_y()) {
71 CGRect windowRect = FindCGRectOfWindow();
Sergey Ulanov 2014/08/12 18:18:00 window_rect
ronakvora do not use 2014/08/13 18:04:44 Done.
72 if (CGRectIsNull(windowRect)) {
73 LOG(ERROR) << "Window rect is null, so forwarding unmodified MouseEvent";
74 input_injector_->InjectMouseEvent(event);
75 return;
76 }
77
78 webrtc::MacDesktopConfiguration desktop_config =
79 webrtc::MacDesktopConfiguration::GetCurrent(
80 webrtc::MacDesktopConfiguration::TopLeftOrigin);
81
82 // Create a vector that has the origin of the window.
83 webrtc::DesktopVector window_mouse_pos(windowRect.origin.x,
Sergey Ulanov 2014/08/12 18:18:00 call this window_pos?
ronakvora do not use 2014/08/13 18:04:44 Done.
84 windowRect.origin.y);
85
86 // The underlying InputInjector expects coordinates relative to the
87 // top-left of the top-left-most monitor, so translate the window origin
88 // to that coordinate scheme.
89 window_mouse_pos.subtract(
90 webrtc::DesktopVector(desktop_config.pixel_bounds.left(),
91 desktop_config.pixel_bounds.top()));
92
93 // We must make sure we are taking into account the fact that when we
94 // find the window on the host it returns its coordinates in Density
95 // Independent coordinates. We have to convert to Density Dependent
96 // because InputInjector assumes Density Dependent coordinates in the
97 // MouseEvent.
98 window_mouse_pos.set(window_mouse_pos.x() *
99 desktop_config.dip_to_pixel_scale,
100 window_mouse_pos.y() *
101 desktop_config.dip_to_pixel_scale);
102
103 // Create a new event with coordinates that are in respect to the window.
104 MouseEvent modified_event(event);
105 modified_event.set_x(event.x() + window_mouse_pos.x());
106 modified_event.set_y(event.y() + window_mouse_pos.y());
107 input_injector_->InjectMouseEvent(modified_event);
108 } else {
109 input_injector_->InjectMouseEvent(event);
110 }
111 }
112
113 void SingleWindowInputInjectorMac::InjectClipboardEvent(
114 const ClipboardEvent& event) {
115 input_injector_->InjectClipboardEvent(event);
116 }
117
118 // This method finds the rectangle of the window we are streaming using
119 // |window_id_|. The InputInjector can then use this rectangle
120 // to translate the input event to coordinates of the window rather
121 // than the screen.
122 CGRect SingleWindowInputInjectorMac::FindCGRectOfWindow() {
123 CGRect rect;
124 CGWindowID ids[1] = {window_id_};
125 base::ScopedCFTypeRef<CFArrayRef> window_id_array(
126 CFArrayCreate(NULL, reinterpret_cast<const void **>(&ids), 1, NULL));
127
128 base::ScopedCFTypeRef<CFArrayRef> window_array(
129 CGWindowListCreateDescriptionFromArray(window_id_array));
130
131 if (window_array == NULL || CFArrayGetCount(window_array) == 0) {
132 // Could not find the window. It might have been closed.
133 LOG(ERROR) << "Specified window to stream not found for id: "
134 << window_id_;
135 return CGRectNull;
136 }
137
138 // We don't use ScopedCFTypeRef for |window_array| because the
139 // CFDictionaryRef returned by CFArrayGetValueAtIndex is owned by
140 // window_array. The same is true of the |bounds|.
141 CFDictionaryRef window =
142 base::mac::CFCast<CFDictionaryRef>(
143 CFArrayGetValueAtIndex(window_array, 0));
144
145 if (CFDictionaryContainsKey(window, kCGWindowBounds)) {
146 CFDictionaryRef bounds =
147 base::mac::GetValueFromDictionary<CFDictionaryRef>(
148 window, kCGWindowBounds);
149
150 if (bounds) {
151 if (CGRectMakeWithDictionaryRepresentation(bounds, &rect)) {
152 return rect;
153 }
154 }
155 }
156
157 return CGRectNull;
158 }
159
160 scoped_ptr<InputInjector> SingleWindowInputInjector::Create(
161 webrtc::WindowId window_id,
162 scoped_ptr<InputInjector> input_injector) {
163 scoped_ptr<SingleWindowInputInjectorMac> injector(
164 new SingleWindowInputInjectorMac(window_id, input_injector.Pass()));
165 return injector.PassAs<InputInjector>();
166 }
167
168
Sergey Ulanov 2014/08/12 18:18:00 remove extra empty lines.
ronakvora do not use 2014/08/13 18:04:44 Done.
169
170 } // namespace remoting
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698