| 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_x11.h" | 5 #include "ash/host/ash_window_tree_host_x11.h" |
| 6 | 6 |
| 7 #include <X11/extensions/Xfixes.h> | 7 #include <X11/extensions/Xfixes.h> |
| 8 #include <X11/extensions/XInput2.h> | 8 #include <X11/extensions/XInput2.h> |
| 9 #include <X11/Xatom.h> | 9 #include <X11/Xatom.h> |
| 10 #include <X11/Xlib.h> | 10 #include <X11/Xlib.h> |
| (...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 } | 232 } |
| 233 void AshWindowTreeHostX11::TranslateAndDispatchLocatedEvent( | 233 void AshWindowTreeHostX11::TranslateAndDispatchLocatedEvent( |
| 234 ui::LocatedEvent* event) { | 234 ui::LocatedEvent* event) { |
| 235 TranslateLocatedEvent(event); | 235 TranslateLocatedEvent(event); |
| 236 SendEventToProcessor(event); | 236 SendEventToProcessor(event); |
| 237 } | 237 } |
| 238 | 238 |
| 239 bool AshWindowTreeHostX11::DispatchKeyEventPostIME(const ui::KeyEvent& event) { | 239 bool AshWindowTreeHostX11::DispatchKeyEventPostIME(const ui::KeyEvent& event) { |
| 240 ui::KeyEvent event_copy(event); | 240 ui::KeyEvent event_copy(event); |
| 241 input_method_handler()->SetPostIME(true); | 241 input_method_handler()->SetPostIME(true); |
| 242 ui::EventSource::DeliverEventToProcessor(&event_copy); | 242 ui::EventDispatchDetails details = |
| 243 event_processor()->OnEventFromSource(&event_copy); |
| 244 if (details.dispatcher_destroyed) |
| 245 return true; |
| 243 input_method_handler()->SetPostIME(false); | 246 input_method_handler()->SetPostIME(false); |
| 244 return event_copy.stopped_propagation(); | 247 return event_copy.stopped_propagation(); |
| 245 } | 248 } |
| 246 | 249 |
| 247 ui::EventDispatchDetails AshWindowTreeHostX11::DeliverEventToProcessor( | |
| 248 ui::Event* event) { | |
| 249 return ui::EventSource::DeliverEventToProcessor(event); | |
| 250 } | |
| 251 | |
| 252 #if defined(OS_CHROMEOS) | 250 #if defined(OS_CHROMEOS) |
| 253 void AshWindowTreeHostX11::SetCrOSTapPaused(bool state) { | 251 void AshWindowTreeHostX11::SetCrOSTapPaused(bool state) { |
| 254 if (!ui::IsXInput2Available()) | 252 if (!ui::IsXInput2Available()) |
| 255 return; | 253 return; |
| 256 // Temporarily pause tap-to-click when the cursor is hidden. | 254 // Temporarily pause tap-to-click when the cursor is hidden. |
| 257 Atom prop = atom_cache()->GetAtom("Tap Paused"); | 255 Atom prop = atom_cache()->GetAtom("Tap Paused"); |
| 258 unsigned char value = state; | 256 unsigned char value = state; |
| 259 const XIDeviceList& dev_list = | 257 const XIDeviceList& dev_list = |
| 260 ui::DeviceListCacheX11::GetInstance()->GetXI2DeviceList(xdisplay()); | 258 ui::DeviceListCacheX11::GetInstance()->GetXI2DeviceList(xdisplay()); |
| 261 | 259 |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 295 #endif | 293 #endif |
| 296 | 294 |
| 297 AshWindowTreeHost* AshWindowTreeHost::Create( | 295 AshWindowTreeHost* AshWindowTreeHost::Create( |
| 298 const AshWindowTreeHostInitParams& init_params) { | 296 const AshWindowTreeHostInitParams& init_params) { |
| 299 if (init_params.offscreen) | 297 if (init_params.offscreen) |
| 300 return new AshWindowTreeHostUnified(init_params.initial_bounds); | 298 return new AshWindowTreeHostUnified(init_params.initial_bounds); |
| 301 return new AshWindowTreeHostX11(init_params.initial_bounds); | 299 return new AshWindowTreeHostX11(init_params.initial_bounds); |
| 302 } | 300 } |
| 303 | 301 |
| 304 } // namespace ash | 302 } // namespace ash |
| OLD | NEW |