Finger Scrolling

From Openmoko

(Difference between revisions)
Jump to: navigation, search
(Driver)
 
Line 40: Line 40:
 
[http://secretsauce.net:5050/scrolling_patches/fltk2/fltk2_svn.bb recipe]
 
[http://secretsauce.net:5050/scrolling_patches/fltk2/fltk2_svn.bb recipe]
 
[http://secretsauce.net:5050/scrolling_patches/fltk2/libfltk2-2.0_1.9.9+svnr6834-r0_armv4t.ipk ipk]
 
[http://secretsauce.net:5050/scrolling_patches/fltk2/libfltk2-2.0_1.9.9+svnr6834-r0_armv4t.ipk ipk]
 +
 +
[[Category:Software]]

Latest revision as of 13:19, 19 September 2009

Contents

[edit] Finger-scrolling

[edit] Driver

I've implemented drag-scrolling on my Freerunner (drag on the touchscreen to generate scrolling, instead of dragging events). By placing this code into the X mouse driver, all applications that support the mouse wheel (the vast majority do) automatically become finger-scrolling enabled.

With this patch, scroll events are generated by pressing on the touchscreen, and dragging in the desired scroll direction. Dragging can still happen, by pressing the touchscreen, and not moving the finger for a short time (200ms currently). This is useful for selecting text, for example.

The driver: patch recipe ipk

If using SHR, just "opkg install" the package and you're ready to go.

[edit] Downsides

1. Right now you can scroll and drag with a similar motion (pause before moving finger to drag). This is not intuitive to new users. 2. The Kdrive X driver has been patched, not yet the Xorg driver. 3. The driver assumes the screen is oriented vertically. If X is rotated, the orientations become wrong

[edit] Application-level support

[edit] Illume keyboard

The Illume keyboard doesn't natively support the mouse wheel and contains its own scrolling code.

patch recipe ipk

[edit] Tangogps

By default Tangogps zooms in/out in response to the mouse wheel. I feel this is inappropriate, so I disabled it. With the patch below, the mouse wheel does nothing; I haven't connected panning to the wheel. With the patch below, you have to hold your finger for a bit before moving it for the panning to happen. This isn't ideal yet.

patch inc used in recipe ipk

[edit] FLTK

I use Dillo as my browser. Dillo uses the FLTK2 toolkit, which supports vertical scrolling by default, but not horizontal scrolling. Here're are FLTK patches to fix this. Also, a fix for an FLTK keyboard bug triggered by the Illume keyboard is included (bug report).

Horizontal scrolling patch Keyboard patch recipe ipk

Personal tools

Finger-scrolling

Driver

I've implemented drag-scrolling on my Freerunner (drag on the touchscreen to generate scrolling, instead of dragging events). By placing this code into the X mouse driver, all applications that support the mouse wheel (the vast majority do) automatically become finger-scrolling enabled.

With this patch, scroll events are generated by pressing on the touchscreen, and dragging in the desired scroll direction. Dragging can still happen, by pressing the touchscreen, and not moving the finger for a short time (200ms currently). This is useful for selecting text, for example.

The driver: patch recipe ipk

If using SHR, just "opkg install" the package and you're ready to go.

Downsides

1. Right now you can scroll and drag with a similar motion (pause before moving finger to drag). This is not intuitive to new users. 2. The Kdrive X driver has been patched, not yet the Xorg driver. 3. The driver assumes the screen is oriented vertically. If X is rotated, the orientations become wrong

Application-level support

Illume keyboard

The Illume keyboard doesn't natively support the mouse wheel and contains its own scrolling code.

patch recipe ipk

Tangogps

By default Tangogps zooms in/out in response to the mouse wheel. I feel this is inappropriate, so I disabled it. With the patch below, the mouse wheel does nothing; I haven't connected panning to the wheel. With the patch below, you have to hold your finger for a bit before moving it for the panning to happen. This isn't ideal yet.

patch inc used in recipe ipk

FLTK

I use Dillo as my browser. Dillo uses the FLTK2 toolkit, which supports vertical scrolling by default, but not horizontal scrolling. Here're are FLTK patches to fix this. Also, a fix for an FLTK keyboard bug triggered by the Illume keyboard is included (bug report).

Horizontal scrolling patch Keyboard patch recipe ipk