menu.str
来自「开放源码的编译器open watcom 1.6.0版的源代码」· STR 代码 · 共 992 行 · 第 1/2 页
STR
992 行
#define MENU_STR( sym, menu, japanese_menu, help, japanese_help ) \
wdpick( sym, menu, japanese_menu ) \
wdpick( HELP_##sym, help, japanese_help )
MENU_STR( MainMenuWindow,
"&Window",
"j&Window",
"Arrange window layouts",
"jArrange window layouts" )
MENU_STR( AXpplication,
"A&pplication",
"jA&pplication",
"Show the application's output screen and wait for a keystroke",
"jShow the application's output screen and wait for a keystroke" )
MENU_STR( XTo_Log,
"&To Log",
"j&To Log",
"Write the active window contents to the log window",
"jWrite the active window contents to the log window" )
MENU_STR( To_XFile_,
"To &File...",
"jTo &File...",
"Write the active window contents to a file",
"jWrite the active window contents to a file" )
MENU_STR( XZoom,
"&Zoom",
"j&Zoom",
"Alternate between maximized and normal sized window",
"jAlternate between maximized and normal sized window" )
MENU_STR( XNext_Window,
"&Next",
"j&Next",
"Select a new current window",
"jSelect a new current window" )
MENU_STR( XAccelerator,
"&Accelerator",
"j&Accelerator",
"Show a list of all accelerators",
"jShow a list of all accelerators" )
MENU_STR( MainMenuFile,
"&File",
"j&File",
"Perform file operations",
"jPerform file operations" )
MENU_STR( XOpen_,
"&Open...",
"j&Open...",
"Start debugging a different program",
"jStart debugging a different program" )
MENU_STR( XView_,
"&View...",
"j&View...",
"View a given file",
"jView a given file" )
MENU_STR( XCommand_,
"&Command...",
"j&Command...",
"Enter a debugger command",
"jEnter a debugger command" )
MENU_STR( OpXtions_,
"Op&tions...",
"jOp&tions...",
"Set global debugging options",
"jSet global debugging options" )
MENU_STR( XWindow_Options_,
"&Window Options...",
"j&Window Options...",
"Set window options across all windows",
"jSet window options across all windows" )
MENU_STR( XFont_,
"Change &Font...",
"jChange &Font...",
"Change the font in all windows",
"jChange the font in all windows" )
MENU_STR( XSave_Setup_,
"&Save Setup...",
"j&Save Setup...",
"Save the current setup to a file",
"jSave the current setup to a file" )
MENU_STR( XLoad_Setup_,
"&Load Setup...",
"j&Load Setup...",
"Load a new setup from a file",
"jLoad a new setup from a file" )
MENU_STR( Source_XPath_,
"Source &Path...",
"jSource &Path...",
"Set directories to be used when searching for source files",
"jSet directories to be used when searching for source files" )
MENU_STR( SXystem,
"S&ystem",
"jS&ystem",
"Start an operating system shell",
"jStart an operating system shell" )
MENU_STR( EXxit,
"E&xit",
"jE&xit",
"Exit from the debugger",
"jExit from the debugger" )
MENU_STR( MainMenuSearch,
"&Search",
"j&Search",
"Search windows and modules",
"jSearch windows and modules" )
MENU_STR( XFind_,
"&Find...",
"j&Find...",
"Search the current window for a given string",
"jSearch the current window for a given string" )
MENU_STR( XNext,
"&Next",
"j&Next",
"Find the next occurrence of a string",
"jFind the next occurrence of a string" )
MENU_STR( XPrevious,
"&Previous",
"j&Previous",
"Find the previous occurrence of a string",
"jFind the previous occurrence of a string" )
MENU_STR( XAll_Modules_,
"&All Modules...",
"j&All Modules...",
"Search all source modules in the program for a given string",
"jSearch all source modules in the program for a given string" )
MENU_STR( XMatch,
"&Match",
"j&Match",
"Match lines using keyboard input",
"jMatch lines using keyboard input" )
MENU_STR( MainMenuRun,
"&Run",
"j&Run",
"Control program execution",
"jControl program execution" )
MENU_STR( XGo,
"&Go",
"j&Go",
"Resume program execution",
"jResume program execution" )
MENU_STR( EXxecute_to_,
"E&xecute to...",
"jE&xecute to...",
"Execute until a given address is reached",
"jExecute until a given address is reached" )
MENU_STR( XStep_Over,
"&Step Over",
"j&Step Over",
"Trace once, stepping over calls",
"jTrace once, stepping over calls" )
MENU_STR( RunXTrace_Into,
"&Trace Into",
"j&Trace Into",
"Trace once, stepping into calls",
"jTrace once, stepping into calls" )
MENU_STR( XNext_Sequential,
"&Next Sequential",
"j&Next Sequential",
"Trace until the next sequential address is reached",
"jTrace until the next sequential address is reached" )
MENU_STR( XUntil_Return,
"&Until Return",
"j&Until Return",
"Execute until this function returns",
"jExecute until this function returns" )
MENU_STR( SXkip_to_Cursor,
"S&kip to Cursor",
"jS&kip to Cursor",
"Re-position the instruction pointer at the cursor position",
"jRe-position the instruction pointer at the cursor position" )
MENU_STR( XRestart,
"&Restart",
"j&Restart",
"Restart the program",
"jRestart the program" )
MENU_STR( XDebug_Startup,
"&Debug Startup",
"j&Debug Startup",
"Restart the program and stop before any startup code (including DLLs) is executed",
"jRestart the program and stop before any startup code (including DLLs) is executed" )
MENU_STR( SaXve_,
"Sa&ve...",
"jSa&ve...",
"Save event replay information to a file",
"jSave event replay information to a file" )
MENU_STR( RestXore_,
"Rest&ore...",
"jRest&ore...",
"Restore event replay information from a file",
"jRestore event replay information from a file" )
MENU_STR( MainMenuBreak,
"&Break",
"j&Break",
"Break point operations",
"jBreak point operations" )
MENU_STR( XToggle,
"&Toggle",
"j&Toggle",
"Toggle the break point at the cursor position",
"jToggle the break point at the cursor position" )
MENU_STR( XAt_Cursor,
"&At Cursor",
"j&At Cursor",
"Create/Modify the break point at the cursor position",
"jCreate/Modify the break point at the cursor position" )
MENU_STR( XBrkNew_,
"&New...",
"j&New...",
"Create a new break point",
"jCreate a new break point" )
MENU_STR( XOn_DLL_Load,
"&On Image Load...",
"j&On Image Load...",
"Stop whenever an exectuable image or DLL is dynamically loaded",
"jStop whenever an exectuable image or DLL is dynamically loaded" )
MENU_STR( On_Debug_XMessage,
"On Debug &Message",
"jOn Debug &Message",
"Stop whenever an debug kernel message is printed",
"jStop whenever an debug kernel message is printed" )
MENU_STR( XView_All,
"&View All",
"j&View All",
"Show a list of all break points",
"jShow a list of all break points" )
MENU_STR( XClear_All,
"&Clear All",
"j&Clear All",
"Delete all break points",
"jDelete all break points" )
MENU_STR( XDisable_All,
"&Disable All",
"j&Disable All",
"Disable, but do not delete, all break points",
"jDisable, but do not delete, all break points" )
MENU_STR( XEnable_All,
"&Enable All",
"j&Enable All",
"Enable all break points",
"jEnable all break points" )
MENU_STR( XSave_,
"&Save...",
"j&Save...",
"Save all break points to a file",
"jSave all break points to a file" )
MENU_STR( XRestore_,
"&Restore...",
"j&Restore...",
"Restore all break points from a file",
"jRestore all break points from a file" )
MENU_STR( MainMenuCode,
"&Code",
"j&Code",
"Open a new code window",
"jOpen a new code window" )
MENU_STR( WindowXSource,
"&Source",
"j&Source",
"Show the source window",
"jShow the source window" )
MENU_STR( XModules,
"&Modules",
"j&Modules",
"Show a list of all modules in the program",
"jShow a list of all modules in the program" )
MENU_STR( GlobalXFunctions,
"&Functions",
"j&Functions",
"Show a list of all functions in the program",
"jShow a list of all functions in the program" )
MENU_STR( XCalls,
"&Calls",
"j&Calls",
"Show the call history window",
"jShow the call history window" )
MENU_STR( WindowXAssembly,
"&Assembly",
"j&Assembly",
"Show the assembly language window",
"jShow the assembly language window" )
MENU_STR( XThreads,
"&Threads",
"j&Threads",
"Show the thread window",
"jShow the thread window" )
MENU_STR( XImages,
"&Images",
"j&Images",
"Show the list of all executable images related to this process",
"jShow the list of all executable images related to this process" )
MENU_STR( XReplay,
"&Replay",
"j&Replay",
"Show the program execution replay window",
"jShow the program execution replay window" )
MENU_STR( MainMenuData,
"&Data",
"j&Data",
"Open a new data window",
"jOpen a new data window" )
MENU_STR( XWatches,
"&Watches",
"j&Watches",
"Show the watches window",
"jShow the watches window" )
MENU_STR( XLocals,
"&Locals",
"j&Locals",
"Show the local variable display window",
"jShow the local variable display window" )
MENU_STR( File_XVariables,
"File &Variables",
"jFile &Variables",
"Show the file scope variables window",
"jShow the file scope variables window" )
MENU_STR( XGlobals,
"&Globals",
"j&Globals",
"Show a list of all external data items the program",
"jShow a list of all external data items the program" )
MENU_STR( XRegisters,
"&Registers",
"j&Registers",
"Show the contents of the CPU registers",
"jShow the contents of the CPU registers" )
MENU_STR( MMXXRegisters,
"MM&X Registers",
"jMM&X Registers",
"Show the contents of the MMX registers",
"jShow the contents of the MMX registers" )
MENU_STR( XMMXRegisters,
"XMM Registers",
"jXMM Registers",
"Show the contents of the XMM registers",
"jShow the contents of the XMM registers" )
MENU_STR( XFPU_Registers,
"&FPU Registers",
"j&FPU Registers",
"Show the floating point registers",
"jShow the floating point registers" )
MENU_STR( XStack,
"&Stack",
"j&Stack",
"Show the stack window",
"jShow the stack window" )
MENU_STR( XIO_Ports,
"&I/O Ports",
"j&I/O Ports",
"Show the I/O port manipulation window",
"jShow the I/O port manipulation window" )
MENU_STR( XMemory_at_,
"&Memory at...",
"j&Memory at...",
"Show memory at a given address",
"jShow memory at a given address" )
MENU_STR( LXog,
"L&og",
"jL&og",
"Show the debugging log window",
"jShow the debugging log window" )
MENU_STR( MainMenuUndo,
"&Undo",
"j&Undo",
"Browse through the execution history",
"jBrowse through the execution history" )
MENU_STR( XUndo,
"&Undo",
"j&Undo",
"Undo the last program execution or modification",
"jUndo the last program execution or modification" )
MENU_STR( XRedo,
"&Redo",
"j&Redo",
"Undo the last undo",
"jUndo the last undo" )
MENU_STR( UXnwind_Stack,
"U&nwind Stack",
"jU&nwind Stack",
"Move up the call stack",
"jMove up the call stack" )
MENU_STR( RXewind_Stack,
"R&ewind Stack",
"jR&ewind Stack",
"Move down the call stack",
"jMove down the call stack" )
MENU_STR( MainMenuAction,
"&Action",
"j&Action",
"Perform a window specific action",
"jPerform a window specific action" )
MENU_STR( MainMenuHelp,
"&Help",
"j&Help",
"Display debugger help",
"jDisplay debugger help" )
MENU_STR( XContents,
"&Contents",
"j&Contents",
"Show help contents",
"jShow help contents" )
MENU_STR( XOn_Help,
"&On Help",
"j&On Help",
"Show Help about Help",
"jShow Help about Help" )
MENU_STR( XSearch,
"&Search",
"j&Search",
"Search help for a topic",
"jSearch help for a topic" )
MENU_STR( XAbout_,
"&About...",
"j&About...",
"Display program information",
"jDisplay program information" )
// - generic popup items
MENU_STR( XBreak_Write,
"&Break on Write",
"j&Break on Write",
"Stop when the selected value changes",
"jStop when the selected value changes" )
MENU_STR( AXddress_,
"A&ddress...",
"jA&ddress...",
"Position the window at a given address",
"jPosition the window at a given address" )
MENU_STR( XAssembly,
"&Assembly",
"j&Assembly",
"Show the assembly code associated with the selected line",
"jShow the assembly code associated with the selected line" )
MENU_STR( XType,
"&Type",
"j&Type",
"Display as a different data type",
"jDisplay as a different data type" )
MENU_STR( XShow,
"&Show",
"j&Show",
"",
"" )
MENU_STR( XEdit,
"&Edit",
"j&Edit",
"",
"" )
MENU_STR( XClass,
"&Class",
"j&Class",
"",
"" )
MENU_STR( XOptions,
"&Options",
"j&Options",
"Set window options for this window only",
"jSet window options for this window only" )
MENU_STR( XInspect,
"&Inspect",
"j&Inspect",
"Inspect the selected variable",
"jInspect the selected variable" )
MENU_STR( XBreak,
"&Break",
"j&Break",
"Stop when the selected value changes or the selected function is entered",
"jStop when the selected value changes or the selected function is entered" )
MENU_STR( XWatch,
"&Watch",
"j&Watch",
"Add the selected item to the watches window",
"jAdd the selected item to the watches window" )
MENU_STR( XFind,
"&Find",
"j&Find",
"Search the window for the selected item",
"jSearch the window for the selected item" )
MENU_STR( XHome,
"&Home",
"j&Home",
"Move to the currently executing location",
"jMove to the currently executing location" )
MENU_STR( XBreak_,
"&Break...",
"j&Break...",
"Set a break point at the selected line",
"jSet a break point at the selected line" )
MENU_STR( XSource,
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?