Archive:MINIX A2: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
mNo edit summary |
||
| Line 27: | Line 27: | ||
| [[File:b_up.png|70px]] || 0xf080 || up || Navigate Up || keyboard.xml || <up>Up</up>||'''Works by default''' | | [[File:b_up.png|70px]] || 0xf080 || up || Navigate Up || keyboard.xml || <up>Up</up>||'''Works by default''' | ||
|- | |- | ||
| [[File:b4.png|70px]] || || leftclick || Select || mouse.xml || <leftclick>Select</leftclick><br /><mousedragend>Select</mousedragend>|| | | [[File:b4.png|70px]] || || leftclick || Select || mouse.xml || <leftclick>Select</leftclick><br /><mousedragend>Select</mousedragend>||available starting in version 15 | ||
|- | |- | ||
| [[File:b_down.png|70px]] || 0xf081 || down || Navigate down || keyboard.xml ||<down>Down</down> ||'''Works by default''' | | [[File:b_down.png|70px]] || 0xf081 || down || Navigate down || keyboard.xml ||<down>Down</down> ||'''Works by default''' | ||
| Line 35: | Line 35: | ||
| [[File:b_right.png|70px]] || 0xf083 || right || Navigate Right || keyboard.xml ||<right>Right</right> ||'''Works by default''' | | [[File:b_right.png|70px]] || 0xf083 || right || Navigate Right || keyboard.xml ||<right>Right</right> ||'''Works by default''' | ||
|- | |- | ||
| [[File:b5.png|70px]] || || rightclick || Back || mouse.xml || <rightclick>Back</rightclick><br /><mouserdragend>Back</mouserdragend>|| | | [[File:b5.png|70px]] || || rightclick || Back || mouse.xml || <rightclick>Back</rightclick><br /><mouserdragend>Back</mouserdragend>||available starting in version 15 | ||
|- | |- | ||
Revision as of 14:40, 25 January 2015
mouse.xml
<keymap>
<global>
<mouse>
<leftclick>Select</leftclick>
<rightclick>Back</rightclick>
<middleclick>noop</middleclick>
<doubleclick id="0">noop</doubleclick>
<longclick id="0">noop</longclick>
<wheeldown>noop</wheeldown>
<wheelup>noop</wheelup>
<mousedrag>noop</mousedrag>
<mousemove>noop</mousemove>
<mousedragend>Select</mousedragend>
<mouserdragend>Back</mouserdragend>
</mouse>
</global>
</keymap>
keyboard.xml (additions)
If there are multiple keymap entries for the same key name, the last entry wins.
I recommend placing manual entries at the end of the <keyboard> stanza inside <global>
This saves us the effort of finding and editing the original key assignment
....
<F2>NextSubtitle</F2>
<home>AudioNextLanguage</home>
<return>SendClick(8)</return>
<F1>Stop</F1>
<prev_track>PageUp</prev_track>
<next_track>PageDown</next_track>
</keyboard>
</global>
....




















