--- wine/programs/notepad/rsrc.rc:1.8 Mon Jul 21 20:38:52 2003 +++ wine/programs/notepad/rsrc.rc Mon Jul 21 20:38:52 2003 @@ -24,6 +24,20 @@ #include "commctrl.h" #include "notepad_res.h"
+ID_ACCEL ACCELERATORS +{
- "^A", CMD_SELECT_ALL
- "^C", CMD_COPY
- "^F", CMD_SEARCH
- "^O", CMD_OPEN
- "^S", CMD_SAVE
- "^V", CMD_PASTE
- "^X", CMD_CUT
- "^Z", CMD_UNDO
- VK_F3, CMD_SEARCH_NEXT, VIRTKEY
- VK_F5, CMD_TIME_DATE, VIRTKEY
+}
#include "Da.rc" #include "De.rc" #include "En.rc"
What's the sense in making the accelerators global to all languages? Each language has it's own accelerator keys (just as it has it's own menus).
Shachar
"Shachar Shemesh" wine-devel@shemesh.biz wrote:
What's the sense in making the accelerators global to all languages? Each language has it's own accelerator keys (just as it has it's own menus).
I thought that it's better to have them global, until we have them defined for other languages.