____________________________________________
default key configuration settings

The key shortcuts only functions if the player window is the selected window. This disadvantage should be solved through the next development iteration.

- F1 backward
- F2 forward
- F3 next song
- F4 play/pause
- F5 last song
- F6 stop
- F7 volume down
- F8 un-/mute
- F9 volume up


____________________________________________
define own key shortcuts for the WeDi player

- For getting the key code, which is needed for the params.ini file, you can use the keylogger program. It shows the pressed key with its codes (QT-code, windows-native-code, ...). For you only the first number is important (for the below example only the number 70 from the first line will be needed).

example (for key 'f'):
    ...
    key: 0d70 - 0x46
       native virtual key: 	0d70 - 0x46
       native scan code:   	0d33 - 0x21
       native modifiers:   	0d512 - 0x200
    ...


- Whether you know the number of your favored key you can edit the params.ini file. In the section key_settings all numbers (keys) can be changed to user-like values. In the below example you can for instance exchange the number 16777264 with your favored 70.

example:
    ...
    [key_settings]
    Key_MediaBackward=16777264
    ...

changes to:
    ...
    [key_settings]
    Key_MediaBackward=70
    ...
