[OSK] Implement standard/enhanced keyboard handler (#1338)

- Add the respective standard keyboard resource.
- Implement the standard/enhanced keyboard dialog switcher.
- Implement save/load handler.
- Move the warning box conditinal check (bShowWarning) to wWinMain application entry point (this will prevent the modal welcome box from displaying each time the user switches into another dialog).

CORE-14428
This commit is contained in:
Bișoc George 2019-02-10 16:04:16 +01:00 committed by Hermès BÉLUSCA - MAÏTO
parent 02eeee15f0
commit 3cd3d896b7
21 changed files with 2246 additions and 107 deletions

View file

@ -6,51 +6,52 @@
* PROGRAMMERS: Denis ROBERT
*/
#define MAIN_DIALOG 2000
#define MAIN_DIALOG_ENHANCED_KB 2000
#define MAIN_DIALOG_STANDARD_KB 2001
#define IDC_LED_NUM 100
#define IDC_LED_CAPS 101
#define IDC_LED_SCROLL 102
#define IDC_SHOWWARNINGCHECK 103
#define IDC_LED_NUM 100
#define IDC_LED_CAPS 101
#define IDC_LED_SCROLL 102
#define IDC_SHOWWARNINGCHECK 103
#define IDI_OSK 200
#define IDI_BACK 201
#define IDI_TAB 202
#define IDI_CAPS_LOCK 203
#define IDI_RETURN 204
#define IDI_SHIFT 205
#define IDI_REACTOS 206
#define IDI_MENU 207
#define IDI_HOME 208
#define IDI_PG_UP 209
#define IDI_PG_DOWN 210
#define IDI_LEFT 211
#define IDI_TOP 212
#define IDI_RIGHT 213
#define IDI_BOTTOM 214
#define IDI_OSK 200
#define IDI_BACK 201
#define IDI_TAB 202
#define IDI_CAPS_LOCK 203
#define IDI_RETURN 204
#define IDI_SHIFT 205
#define IDI_REACTOS 206
#define IDI_MENU 207
#define IDI_HOME 208
#define IDI_PG_UP 209
#define IDI_PG_DOWN 210
#define IDI_LEFT 211
#define IDI_TOP 212
#define IDI_RIGHT 213
#define IDI_BOTTOM 214
#define IDR_OSK_MENU 600
#define IDM_EXIT 601
#define IDM_STANDARD_KB 602
#define IDM_ENCHANCED_KB 603
#define IDM_REG_LAYOUT 604
#define IDM_BLOCK_LAYOUT 605
#define IDM_101_KEYS 606
#define IDM_102_KEYS 607
#define IDM_106_KEYS 608
#define IDM_ON_TOP 609
#define IDM_CLICK_SOUND 610
#define IDM_TYPE_MODE 611
#define IDM_FONT 612
#define IDM_HELP_TOPICS 613
#define IDM_ABOUT 614
#define IDR_OSK_MENU 600
#define IDM_EXIT 601
#define IDM_STANDARD_KB 602
#define IDM_ENHANCED_KB 603
#define IDM_REG_LAYOUT 604
#define IDM_BLOCK_LAYOUT 605
#define IDM_101_KEYS 606
#define IDM_102_KEYS 607
#define IDM_106_KEYS 608
#define IDM_ON_TOP 609
#define IDM_CLICK_SOUND 610
#define IDM_TYPE_MODE 611
#define IDM_FONT 612
#define IDM_HELP_TOPICS 613
#define IDM_ABOUT 614
#define IDD_WARNINGDIALOG_OSK 215
#define IDD_WARNINGDIALOG_OSK 215
#define STRING_OSK 500
#define STRING_AUTHORS 501
#define STRING_OSK 500
#define STRING_AUTHORS 501
#define IDC_STATIC -1
#define IDC_STATIC -1
/* Scan codes by key number */