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#include <reactos/version.rc> 29 30#include <reactos/manifest_exe.rc> 31 32MAINACCELTABLE ACCELERATORS 33BEGIN 34 "1", ID_BACK_1, VIRTKEY, CONTROL 35 "2", ID_BACK_2, VIRTKEY, CONTROL 36 VK_F3, ID_FIND_NEXT, VIRTKEY 37 "L", ID_ALIGN_LEFT, VIRTKEY, CONTROL 38 "E", ID_ALIGN_CENTER, VIRTKEY, CONTROL 39 "R", ID_ALIGN_RIGHT, VIRTKEY, CONTROL 40 "F", ID_FIND, VIRTKEY, CONTROL 41 "H", ID_REPLACE, VIRTKEY, CONTROL 42 "A", ID_EDIT_SELECTALL, VIRTKEY, CONTROL 43 "X", ID_EDIT_CUT, VIRTKEY, CONTROL 44 "C", ID_EDIT_COPY, VIRTKEY, CONTROL 45 "Z", ID_EDIT_UNDO, VIRTKEY, CONTROL 46 "Y", ID_EDIT_REDO, VIRTKEY, CONTROL 47 "B", ID_FORMAT_BOLD, VIRTKEY, CONTROL 48 "I", ID_FORMAT_ITALIC, VIRTKEY, CONTROL 49 "U", ID_FORMAT_UNDERLINE,VIRTKEY, CONTROL 50 "N", ID_FILE_NEW, VIRTKEY, CONTROL 51 "O", ID_FILE_OPEN, VIRTKEY, CONTROL 52 "S", ID_FILE_SAVE, VIRTKEY, CONTROL 53 "P", ID_PRINT, VIRTKEY, CONTROL 54END 55 56/* @makedep: toolbar.bmp */ 57IDB_TOOLBAR BITMAP "res/toolbar.bmp" 58 59/* @makedep: formatbar.bmp */ 60IDB_FORMATBAR BITMAP "res/formatbar.bmp" 61 62/* @makedep: wordpad.ico */ 63IDI_WORDPAD ICON "res/wordpad.ico" 64 65/* @makedep: document.ico */ 66IDI_RTFDOC ICON "res/document.ico" 67 68/* @makedep: zoom.cur */ 69IDC_ZOOM CURSOR "res/zoom.cur" 70 71/* UTF-8 */ 72#pragma code_page(65001) 73 74#ifdef LANGUAGE_CS_CZ 75 #include "lang/cs-CZ.rc" 76#endif 77#ifdef LANGUAGE_DA_DK 78 #include "lang/da-DK.rc" 79#endif 80#ifdef LANGUAGE_DE_DE 81 #include "lang/de-DE.rc" 82#endif 83#ifdef LANGUAGE_EN_US 84 #include "lang/en-US.rc" 85#endif 86#ifdef LANGUAGE_ES_ES 87 #include "lang/es-ES.rc" 88#endif 89#ifdef LANGUAGE_FR_FR 90 #include "lang/fr-FR.rc" 91#endif 92#ifdef LANGUAGE_HE_IL 93 #include "lang/he-IL.rc" 94#endif 95#ifdef LANGUAGE_HR_HR 96 #include "lang/hr-HR.rc" 97#endif 98#ifdef LANGUAGE_HU_HU 99 #include "lang/hu-HU.rc" 100#endif 101#ifdef LANGUAGE_IT_IT 102 #include "lang/it-IT.rc" 103#endif 104#ifdef LANGUAGE_JA_JP 105 #include "lang/ja-JP.rc" 106#endif 107#ifdef LANGUAGE_KO_KR 108 #include "lang/ko-KR.rc" 109#endif 110#ifdef LANGUAGE_LT_LT 111 #include "lang/lt-LT.rc" 112#endif 113#ifdef LANGUAGE_NL_NL 114 #include "lang/nl-NL.rc" 115#endif 116#ifdef LANGUAGE_NO_NO 117 #include "lang/no-NO.rc" 118#endif 119#ifdef LANGUAGE_PL_PL 120 #include "lang/pl-PL.rc" 121#endif 122#ifdef LANGUAGE_PT_BR 123 #include "lang/pt-BR.rc" 124#endif 125#ifdef LANGUAGE_PT_PT 126 #include "lang/pt-PT.rc" 127#endif 128#ifdef LANGUAGE_RO_RO 129 #include "lang/ro-RO.rc" 130#endif 131#ifdef LANGUAGE_RU_RU 132 #include "lang/ru-RU.rc" 133#endif 134#ifdef LANGUAGE_SL_SI 135 #include "lang/sl-SI.rc" 136#endif 137#ifdef LANGUAGE_SQ_AL 138 #include "lang/sq-AL.rc" 139#endif 140#ifdef LANGUAGE_SV_SE 141 #include "lang/sv-SE.rc" 142#endif 143#ifdef LANGUAGE_TR_TR 144 #include "lang/tr-TR.rc" 145#endif 146#ifdef LANGUAGE_UK_UA 147 #include "lang/uk-UA.rc" 148#endif 149#ifdef LANGUAGE_ZH_CN 150 #include "lang/zh-CN.rc" 151#endif 152#ifdef LANGUAGE_ZH_TW 153 #include "lang/zh-TW.rc" 154#endif 155