-
Notifications
You must be signed in to change notification settings - Fork 87
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gesturesign does not detect wacom tablet touchpad #112
Comments
I believe if I can register the wacom device as a touchpad within messagewindow.cs and initiated it as a touchpad, touchpad gestures will work the wacom device. It looks like the way gesturesign works is WndProc feeds messages to the gesturesign and I expect windows passes to gesturesign messages only from devices gesturesign has registered to. Then gesturesign processes those messages to recognize gestures. The game plan is to register the wacom device so that output messages it generates are sent to gesturesign. Then within Processinputcommand, treat the wacom device as a touchpad device. If the above analysis is correct I only need to modify /mnt/c/Users/natna/GestureSign/GestureSign.Daemon/Input/MessageWindow.cs I will look at this when I can make time. Points of interest in the codebase What gesturesign expects from a touchpad. /mnt/c/Users/natna/GestureSign/GestureSign.Daemon/Input/TouchPadDevice.cs:14 |
I have made some progress. Then, I found that enumerateDevices within daemon/input/hidDevice.cs very critical. it enumerates through all devices and sets . Then after finding the usageflag for the wacom device, or some other means of identifying it to pass to |
I have a wacom pth450. It writing area can also be used a touchpad. however gesturesign doesn't detect the device. #55 seems similar.
The text was updated successfully, but these errors were encountered: