Some of the hot-keys, such as “Edit→Cut” and “Edit→Time/Date” had identical “T” hot-keys, as well as “Search→Search” and “Search→Search Next” both being on “S”.
With this change, the menus are restructured to match the Windows XP Notepad menus, in item names, capitalization, and hot-keys. Notably the usability issue with conflicting hot-keys is eliminated. Users familiar with the Microsoft Windows Notepad menus and their hot-keys should be able to use Wine Notepad without changing any workflow.
From: Mike Swanson mikeonthecomputer@gmail.com
Some of the hot-keys, such as “Edit→Cut” and “Edit→Time/Date” had identical “T” hot-keys, as well as “Search→Search” and “Search→Search Next” both being on “S”.
With this change, the menus are restructured to match the Windows XP Notepad menus, in item names, capitalization, and hot-keys. Notably the usability issue with conflicting hot-keys is eliminated. Users familiar with the Microsoft Windows Notepad menus and their hot-keys should be able to use Wine Notepad without changing any workflow. --- programs/notepad/notepad.rc | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-)
diff --git a/programs/notepad/notepad.rc b/programs/notepad/notepad.rc index 6cdfd679a1e..e8bfe30798c 100644 --- a/programs/notepad/notepad.rc +++ b/programs/notepad/notepad.rc @@ -29,7 +29,7 @@ MAIN_MENU MENU MENUITEM "&New\tCtrl+N", CMD_NEW MENUITEM "&Open...\tCtrl+O", CMD_OPEN MENUITEM "&Save\tCtrl+S", CMD_SAVE - MENUITEM "Save &as...", CMD_SAVE_AS + MENUITEM "Save &As...", CMD_SAVE_AS MENUITEM SEPARATOR MENUITEM "&Print...\tCtrl+P", CMD_PRINT MENUITEM "Page Se&tup...", CMD_PAGE_SETUP @@ -43,19 +43,19 @@ POPUP "&Edit" { MENUITEM "Cu&t\tCtrl+X", CMD_CUT MENUITEM "&Copy\tCtrl+C", CMD_COPY MENUITEM "&Paste\tCtrl+V", CMD_PASTE - MENUITEM "&Delete\tDel", CMD_DELETE + MENUITEM "De&lete\tDel", CMD_DELETE MENUITEM SEPARATOR - MENUITEM "Select &all\tCtrl+A", CMD_SELECT_ALL - MENUITEM "&Time/Date\tF5", CMD_TIME_DATE - MENUITEM SEPARATOR - MENUITEM "&Wrap long lines", CMD_WRAP - MENUITEM "&Font...", CMD_FONT - } -POPUP "&Search" { - MENUITEM "&Search...\tCtrl+F", CMD_SEARCH - MENUITEM "&Search next\tF3", CMD_SEARCH_NEXT + MENUITEM "&Find...\tCtrl+F", CMD_SEARCH + MENUITEM "Find &Next\tF3", CMD_SEARCH_NEXT MENUITEM "&Replace...\tCtrl+H", CMD_REPLACE MENUITEM "&Go To...\tCtrl+G", CMD_GO_TO + MENUITEM SEPARATOR + MENUITEM "Select &All\tCtrl+A", CMD_SELECT_ALL + MENUITEM "Time/&Date\tF5", CMD_TIME_DATE + } +POPUP "F&ormat" { + MENUITEM "&Word Wrap", CMD_WRAP + MENUITEM "&Font...", CMD_FONT } POPUP "&View" { @@ -63,6 +63,7 @@ POPUP "&View" } POPUP "&Help" { MENUITEM "&Contents\tF1", CMD_HELP_CONTENTS + MENUITEM SEPARATOR MENUITEM "&About Notepad", CMD_HELP_ABOUT_NOTEPAD } }