aboutsummaryrefslogtreecommitdiff
path: root/backends/events/webossdl/webossdl-events.h
AgeCommit message (Collapse)Author
2014-02-18WEBOS: Make GPL headers consistent in themselves.Johannes Schickel
2012-09-26JANITORIAL: Remove trailing whitespaces.Johannes Schickel
Powered by: git ls-files "*.cpp" "*.h" "*.m" "*.mm" | xargs sed -i -e 's/[ \t]*$//'
2012-01-28WEBOS: Renamed "Touchpad Mode" to "Trackpad Mode" to prevent confusion ↵Klaus Reimer
because one of the target devices is called the "HP Touchpad".
2011-10-01WebOS: Add improvements suggested in pull req. 89.TomFrost
The improvements in this commit are mostly code formatting, variable abstraction, and in one case, a performance enhancement as calculations were made a one-time fire rather than being run with every mouse move event.
2011-09-25WebOS: Make right-clicks last longer.TomFrost
While the right-click was working in most games, the weapon-switching in Full Throttle wasn't registering the click. Holding the button down for 50ms instead of immediately firing the mouseup fixes the issue.
2011-09-25WebOS: Change to multitouch control scheme.TomFrost
This is a near-rewrite of the WebOS event system to take advantage of multitouch, with which all WebOS devices are outfitted. This commit also marks full compatibility with the HP TouchPad, or any future tablet device without a hardware keyboard. Controls: - Left click: Single-tap once - Right click: Put one finger on screen, single-tap another - Middle click: Put two fingers on screen, single-tap another - Menu: Swipe two fingers down - Show keyboard: Swipe two fingers up - Touchpad Mode: - Swipe two fingers to the right to toggle - When off (default) mouse will move to the location tapped - When on, mouse will move relative to its current position - Autodrag Mode: - Swipe three fingers to the right to toggle - When on (default), touching the screen and holding still for a half-second will initiate a left-mouse button hold. Useful for games like COMI and FT. - When off (or on) a double-tap will initiate a left-mouse button hold. - Escape key: Swipe two fingers left - Space bar (pause): Swipe three fingers down
2011-09-24WebOS: Correct code convention and graphic errors.TomFrost
This is a mass commit for the following items: - Conversion of mixed and unaligned spaces/tabs to tabs - Moved static globals in webos_events to class members - Corrected variable naming convention to use underscores - Added a constructor to WebOSSdlEventSource to initialize variables. - Changed SDL getWidth and getHeight calls to getOverlayWidth and getOverlayHeight to support larger form factors (such as the HP TouchPad). - Removed unnecessary static getMillis() declaration and changed existing code to use the built-in getMillis().
2011-05-12GIT: Clean up: Suppress SVN tags, now uselessstrangerke
2011-04-12WEBOS: Complete rewrite of key/mouse events handlingKlaus Reimer
Touchscreen is now always used like a touch pad.
2011-04-12WEBOS: Enable keymapper, implement FORWARD key and right+middle button clicksKlaus Reimer
2011-04-12WEBOS: Create webos backend with custom eventsKlaus Reimer
Currently only contains test code.