[browseui, shell32, explorer_new, include]
- Convert browseui to C++/ATL. As part of this, classes in browseui and now registered with .rgs files.
- Add AddressBand, AddressEditBox, BandProxy, BaseBar, BaseBarSite, BrandBand, InternetToolbar, ShellBrowser, ToolsBand, and TravelLog.
- Add stub implementations of commonbrowser, globalfoldersettings, and regtreeoptions.
- Clean up some msvc compile problems in a few files.
- Reorganize some headers to make them better match the Platform SDK.
- Move InlineIsEqualGUID to guiddef.h.
- Create new header files shlguid_undoc.h, shlobj_undoc.h, and shlwapi_undoc.h to hold undocumented types, functions, and GUIDs.
- Move some undocumented definitions declared in explorer_new/todo.h and undoc.h to new headers.
- Rename a few interfaces in explorer_new to the correct name
- Add definition of RBSTR_CHANGERECT to commctrl.h
- IDeskBarClient inherits from IOleWindow, not IUnknown
- HMONITOR was declared in both dxsdk/axextend.idl and wine/wined3d.idl, but not in wtypes.idl where it belongs
- Added Init and Term to CComModule
- Thanks to encoded for solving the browseui linking problem!
svn path=/trunk/; revision=43872
2009-10-31 14:25:45 +00:00
|
|
|
/*
|
|
|
|
* Top level resource file for browseui stuff
|
|
|
|
*
|
|
|
|
* Copyright 2009 Andrew Hill
|
|
|
|
*
|
|
|
|
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
2013-01-24 23:00:42 +00:00
|
|
|
#define WIN32_NO_STATUS
|
|
|
|
#define _INC_WINDOWS
|
|
|
|
#define COM_NO_WINDOWS_H
|
|
|
|
#include <shlobj.h>
|
|
|
|
|
[browseui, shell32, explorer_new, include]
- Convert browseui to C++/ATL. As part of this, classes in browseui and now registered with .rgs files.
- Add AddressBand, AddressEditBox, BandProxy, BaseBar, BaseBarSite, BrandBand, InternetToolbar, ShellBrowser, ToolsBand, and TravelLog.
- Add stub implementations of commonbrowser, globalfoldersettings, and regtreeoptions.
- Clean up some msvc compile problems in a few files.
- Reorganize some headers to make them better match the Platform SDK.
- Move InlineIsEqualGUID to guiddef.h.
- Create new header files shlguid_undoc.h, shlobj_undoc.h, and shlwapi_undoc.h to hold undocumented types, functions, and GUIDs.
- Move some undocumented definitions declared in explorer_new/todo.h and undoc.h to new headers.
- Rename a few interfaces in explorer_new to the correct name
- Add definition of RBSTR_CHANGERECT to commctrl.h
- IDeskBarClient inherits from IOleWindow, not IUnknown
- HMONITOR was declared in both dxsdk/axextend.idl and wine/wined3d.idl, but not in wtypes.idl where it belongs
- Added Init and Term to CComModule
- Thanks to encoded for solving the browseui linking problem!
svn path=/trunk/; revision=43872
2009-10-31 14:25:45 +00:00
|
|
|
#include "resource.h"
|
|
|
|
|
|
|
|
#include "version.rc"
|
|
|
|
|
|
|
|
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
|
|
|
|
2013-11-28 22:18:05 +00:00
|
|
|
/* REGISTRY */
|
|
|
|
IDR_ADDRESSBAND REGISTRY "res/addressband.rgs"
|
|
|
|
IDR_ADDRESSEDITBOX REGISTRY "res/addresseditbox.rgs"
|
|
|
|
IDR_ACLMULTI REGISTRY "res/autocompletecontainer.rgs"
|
|
|
|
IDR_BANDPROXY REGISTRY "res/bandproxy.rgs"
|
|
|
|
IDR_BANDSITE REGISTRY "res/rebarbandsite.rgs"
|
|
|
|
IDR_BANDSITEMENU REGISTRY "res/bandsitemenu.rgs"
|
|
|
|
IDR_BRANDBAND REGISTRY "res/brandband.rgs"
|
|
|
|
IDR_COMMONBROWSER REGISTRY "res/commonbrowser.rgs"
|
|
|
|
IDR_GLOBALFOLDERSETTINGS REGISTRY "res/globalfoldersettings.rgs"
|
|
|
|
IDR_INTERNETTOOLBAR REGISTRY "res/internettoolbar.rgs"
|
|
|
|
IDR_REGTREEOPTIONS REGISTRY "res/regtreeoptions.rgs"
|
2014-12-03 16:11:46 +00:00
|
|
|
IDR_EXPLORERBAND REGISTRY "res/explorerband.rgs"
|
2015-02-09 22:29:23 +00:00
|
|
|
IDR_PROGRESSDIALOG REGISTRY "res/progressdialog.rgs"
|
2015-02-26 18:44:34 +00:00
|
|
|
IDR_AUTOCOMPLETE REGISTRY "res/autocomplete.rgs"
|
2015-12-09 19:36:35 +00:00
|
|
|
IDR_ACLISTISF REGISTRY "res/shellautocomplete.rgs"
|
2017-10-16 20:56:34 +00:00
|
|
|
IDR_ISFBAND REGISTRY "res/isfband.rgs"
|
2017-12-17 14:29:30 +00:00
|
|
|
IDR_ACLCUSTOMMRU REGISTRY "res/custommru.rgs"
|
[browseui, shell32, explorer_new, include]
- Convert browseui to C++/ATL. As part of this, classes in browseui and now registered with .rgs files.
- Add AddressBand, AddressEditBox, BandProxy, BaseBar, BaseBarSite, BrandBand, InternetToolbar, ShellBrowser, ToolsBand, and TravelLog.
- Add stub implementations of commonbrowser, globalfoldersettings, and regtreeoptions.
- Clean up some msvc compile problems in a few files.
- Reorganize some headers to make them better match the Platform SDK.
- Move InlineIsEqualGUID to guiddef.h.
- Create new header files shlguid_undoc.h, shlobj_undoc.h, and shlwapi_undoc.h to hold undocumented types, functions, and GUIDs.
- Move some undocumented definitions declared in explorer_new/todo.h and undoc.h to new headers.
- Rename a few interfaces in explorer_new to the correct name
- Add definition of RBSTR_CHANGERECT to commctrl.h
- IDeskBarClient inherits from IOleWindow, not IUnknown
- HMONITOR was declared in both dxsdk/axextend.idl and wine/wined3d.idl, but not in wtypes.idl where it belongs
- Added Init and Term to CComModule
- Thanks to encoded for solving the browseui linking problem!
svn path=/trunk/; revision=43872
2009-10-31 14:25:45 +00:00
|
|
|
|
2015-04-19 01:38:13 +00:00
|
|
|
#include <reactos/manifest_dll.rc>
|
|
|
|
|
[browseui, shell32, explorer_new, include]
- Convert browseui to C++/ATL. As part of this, classes in browseui and now registered with .rgs files.
- Add AddressBand, AddressEditBox, BandProxy, BaseBar, BaseBarSite, BrandBand, InternetToolbar, ShellBrowser, ToolsBand, and TravelLog.
- Add stub implementations of commonbrowser, globalfoldersettings, and regtreeoptions.
- Clean up some msvc compile problems in a few files.
- Reorganize some headers to make them better match the Platform SDK.
- Move InlineIsEqualGUID to guiddef.h.
- Create new header files shlguid_undoc.h, shlobj_undoc.h, and shlwapi_undoc.h to hold undocumented types, functions, and GUIDs.
- Move some undocumented definitions declared in explorer_new/todo.h and undoc.h to new headers.
- Rename a few interfaces in explorer_new to the correct name
- Add definition of RBSTR_CHANGERECT to commctrl.h
- IDeskBarClient inherits from IOleWindow, not IUnknown
- HMONITOR was declared in both dxsdk/axextend.idl and wine/wined3d.idl, but not in wtypes.idl where it belongs
- Added Init and Term to CComModule
- Thanks to encoded for solving the browseui linking problem!
svn path=/trunk/; revision=43872
2009-10-31 14:25:45 +00:00
|
|
|
/*
|
|
|
|
* Everything specific to any language goes
|
|
|
|
* in one of the specific files.
|
|
|
|
*/
|
2010-12-26 13:28:51 +00:00
|
|
|
|
|
|
|
/* UTF-8 */
|
2014-05-24 18:26:15 +00:00
|
|
|
#pragma code_page(65001)
|
|
|
|
|
2012-02-27 22:46:20 +00:00
|
|
|
#ifdef LANGUAGE_BG_BG
|
|
|
|
#include "lang/bg-BG.rc"
|
|
|
|
#endif
|
2014-03-13 15:04:47 +00:00
|
|
|
#ifdef LANGUAGE_DE_DE
|
|
|
|
#include "lang/de-DE.rc"
|
|
|
|
#endif
|
2012-03-03 19:29:06 +00:00
|
|
|
#ifdef LANGUAGE_EN_US
|
|
|
|
#include "lang/en-US.rc"
|
|
|
|
#endif
|
|
|
|
#ifdef LANGUAGE_ES_ES
|
|
|
|
#include "lang/es-ES.rc"
|
|
|
|
#endif
|
[TRANSLATION] Various translations to Estonian (#329)
Estonian translations for shell + explorer, cpl files (access, appwiz, desk, timedate), devmgr, browseui, comctl32, aclui, avifil32, comdlg32 and credui.
2018-01-29 16:03:27 +00:00
|
|
|
#ifdef LANGUAGE_ET_EE
|
|
|
|
#include "lang/et-EE.rc"
|
|
|
|
#endif
|
2015-12-17 02:02:16 +00:00
|
|
|
#ifdef LANGUAGE_FR_FR
|
|
|
|
#include "lang/fr-FR.rc"
|
|
|
|
#endif
|
2013-01-22 22:46:45 +00:00
|
|
|
#ifdef LANGUAGE_HE_IL
|
|
|
|
#include "lang/he-IL.rc"
|
|
|
|
#endif
|
2012-04-01 10:55:23 +00:00
|
|
|
#ifdef LANGUAGE_IT_IT
|
|
|
|
#include "lang/it-IT.rc"
|
|
|
|
#endif
|
[TRANSLATIONS]
Japanese translations for the following libraries: browseui, credui, ieframe,
iernonce, msports, msvfw32, mycomput, oleacc, samsrv, serialui, shimgvw, and
wldap32.
Patch by Katayama Hirofumi MZ. Thanks!
CORE-11884 #resolve #comment Committed in revision r72452.
svn path=/trunk/; revision=72452
2016-08-25 03:44:29 +00:00
|
|
|
#ifdef LANGUAGE_JA_JP
|
|
|
|
#include "lang/ja-JP.rc"
|
|
|
|
#endif
|
2012-02-27 22:46:20 +00:00
|
|
|
#ifdef LANGUAGE_PL_PL
|
|
|
|
#include "lang/pl-PL.rc"
|
|
|
|
#endif
|
2016-03-13 16:55:23 +00:00
|
|
|
#ifdef LANGUAGE_PT_BR
|
|
|
|
#include "lang/pt-BR.rc"
|
|
|
|
#endif
|
2012-02-27 22:46:20 +00:00
|
|
|
#ifdef LANGUAGE_RO_RO
|
|
|
|
#include "lang/ro-RO.rc"
|
|
|
|
#endif
|
2014-05-19 18:14:30 +00:00
|
|
|
#ifdef LANGUAGE_RU_RU
|
|
|
|
#include "lang/ru-RU.rc"
|
|
|
|
#endif
|
2012-03-25 14:26:35 +00:00
|
|
|
#ifdef LANGUAGE_TR_TR
|
|
|
|
#include "lang/tr-TR.rc"
|
|
|
|
#endif
|
2014-02-08 15:13:17 +00:00
|
|
|
#ifdef LANGUAGE_SQ_AL
|
|
|
|
#include "lang/sq-AL.rc"
|
|
|
|
#endif
|
2012-02-27 22:46:20 +00:00
|
|
|
#ifdef LANGUAGE_UK_UA
|
|
|
|
#include "lang/uk-UA.rc"
|
|
|
|
#endif
|
2015-06-01 17:13:53 +00:00
|
|
|
#ifdef LANGUAGE_ZH_CN
|
|
|
|
#include "lang/zh-CN.rc"
|
|
|
|
#endif
|
2015-12-17 11:10:00 +00:00
|
|
|
#ifdef LANGUAGE_ZH_TW
|
|
|
|
#include "lang/zh-TW.rc"
|
2016-05-31 14:52:18 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Include band button bitmaps */
|
|
|
|
IDB_BANDBUTTONS BITMAP "res/barbtn.bmp"
|
2017-08-26 14:38:32 +00:00
|
|
|
IDB_SHELL_EXPLORER_LG BITMAP "res/214.bmp"
|
|
|
|
IDB_SHELL_EXPLORER_LG_HOT BITMAP "res/215.bmp"
|
|
|
|
IDB_SHELL_EXPLORER_SM BITMAP "res/216.bmp"
|
|
|
|
IDB_SHELL_EXPLORER_SM_HOT BITMAP "res/217.bmp"
|
|
|
|
IDB_SHELL_GO BITMAP "res/230.bmp"
|
|
|
|
IDB_SHELL_GO_HOT BITMAP "res/231.bmp"
|
|
|
|
IDB_SHELL_BRANDBAND_SM_HI BITMAP "res/240.bmp"
|
|
|
|
/*IDB_SHELL_BRANDBAND_MD_HI BITMAP "res/241.bmp"
|
|
|
|
IDB_SHELL_BRANDBAND_LG_HI BITMAP "res/242.bmp"
|
|
|
|
IDB_SHELL_BRANDBAND_SM_LO BITMAP "res/245.bmp"
|
|
|
|
IDB_SHELL_BRANDBAND_MD_LO BITMAP "res/246.bmp"
|
|
|
|
IDB_SHELL_BRANDBAND_LG_LO BITMAP "res/247.bmp"*/
|