Detect common touch gestures in Kivy apps
Project description
Gestures for Kivy
Detect common touch gestures in Kivy apps
2023-11-13 This repository is archived.
Now with an all new, simpler, input device independent api. The classic api is still implemented, but will be depreciated.
Install
Desktop OS:
pip3 install gestures4kivy
Android:
Add gestures4kivy
to buildozer.spec
requirements.
iOS:
toolchain pip3 install gestures4kivy
Usage
Import using:
from gestures4kivy import CommonGestures
The following is required at the top of the app's main.py to disable Kivy's multitouch emulation feature:
Config.set('input', 'mouse', 'mouse, disable_multitouch')
The class CommonGestures
detects the common gestures for primary event, secondary event, select, drag, scroll, pan, zoom, rotate, and page. These are reported in an input device independent way, see below for details.
Each gesture results in a callback, which defines the required action. These gestures can be added to Kivy widgets by subclassing a Kivy Widget and CommonGestures
, and then including the methods for the required gestures.
A minimal example is SwipeScreen
, where we implement one callback method:
# A swipe sensitive Screen
class SwipeScreen(Screen, CommonGestures):
def cgb_horizontal_page(self, touch, right):
# here we add the user defined behavior for the gesture
# this method controls the ScreenManager in response to a swipe
App.get_running_app().swipe_screen(right)
Where the swipe_screen()
method configures the screen manager. This is fully implemented along with the other gestures here.
CommonGestures
callback methods detect gestures; they do not implement behaviors.
Widget Interaction
In the example above gesture detection is added to the Widget, however some Kivy widgets consume events so they are not passed to CommonGestures. For example ScrollView
consumes mouse wheel events so a cgb_pan
is not detected.
class HScrollView(ScrollView, CommonGestures):
def cgb_pan(self, touch, focus_x, focus_y, delta_x, velocity):
print('pan')
# this is never called
If this is not the required behavior, change the module resolution order. CommonGestures and ScrollView events will be called.
class HScrollView(CommonGestures, ScrollView):
def cgb_pan(self, touch, focus_x, focus_y, delta_x, velocity):
print('pan')
# this is always called
API
CommonGestures
implements the following gesture callbacks, a child class may use any subset. The callbacks are initiated by input device events as described below.
Callback arguments report the original Kivy touch event(s), the focus of a gesture (the location of a cursor, finger, or mid point between two fingers) in Widget coordinates, and parameters representing the change described by a gesture.
Gesture sensitivities can be adjusted by setting values in the class that inherits from CommonGestures
. These values are contained in the self._SOME_NAME
variables declared in the __init__()
method of CommonGestures
.
For backwards compatibility a legacy api is implemented (method names begin with 'cg_' not 'cgb_'). The legacy api will eventually be depreciated, and is not documented.
Primary event
def cgb_primary(self, touch, focus_x, focus_y):
pass
- Mouse - Left button click
- Touchpad - one finger tap
- Mobile - one finger tap
Secondary event
def cgb_secondary(self, touch, focus_x, focus_y):
pass
- Mouse - Right button click
- Touchpad - two finger tap
- Mobile - two finger tap
Select
def cgb_select(self, touch, focus_x, focus_y, long_press):
# If long_press == True
# Then on a mobile device set visual feedback.
pass
def cgb_long_press_end(self, touch, focus_x, focus_y):
# Only called if cgb_select() long_press argument was True
# On mobile device reset visual feedback.
pass
- Mouse - double click
- Touchpad - double tap, or long deep press
- Mobile - double tap, long press
cgb_long_press_end()
is called when a user raises a finger after a long press. This may occur after a select or after a drag initiated by a long press.
Drag
def cgb_drag(self, touch, focus_x, focus_y, delta_x, delta_y):
pass
- Mouse - hold mouse button and move mouse
- Touchpad - deep press (or one and a half taps) and move finger
- Mobile - long press (provide visual feeback) and move finger
Scroll
def cgb_scroll(self, touch, focus_x, focus_y, delta_y, velocity):
pass
- Mouse - rotate scroll wheel
- Touchpad - two finger vertical motion
- Mobile - one finger vertical motion
A scroll gesture is very similar to a vertical page gesture, using the two in the same layout may be a challenge particularly on a touchpad.
Pan
def cgb_pan(self, touch, focus_x, focus_y, delta_x, velocity):
pass
- Mouse - Press Shift key, and rotate scroll wheel
- Touchpad - two finger horizontal motion
- Mobile - one finger horizontal motion
A pan gesture is very similar to a horizontal page gesture, using the two in the same layout may be a challenge particularly on a touchpad.
Zoom
def cgb_zoom(self, touch0, touch1, focus_x, focus_y, delta_scale):
pass
- Mouse - Press Ctrl key, and rotate scroll wheel
- Touchpad - two finger pinch/spread
- Mobile - two finger pinch/spread
On a Mac, the Command key is the convention for zoom, either Command or Ctrl can be used.
The touch1 parameter may be None
.
Rotate
def cgb_rotate(self, touch0, touch1, focus_x, focus_y, delta_angle):
pass
- Mouse - Press Alt key, and rotate scroll wheel
- Touchpad - Press Alt key, plus two finger vertical motion
- Mobile - two finger twist
On a Mac, Alt is the key labeled Option
On Linux, Alt is not available as a modifier, use the sequence CapsLock,Scroll,CapsLock.
The touch1 parameter may be None
.
Horizontal Page
def cgb_horizontal_page(self, touch, left_to_right):
pass
- Mouse - hold mouse button and fast horizontal move mouse
- Touchpad - fast two finger horizontal motion
- Mobile - fast one finger horizontal motion
See Pan for possible interactions.
Vertical Page
def cgb_vertical_page(self, touch, bottom_to_top):
pass
- Mouse - hold mouse button and fast vertical move mouse
- Touchpad - fast two finger vertical motion
- Mobile - fast one finger vertical motion
See Scroll for possible interactions.
Known Issues:
Kivy Multitouch
Kivy multitouch must be disabled. A ctrl-scroll with a mouse (the common convention for zoom), a pinch-spread with a touchpad, a right click, or a two finger tap will place an orange dot on the screen and inhibit zoom functionality.
Config.set('input', 'mouse', 'mouse, disable_multitouch')
Mac
Trackpap two finger pinch/spread is not available. Use Command
or Ctrl
and Scroll
. This is apparently an SDl2 issue.
Linux
Alt is not a keyboard modifier on Linux. For the rotate operation set CapsLock, scroll, and unset CapsLock.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file gestures4kivy-0.1.4.tar.gz
.
File metadata
- Download URL: gestures4kivy-0.1.4.tar.gz
- Upload date:
- Size: 12.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 63983c727b60446a3847db53a94eceef77f138700779f52686d44389043d5643 |
|
MD5 | 0cd82ff9ad7b36e8977b1b032f668f0e |
|
BLAKE2b-256 | 8aa9da4bf711c963ee621139ba5fd53249edc9146ca7d449ca1bd32fba57fef7 |
File details
Details for the file gestures4kivy-0.1.4-py3-none-any.whl
.
File metadata
- Download URL: gestures4kivy-0.1.4-py3-none-any.whl
- Upload date:
- Size: 10.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5a517dbf3f38dceca6bb7a270f5570e40b005f410abfd6c206a50fc8cccff919 |
|
MD5 | 4cfd86bf1f713b72f33dc42ae553c4ad |
|
BLAKE2b-256 | e0e680f63b473be2a35356d8d708e10bd87fa235a6caeb624a298f4c2171e3b2 |