LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Laptop and Netbook
User Name
Password
Linux - Laptop and Netbook Having a problem installing or configuring Linux on your laptop? Need help running Linux on your netbook? This forum is for you. This forum is for any topics relating to Linux and either traditional laptops or netbooks (such as the Asus EEE PC, Everex CloudBook or MSI Wind).

Notices


Reply
  Search this Thread
Old 07-28-2006, 04:07 AM   #1
Quis
Member
 
Registered: May 2001
Location: Germany, Süd-Baden
Distribution: Gentoo
Posts: 139

Rep: Reputation: 15
[Solved] Synaptics: third button should act as (mouse) wheel


Hi,

i have some open issues with my synaptics settings.

My Acer Aspire WLMI 1690 has a synaptics touchpad with 2+1 Buttons.

Two of them are generic mouse buttons (left and right).

The third one has four directions (N(orth), S, E, W) and is configured like this:
N: left button
S: right button
E and W: third button (acts like clicking a mouse wheel)

I don't want this mapping!

Does anyone know how i can adjust it like that:
N: mouse wheel up
S: mouse wheel down
E: ?? (scroll right)
W: ?? (scroll left)

Note: Using my touchpad for scrolling (in opened windows) is a nice thing, but i want to use my (unused) buttons for this.




Thanks in advance!

Last edited by Quis; 07-28-2006 at 04:24 PM.
 
Old 07-28-2006, 05:27 AM   #2
raskin
Senior Member
 
Registered: Sep 2005
Location: France
Distribution: approximately NixOS (http://nixos.org)
Posts: 1,900

Rep: Reputation: 69
Surely, you use synaptics driver? Do you have
Option "ZAxisMapping" "4 5 6 7"?
What does synclient -l say?
 
Old 07-28-2006, 07:00 AM   #3
Quis
Member
 
Registered: May 2001
Location: Germany, Süd-Baden
Distribution: Gentoo
Posts: 139

Original Poster
Rep: Reputation: 15
Hi raskin,

thanks for your reply. Up to your questions:

Quote:
Originally Posted by raskin
Surely, you use synaptics driver?
Uhm ... yes.

Quote:
Originally Posted by raskin
Do you have Option "ZAxisMapping" "4 5 6 7"?
No. Only Option "ZAxisMapping" "4 5".
See below ..

Edit: Using 'Option "ZAxisMapping" "4 5 6 7"' does not seem to change anything on the (N, S, E, W) mapping.



Quote:
Originally Posted by raskin
What does synclient -l say?
Can't access shared memory area. SHMConfig disabled?


For informational purpose i add my InputDevice Section for the synaptics driver from /ect/X11/xorg.conf:

Section "InputDevice"
Identifier "Touchpad"
Driver "synaptics"
Option "Device" "/dev/input/event0"
Option "ZAxisMapping" "4 5"
Option "XAxisMapping" "6 7"
Option "Edges" "1900 5400 1800 3900"
Option "Finger" "25 30"
Option "MaxTapTime" "150"
Option "MaxTapMove" "220"
Option "VertScrollDelta" "100"
Option "MinSpeed" "0.05"
Option "MaxSpeed" "0.15"
Option "AccelFactor" "0.0005"
Option "SHMConfig" "true"
Option "UpDownScrolling" "true"
Option "Protocol" "auto-dev"
Option "CorePointer" ""
Option "Buttons" "7"
EndSection

Last edited by Quis; 07-28-2006 at 07:36 AM.
 
Old 07-28-2006, 07:48 AM   #4
raskin
Senior Member
 
Registered: Sep 2005
Location: France
Distribution: approximately NixOS (http://nixos.org)
Posts: 1,900

Rep: Reputation: 69
Well, try to place Option "ZAxisMapping" "4 5 6 7", XAxisMapping "8 9 10 11", buttons 11, run xev and press the said button ..
 
Old 07-28-2006, 10:55 AM   #5
Quis
Member
 
Registered: May 2001
Location: Germany, Süd-Baden
Distribution: Gentoo
Posts: 139

Original Poster
Rep: Reputation: 15
Thanks for your hint.

With the mentioned settings
"ZAxisMapping" "4 5 6 7" and XAxisMapping "8 9 10 11" it does not make any difference.

xev is reporting ButtonPress event and ButtonRelease events for button 3 on pressing the South Button.

The North-Button results in button 1 events and the West/East Buttons produces button 2 events.

Anyway the wheel on my mouse have button 4 and 5 events.
 
Old 07-28-2006, 12:11 PM   #6
Quis
Member
 
Registered: May 2001
Location: Germany, Süd-Baden
Distribution: Gentoo
Posts: 139

Original Poster
Rep: Reputation: 15
-Solved- Synaptics: third button should act as (mouse) wheel

Okay, now i get closer to a Solution.

synclient -l prints an output now!

The trick was my missing "evdev"-module!

I now see the button 4, 5, 6 and 7 events.

Thank you!
 
Old 07-28-2006, 04:15 PM   #7
Quis
Member
 
Registered: May 2001
Location: Germany, Süd-Baden
Distribution: Gentoo
Posts: 139

Original Poster
Rep: Reputation: 15
Just in case someone stumbles over this Thread and is searching for a similar issue.

I solved my problems with loading the 'evdev' module and adjusting my /etc/X11/xorg.conf like this:

##First made the Touchpad as 'CorePointer' in the Section ##'ServerLayout
ServerLayout
InputDevice "Mouse"
InputDevice "Touchpad" "CorePointer"

##Added the (boolean)'SendCoreEvents' Option to my
##(non-corePointer) Mouse
Section "InputDevice"
Identifier "Mouse"
Driver "mouse"
Option "SendCoreEvents" "true"
Option "Protocol" "ImPS/2"
Option "ZAxisMapping" "4 5"
EndSection

##Made my synaptics Touchpad using the 'Device' Option with the
##'/dev/input/mice' Parameter
Section "InputDevice"
Identifier "Touchpad"
Driver "synaptics"
Option "Device" "/dev/input/mice"
Option "ZAxisMapping" "4 5 6 7"
Option "XAxisMapping" "8 9 10 11"
Option "Edges" "1900 5400 1800 3900"
Option "Finger" "25 30"
Option "MaxTapTime" "150"
Option "MaxTapMove" "220"
Option "VertScrollDelta" "100"
Option "MinSpeed" "0.05"
Option "MaxSpeed" "0.15"
Option "AccelFactor" "0.0005"
Option "SHMConfig" "on"
Option "UpDownScrolling" "on"
Option "Protocol" "auto-dev"
# Option "CorePointer" ""
Option "Buttons" "7"
EndSection

Thats all.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Anybody know a serious 3-button wheel mouse? schnexel Linux - Hardware 2 06-19-2006 09:06 AM
Dr.Hank 5-Button + Wheel Mouse Lucas Hartmann Linux - Hardware 1 10-28-2004 08:56 AM
Scroll Wheel [2 button mouse] OldBob Linux - Hardware 1 05-06-2003 07:50 PM
mouse wheel like right button??? Relja Linux - General 0 02-24-2003 03:38 PM
4 button, mouse wheel USB mouse DigiCrime Linux - Hardware 1 12-11-2002 04:15 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Laptop and Netbook

All times are GMT -5. The time now is 10:38 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration