📄 cpmdico.pas
字号:
{*******************************************************************
* *
* COMPONENT for MS DOS and Windows source code. *
* *
* (c) 1992, Roderic D. M. Page *
* *
* Language: Turbo Pascal (Pascal with object-oriented extensions) *
* Compiler: Turbo Pascal 6.0 (MS DOS) *
* Turbo Pascal for Windows 1.0 (WINDOWS) *
* *
* Notes: Program interface is currently Windows specific. *
* *
*******************************************************************}
unit cpmdico;
{*
Resource file constants for CPMDI.PAS
*}
interface
const
bmp_StatusBar = 100;
{---String resource constants---}
{ Child system menu }
sth_Close = 1;
sth_Maximize = 2;
sth_Minimize = 3;
sth_Move = 4;
sth_NextWindow = 5;
sth_Restore = 6;
sth_Size = 7;
sth_SystemMenu = 8;
{ Application system menu }
sth_AppClose = 16;
sth_AppMaximize = 17;
sth_AppMinimize = 18;
sth_AppMove = 19;
sth_AppTaskList = 20;
sth_AppRestore = 21;
sth_AppSize = 22;
sth_AppSystemMenu = 23;
{ Standard windows commands }
{ Windows menu }
sth_Cascade = 31;
sth_Tile = 32;
sth_Arrange = 33;
sth_Create = 34;
sth_CloseChildren = 35;
sth_Activate = 36;
{ File menu }
sth_FileNew = 48;
sth_FileOpen = 49;
sth_FileSave = 50;
sth_FileSaveAs = 51;
sth_Exit = 52;
{ Edit menu }
sth_EditCut = 64;
sth_EditCopy = 65;
sth_EditPaste = 66;
sth_EditDelete = 67;
sth_EditClear = 68;
sth_EditUndo = 69;
{ Search menu }
sth_EditFind = 70;
sth_EditReplace = 71;
sth_EditFindNext = 72;
{ Standard popup menus }
sth_File = 73;
sth_EditU = 74;
sth_EditC = 75;
sth_Window = 76;
implementation
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -