28 |
|
|
29 |
|
// Platform-specific preferences items |
30 |
|
prefs_desc platform_prefs_items[] = { |
31 |
< |
{"keycodes", TYPE_BOOLEAN, false}, // Use keycodes rather than keysyms to decode keyboard (video_x.cpp) |
32 |
< |
{"keycodefile", TYPE_STRING, false}, // File name of keycode translation table (video_x.cpp) |
33 |
< |
{"fbdevicefile", TYPE_STRING, false}, // File name of frame buffer device specifications (video_x.cpp) |
34 |
< |
{"mousewheelmode", TYPE_INT32, false}, // Mouse wheel support mode (0=Page up/down, 1=Cursor up/down) (video_x.cpp) |
35 |
< |
{"mousewheellines", TYPE_INT32, false}, // Number of lines to scroll in mouse whell mode 1 (video_x.cpp) |
36 |
< |
{NULL, TYPE_END, false} // End of list |
31 |
> |
{"keycodes", TYPE_BOOLEAN, false, "use keycodes rather than keysyms to decode keyboard"}, |
32 |
> |
{"keycodefile", TYPE_STRING, false, "path of keycode translation file"}, |
33 |
> |
{"fbdevicefile", TYPE_STRING, false, "path of frame buffer device specification file"}, |
34 |
> |
{"mousewheelmode", TYPE_INT32, false, "mouse wheel support mode (0=page up/down, 1=cursor up/down)"}, |
35 |
> |
{"mousewheellines", TYPE_INT32, false, "number of lines to scroll in mouse wheel mode 1"}, |
36 |
> |
{NULL, TYPE_END, false, NULL} // End of list |
37 |
|
}; |
38 |
|
|
39 |
|
|