Thank you very much, now it seems work better, but...
1- Why, to emulate the left click, sometimes I have to press with the pen on the tablets (for example to enter on the menu) and sometimes I have to click one of the two buttons?
2- About gimp now the pressure function, but erase toll hasn't appear yet (preference > imput > setup...)
3- I can't do right click on desktop to open "preferences", it seems like the buttons still no working correctly
My 70-wizardpen.conf now is:
Code:
Section "InputClass"
Identifier "WizardPen class"
MatchIsTablet "on"
MatchProduct "WALTOP"
MatchDevicePath "/dev/input/event*"
Driver "wizardpen"
# first four Options set automatically, unless you want to use wizardpen-calibrate
Option "TopX" "1859"
Option "TopY" "0"
Option "BottomX" "16194"
Option "BottomY" "10837"
Option "TopZ" "0" # minumum pressure, default is 20?
# not sure that the default is 20; you should able to treat it as a pressure threshold
# (or "ZThreshold") using values like 5, 10, or 20 if stylus seems too sensitive
Option "BottomZ" "511" # or "1023"; maximum pressure
# depending on whether the tablet has 512 or 1024 pressure levels
Option "Rotate90" "0" # or "1"
# 1 rotates tablet 90 degrees
# following two options set automatically
Option "ScreenX" "1280"
Option "ScreenY" "1024"
Option "DebugLevel" "0" # or "1" to turn debug on
# Not sure how many debug levels are available, at a guess 0 - 12
Option "MouseSpeed" "30"
# don't know the allowed range or which are useful
Option "MouseAccel" "0" # or "1"
# 1 turns acceleration on, useful if you are using the tablet as a "mouse"
# i.e. using [Option "Mode" "Relative"]
Option "TPCButton" "on" # or "off"
# on is "tip + buttons" while off is "hover mode" i.e. buttons only
Option "Mode" "Absolute" # or "Relative"
# I believe this is an available option, "Relative" would make the tablet
# function like a "mouse"
EndSection
Section "InputClass"
Identifier "WizardPen ignore mouse dev class"
MatchIsTablet "on"
MatchProduct "WALTOP"
MatchDevicePath "/dev/input/mouse*"
Option "Ignore" "yes"
EndSection
Part of my xorg:
Code:
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/psaux"
Option "Emulate3Buttons" "no"
Option "ZAxisMapping" "4 5"
EndSection
Section "InputDevice"
Identifier "WizardPen Tablet"
Driver "wizardpen"
Option "Device" "/dev/input/event5"
Option "TopX" "1859"
Option "TopY" "0"
Option "BottomX" "16194"
Option "BottomY" "10837"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
# generated from default
EndSection
Section "ServerLayout"
Identifier "Layout0"
Screen 0 "Screen0" 0 0
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "Mouse0" "CorePointer"
Option "Xinerama" "0"
# InputDevice "WizardPen Tablet" "AlwaysCore"
EndSection
Thank you, and excuse for my English
Bookmarks