Author: dquintana Date: Wed Dec 17 00:46:30 2014 New Revision: 65697
URL: http://svn.reactos.org/svn/reactos?rev=65697&view=rev Log: [SEHLL32] * Implement handling of file associations marked as "NoOpen". Patch by Lee Schroeder, with a few tweaks. CORE-8855 #resolve #comment Commited in trunk r65697. Thanks.
Modified: trunk/reactos/boot/bootdata/hivecls.inf trunk/reactos/dll/win32/shell32/COpenWithMenu.cpp trunk/reactos/dll/win32/shell32/lang/bg-BG.rc trunk/reactos/dll/win32/shell32/lang/ca-ES.rc trunk/reactos/dll/win32/shell32/lang/cs-CZ.rc trunk/reactos/dll/win32/shell32/lang/da-DK.rc trunk/reactos/dll/win32/shell32/lang/de-DE.rc trunk/reactos/dll/win32/shell32/lang/el-GR.rc trunk/reactos/dll/win32/shell32/lang/en-GB.rc trunk/reactos/dll/win32/shell32/lang/en-US.rc trunk/reactos/dll/win32/shell32/lang/es-ES.rc trunk/reactos/dll/win32/shell32/lang/fi-FI.rc trunk/reactos/dll/win32/shell32/lang/fr-FR.rc trunk/reactos/dll/win32/shell32/lang/he-IL.rc trunk/reactos/dll/win32/shell32/lang/hu-HU.rc trunk/reactos/dll/win32/shell32/lang/it-IT.rc trunk/reactos/dll/win32/shell32/lang/ja-JP.rc trunk/reactos/dll/win32/shell32/lang/ko-KR.rc trunk/reactos/dll/win32/shell32/lang/nl-NL.rc trunk/reactos/dll/win32/shell32/lang/no-NO.rc trunk/reactos/dll/win32/shell32/lang/pl-PL.rc trunk/reactos/dll/win32/shell32/lang/pt-BR.rc trunk/reactos/dll/win32/shell32/lang/pt-PT.rc trunk/reactos/dll/win32/shell32/lang/ro-RO.rc trunk/reactos/dll/win32/shell32/lang/ru-RU.rc trunk/reactos/dll/win32/shell32/lang/sk-SK.rc trunk/reactos/dll/win32/shell32/lang/sl-SI.rc trunk/reactos/dll/win32/shell32/lang/sq-AL.rc trunk/reactos/dll/win32/shell32/lang/sv-SE.rc trunk/reactos/dll/win32/shell32/lang/tr-TR.rc trunk/reactos/dll/win32/shell32/lang/uk-UA.rc trunk/reactos/dll/win32/shell32/lang/zh-CN.rc trunk/reactos/dll/win32/shell32/lang/zh-TW.rc trunk/reactos/dll/win32/shell32/shresdef.h
Modified: trunk/reactos/boot/bootdata/hivecls.inf URL: http://svn.reactos.org/svn/reactos/trunk/reactos/boot/bootdata/hivecls.inf?r... ============================================================================== --- trunk/reactos/boot/bootdata/hivecls.inf [iso-8859-1] (original) +++ trunk/reactos/boot/bootdata/hivecls.inf [iso-8859-1] Wed Dec 17 00:46:30 2014 @@ -37,6 +37,7 @@ HKCR,".386","",0x00000000,"vxdfile" HKCR,".vxd","",0x00000000,"vxdfile" HKCR,"vxdfile","",0x00000000,"Virtual Device Driver" +HKCR,"vxdfile","NoOpen",0x00000000,"" HKCR,"vxdfile","FriendlyTypeName",0x00020000,"@%SystemRoot%\system32\shell32.dll,-157"
; Animated Cursors @@ -86,6 +87,7 @@ ; Dynamic Link Libraries HKCR,".dll","",0x00000000,"dllfile" HKCR,"dllfile","",0x00000000,"Dynamic Link Library" +HKCR,"dllfile","NoOpen",0x00000000,"" HKCR,"dllfile","FriendlyTypeName",0x00020000,"@%SystemRoot%\system32\shell32.dll,-163" HKCR,"dllfile\DefaultIcon","",0x00020000,"%SystemRoot%\system32\shell32.dll,-154"
@@ -260,6 +262,7 @@ ; System-Files HKCR,".sys","",0x00000000,"sysfile" HKCR,"sysfile","",0x00000000,"System File" +HKCR,"sysfile","NoOpen",0x00000000,"" HKCR,"regfile","FriendlyTypeName",0x00020000,"@%SystemRoot%\system32\shell32.dll,-171" HKCR,"sysfile\DefaultIcon","",0x00020000,"%SystemRoot%\system32\shell32.dll,-154"
Modified: trunk/reactos/dll/win32/shell32/COpenWithMenu.cpp URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/COpenWith... ============================================================================== --- trunk/reactos/dll/win32/shell32/COpenWithMenu.cpp [iso-8859-1] (original) +++ trunk/reactos/dll/win32/shell32/COpenWithMenu.cpp [iso-8859-1] Wed Dec 17 00:46:30 2014 @@ -57,6 +57,7 @@ static HICON GetIcon(SApp *pApp); static BOOL Execute(SApp *pApp, LPCWSTR pwszFilePath); static BOOL IsHidden(SApp *pApp); + inline BOOL IsNoOpen(VOID) { return m_bNoOpen; } BOOL LoadRecommended(LPCWSTR pwszFilePath); BOOL SetDefaultHandler(SApp *pApp, LPCWSTR pwszFilename);
@@ -775,12 +776,14 @@ COpenWithDialog(const OPENASINFO *pInfo, COpenWithList *pAppList); ~COpenWithDialog(); static INT_PTR CALLBACK DialogProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam); + BOOL IsNoOpen(HWND hwnd);
private: VOID Init(HWND hwnd); VOID AddApp(COpenWithList::SApp *pApp, BOOL bSelected); VOID Browse(); VOID Accept(); + static BOOL CALLBACK NoOpenDlgProc(HWND hwnd, UINT Message, WPARAM wParam, LPARAM lParam); COpenWithList::SApp *GetCurrentApp();
const OPENASINFO *m_pInfo; @@ -790,10 +793,11 @@ HTREEITEM m_hRecommend; HTREEITEM m_hOther; HIMAGELIST m_hImgList; + BOOL m_bNoOpen; };
COpenWithDialog::COpenWithDialog(const OPENASINFO *pInfo, COpenWithList *pAppList = NULL): - m_pInfo(pInfo), m_pAppList(pAppList), m_hImgList(NULL) + m_pInfo(pInfo), m_pAppList(pAppList), m_hImgList(NULL), m_bNoOpen(FALSE) { if (!m_pAppList) { @@ -810,6 +814,53 @@ delete m_pAppList; if (m_hImgList) ImageList_Destroy(m_hImgList); +} + +BOOL CALLBACK COpenWithDialog::NoOpenDlgProc(HWND hwnd, UINT Message, WPARAM wParam, LPARAM lParam) +{ + switch(Message) + { + case WM_INITDIALOG: + { + return TRUE; + } + case WM_CLOSE: + EndDialog(hwnd, IDNO); + break; + case WM_COMMAND: + switch(LOWORD(wParam)) + { + case IDYES: + EndDialog(hwnd, IDYES); + break; + case IDNO: + EndDialog(hwnd, IDNO); + break; + } + break; + default: + return FALSE; + } + return TRUE; +} + +BOOL COpenWithDialog::IsNoOpen(HWND hwnd) +{ + /* Only do the actual check if the file type has the 'NoOpen' flag. */ + if (m_bNoOpen) + { + int dReturnValue = DialogBox(shell32_hInstance, MAKEINTRESOURCE(IDD_NOOPEN), hwnd, NoOpenDlgProc); + + if (dReturnValue == IDNO) + return TRUE; + else if (dReturnValue == -1) + { + ERR("IsNoOpen failed to load the dialog box."); + return TRUE; + } + } + + return FALSE; }
VOID COpenWithDialog::AddApp(COpenWithList::SApp *pApp, BOOL bSelected) @@ -923,6 +974,10 @@ /* Load applications from registry */ m_pAppList->Load(); m_pAppList->LoadRecommended(m_pInfo->pcszFile); + + /* Determine if the type of file can be opened directly from the shell */ + if (m_pAppList->IsNoOpen() != FALSE) + m_bNoOpen = TRUE;
/* Init treeview */ m_hTreeView = GetDlgItem(hwnd, 14002); @@ -1395,6 +1450,9 @@ return E_FAIL; }
+ if (pDialog.IsNoOpen(hwndParent)) + return S_OK; + ShowWindow(hwnd, SW_SHOWNORMAL);
while (GetMessage(&msg, NULL, 0, 0) && IsWindow(hwnd))
Modified: trunk/reactos/dll/win32/shell32/lang/bg-BG.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/bg-B... ============================================================================== --- trunk/reactos/dll/win32/shell32/lang/bg-BG.rc [iso-8859-1] (original) +++ trunk/reactos/dll/win32/shell32/lang/bg-BG.rc [iso-8859-1] Wed Dec 17 00:46:30 2014 @@ -606,6 +606,20 @@ PUSHBUTTON "ÐÑказ", IDCANCEL, 167, 181, 50, 14 END
+IDD_NOOPEN DIALOGEX 0, 0, 240, 75 +STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU +CAPTION "Caution" +FONT 8, "MS Shell Dlg" +BEGIN + ICON IDI_SHELL_DOCUMENT, IDI_SHELL_DOCUMENT, 5, 5, 21, 20 + LTEXT "This file could either be used by the operating system or by\n\ +another application. Modifying this file might damage your\n\ +system or make it less functional.\n\n\ +Are you sure you want to open this file?", IDC_STATIC, 35, 5, 230, 60 + DEFPUSHBUTTON "Yes", IDYES, 125, 55, 50, 14 + PUSHBUTTON "No", IDNO, 180, 55, 50, 14 +END + STRINGTABLE BEGIN /* columns in the shellview */
Modified: trunk/reactos/dll/win32/shell32/lang/ca-ES.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/ca-E... ============================================================================== --- trunk/reactos/dll/win32/shell32/lang/ca-ES.rc [iso-8859-1] (original) +++ trunk/reactos/dll/win32/shell32/lang/ca-ES.rc [iso-8859-1] Wed Dec 17 00:46:30 2014 @@ -606,6 +606,20 @@ PUSHBUTTON "Cancel", IDCANCEL, 167, 181, 50, 14 END
+IDD_NOOPEN DIALOGEX 0, 0, 240, 75 +STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU +CAPTION "Caution" +FONT 8, "MS Shell Dlg" +BEGIN + ICON IDI_SHELL_DOCUMENT, IDI_SHELL_DOCUMENT, 5, 5, 21, 20 + LTEXT "This file could either be used by the operating system or by\n\ +another application. Modifying this file might damage your\n\ +system or make it less functional.\n\n\ +Are you sure you want to open this file?", IDC_STATIC, 35, 5, 230, 60 + DEFPUSHBUTTON "Yes", IDYES, 125, 55, 50, 14 + PUSHBUTTON "No", IDNO, 180, 55, 50, 14 +END + STRINGTABLE BEGIN /* columns in the shellview */
Modified: trunk/reactos/dll/win32/shell32/lang/cs-CZ.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/cs-C... ============================================================================== --- trunk/reactos/dll/win32/shell32/lang/cs-CZ.rc [iso-8859-1] (original) +++ trunk/reactos/dll/win32/shell32/lang/cs-CZ.rc [iso-8859-1] Wed Dec 17 00:46:30 2014 @@ -612,6 +612,20 @@ PUSHBUTTON "Storno", IDCANCEL, 167, 181, 50, 14 END
+IDD_NOOPEN DIALOGEX 0, 0, 240, 75 +STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU +CAPTION "Caution" +FONT 8, "MS Shell Dlg" +BEGIN + ICON IDI_SHELL_DOCUMENT, IDI_SHELL_DOCUMENT, 5, 5, 21, 20 + LTEXT "This file could either be used by the operating system or by\n\ +another application. Modifying this file might damage your\n\ +system or make it less functional.\n\n\ +Are you sure you want to open this file?", IDC_STATIC, 35, 5, 230, 60 + DEFPUSHBUTTON "Yes", IDYES, 125, 55, 50, 14 + PUSHBUTTON "No", IDNO, 180, 55, 50, 14 +END + STRINGTABLE BEGIN /* columns in the shellview */
Modified: trunk/reactos/dll/win32/shell32/lang/da-DK.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/da-D... ============================================================================== --- trunk/reactos/dll/win32/shell32/lang/da-DK.rc [iso-8859-1] (original) +++ trunk/reactos/dll/win32/shell32/lang/da-DK.rc [iso-8859-1] Wed Dec 17 00:46:30 2014 @@ -612,6 +612,20 @@ PUSHBUTTON "Cancel", IDCANCEL, 167, 181, 50, 14 END
+IDD_NOOPEN DIALOGEX 0, 0, 240, 75 +STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU +CAPTION "Caution" +FONT 8, "MS Shell Dlg" +BEGIN + ICON IDI_SHELL_DOCUMENT, IDI_SHELL_DOCUMENT, 5, 5, 21, 20 + LTEXT "This file could either be used by the operating system or by\n\ +another application. Modifying this file might damage your\n\ +system or make it less functional.\n\n\ +Are you sure you want to open this file?", IDC_STATIC, 35, 5, 230, 60 + DEFPUSHBUTTON "Yes", IDYES, 125, 55, 50, 14 + PUSHBUTTON "No", IDNO, 180, 55, 50, 14 +END + STRINGTABLE BEGIN /* columns in the shellview */
Modified: trunk/reactos/dll/win32/shell32/lang/de-DE.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/de-D... ============================================================================== --- trunk/reactos/dll/win32/shell32/lang/de-DE.rc [iso-8859-1] (original) +++ trunk/reactos/dll/win32/shell32/lang/de-DE.rc [iso-8859-1] Wed Dec 17 00:46:30 2014 @@ -623,6 +623,20 @@ PUSHBUTTON "Abbrechen", IDCANCEL, 167, 181, 50, 14 END
+IDD_NOOPEN DIALOGEX 0, 0, 240, 75 +STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU +CAPTION "Caution" +FONT 8, "MS Shell Dlg" +BEGIN + ICON IDI_SHELL_DOCUMENT, IDI_SHELL_DOCUMENT, 5, 5, 21, 20 + LTEXT "This file could either be used by the operating system or by\n\ +another application. Modifying this file might damage your\n\ +system or make it less functional.\n\n\ +Are you sure you want to open this file?", IDC_STATIC, 35, 5, 230, 60 + DEFPUSHBUTTON "Yes", IDYES, 125, 55, 50, 14 + PUSHBUTTON "No", IDNO, 180, 55, 50, 14 +END + STRINGTABLE BEGIN /* columns in the shellview */
Modified: trunk/reactos/dll/win32/shell32/lang/el-GR.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/el-G... ============================================================================== --- trunk/reactos/dll/win32/shell32/lang/el-GR.rc [iso-8859-1] (original) +++ trunk/reactos/dll/win32/shell32/lang/el-GR.rc [iso-8859-1] Wed Dec 17 00:46:30 2014 @@ -606,6 +606,20 @@ PUSHBUTTON "Cancel", IDCANCEL, 167, 181, 50, 14 END
+IDD_NOOPEN DIALOGEX 0, 0, 240, 75 +STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU +CAPTION "Caution" +FONT 8, "MS Shell Dlg" +BEGIN + ICON IDI_SHELL_DOCUMENT, IDI_SHELL_DOCUMENT, 5, 5, 21, 20 + LTEXT "This file could either be used by the operating system or by\n\ +another application. Modifying this file might damage your\n\ +system or make it less functional.\n\n\ +Are you sure you want to open this file?", IDC_STATIC, 35, 5, 230, 60 + DEFPUSHBUTTON "Yes", IDYES, 125, 55, 50, 14 + PUSHBUTTON "No", IDNO, 180, 55, 50, 14 +END + STRINGTABLE BEGIN /* columns in the shellview */
Modified: trunk/reactos/dll/win32/shell32/lang/en-GB.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/en-G... ============================================================================== --- trunk/reactos/dll/win32/shell32/lang/en-GB.rc [iso-8859-1] (original) +++ trunk/reactos/dll/win32/shell32/lang/en-GB.rc [iso-8859-1] Wed Dec 17 00:46:30 2014 @@ -606,6 +606,20 @@ PUSHBUTTON "Cancel", IDCANCEL, 167, 181, 50, 14 END
+IDD_NOOPEN DIALOGEX 0, 0, 240, 75 +STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU +CAPTION "Caution" +FONT 8, "MS Shell Dlg" +BEGIN + ICON IDI_SHELL_DOCUMENT, IDI_SHELL_DOCUMENT, 5, 5, 21, 20 + LTEXT "This file could either be used by the operating system or by\n\ +another application. Modifying this file might damage your\n\ +system or make it less functional.\n\n\ +Are you sure you want to open this file?", IDC_STATIC, 35, 5, 230, 60 + DEFPUSHBUTTON "Yes", IDYES, 125, 55, 50, 14 + PUSHBUTTON "No", IDNO, 180, 55, 50, 14 +END + STRINGTABLE BEGIN /* columns in the shellview */
Modified: trunk/reactos/dll/win32/shell32/lang/en-US.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/en-U... ============================================================================== --- trunk/reactos/dll/win32/shell32/lang/en-US.rc [iso-8859-1] (original) +++ trunk/reactos/dll/win32/shell32/lang/en-US.rc [iso-8859-1] Wed Dec 17 00:46:30 2014 @@ -623,6 +623,20 @@ PUSHBUTTON "Cancel", IDCANCEL, 167, 181, 50, 14 END
+IDD_NOOPEN DIALOGEX 0, 0, 240, 75 +STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU +CAPTION "Caution" +FONT 8, "MS Shell Dlg" +BEGIN + ICON IDI_SHELL_DOCUMENT, IDI_SHELL_DOCUMENT, 5, 5, 21, 20 + LTEXT "This file could either be used by the operating system or by\n\ +another application. Modifying this file might damage your\n\ +system or make it less functional.\n\n\ +Are you sure you want to open this file?", IDC_STATIC, 35, 5, 230, 60 + DEFPUSHBUTTON "Yes", IDYES, 125, 55, 50, 14 + PUSHBUTTON "No", IDNO, 180, 55, 50, 14 +END + STRINGTABLE BEGIN /* columns in the shellview */
Modified: trunk/reactos/dll/win32/shell32/lang/es-ES.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/es-E... ============================================================================== --- trunk/reactos/dll/win32/shell32/lang/es-ES.rc [iso-8859-1] (original) +++ trunk/reactos/dll/win32/shell32/lang/es-ES.rc [iso-8859-1] Wed Dec 17 00:46:30 2014 @@ -606,6 +606,20 @@ PUSHBUTTON "Cancelar", IDCANCEL, 167, 181, 50, 14 END
+IDD_NOOPEN DIALOGEX 0, 0, 240, 75 +STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU +CAPTION "Caution" +FONT 8, "MS Shell Dlg" +BEGIN + ICON IDI_SHELL_DOCUMENT, IDI_SHELL_DOCUMENT, 5, 5, 21, 20 + LTEXT "This file could either be used by the operating system or by\n\ +another application. Modifying this file might damage your\n\ +system or make it less functional.\n\n\ +Are you sure you want to open this file?", IDC_STATIC, 35, 5, 230, 60 + DEFPUSHBUTTON "Yes", IDYES, 125, 55, 50, 14 + PUSHBUTTON "No", IDNO, 180, 55, 50, 14 +END + STRINGTABLE BEGIN /* columns in the shellview */
Modified: trunk/reactos/dll/win32/shell32/lang/fi-FI.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/fi-F... ============================================================================== --- trunk/reactos/dll/win32/shell32/lang/fi-FI.rc [iso-8859-1] (original) +++ trunk/reactos/dll/win32/shell32/lang/fi-FI.rc [iso-8859-1] Wed Dec 17 00:46:30 2014 @@ -606,6 +606,20 @@ PUSHBUTTON "Cancel", IDCANCEL, 167, 181, 50, 14 END
+IDD_NOOPEN DIALOGEX 0, 0, 240, 75 +STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU +CAPTION "Caution" +FONT 8, "MS Shell Dlg" +BEGIN + ICON IDI_SHELL_DOCUMENT, IDI_SHELL_DOCUMENT, 5, 5, 21, 20 + LTEXT "This file could either be used by the operating system or by\n\ +another application. Modifying this file might damage your\n\ +system or make it less functional.\n\n\ +Are you sure you want to open this file?", IDC_STATIC, 35, 5, 230, 60 + DEFPUSHBUTTON "Yes", IDYES, 125, 55, 50, 14 + PUSHBUTTON "No", IDNO, 180, 55, 50, 14 +END + STRINGTABLE BEGIN /* columns in the shellview */
Modified: trunk/reactos/dll/win32/shell32/lang/fr-FR.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/fr-F... ============================================================================== --- trunk/reactos/dll/win32/shell32/lang/fr-FR.rc [iso-8859-1] (original) +++ trunk/reactos/dll/win32/shell32/lang/fr-FR.rc [iso-8859-1] Wed Dec 17 00:46:30 2014 @@ -606,6 +606,20 @@ PUSHBUTTON "Annuler", IDCANCEL, 167, 181, 50, 14 END
+IDD_NOOPEN DIALOGEX 0, 0, 240, 75 +STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU +CAPTION "Caution" +FONT 8, "MS Shell Dlg" +BEGIN + ICON IDI_SHELL_DOCUMENT, IDI_SHELL_DOCUMENT, 5, 5, 21, 20 + LTEXT "This file could either be used by the operating system or by\n\ +another application. Modifying this file might damage your\n\ +system or make it less functional.\n\n\ +Are you sure you want to open this file?", IDC_STATIC, 35, 5, 230, 60 + DEFPUSHBUTTON "Yes", IDYES, 125, 55, 50, 14 + PUSHBUTTON "No", IDNO, 180, 55, 50, 14 +END + STRINGTABLE BEGIN /* columns in the shellview */
Modified: trunk/reactos/dll/win32/shell32/lang/he-IL.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/he-I... ============================================================================== --- trunk/reactos/dll/win32/shell32/lang/he-IL.rc [iso-8859-1] (original) +++ trunk/reactos/dll/win32/shell32/lang/he-IL.rc [iso-8859-1] Wed Dec 17 00:46:30 2014 @@ -606,6 +606,20 @@ PUSHBUTTON "Cancel", IDCANCEL, 167, 181, 50, 14 END
+IDD_NOOPEN DIALOGEX 0, 0, 240, 75 +STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU +CAPTION "Caution" +FONT 8, "MS Shell Dlg" +BEGIN + ICON IDI_SHELL_DOCUMENT, IDI_SHELL_DOCUMENT, 5, 5, 21, 20 + LTEXT "This file could either be used by the operating system or by\n\ +another application. Modifying this file might damage your\n\ +system or make it less functional.\n\n\ +Are you sure you want to open this file?", IDC_STATIC, 35, 5, 230, 60 + DEFPUSHBUTTON "Yes", IDYES, 125, 55, 50, 14 + PUSHBUTTON "No", IDNO, 180, 55, 50, 14 +END + STRINGTABLE BEGIN /* columns in the shellview */
Modified: trunk/reactos/dll/win32/shell32/lang/hu-HU.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/hu-H... ============================================================================== --- trunk/reactos/dll/win32/shell32/lang/hu-HU.rc [iso-8859-1] (original) +++ trunk/reactos/dll/win32/shell32/lang/hu-HU.rc [iso-8859-1] Wed Dec 17 00:46:30 2014 @@ -606,6 +606,20 @@ PUSHBUTTON "Cancel", IDCANCEL, 167, 181, 50, 14 END
+IDD_NOOPEN DIALOGEX 0, 0, 240, 75 +STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU +CAPTION "Caution" +FONT 8, "MS Shell Dlg" +BEGIN + ICON IDI_SHELL_DOCUMENT, IDI_SHELL_DOCUMENT, 5, 5, 21, 20 + LTEXT "This file could either be used by the operating system or by\n\ +another application. Modifying this file might damage your\n\ +system or make it less functional.\n\n\ +Are you sure you want to open this file?", IDC_STATIC, 35, 5, 230, 60 + DEFPUSHBUTTON "Yes", IDYES, 125, 55, 50, 14 + PUSHBUTTON "No", IDNO, 180, 55, 50, 14 +END + STRINGTABLE BEGIN /* columns in the shellview */
Modified: trunk/reactos/dll/win32/shell32/lang/it-IT.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/it-I... ============================================================================== --- trunk/reactos/dll/win32/shell32/lang/it-IT.rc [iso-8859-1] (original) +++ trunk/reactos/dll/win32/shell32/lang/it-IT.rc [iso-8859-1] Wed Dec 17 00:46:30 2014 @@ -606,6 +606,20 @@ PUSHBUTTON "Annulla", IDCANCEL, 167, 181, 50, 14 END
+IDD_NOOPEN DIALOGEX 0, 0, 240, 75 +STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU +CAPTION "Caution" +FONT 8, "MS Shell Dlg" +BEGIN + ICON IDI_SHELL_DOCUMENT, IDI_SHELL_DOCUMENT, 5, 5, 21, 20 + LTEXT "This file could either be used by the operating system or by\n\ +another application. Modifying this file might damage your\n\ +system or make it less functional.\n\n\ +Are you sure you want to open this file?", IDC_STATIC, 35, 5, 230, 60 + DEFPUSHBUTTON "Yes", IDYES, 125, 55, 50, 14 + PUSHBUTTON "No", IDNO, 180, 55, 50, 14 +END + STRINGTABLE BEGIN /* columns in the shellview */
Modified: trunk/reactos/dll/win32/shell32/lang/ja-JP.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/ja-J... ============================================================================== --- trunk/reactos/dll/win32/shell32/lang/ja-JP.rc [iso-8859-1] (original) +++ trunk/reactos/dll/win32/shell32/lang/ja-JP.rc [iso-8859-1] Wed Dec 17 00:46:30 2014 @@ -606,6 +606,20 @@ PUSHBUTTON "ãã£ã³ã»ã«", IDCANCEL, 167, 181, 50, 14 END
+IDD_NOOPEN DIALOGEX 0, 0, 240, 75 +STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU +CAPTION "Caution" +FONT 9, "MS UI Gothic" +BEGIN + ICON IDI_SHELL_DOCUMENT, IDI_SHELL_DOCUMENT, 5, 5, 21, 20 + LTEXT "This file could either be used by the operating system or by\n\ +another application. Modifying this file might damage your\n\ +system or make it less functional.\n\n\ +Are you sure you want to open this file?", IDC_STATIC, 35, 5, 230, 60 + DEFPUSHBUTTON "Yes", IDYES, 125, 55, 50, 14 + PUSHBUTTON "No", IDNO, 180, 55, 50, 14 +END + STRINGTABLE BEGIN /* columns in the shellview */
Modified: trunk/reactos/dll/win32/shell32/lang/ko-KR.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/ko-K... ============================================================================== --- trunk/reactos/dll/win32/shell32/lang/ko-KR.rc [iso-8859-1] (original) +++ trunk/reactos/dll/win32/shell32/lang/ko-KR.rc [iso-8859-1] Wed Dec 17 00:46:30 2014 @@ -606,6 +606,20 @@ PUSHBUTTON "Cancel", IDCANCEL, 167, 181, 50, 14 END
+IDD_NOOPEN DIALOGEX 0, 0, 240, 75 +STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU +CAPTION "Caution" +FONT 8, "MS Shell Dlg" +BEGIN + ICON IDI_SHELL_DOCUMENT, IDI_SHELL_DOCUMENT, 5, 5, 21, 20 + LTEXT "This file could either be used by the operating system or by\n\ +another application. Modifying this file might damage your\n\ +system or make it less functional.\n\n\ +Are you sure you want to open this file?", IDC_STATIC, 35, 5, 230, 60 + DEFPUSHBUTTON "Yes", IDYES, 125, 55, 50, 14 + PUSHBUTTON "No", IDNO, 180, 55, 50, 14 +END + STRINGTABLE BEGIN /* columns in the shellview */
Modified: trunk/reactos/dll/win32/shell32/lang/nl-NL.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/nl-N... ============================================================================== --- trunk/reactos/dll/win32/shell32/lang/nl-NL.rc [iso-8859-1] (original) +++ trunk/reactos/dll/win32/shell32/lang/nl-NL.rc [iso-8859-1] Wed Dec 17 00:46:30 2014 @@ -606,6 +606,20 @@ PUSHBUTTON "Cancel", IDCANCEL, 167, 181, 50, 14 END
+IDD_NOOPEN DIALOGEX 0, 0, 240, 75 +STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU +CAPTION "Caution" +FONT 8, "MS Shell Dlg" +BEGIN + ICON IDI_SHELL_DOCUMENT, IDI_SHELL_DOCUMENT, 5, 5, 21, 20 + LTEXT "This file could either be used by the operating system or by\n\ +another application. Modifying this file might damage your\n\ +system or make it less functional.\n\n\ +Are you sure you want to open this file?", IDC_STATIC, 35, 5, 230, 60 + DEFPUSHBUTTON "Yes", IDYES, 125, 55, 50, 14 + PUSHBUTTON "No", IDNO, 180, 55, 50, 14 +END + STRINGTABLE BEGIN /* columns in the shellview */
Modified: trunk/reactos/dll/win32/shell32/lang/no-NO.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/no-N... ============================================================================== --- trunk/reactos/dll/win32/shell32/lang/no-NO.rc [iso-8859-1] (original) +++ trunk/reactos/dll/win32/shell32/lang/no-NO.rc [iso-8859-1] Wed Dec 17 00:46:30 2014 @@ -606,6 +606,20 @@ PUSHBUTTON "Avbryt", IDCANCEL, 167, 181, 50, 14 END
+IDD_NOOPEN DIALOGEX 0, 0, 240, 75 +STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU +CAPTION "Caution" +FONT 8, "MS Shell Dlg" +BEGIN + ICON IDI_SHELL_DOCUMENT, IDI_SHELL_DOCUMENT, 5, 5, 21, 20 + LTEXT "This file could either be used by the operating system or by\n\ +another application. Modifying this file might damage your\n\ +system or make it less functional.\n\n\ +Are you sure you want to open this file?", IDC_STATIC, 35, 5, 230, 60 + DEFPUSHBUTTON "Yes", IDYES, 125, 55, 50, 14 + PUSHBUTTON "No", IDNO, 180, 55, 50, 14 +END + STRINGTABLE BEGIN /* columns in the shellview */
Modified: trunk/reactos/dll/win32/shell32/lang/pl-PL.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/pl-P... ============================================================================== --- trunk/reactos/dll/win32/shell32/lang/pl-PL.rc [iso-8859-1] (original) +++ trunk/reactos/dll/win32/shell32/lang/pl-PL.rc [iso-8859-1] Wed Dec 17 00:46:30 2014 @@ -606,6 +606,20 @@ PUSHBUTTON "Anuluj", IDCANCEL, 167, 181, 50, 14 END
+IDD_NOOPEN DIALOGEX 0, 0, 240, 75 +STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU +CAPTION "Caution" +FONT 8, "MS Shell Dlg" +BEGIN + ICON IDI_SHELL_DOCUMENT, IDI_SHELL_DOCUMENT, 5, 5, 21, 20 + LTEXT "This file could either be used by the operating system or by\n\ +another application. Modifying this file might damage your\n\ +system or make it less functional.\n\n\ +Are you sure you want to open this file?", IDC_STATIC, 35, 5, 230, 60 + DEFPUSHBUTTON "Yes", IDYES, 125, 55, 50, 14 + PUSHBUTTON "No", IDNO, 180, 55, 50, 14 +END + STRINGTABLE BEGIN /* columns in the shellview */
Modified: trunk/reactos/dll/win32/shell32/lang/pt-BR.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/pt-B... ============================================================================== --- trunk/reactos/dll/win32/shell32/lang/pt-BR.rc [iso-8859-1] (original) +++ trunk/reactos/dll/win32/shell32/lang/pt-BR.rc [iso-8859-1] Wed Dec 17 00:46:30 2014 @@ -606,6 +606,20 @@ PUSHBUTTON "Cancelar", IDCANCEL, 167, 181, 50, 14 END
+IDD_NOOPEN DIALOGEX 0, 0, 240, 75 +STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU +CAPTION "Caution" +FONT 8, "MS Shell Dlg" +BEGIN + ICON IDI_SHELL_DOCUMENT, IDI_SHELL_DOCUMENT, 5, 5, 21, 20 + LTEXT "This file could either be used by the operating system or by\n\ +another application. Modifying this file might damage your\n\ +system or make it less functional.\n\n\ +Are you sure you want to open this file?", IDC_STATIC, 35, 5, 230, 60 + DEFPUSHBUTTON "Yes", IDYES, 125, 55, 50, 14 + PUSHBUTTON "No", IDNO, 180, 55, 50, 14 +END + STRINGTABLE BEGIN /* columns in the shellview */
Modified: trunk/reactos/dll/win32/shell32/lang/pt-PT.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/pt-P... ============================================================================== --- trunk/reactos/dll/win32/shell32/lang/pt-PT.rc [iso-8859-1] (original) +++ trunk/reactos/dll/win32/shell32/lang/pt-PT.rc [iso-8859-1] Wed Dec 17 00:46:30 2014 @@ -606,6 +606,20 @@ PUSHBUTTON "Cancelar", IDCANCEL, 167, 181, 50, 14 END
+IDD_NOOPEN DIALOGEX 0, 0, 240, 75 +STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU +CAPTION "Caution" +FONT 8, "MS Shell Dlg" +BEGIN + ICON IDI_SHELL_DOCUMENT, IDI_SHELL_DOCUMENT, 5, 5, 21, 20 + LTEXT "This file could either be used by the operating system or by\n\ +another application. Modifying this file might damage your\n\ +system or make it less functional.\n\n\ +Are you sure you want to open this file?", IDC_STATIC, 35, 5, 230, 60 + DEFPUSHBUTTON "Yes", IDYES, 125, 55, 50, 14 + PUSHBUTTON "No", IDNO, 180, 55, 50, 14 +END + STRINGTABLE BEGIN /* columns in the shellview */
Modified: trunk/reactos/dll/win32/shell32/lang/ro-RO.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/ro-R... ============================================================================== --- trunk/reactos/dll/win32/shell32/lang/ro-RO.rc [iso-8859-1] (original) +++ trunk/reactos/dll/win32/shell32/lang/ro-RO.rc [iso-8859-1] Wed Dec 17 00:46:30 2014 @@ -608,6 +608,20 @@ PUSHBUTTON "A&nuleazÄ", IDCANCEL, 167, 181, 50, 14 END
+IDD_NOOPEN DIALOGEX 0, 0, 240, 75 +STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU +CAPTION "Caution" +FONT 8, "MS Shell Dlg" +BEGIN + ICON IDI_SHELL_DOCUMENT, IDI_SHELL_DOCUMENT, 5, 5, 21, 20 + LTEXT "This file could either be used by the operating system or by\n\ +another application. Modifying this file might damage your\n\ +system or make it less functional.\n\n\ +Are you sure you want to open this file?", IDC_STATIC, 35, 5, 230, 60 + DEFPUSHBUTTON "Yes", IDYES, 125, 55, 50, 14 + PUSHBUTTON "No", IDNO, 180, 55, 50, 14 +END + STRINGTABLE BEGIN /* columns in the shellview */
Modified: trunk/reactos/dll/win32/shell32/lang/ru-RU.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/ru-R... ============================================================================== --- trunk/reactos/dll/win32/shell32/lang/ru-RU.rc [iso-8859-1] (original) +++ trunk/reactos/dll/win32/shell32/lang/ru-RU.rc [iso-8859-1] Wed Dec 17 00:46:30 2014 @@ -608,6 +608,20 @@ PUSHBUTTON "ÐÑмена",IDCANCEL, 167, 181, 50, 14 END
+IDD_NOOPEN DIALOGEX 0, 0, 240, 75 +STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU +CAPTION "Caution" +FONT 8, "MS Shell Dlg" +BEGIN + ICON IDI_SHELL_DOCUMENT, IDI_SHELL_DOCUMENT, 5, 5, 21, 20 + LTEXT "This file could either be used by the operating system or by\n\ +another application. Modifying this file might damage your\n\ +system or make it less functional.\n\n\ +Are you sure you want to open this file?", IDC_STATIC, 35, 5, 230, 60 + DEFPUSHBUTTON "Yes", IDYES, 125, 55, 50, 14 + PUSHBUTTON "No", IDNO, 180, 55, 50, 14 +END + STRINGTABLE BEGIN /* columns in the shellview */
Modified: trunk/reactos/dll/win32/shell32/lang/sk-SK.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/sk-S... ============================================================================== --- trunk/reactos/dll/win32/shell32/lang/sk-SK.rc [iso-8859-1] (original) +++ trunk/reactos/dll/win32/shell32/lang/sk-SK.rc [iso-8859-1] Wed Dec 17 00:46:30 2014 @@ -606,6 +606,20 @@ PUSHBUTTON "Zrušiť", IDCANCEL, 167, 181, 50, 14 END
+IDD_NOOPEN DIALOGEX 0, 0, 240, 75 +STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU +CAPTION "Caution" +FONT 8, "MS Shell Dlg" +BEGIN + ICON IDI_SHELL_DOCUMENT, IDI_SHELL_DOCUMENT, 5, 5, 21, 20 + LTEXT "This file could either be used by the operating system or by\n\ +another application. Modifying this file might damage your\n\ +system or make it less functional.\n\n\ +Are you sure you want to open this file?", IDC_STATIC, 35, 5, 230, 60 + DEFPUSHBUTTON "Yes", IDYES, 125, 55, 50, 14 + PUSHBUTTON "No", IDNO, 180, 55, 50, 14 +END + STRINGTABLE BEGIN /* columns in the shellview */
Modified: trunk/reactos/dll/win32/shell32/lang/sl-SI.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/sl-S... ============================================================================== --- trunk/reactos/dll/win32/shell32/lang/sl-SI.rc [iso-8859-1] (original) +++ trunk/reactos/dll/win32/shell32/lang/sl-SI.rc [iso-8859-1] Wed Dec 17 00:46:30 2014 @@ -606,6 +606,20 @@ PUSHBUTTON "Cancel", IDCANCEL, 167, 181, 50, 14 END
+IDD_NOOPEN DIALOGEX 0, 0, 240, 75 +STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU +CAPTION "Caution" +FONT 8, "MS Shell Dlg" +BEGIN + ICON IDI_SHELL_DOCUMENT, IDI_SHELL_DOCUMENT, 5, 5, 21, 20 + LTEXT "This file could either be used by the operating system or by\n\ +another application. Modifying this file might damage your\n\ +system or make it less functional.\n\n\ +Are you sure you want to open this file?", IDC_STATIC, 35, 5, 230, 60 + DEFPUSHBUTTON "Yes", IDYES, 125, 55, 50, 14 + PUSHBUTTON "No", IDNO, 180, 55, 50, 14 +END + STRINGTABLE BEGIN /* columns in the shellview */
Modified: trunk/reactos/dll/win32/shell32/lang/sq-AL.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/sq-A... ============================================================================== --- trunk/reactos/dll/win32/shell32/lang/sq-AL.rc [iso-8859-1] (original) +++ trunk/reactos/dll/win32/shell32/lang/sq-AL.rc [iso-8859-1] Wed Dec 17 00:46:30 2014 @@ -610,6 +610,20 @@ PUSHBUTTON "Anulo", IDCANCEL, 167, 181, 50, 14 END
+IDD_NOOPEN DIALOGEX 0, 0, 240, 75 +STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU +CAPTION "Caution" +FONT 8, "MS Shell Dlg" +BEGIN + ICON IDI_SHELL_DOCUMENT, IDI_SHELL_DOCUMENT, 5, 5, 21, 20 + LTEXT "This file could either be used by the operating system or by\n\ +another application. Modifying this file might damage your\n\ +system or make it less functional.\n\n\ +Are you sure you want to open this file?", IDC_STATIC, 35, 5, 230, 60 + DEFPUSHBUTTON "Yes", IDYES, 125, 55, 50, 14 + PUSHBUTTON "No", IDNO, 180, 55, 50, 14 +END + STRINGTABLE BEGIN /* columns in the shellview */
Modified: trunk/reactos/dll/win32/shell32/lang/sv-SE.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/sv-S... ============================================================================== --- trunk/reactos/dll/win32/shell32/lang/sv-SE.rc [iso-8859-1] (original) +++ trunk/reactos/dll/win32/shell32/lang/sv-SE.rc [iso-8859-1] Wed Dec 17 00:46:30 2014 @@ -606,6 +606,20 @@ PUSHBUTTON "Cancel", IDCANCEL, 167, 181, 50, 14 END
+IDD_NOOPEN DIALOGEX 0, 0, 240, 75 +STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU +CAPTION "Caution" +FONT 8, "MS Shell Dlg" +BEGIN + ICON IDI_SHELL_DOCUMENT, IDI_SHELL_DOCUMENT, 5, 5, 21, 20 + LTEXT "This file could either be used by the operating system or by\n\ +another application. Modifying this file might damage your\n\ +system or make it less functional.\n\n\ +Are you sure you want to open this file?", IDC_STATIC, 35, 5, 230, 60 + DEFPUSHBUTTON "Yes", IDYES, 125, 55, 50, 14 + PUSHBUTTON "No", IDNO, 180, 55, 50, 14 +END + STRINGTABLE BEGIN /* columns in the shellview */
Modified: trunk/reactos/dll/win32/shell32/lang/tr-TR.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/tr-T... ============================================================================== --- trunk/reactos/dll/win32/shell32/lang/tr-TR.rc [iso-8859-1] (original) +++ trunk/reactos/dll/win32/shell32/lang/tr-TR.rc [iso-8859-1] Wed Dec 17 00:46:30 2014 @@ -606,6 +606,20 @@ PUSHBUTTON "İptal", IDCANCEL, 167, 181, 50, 14 END
+IDD_NOOPEN DIALOGEX 0, 0, 240, 75 +STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU +CAPTION "Caution" +FONT 8, "MS Shell Dlg" +BEGIN + ICON IDI_SHELL_DOCUMENT, IDI_SHELL_DOCUMENT, 5, 5, 21, 20 + LTEXT "This file could either be used by the operating system or by\n\ +another application. Modifying this file might damage your\n\ +system or make it less functional.\n\n\ +Are you sure you want to open this file?", IDC_STATIC, 35, 5, 230, 60 + DEFPUSHBUTTON "Yes", IDYES, 125, 55, 50, 14 + PUSHBUTTON "No", IDNO, 180, 55, 50, 14 +END + STRINGTABLE BEGIN /* columns in the shellview */
Modified: trunk/reactos/dll/win32/shell32/lang/uk-UA.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/uk-U... ============================================================================== --- trunk/reactos/dll/win32/shell32/lang/uk-UA.rc [iso-8859-1] (original) +++ trunk/reactos/dll/win32/shell32/lang/uk-UA.rc [iso-8859-1] Wed Dec 17 00:46:30 2014 @@ -606,6 +606,20 @@ PUSHBUTTON "СкаÑÑваÑи", IDCANCEL, 167, 181, 50, 14 END
+IDD_NOOPEN DIALOGEX 0, 0, 240, 75 +STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU +CAPTION "Caution" +FONT 8, "MS Shell Dlg" +BEGIN + ICON IDI_SHELL_DOCUMENT, IDI_SHELL_DOCUMENT, 5, 5, 21, 20 + LTEXT "This file could either be used by the operating system or by\n\ +another application. Modifying this file might damage your\n\ +system or make it less functional.\n\n\ +Are you sure you want to open this file?", IDC_STATIC, 35, 5, 230, 60 + DEFPUSHBUTTON "Yes", IDYES, 125, 55, 50, 14 + PUSHBUTTON "No", IDNO, 180, 55, 50, 14 +END + STRINGTABLE BEGIN /* columns in the shellview */
Modified: trunk/reactos/dll/win32/shell32/lang/zh-CN.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/zh-C... ============================================================================== --- trunk/reactos/dll/win32/shell32/lang/zh-CN.rc [iso-8859-1] (original) +++ trunk/reactos/dll/win32/shell32/lang/zh-CN.rc [iso-8859-1] Wed Dec 17 00:46:30 2014 @@ -615,6 +615,20 @@ PUSHBUTTON "åæ¶", IDCANCEL, 167, 181, 50, 14 END
+IDD_NOOPEN DIALOGEX 0, 0, 240, 75 +STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU +CAPTION "Caution" +FONT 8, "MS Shell Dlg" +BEGIN + ICON IDI_SHELL_DOCUMENT, IDI_SHELL_DOCUMENT, 5, 5, 21, 20 + LTEXT "This file could either be used by the operating system or by\n\ +another application. Modifying this file might damage your\n\ +system or make it less functional.\n\n\ +Are you sure you want to open this file?", IDC_STATIC, 35, 5, 230, 60 + DEFPUSHBUTTON "Yes", IDYES, 125, 55, 50, 14 + PUSHBUTTON "No", IDNO, 180, 55, 50, 14 +END + STRINGTABLE BEGIN /* columns in the shellview */
Modified: trunk/reactos/dll/win32/shell32/lang/zh-TW.rc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/lang/zh-T... ============================================================================== --- trunk/reactos/dll/win32/shell32/lang/zh-TW.rc [iso-8859-1] (original) +++ trunk/reactos/dll/win32/shell32/lang/zh-TW.rc [iso-8859-1] Wed Dec 17 00:46:30 2014 @@ -614,6 +614,20 @@ PUSHBUTTON "Cancel", IDCANCEL, 167, 181, 50, 14 END
+IDD_NOOPEN DIALOGEX 0, 0, 240, 75 +STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU +CAPTION "Caution" +FONT 8, "MS Shell Dlg" +BEGIN + ICON IDI_SHELL_DOCUMENT, IDI_SHELL_DOCUMENT, 5, 5, 21, 20 + LTEXT "This file could either be used by the operating system or by\n\ +another application. Modifying this file might damage your\n\ +system or make it less functional.\n\n\ +Are you sure you want to open this file?", IDC_STATIC, 35, 5, 230, 60 + DEFPUSHBUTTON "Yes", IDYES, 125, 55, 50, 14 + PUSHBUTTON "No", IDNO, 180, 55, 50, 14 +END + STRINGTABLE BEGIN /* columns in the shellview */
Modified: trunk/reactos/dll/win32/shell32/shresdef.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/shresdef.... ============================================================================== --- trunk/reactos/dll/win32/shell32/shresdef.h [iso-8859-1] (original) +++ trunk/reactos/dll/win32/shell32/shresdef.h [iso-8859-1] Wed Dec 17 00:46:30 2014 @@ -288,16 +288,17 @@ #define IDD_OPEN_WITH 24 #define IDD_FORMAT_DRIVE 25 #define IDD_CHECK_DISK 26 +#define IDD_NOOPEN 27
/* Not used dialogs */ -#define IDD_FILE_COPY 27 -#define IDD_SHUTDOWN 28 -#define IDD_LOG_OFF 29 -#define IDD_DISCONNECT 30 -#define IDD_CONFIRM_FILE_REPLACE 31 -#define IDD_AUTOPLAY1 32 -#define IDD_MIXED_CONTENT1 33 -#define IDD_MIXED_CONTENT2 34 +#define IDD_FILE_COPY 28 +#define IDD_SHUTDOWN 29 +#define IDD_LOG_OFF 30 +#define IDD_DISCONNECT 31 +#define IDD_CONFIRM_FILE_REPLACE 32 +#define IDD_AUTOPLAY1 33 +#define IDD_MIXED_CONTENT1 34 +#define IDD_MIXED_CONTENT2 35
/* Icons */ #define IDI_SHELL_DOCUMENT 1