← Back to team overview

multi-touch-dev team mailing list archive

Touchégg 1.0

 

Touchégg stable and final version 1.0 available [1] [2], with many
features that we talked about, like the XML xonfiguration file [3] [4]
[5], ported to GEIS v2.0 or support for applications with their own
gestures (listening in the root window for global gestures and in the
application window for specified gestures)

Qt GUI and module to KCM comming soon ;)

[1] https://code.google.com/p/touchegg/
[2] https://launchpad.net/ubuntu/+source/touchegg
[3] https://code.google.com/p/touchegg/wiki/AllGestures
[4] https://code.google.com/p/touchegg/wiki/AllActions
[5] A little example:

    <application name="All">

        <gesture type="TAP" fingers="5" direction="">
            <action type="CLOSE_WINDOW"></action>
        </gesture>

        <gesture type="DRAG" fingers="2" direction="ALL">
            <action type="SCROLL">SPEED=7:INVERTED=false</action>
        </gesture>

    </application>


    <application name="Okular, Gwenview">

        <gesture type="PINCH" fingers="2" direction="IN">
            <action type="SEND_KEYS">Control+KP_Add</action>
        </gesture>

        <gesture type="PINCH" fingers="2" direction="OUT">
            <action type="SEND_KEYS">Control+KP_Subtract</action>
        </gesture>

        <gesture type="ROTATE" fingers="2" direction="LEFT">
            <action type="SEND_KEYS">Control+L</action>
        </gesture>

        <gesture type="ROTATE" fingers="2" direction="RIGHT">
            <action type="SEND_KEYS">Control+R</action>
        </gesture>

    </application>


    <application name="Chromium-browser, Dolphin">

        <gesture type="DRAG" fingers="3" direction="LEFT">
            <action type="SEND_KEYS">Alt+Left</action>
        </gesture>

        <gesture type="DRAG" fingers="3" direction="RIGHT">
            <action type="SEND_KEYS">Alt+Right</action>
        </gesture>

    </application>


Follow ups