+ chg: Find/Replace & Custom. Schemes dialog: Acc-keys for dialog position persisting (save: Ctrl+S, reset: Ctrl+R)

+ add: Custom. Schemes dlg: add Acc-Key for Preview (Ctrl+P)
This commit is contained in:
Rainer Kottenhoff 2018-03-09 11:32:58 +01:00
parent 29e80a0c72
commit 99cb0ff89e
3 changed files with 12 additions and 8 deletions

View File

@ -3876,8 +3876,8 @@ LRESULT MsgCommand(HWND hwnd, WPARAM wParam, LPARAM lParam)
}
else {
SetForegroundWindow(g_hwndDlgCustomizeSchemes);
PostMessage(g_hwndDlgCustomizeSchemes, WM_COMMAND, MAKELONG(IDC_SETCURLEXERTV, 1), 0);
}
PostMessage(g_hwndDlgCustomizeSchemes, WM_COMMAND, MAKELONG(IDC_SETCURLEXERTV, 1), 0);
break;

View File

@ -622,8 +622,8 @@ IDR_ACCFINDREPLACE ACCELERATORS
BEGIN
"F", IDACC_FIND, VIRTKEY, CONTROL, NOINVERT
"H", IDACC_REPLACE, VIRTKEY, CONTROL, NOINVERT
"O", IDACC_SAVEPOS, VIRTKEY, CONTROL, NOINVERT
"P", IDACC_RESETPOS, VIRTKEY, CONTROL, NOINVERT
"S", IDACC_SAVEPOS, VIRTKEY, CONTROL, NOINVERT
"R", IDACC_RESETPOS, VIRTKEY, CONTROL, NOINVERT
VK_F2, IDACC_SELTONEXT, VIRTKEY, CONTROL, ALT, NOINVERT
VK_F2, IDACC_SELTOPREV, VIRTKEY, SHIFT, CONTROL, ALT, NOINVERT
VK_F3, IDACC_FINDNEXT, VIRTKEY, NOINVERT
@ -634,9 +634,10 @@ END
IDR_ACCCUSTOMSCHEMES ACCELERATORS
BEGIN
"O", IDACC_SAVEPOS, VIRTKEY, CONTROL, NOINVERT
"P", IDACC_RESETPOS, VIRTKEY, CONTROL, NOINVERT
VK_F12, IDACC_VIEWSCHEMECONFIG, VIRTKEY, CONTROL, NOINVERT
"S", IDACC_SAVEPOS, VIRTKEY, CONTROL, NOINVERT
"R", IDACC_RESETPOS, VIRTKEY, CONTROL, NOINVERT
"S", IDACC_PREVIEW, VIRTKEY, CONTROL, NOINVERT
VK_F12, IDACC_VIEWSCHEMECONFIG, VIRTKEY, CONTROL, NOINVERT
END
/////////////////////////////////////////////////////////////////////////////
@ -1566,8 +1567,9 @@ END
STRINGTABLE
BEGIN
IDS_SAVEPOS "&Save Position\tCtrl+O"
IDS_RESETPOS "&Reset Position\tCtrl+P"
IDS_SAVEPOS "&Save Position\tCtrl+S"
IDS_RESETPOS "&Reset Position\tCtrl+R"
IDS_PREVIEW "&Preview Settings\tCtrl+P"
END
STRINGTABLE

View File

@ -147,6 +147,7 @@
#define IDACC_SELTONEXT 310
#define IDACC_SELTOPREV 311
#define IDACC_VIEWSCHEMECONFIG 312
#define IDACC_PREVIEW 313
#define IDC_NFOASOEM 400
#define IDC_COMPILER 401
#define IDC_SETCURLEXERTV 402
@ -450,6 +451,7 @@
#define IDT_FILE_LAUNCH 40724
#define IDS_SAVEPOS 40800
#define IDS_RESETPOS 40801
#define IDS_PREVIEW 40802
#define IDS_ERR_LOADFILE 50000
#define IDS_ERR_SAVEFILE 50001
#define IDS_ERR_BROWSE 50002