mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 19:26:32 +00:00
Finishing IME menu work. The IME menu of the system pen icon has to append the default items if DMI_LEFT and RDMI_RIGHT are not specified. JIRA issue: CORE-20142 - Add IsRegImeToolbarShown and ShowImeToolbar helper functions. - Add more code into KbSwitch_OnPenIconMsg function to handle IME menu default items. - Add some resource strings.
25 lines
452 B
C
25 lines
452 B
C
#pragma once
|
|
|
|
/* Icons */
|
|
#define IDI_MAIN 150
|
|
|
|
/* Menus */
|
|
#define IDR_POPUP 100
|
|
|
|
/* Strings */
|
|
#define IDS_IME_ON 300
|
|
#define IDS_IME_OFF 301
|
|
#define IDS_SOFTKBD_ON 302
|
|
#define IDS_SOFTKBD_OFF 303
|
|
#define IDS_SHOWTOOLBAR 304
|
|
#define IDS_INPUTSYSTEM 305
|
|
|
|
/* Menu items */
|
|
#define ID_EXIT 100
|
|
#define ID_PREFERENCES 101
|
|
#define ID_INPUTSYSTEM 252
|
|
#define ID_IMEONOFF 500
|
|
#define ID_SOFTKBDONOFF 501
|
|
#define ID_SHOWTOOLBAR 502
|
|
#define ID_LANG_BASE 1000
|