lorenzodelarocha / touchegg

Automatically exported from code.google.com/p/touchegg
0 stars 0 forks source link

Single Tap, Scroll, and Other Doesn't Recognized #200

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Hi, thanks for that tool.

I'm running under Ubuntu 12.10 with Kernel 3.8.0 and gnome-shell (remove all 
unity)
First of all Pinch is buggy, or the movement isn't recognized.
I disabled all the settings from ubuntu Trackpad software.

But scroll, tap and other doesn't work.
I try to apply this at boot:

synclient TapButton2=0
synclient TapButton3=0
synclient ClickFinger2=0
synclient ClickFinger3=0
synclient HorizTwoFingerScroll=0
synclient VertTwoFingerScroll=0

but it doesn't work too. 
i try to apply this : 
www.askubuntu.com/questions/57586/how-can-i-disable-arbitrary-default-multitouch
-gestures-in-unity/90383#90383

but i can't build-dep... 
here is my touchegg conf:

<touchégg>

    <settings>
        <property name="composed_gestures_time">0</property>
    </settings>

<!-- GENERAL SETTINGS -->
    <application name="All">

        <gesture type="TAP" fingers="1" direction="">
            <action type="MOUSE_CLICK">BUTTON=1</action>
        </gesture>

        <gesture type="TAP" fingers="2" direction="">
            <action type="MOUSE_CLICK">BUTTON=3</action>
        </gesture>

        <gesture type="TAP" fingers="3" direction="">
            <action type="MOUSE_CLICK">BUTTON=2</action>
        </gesture>

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

        <gesture type="TAP_AND_HOLD" fingers="1" direction="ALL">
            <action type="MOVE_WINDOW"></action>
        </gesture>

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

        <gesture type="DRAG" fingers="3" direction="UP">
            <action type="MAXIMIZE_RESTORE_WINDOW"></action>
        </gesture>

        <gesture type="DRAG" fingers="3" direction="DOWN">
            <action type="MINIMIZE_WINDOW"></action>
        </gesture>

        <gesture type="DRAG" fingers="3" direction="LEFT">
            <action type="MOVE_WINDOW"></action>
        </gesture>

        <gesture type="DRAG" fingers="3" direction="RIGHT">
            <action type="MOVE_WINDOW"></action>
        </gesture>

        <gesture type="DRAG" fingers="4" direction="UP">
            <action type="SEND_KEYS">Super+W</action>
        </gesture>

        <gesture type="DRAG" fingers="4" direction="DOWN">
            <action type="SHOW_DESKTOP"></action>
        </gesture>

        <gesture type="PINCH" fingers="3" direction="ALL">
            <action type="RESIZE_WINDOW"></action>
        </gesture>

        <gesture type="PINCH" fingers="5" direction="ALL">
            <action type="SEND_KEYS">Alt+F1</action>
        </gesture>

    </application>

<!-- SPECIFIC SETTINGS -->
    <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>

        <gesture type="PINCH" fingers="2" direction="IN">
            <action type="SEND_KEYS">Ctrl+Super+XK_plus</action>
        </gesture>

        <gesture type="PINCH" fingers="2" direction="OUT">
            <action type="">Ctrl+XK_minus</action>
        </gesture>

    </application>

</touchégg>

sorry for my english and thanks to help me !

Original issue reported on code.google.com by dacunha....@gmail.com on 8 Mar 2013 at 3:32

GoogleCodeExporter commented 8 years ago
Hi!

Gestures with 1 touch will not work, this gesture:

        <gesture type="TAP_AND_HOLD" fingers="1" direction="ALL">
            <action type="MOVE_WINDOW"></action>
        </gesture>

Is reserved t drag and drop contents. If you run touchegg from the terminal, 
your gestures are recognized? Please, give me more specified information about 
your problem.

Thanks!

Original comment by jose.exposito89@gmail.com on 12 Mar 2013 at 3:05

GoogleCodeExporter commented 8 years ago
Ah okkkk, yes i think they are recognized cause it writes something in terminal.
what should i try for 1 Tap (basic) and tap+ hold to move the window?

it could be a config error. cause i can't double tap or single tap.

Original comment by dacunha....@gmail.com on 12 Mar 2013 at 7:44

GoogleCodeExporter commented 8 years ago
You can not use gestures with one figer with Touchégg, they are reserved to 
the system to move the cursor, single click..

If you want to use composed gestures (double tap and drag and drop) you need to 
set the "composed_gestures_time" variable, for example:

    <settings>
        <property name="composed_gestures_time">150</property>
    </settings>

Adapt the "150" to give more or less time between the first and the second 
gesture.

Original comment by jose.exposito89@gmail.com on 12 Mar 2013 at 11:15

GoogleCodeExporter commented 8 years ago

Original comment by jose.exposito89@gmail.com on 1 Aug 2013 at 2:30