1/* 2 * Top level resource file for shell stuff 3 * 4 * Copyright 1998 Juergen Schmied 5 * 6 * This library is free software; you can redistribute it and/or 7 * modify it under the terms of the GNU Lesser General Public 8 * License as published by the Free Software Foundation; either 9 * version 2.1 of the License, or (at your option) any later version. 10 * 11 * This library is distributed in the hope that it will be useful, 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 * Lesser General Public License for more details. 15 * 16 * You should have received a copy of the GNU Lesser General Public 17 * License along with this library; if not, write to the Free Software 18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 19 */ 20 21#include <windef.h> 22#include <winuser.h> 23#include <commctrl.h> 24 25#include "shresdef.h" 26 27#include "shell32_version.rc" 28 29LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL 30 31IDA_SHELLVIEW ACCELERATORS 32BEGIN 33 "D", FCIDM_SHVIEW_DELETE, VIRTKEY, CONTROL 34 VK_DELETE, FCIDM_SHVIEW_DELETE, VIRTKEY 35 VK_DELETE, FCIDM_SHVIEW_DELETE, VIRTKEY, SHIFT 36 VK_F2, FCIDM_SHVIEW_RENAME, VIRTKEY 37 VK_RETURN, FCIDM_SHVIEW_PROPERTIES, VIRTKEY, ALT 38 "X", FCIDM_SHVIEW_CUT, VIRTKEY, CONTROL 39 "C", FCIDM_SHVIEW_COPY, VIRTKEY, CONTROL 40 VK_INSERT, FCIDM_SHVIEW_COPY, VIRTKEY, CONTROL 41 "V", FCIDM_SHVIEW_INSERT, VIRTKEY, CONTROL 42 VK_INSERT, FCIDM_SHVIEW_INSERT, VIRTKEY, SHIFT 43 "Z", FCIDM_SHVIEW_UNDO, VIRTKEY, CONTROL 44 "A", FCIDM_SHVIEW_SELECTALL, VIRTKEY, CONTROL 45 VK_F1, FCIDM_SHVIEW_HELP, VIRTKEY 46 47 /* FIXME: the following accelerator doesn't belong here. This accelerator 48 * table is used by the shell view control. F5 should be handled by the 49 * a different accelerator table thats translated in IShellBrowser::TranslateAcceleratorSB 50 * but will put it here until the shell work fine */ 51 VK_F5, FCIDM_SHVIEW_REFRESH, VIRTKEY 52END 53 54shv_accel ACCELERATORS 55BEGIN 56 VK_F5, FCIDM_SHVIEW_REFRESH, VIRTKEY 57END 58 59IDA_DESKBROWSER ACCELERATORS 60BEGIN 61 //"s", 34172, ALT 62 VK_F4, FCIDM_DESKBROWSER_CLOSE, VIRTKEY, ALT 63 VK_F6, FCIDM_DESKBROWSER_FOCUS, VIRTKEY 64 VK_TAB, FCIDM_DESKBROWSER_FOCUS, VIRTKEY 65 VK_TAB, FCIDM_DESKBROWSER_FOCUS, VIRTKEY, SHIFT 66 VK_F3, FCIDM_DESKBROWSER_SEARCH, VIRTKEY 67 VK_F5, FCIDM_DESKBROWSER_REFRESH, VIRTKEY 68END 69 70/* 71 * This include a set of Shell32 icons, 72 * bitmaps and avi files. Licence's can be 73 * found in the corresponding directorys 74 */ 75#include "icon_res.rc" 76#include "bitmap_res.rc" 77#include "avi_res.rc" 78#include "rgs_res.rc" 79 80#include <reactos/manifest_dll.rc> 81#include <reactos/manifest_hosted.rc> 82 831 TYPELIB "shell32_shldisp.tlb" 84 85/* 86 * Everything specific to any language goes 87 * in one of the specific files. 88 * Note that you can and may override resources 89 * which also have a neutral version. This is to 90 * get localized bitmaps for example. 91 */ 92#ifdef LANGUAGE_EN_GB 93 #include "lang/en-GB.rc" 94#endif 95#ifdef LANGUAGE_EN_US 96 #include "lang/en-US.rc" 97#endif 98 99/* UTF-8 */ 100#pragma code_page(65001) 101 102#ifdef LANGUAGE_BG_BG 103 #include "lang/bg-BG.rc" 104#endif 105#ifdef LANGUAGE_CA_ES 106 #include "lang/ca-ES.rc" 107#endif 108#ifdef LANGUAGE_CS_CZ 109 #include "lang/cs-CZ.rc" 110#endif 111#ifdef LANGUAGE_DA_DK 112 #include "lang/da-DK.rc" 113#endif 114#ifdef LANGUAGE_DE_DE 115 #include "lang/de-DE.rc" 116#endif 117#ifdef LANGUAGE_EL_GR 118 #include "lang/el-GR.rc" 119#endif 120#ifdef LANGUAGE_ES_ES 121 #include "lang/es-ES.rc" 122#endif 123#ifdef LANGUAGE_ET_EE 124 #include "lang/et-EE.rc" 125#endif 126#ifdef LANGUAGE_EU_ES 127 #include "lang/eu-ES.rc" 128#endif 129#ifdef LANGUAGE_FI_FI 130 #include "lang/fi-FI.rc" 131#endif 132#ifdef LANGUAGE_FR_FR 133 #include "lang/fr-FR.rc" 134#endif 135#ifdef LANGUAGE_HE_IL 136 #include "lang/he-IL.rc" 137#endif 138#ifdef LANGUAGE_HI_IN 139 #include "lang/hi-IN.rc" 140#endif 141#ifdef LANGUAGE_HU_HU 142 #include "lang/hu-HU.rc" 143#endif 144#ifdef LANGUAGE_ID_ID 145 #include "lang/id-ID.rc" 146#endif 147#ifdef LANGUAGE_IT_IT 148 #include "lang/it-IT.rc" 149#endif 150#ifdef LANGUAGE_JA_JP 151 #include "lang/ja-JP.rc" 152#endif 153#ifdef LANGUAGE_KO_KR 154 #include "lang/ko-KR.rc" 155#endif 156#ifdef LANGUAGE_NL_NL 157 #include "lang/nl-NL.rc" 158#endif 159#ifdef LANGUAGE_NB_NO 160 #include "lang/no-NO.rc" 161#endif 162#ifdef LANGUAGE_PL_PL 163 #include "lang/pl-PL.rc" 164#endif 165#ifdef LANGUAGE_PT_BR 166 #include "lang/pt-BR.rc" 167#endif 168#ifdef LANGUAGE_PT_PT 169 #include "lang/pt-PT.rc" 170#endif 171#ifdef LANGUAGE_RO_RO 172 #include "lang/ro-RO.rc" 173#endif 174#ifdef LANGUAGE_RU_RU 175 #include "lang/ru-RU.rc" 176#endif 177#ifdef LANGUAGE_SK_SK 178 #include "lang/sk-SK.rc" 179#endif 180#ifdef LANGUAGE_SL_SI 181 #include "lang/sl-SI.rc" 182#endif 183#ifdef LANGUAGE_SQ_AL 184 #include "lang/sq-AL.rc" 185#endif 186#ifdef LANGUAGE_SV_SE 187 #include "lang/sv-SE.rc" 188#endif 189#ifdef LANGUAGE_TR_TR 190 #include "lang/tr-TR.rc" 191#endif 192#ifdef LANGUAGE_UK_UA 193 #include "lang/uk-UA.rc" 194#endif 195#ifdef LANGUAGE_ZH_CN 196 #include "lang/zh-CN.rc" 197#endif 198#ifdef LANGUAGE_ZH_HK 199 #include "lang/zh-HK.rc" 200#endif 201#ifdef LANGUAGE_ZH_TW 202 #include "lang/zh-TW.rc" 203#endif 204