Gestures: Fix flick gesture on non-desktop builds#16
Gestures: Fix flick gesture on non-desktop builds#16ProfLander wants to merge 8 commits intoopenwebos:masterfrom
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 <morphis@gravedo.de>
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 <morphis@gravedo.de>
Open-webOS-DCO-1.0-Signed-off-by: Simon Busch <morphis@gravedo.de>
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 <morphis@gravedo.de>
Open-WebOS-DCO-1.0-Signed-Off-By: Josh Palmer <jpalmerwatkins@me.com>
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 <morphis@gravedo.de>
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 <morphis@gravedo.de>
* 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 <jpalmerwatkins@me.com>
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 jpalmerwatkins@me.com