xref: /reactos/base/applications/wordpad/rsrc.rc (revision 8a978a17)
1/*
2 * Copyright 2004 by Krzysztof Foltman
3 * Copyright 2007 by Alexander N. Sørnes <alex@thehandofagony.com>
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
18 */
19
20#include <windef.h>
21#include <winuser.h>
22
23#include "wordpad.h"
24
25#define REACTOS_STR_FILE_DESCRIPTION  "ReactOS WordPad"
26#define REACTOS_STR_INTERNAL_NAME     "wordpad"
27#define REACTOS_STR_ORIGINAL_FILENAME "wordpad.exe"
28
29#include <reactos/version.rc>
30
31MAINACCELTABLE ACCELERATORS
32BEGIN
33    "1",          ID_BACK_1,          VIRTKEY, CONTROL
34    "2",          ID_BACK_2,          VIRTKEY, CONTROL
35    VK_F3,        ID_FIND_NEXT,       VIRTKEY
36    "L",          ID_ALIGN_LEFT,      VIRTKEY, CONTROL
37    "E",          ID_ALIGN_CENTER,    VIRTKEY, CONTROL
38    "R",          ID_ALIGN_RIGHT,     VIRTKEY, CONTROL
39    "F",          ID_FIND,            VIRTKEY, CONTROL
40    "H",          ID_REPLACE,         VIRTKEY, CONTROL
41    "A",          ID_EDIT_SELECTALL,  VIRTKEY, CONTROL
42    "X",          ID_EDIT_CUT,        VIRTKEY, CONTROL
43    "C",          ID_EDIT_COPY,       VIRTKEY, CONTROL
44    "Z",          ID_EDIT_UNDO,       VIRTKEY, CONTROL
45    "Y",          ID_EDIT_REDO,       VIRTKEY, CONTROL
46    "B",          ID_FORMAT_BOLD,     VIRTKEY, CONTROL
47    "I",          ID_FORMAT_ITALIC,   VIRTKEY, CONTROL
48    "U",          ID_FORMAT_UNDERLINE,VIRTKEY, CONTROL
49    "N",          ID_FILE_NEW,        VIRTKEY, CONTROL
50    "O",          ID_FILE_OPEN,       VIRTKEY, CONTROL
51    "S",          ID_FILE_SAVE,       VIRTKEY, CONTROL
52    "P",          ID_PRINT,           VIRTKEY, CONTROL
53END
54
55/* @makedep: toolbar.bmp */
56IDB_TOOLBAR BITMAP "res/toolbar.bmp"
57
58/* @makedep: formatbar.bmp */
59IDB_FORMATBAR BITMAP "res/formatbar.bmp"
60
61/* @makedep: wordpad.ico */
62IDI_WORDPAD ICON "res/wordpad.ico"
63
64/* @makedep: document.ico */
65IDI_RTFDOC ICON "res/document.ico"
66
67/* @makedep: zoom.cur */
68IDC_ZOOM CURSOR "res/zoom.cur"
69
70#include <reactos/manifest_exe.rc>
71
72/* UTF-8 */
73#pragma code_page(65001)
74
75#ifdef LANGUAGE_CS_CZ
76    #include "lang/cs-CZ.rc"
77#endif
78#ifdef LANGUAGE_DA_DK
79    #include "lang/da-DK.rc"
80#endif
81#ifdef LANGUAGE_DE_DE
82    #include "lang/de-DE.rc"
83#endif
84#ifdef LANGUAGE_EN_US
85    #include "lang/en-US.rc"
86#endif
87#ifdef LANGUAGE_ES_ES
88    #include "lang/es-ES.rc"
89#endif
90#ifdef LANGUAGE_FR_FR
91    #include "lang/fr-FR.rc"
92#endif
93#ifdef LANGUAGE_HE_IL
94    #include "lang/he-IL.rc"
95#endif
96#ifdef LANGUAGE_HU_HU
97    #include "lang/hu-HU.rc"
98#endif
99#ifdef LANGUAGE_IT_IT
100    #include "lang/it-IT.rc"
101#endif
102#ifdef LANGUAGE_JA_JP
103    #include "lang/ja-JP.rc"
104#endif
105#ifdef LANGUAGE_KO_KR
106    #include "lang/ko-KR.rc"
107#endif
108#ifdef LANGUAGE_LT_LT
109    #include "lang/lt-LT.rc"
110#endif
111#ifdef LANGUAGE_NL_NL
112    #include "lang/nl-NL.rc"
113#endif
114#ifdef LANGUAGE_NO_NO
115    #include "lang/no-NO.rc"
116#endif
117#ifdef LANGUAGE_PL_PL
118    #include "lang/pl-PL.rc"
119#endif
120#ifdef LANGUAGE_PT_BR
121    #include "lang/pt-BR.rc"
122#endif
123#ifdef LANGUAGE_PT_PT
124    #include "lang/pt-PT.rc"
125#endif
126#ifdef LANGUAGE_RO_RO
127    #include "lang/ro-RO.rc"
128#endif
129#ifdef LANGUAGE_RU_RU
130    #include "lang/ru-RU.rc"
131#endif
132#ifdef LANGUAGE_SL_SI
133    #include "lang/sl-SI.rc"
134#endif
135#ifdef LANGUAGE_SQ_AL
136    #include "lang/sq-AL.rc"
137#endif
138#ifdef LANGUAGE_SV_SE
139    #include "lang/sv-SE.rc"
140#endif
141#ifdef LANGUAGE_TR_TR
142    #include "lang/tr-TR.rc"
143#endif
144#ifdef LANGUAGE_UK_UA
145    #include "lang/uk-UA.rc"
146#endif
147#ifdef LANGUAGE_ZH_CN
148    #include "lang/zh-CN.rc"
149#endif
150#ifdef LANGUAGE_ZH_TW
151    #include "lang/zh-TW.rc"
152#endif
153