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

Unified Diff: views/touchui/touch_factory.cc

Issue 6300007: touch: Allow grabbing/ungrabbing touch devices for XInput2. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: views/touchui/touch_factory.cc
diff --git a/views/touchui/touch_factory.cc b/views/touchui/touch_factory.cc
new file mode 100644
index 0000000000000000000000000000000000000000..00400593c83e519722e7a515817f06f8e3a5a37c
--- /dev/null
+++ b/views/touchui/touch_factory.cc
@@ -0,0 +1,76 @@
+// 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 "views/touchui/touch_factory.h"
+
+#include <gdk/gdkx.h>
+#include <X11/extensions/XInput2.h>
+
+#include "base/logging.h"
+
+namespace views {
+
+// static
+TouchFactory* TouchFactory::GetInstance() {
+ return Singleton<TouchFactory>::get();
+}
+
+TouchFactory::TouchFactory() : touch_device_lookup_(),
sky 2011/01/19 19:34:54 put these on the next line and indented 4 spaces.
sadrul 2011/01/19 20:10:17 Done.
+ touch_device_list_() {
+}
+
+void TouchFactory::SetTouchDeviceList(
+ const std::vector<unsigned int>& devices) {
+ for (std::vector<unsigned int>::const_iterator iter = devices.begin();
sky 2011/01/19 19:34:54 Do you need to clear out touch_device_lookup_ and
sadrul 2011/01/19 20:10:17 At this moment, this is called exactly once. But r
+ iter != devices.end(); ++iter) {
sky 2011/01/19 19:34:54 indent one more space
sadrul 2011/01/19 20:10:17 Done.
+ DCHECK(*iter < touch_device_lookup_.size());
+ touch_device_lookup_[*iter] = true;
+ touch_device_list_.push_back(*iter);
+ }
+}
+
+bool TouchFactory::IsTouchDevice(unsigned deviceid) {
+ return deviceid < touch_device_lookup_.size() ?
+ touch_device_lookup_[deviceid] : false;
+}
+
+bool TouchFactory::GrabTouchDevices(Display* display, ::Window window) {
+ if (touch_device_list_.size() == 0)
sky 2011/01/19 19:34:54 empty
sadrul 2011/01/19 20:10:17 Done.
+ return true;
+
+ unsigned char mask[(XI_LASTEVENT + 7) / 8];
+ bool success = true;
+
+ memset(mask, 0, sizeof(mask));
+ XISetMask(mask, XI_ButtonPress);
+ XISetMask(mask, XI_ButtonRelease);
+ XISetMask(mask, XI_Motion);
+
+ XIEventMask evmask;
+ evmask.mask_len = sizeof(mask);
+ evmask.mask = mask;
+ for (std::vector<int>::const_iterator iter =
+ touch_device_list_.begin();
+ iter != touch_device_list_.end(); ++iter) {
+ evmask.deviceid = *iter;
+ Status status = XIGrabDevice(display, *iter, window, CurrentTime, None,
+ GrabModeAsync, GrabModeAsync, False, &evmask);
+ success = success && status == GrabSuccess;
+ }
+
+ return success;
+}
+
+bool TouchFactory::UngrabTouchDevices(Display* display) {
+ bool success = true;
+ for (std::vector<int>::const_iterator iter =
+ touch_device_list_.begin();
+ iter != touch_device_list_.end(); ++iter) {
+ Status status = XIUngrabDevice(display, *iter, CurrentTime);
+ success = success && status == GrabSuccess;
+ }
+ return success;
+}
+
+} // namespace views

Powered by Google App Engine
This is Rietveld 408576698