Changes between Version 2 and Version 3 of Hal/InputDeviceConfiguration


Ignore:
Timestamp:
2009/04/30 23:09:44 (15 years ago)
Author:
daisuke
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Hal/InputDeviceConfiguration

    v2 v3  
    1212 
    1313デフォルトの Hal の入力デバイスの設定は次のファイルで行われています。 
     14 
    1415 * /usr/share/hal/fdi/policy/10osvendor/10-x11-input.fdi (マウス) 
     16{{{ 
     17<?xml version="1.0" encoding="ISO-8859-1"?> 
     18<deviceinfo version="0.2"> 
     19  <device> 
     20    <!-- FIXME: Support tablets too. --> 
     21    <match key="info.capabilities" contains="input.mouse"> 
     22      <merge key="input.x11_driver" type="string">mouse</merge> 
     23      <match key="/org/freedesktop/Hal/devices/computer:system.kernel.name" 
     24             string="Linux"> 
     25        <merge key="input.x11_driver" type="string">evdev</merge> 
     26      </match> 
     27    </match> 
     28  </device> 
     29</deviceinfo> 
     30}}} 
     31 
    1532 * /usr/share/hal/fdi/policy/10osvendor/11-x11-synaptics.fdi (タッチパッド) 
     33{{{ 
     34?xml version="1.0" encoding="ISO-8859-1"?> 
     35<deviceinfo version="0.2"> 
     36  <device> 
     37    <match key="info.capabilities" contains="input.touchpad"> 
     38        <merge key="input.x11_driver" type="string">synaptics</merge> 
     39        <merge key="input.x11_options.SHMConfig" type="string">true</merge> 
     40        <!-- Arbitrary options can be passed to the driver using 
     41             the input.x11_options property since xorg-server-1.5. --> 
     42        <!-- EXAMPLES: 
     43        Switch on shared memory, enables the driver to be configured at runtime 
     44        <merge key="input.x11_options.SHMConfig" type="string">true</merge> 
    1645 
     46        Maximum movement of the finger for detecting a tap 
     47        <merge key="input.x11_options.MaxTapMove" type="string">2000</merge> 
     48 
     49        Enable vertical scrolling when dragging along the right edge 
     50        <merge key="input.x11_options.VertEdgeScroll" type="string">true</merge> 
     51 
     52        Enable vertical scrolling when dragging with two fingers anywhere on the touchpad 
     53        <merge key="input.x11_options.VertTwoFingerScroll" type="string">true</merge> 
     54 
     55        Enable horizontal scrolling when dragging with two fingers anywhere on the touchpad 
     56        <merge key="input.x11_options.HorizTwoFingerScroll" type="string">true</merge> 
     57 
     58        If on, circular scrolling is used 
     59        <merge key="input.x11_options.CircularScrolling" type="string">true</merge> 
     60 
     61        For other possible options, check CONFIGURATION DETAILS in synaptics man page 
     62        --> 
     63    </match> 
     64  </device> 
     65</deviceinfo> 
     66}}} 
     67設定の変更は、これらを直接編集せず、 etc/hal/fdi/policy にコピーしてから修正 
     68を行って下さい。 
    1769 
    1870== Hal 利用の停止 ==