/
stud_22-365
/
GLXEngine
Обзор
Документация
Войти
/
stud_22-365
/
GLXEngine
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Examples/Demos/utilities/keymap/KeymapD.dpr
23 строки
652 B
glscene
Updated avi recorder
23 янв 2026, 11:30
23 янв 2026, 11:30
50d5f68
Код
Авторство
О чём код?
(* Demonstrates how to check pressed keys and allow the user to remap controls. The panel react to the "key" written in their Caption property, default captions react to mouse buttons. If a panel is clicked, the user will be prompted to type a key, this key will then be mapped to the panel, by name. Note the some keynames are localized and may differ between Windows versions, this is the case for most control and num keypad keys. *) program KeymapD; uses Forms, fdKeymap in 'fdKeymap.pas' {FormKeymap}; {$R *.RES} begin Application.Initialize; Application.CreateForm(TFormKeymap, FormKeymap); Application.Run; end.