2012-01-23 3 views
2

私はLinuxに埋め込まれたxorgとgtk3のタッチスクリーンを持っています。 私の問題は、クリック後、マウスポインタが のボタンの上にくっついて、他のボタンと色が違うということです。 私が必要とするのは、マウスポインタがクリック後に消えることです。 この結果を得るには、xorg (gtkからではなく)で直接作業する必要があるようです。 私は自分のxorg.confを貼り付けます。xorg touchscreen:最新のクリックにマウスを近づけないようにする方法

Section "ServerLayout" 
    Identifier  "Single head configuration" 
    InputDevice  "touchscreen" "CorePointer" 
    Screen  0 "Screen0" Absolute 0 0 
EndSection 

Section "ServerFlags" 
    Option   "BlankTime" "0" 
EndSection 

Section "InputDevice" 
    Identifier  "Generic Keyboard" 
    Driver   "evdev" 
    Option   "XkbLayout"  "it" 
    Option   "Device"  "/dev/input/event2" 
EndSection 

Section "InputDevice" 
    Identifier "touchscreen" 
# Driver "evdev" 
    Driver "tslib" 

    Option "Calibration" "200 3850 300 3850" 
    Option "Debug" 
    Option "SwapAxes" "True" 
    Option "Device" "/dev/input/event1" 
# Option "MinX" "0" 
# Option "MaxX" "800" 
# Option "MinY" "0" 
# Option "MaxY" "480" 
# Option "MinX" "200" 
# Option "MaxX" "3850" 
# Option "MinY" "300" 
# Option "MaxY" "3850" 
    Option "MoveLimit" "10" 
    Option "DeviceName" "touchscreen" 
# Option "ReportingMode" "Raw" 
    Option "Protocol" "Auto" 
    Option "longtouched_action" "down" 
    Option "longtouched_button" "1" 
# Option "Emulate3Buttons" 
# Option "Emulate3Timeout" "50" 
    Option "SendCoreEvents" "On" 
EndSection 

答えて

0

あなたがタッチスクリーンに適したGTK +のテーマ、マウスが上にあるときにPRELIGHTボタンがないものを必要としています。私はそのようなテーマが存在するかどうかわかりません。

関連する問題