ButtonMapping - พารามิเตอร์ตำแหน่ง


11

ในปุ่มเมาส์ของไฟล์การกำหนดค่า X สามารถแมปได้โดยใช้ตัวเลือก ButtonMapping:

Section "InputClass"
    # ...
    Option "ButtonMapping" "1 9 3 4 5 6 7 8 2"
    # ...
EndSection

การเปลี่ยนลำดับของตัวเลขจะเปลี่ยนพฤติกรรมของปุ่มเมาส์ แต่ฉันไม่สามารถหาเอกสารใด ๆที่อธิบายถึงพฤติกรรมที่ได้รับมอบหมาย มีเอกสารอะไรบ้างฉันช่วยเขียน

ตัวอย่างเช่นหากการแมปปุ่มถูกเขียนดังนี้:

    Option "ButtonMapping" "a b c d e f g h i"

เราจะบันทึกตำแหน่งเหล่านี้เป็น:

  • a - คลิกซ้าย
  • b - ตรงกลาง
  • c - คลิกขวา
  • d - เลื่อนไปข้างหน้า
  • e - เลื่อนไปข้างหลัง
  • f - ส่งต่อ
  • g - ย้อนกลับ
  • h - เลื่อนแนวนอน
  • i - เลื่อนแนวตั้ง

คำถามของฉันแล้ว: ค่าตำแหน่งของaถึงi คืออะไรจริง ๆและพวกเขาถูกแมปกับปุ่มเมาส์อย่างไร

ปรับปรุง

วิ่งxmodmap -ppโชว์:

$ xmodmap -pp
There are 10 pointer buttons defined.

    Physical        Button
     Button          Code
        1              1
        2              2
        3              3
        4              4
        5              5
        6              6
        7              7
        8              8
        9              9
       10             10

สิ่งนี้ไม่มีประโยชน์เนื่องจากไม่มีข้อมูลที่มนุษย์สามารถใช้เกี่ยวกับคุณสมบัติทางกายภาพของเมาส์ (เช่นการแสดงตัวเลขสองคอลัมน์ไม่มีประโยชน์หากไม่มีชื่อปุ่มเช่น "ปุ่มซ้าย") ดังนั้นในขณะที่ในทางเทคนิคแล้วสิ่งนี้อาจตอบคำถามว่า "พวกเขาทำแผนที่อย่างไร" แต่คำถามก็ยังไม่ได้ตอบในแง่ที่เป็นจริงใด ๆ


AFAICG ค่าคือหมายเลขปุ่มตามที่รายงานโดย xev ตัวอย่างเช่นในตัวอย่างของคุณปุ่มบนขวาของแทร็กบอล Kensington Slimblade ของฉันคือหมายเลข 8 ที่กำหนดให้กับการเลื่อนแนวนอน (ด้านหลังในเว็บเบราว์เซอร์)
ลีอันโดร

คำตอบ:


2

ฉันคิดว่าคุณควรดูด้วยวิธีนี้:

                        1 2 3 4 5 6 7 8 9  <--position-- physical keys
Option "ButtonMapping" "1 9 3 4 5 6 7 8 2" <--function-- logical keys
  • ตำแหน่งที่ระบุรหัสคีย์ตามรายงานโดยใช้เมาส์ (ผ่านไดรเวอร์) ดังนั้นจึงขึ้นอยู่กับผู้ผลิตว่าจะสั่งซื้ออย่างไร แต่ส่วนใหญ่จะยึดตามคำสั่งทั่วไป

    Mouses ยังคงใช้โพรโทคอลเก่าเช่น PS2 มันไม่มีวิธีการจัดเก็บหรือบอกข้อมูลเกี่ยวกับปุ่มที่มีอยู่และฟังก์ชั่นของพวกเขา ดังนั้นเซิร์ฟเวอร์ X ไม่สามารถบอกรหัสประจำตัวของแต่ละปุ่มได้โดยลองใช้เครื่องมือxevที่แสดงเหตุการณ์ X:

    xev -event mouse
    

    หรือevtestที่แสดงให้เห็นถึงเหตุการณ์ดิบ:

    sudo evtest
    
  • โลจิคัลคีย์คือคีย์ที่แม็พจริงเพื่อใช้ฟังก์ชันเพิ่มเติม ในระดับนี้ X มองพวกเขาเป็น: button1, button2, button3, button4, ... , button24 และไม่ทราบว่าฟังก์ชันของพวกเขาเป็นอย่างไร

ตัวอย่างอ้างอิงอย่างเป็นทางการ:

  7.  Configuration Examples

  This section shows some example InputDevice section for popular mice.
  All the examples assume that the mouse is connected to the PS/2 mouse
  port, and the OS supports the PS/2 mouse initialization.  It is also
  assumed that /dev/mouse is a link to the PS/2 mouse port.

  Logitech MouseMan+ has 4 buttons and a wheel. The following example
  makes the wheel movement available as the button 5 and 6.

  Section "InputDevice"
          Identifier      "MouseMan+"
          Driver          "mouse"
          Option          "Device"    "/dev/mouse"
          Option          "Protocol"  "MouseManPlusPS/2"
          Option          "Buttons"   "6"
          Option          "ZAxisMapping"      "5 6"
  EndSection

  You can change button number assignment using the xmodmap command
  AFTER you start the X server with the above configuration.  You may
  not like to use the wheel as the button 2 and rather want the side
  button (button 4) act like the button 2. You may also want to map the
  wheel movement to the button 4 and 5.  This can be done by the
  following command:

          xmodmap -e "pointer = 1 6 3 2 4 5"

  After this command is run, the correspondence between the buttons and
  button numbers will be as shown in the following table.

  Physical Buttons        Reported as:
  ------------------------------------
  1 Left Button             Button 1
  2 Wheel Button            Button 6
  3 Right Button            Button 3
  4 Side Button             Button 2
  5 Wheel Negative Move     Button 4
  6 Wheel Positive Move     Button 5


  Starting in the Xorg 6.9 release, you can also achieve this in your
  configuration file by adding this to the "InputDevice" section in
  xorg.conf:

          Option "ButtonMapping" "1 6 3 2 4 5"

  For the MS IntelliMouse Explorer which as a wheel and 5 buttons, you
  may have the following InputDevice section.

  Section "InputDevice"
          Identifier      "IntelliMouse Explorer"
          Driver          "mouse"
          Option          "Device"    "/dev/mouse"
          Option          "Protocol"  "ExplorerPS/2"
          Option          "Buttons"   "7"
          Option          "ZAxisMapping"      "6 7"
  EndSection

  The IntelliMouse Explorer has 5 buttons, thus, you should give "7" to
  the Buttons option if you want to map the wheel movement to buttons (6
  and 7).  With this configuration, the correspondence between the
  buttons and button numbers will be as follows:

  Physical Buttons        Reported as:
  ------------------------------------
  1 Left Button             Button 1
  2 Wheel Button            Button 2
  3 Right Button            Button 3
  4 Side Button 1           Button 4
  5 Side Button 2           Button 5
  6 Wheel Negative Move     Button 6
  7 Wheel Positive Move     Button 7

  You can change button number assignment using xmodmap AFTER you
  started the X server with the above configuration.

          xmodmap -e "pointer = 1 2 3 4 7 5 6"

  The above command will moves the side button 2 to the button 7 and
  make the wheel movement reported as the button 5 and 6. See the table
  below.

  Physical Buttons        Reported as:
  ------------------------------------
  1 Left Button             Button 1
  2 Wheel Button            Button 2
  3 Right Button            Button 3
  4 Side Button 1           Button 4
  5 Side Button 2           Button 7
  6 Wheel Negative Move     Button 5
  7 Wheel Positive Move     Button 6

  For the A4 Tech WinEasy mouse which has two wheels and 3 buttons, you
  may have the following InputDevice section.

  Section "InputDevice"
          Identifier      "WinEasy"
          Driver          "mouse"
          Option          "Device"    "/dev/mouse"
          Option          "Protocol"  "IMPS/2"
          Option          "Buttons"   "7"
          Option          "ZAxisMapping"      "4 5 6 7"
  EndSection

  The movement of the first wheel is mapped to the button 4 and 5. The
  second wheel's movement will be reported as the buttons 6 and 7.

  The Kensington Expert mouse is really a trackball. It has 4 buttons
  arranged in a rectangle around the ball.

ที่มา: ftp://ftp.x.org/pub/current/doc/mouse.txt


นี่คือข้อมูลที่ยอดเยี่ยม น่าเสียดายที่xmodmap -ppไม่แสดงชื่อ (เช่น "ปุ่มซ้าย", "ปุ่มล้อ") สำหรับปุ่มทางกายภาพตามเอกสาร ดูการอัปเดตคำถามของฉัน
เดฟจาร์วิส

@DaveJarvis อัปเดตคำตอบของฉัน อาจจะ: / เราควรรอหนูรุ่นต่อไป, คนฉลาด! หรืออาจไม่จำเป็นต้องใช้เมาส์ในอนาคต :)
user.dz

หรือฐานข้อมูลสาธารณะของอุปกรณ์ที่สามารถสอบถามเพื่อยืนยันชื่อแผนที่ปุ่มของพวกเขา?
เดฟจาร์วิส
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.