-
Notifications
You must be signed in to change notification settings - Fork 34
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
Gestures: Fix flick gesture on non-desktop builds #16
base: master
Are you sure you want to change the base?
Gestures: Fix flick gesture on non-desktop builds #16
Conversation
Thanks for the submission. We are evaluating to make sure there aren't any unintended consequences. |
This does not currently build in Desktop, looks like a missing include. If you can patch that up, I can continue checking it out. Thanks! Src/base/hosts/HostQtDesktop.cpp: In member function ‘virtual bool GestureStrip::event(QEvent_)’: |
ShiftyAxel and I have discussed this patch, and it's not something that's relevant to everywhere, but it would be nice to see it added as a compatibility option for systems that do not have operating multi-touch input, but rather use mouse emulation for the touch screen. Hoping he will commit it with the changes we discussed for that. |
Open-webOS-DCO-1.0-Signed-off-by: Simon Busch <[email protected]>
On some platforms we don't have a second framebuffer so until now some statements in the init method where never reached on these platforms. Open-webOS-DCO-1.0-Signed-off-by: Simon Busch <[email protected]>
Open-webOS-DCO-1.0-Signed-off-by: Simon Busch <[email protected]>
On newer kernels /proc/*/oom_adj is deprecated and should not be used anymore. As Open webOS requires at least a linux 3.3 kernel this changes the use to the new /proc/*/oom_score_adj entry but still keeps backward compatiblity for older kernels which onles provides /proc/*/oom_adj. More information about the change are available on the following pages: - torvalds/linux@a63d83f#include/linux/oom.h - https://www.redhat.com/archives/lvm-devel/2011-July/msg00097.html Open-webOS-DCO-1.0-Signed-off-by: Simon Busch <[email protected]>
Open-WebOS-DCO-1.0-Signed-Off-By: Josh Palmer <[email protected]>
When compiling for a target device this will lead to build errors when the device has no support for the media api. Open-WebOS-DCO-1.0-Signed-Off-By: Simon Busch <[email protected]>
There is difference in the way of compiling serviceinstaller: When compiling it with cmake it will result in a library called libserviceinstaller and if the plain Makefile is used it will named libserviceinstall. OE uses the cmake approach and therefore we need to fix this. Open-webOS-DCO-1.0-Signed-off-by: Simon Busch <[email protected]>
* Remove FlickGestureRecognizer from HostQtDesktop.cpp * Add FlickGestureRecognizer to WindowServer.cpp * Move recognizer file entries from desktop.pri to sysmgr.pro Open-webOS-DCO-1.0-Signed-off-by: Josh Palmer <[email protected]>
When building for device, the flick gesture wasn't being compiled in- these changes include and use it regardless of platform.
Open-webOS-DCO-1.0-Signed-off-by: Josh Palmer [email protected]