⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 resource.h

📁 ReactOS是一些高手根据Windows XP的内核编写出的类XP。内核实现机理和API函数调用几乎相同。甚至可以兼容XP的程序。喜欢研究系统内核的人可以看一看。
💻 H
字号:
/*
 * WineCalc (resource.h)
 *
 * Copyright 2003 James Briggs
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

/* menus */

#define IDM_COPY               1001
#define IDM_PASTE              1002
#define IDM_MODE_STANDARD      1003
#define IDM_MODE_SCIENTIFIC    1004
#define IDM_DIGIT_GROUPING     1005
#define IDM_HELP_TOPICS        1006
#define IDM_ABOUT              1007
#define IDM_SEPARATOR1         1008
#define IDM_SEPARATOR2         1009
#define IDM_SEPARATOR3         1010
#define IDM_WHATS_THIS         1011

#define IDI_CALCICON           1050 

/* strings */

#define IDS_APPNAME            1100

#define IDS_BTN_BACKSPACE      1101
#define IDS_BTN_CLEAR_ENTRY    1102
#define IDS_BTN_CLEAR_ALL      1103
#define IDS_BTN_MEM_CLEAR      1104
#define IDS_BTN_MEM_RECALL     1105
#define IDS_BTN_MEM_STORE      1106
#define IDS_BTN_MEM_PLUS       1107
#define IDS_BTN_MEM_STATUS_M   1108
#define IDS_BTN_SQRT           1109
#define IDS_BTN_DEGREES        1110
#define IDS_BTN_RADIANS        1111
#define IDS_BTN_GRADS          1112
#define IDS_BTN_SHRT_HEX       1113
#define IDS_BTN_SHRT_DEC       1114
#define IDS_BTN_SHRT_OCT       1115
#define IDS_BTN_SHRT_BIN       1116


#define IDS_ERR_INVALID_INPUT  1120
#define IDS_ERR_DIVIDE_BY_ZERO 1121
#define IDS_ERR_UNDEFINED      1122

#define IDS_COPYRIGHT1         1130
#define IDS_COPYRIGHT2         1131
#define IDS_COPYRIGHT3         1132
#define IDS_COPYRIGHT4         1133
#define IDS_COPYRIGHT5         1134

/* keys */

#define IDV_HELP                103

/* stats dialog */

#define ID_STATS_RET           3000
#define ID_STATS_LOAD          3001
#define ID_STATS_CD            3002
#define ID_STATS_CAD           3003

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -