[ltp] wheelbutton on external mouse

Leon Brokken linux-thinkpad@linux-thinkpad.org
Tue, 22 Nov 2005 10:54:24 +0100


Ole Langbehn wrote:

>come se fosse antani wrote:
>  
>
>>Hi.
>>I'm using an x40, in them occasionally I plug a optical mouse from
>>logitech . the mouse works fine but I'm not able to use the
>>wheelbutton... it don't have any effect pushing it.
>>here is my xorg.conf (under debian).
>>I tried also to commenting the config about the synaptics touchpad but
>>unsuccessfull... nothing changes.
>>
>>any suggestions?
>>    
>>
I have the following to occasionally add a optical Logitech USB mouse
with a wheel.

Section "InputDevice"
        Identifier      "Logitech USB"
        Driver  "mouse"
        Option  "Protocol"      "auto"
        Option  "Device"        "/dev/mouse"
        Option  "ZAxisMapping"  "4 5"
EndSection

Section "InputDevice"
    Identifier  "TrackPoint"
    Driver      "mouse"
    Option      "protocol"      "Auto"
    Option      "device"        "/dev/mouse"
EndSection

Section "InputDevice"
    Identifier  "Synaptics Mouse"
    Driver      "synaptics"
    Option      "Protocol"      "auto-dev"
    Option      "Device"      "/dev/psaux"
    Option      "LeftEdge"      "1300"
    Option      "RightEdge"     "5500"
    Option      "TopEdge"       "1500"
    Option      "BottomEdge"    "4200"
    Option      "FingerLow"     "25"
    Option      "FingerHigh"    "30"
    Option      "MaxTapTime"    "180"
    Option      "MaxTapMove"    "220"
    Option      "MaxDoubleTapTime" "180"
    Option      "VertScrollDelta"  "100"
    Option      "HorizScrollDelta" "100"
    Option      "MinSpeed"      "0.09"
    Option      "MaxSpeed"      "0.18"
    Option      "AccelFactor"   "0.0015"
    Option      "FastTaps"      "0"
    Option "ClickTime"          "100"
    Option "EmulateMidButtonTime"       "75"
    Option "EdgeMotionMinZ"     "30"
    Option "EdgeMotionMaxZ"     "160"
    Option "EdgeMotionMinSpeed" "1"
    Option "EdgeMotionMaxSpeed" "100"
    Option "EdgeMotionUseAlways"        "0"
    Option "UpDownScrolling"    "1"
    Option "LeftRightScrolling" "1"
    Option "TouchpadOff"        "0"
    Option "GuestMouseOff"      "0"
    Option "LockedDrags"        "0"
    Option "RTCornerButton"     "0"
    Option "RBCornerButton"     "0"
    Option "LTCornerButton"     "0"
    Option "LBCornerButton"     "0"
    Option "TapButton1"         "1"
    Option "TapButton2"         "2"
    Option "TapButton3"         "3"
    Option "CircularScrolling"  "0"
    Option "CircScrollDelta"    "0"
    Option "CircScrollTrigger"  "0"
    Option "CircularPad"        "0"
#    Option     "SHMConfig"     "on"
EndSection

Section "ServerLayout"
    Identifier  "Simple Layout"
    Screen "Screen 1"
    InputDevice "Logitech USB"          "Corepointer"
    InputDevice "TrackPoint"            "CorePointer"
    InputDevice "Synaptics Mouse"       "AlwaysCore"
    InputDevice "Keyboard1"             "CoreKeyboard"
EndSection