mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
33a65d45aa
CORE-8737
483 lines
15 KiB
C
483 lines
15 KiB
C
/*
|
|
* PROJECT: ReactOS Software Control Panel
|
|
* FILE: dll/cpl/appwiz/createlink.c
|
|
* PURPOSE: ReactOS Software Control Panel
|
|
* PROGRAMMER: Gero Kuehn (reactos.filter@gkware.com)
|
|
* Dmitry Chapyshev (lentind@yandex.ru)
|
|
* Johannes Anderwald
|
|
* Katayama Hirofumi MZ (katayama.hirofumi.mz@gmail.com)
|
|
* UPDATE HISTORY:
|
|
* 06-17-2004 Created
|
|
*/
|
|
|
|
#include "appwiz.h"
|
|
#include <strsafe.h>
|
|
|
|
BOOL
|
|
IsShortcut(HKEY hKey)
|
|
{
|
|
WCHAR Value[10];
|
|
DWORD Size;
|
|
DWORD Type;
|
|
|
|
Size = sizeof(Value);
|
|
if (RegQueryValueExW(hKey, L"IsShortcut", NULL, &Type, (LPBYTE)Value, &Size) != ERROR_SUCCESS)
|
|
return FALSE;
|
|
|
|
if (Type != REG_SZ)
|
|
return FALSE;
|
|
|
|
return (wcsicmp(Value, L"yes") == 0);
|
|
}
|
|
|
|
BOOL
|
|
IsExtensionAShortcut(LPWSTR lpExtension)
|
|
{
|
|
HKEY hKey;
|
|
WCHAR Buffer[100];
|
|
DWORD Size;
|
|
DWORD Type;
|
|
|
|
if (RegOpenKeyExW(HKEY_CLASSES_ROOT, lpExtension, 0, KEY_READ, &hKey) != ERROR_SUCCESS)
|
|
return FALSE;
|
|
|
|
if (IsShortcut(hKey))
|
|
{
|
|
RegCloseKey(hKey);
|
|
return TRUE;
|
|
}
|
|
|
|
Size = sizeof(Buffer);
|
|
if (RegQueryValueEx(hKey, NULL, NULL, &Type, (LPBYTE)Buffer, &Size) != ERROR_SUCCESS || Type != REG_SZ)
|
|
{
|
|
RegCloseKey(hKey);
|
|
return FALSE;
|
|
}
|
|
|
|
RegCloseKey(hKey);
|
|
|
|
if (RegOpenKeyExW(HKEY_CLASSES_ROOT, Buffer, 0, KEY_READ, &hKey) != ERROR_SUCCESS)
|
|
return FALSE;
|
|
|
|
if (IsShortcut(hKey))
|
|
{
|
|
RegCloseKey(hKey);
|
|
return TRUE;
|
|
}
|
|
|
|
RegCloseKey(hKey);
|
|
return FALSE;
|
|
}
|
|
|
|
BOOL
|
|
CreateShortcut(PCREATE_LINK_CONTEXT pContext)
|
|
{
|
|
IShellLinkW *pShellLink, *pSourceShellLink;
|
|
IPersistFile *pPersistFile;
|
|
HRESULT hr;
|
|
WCHAR Path[MAX_PATH];
|
|
LPWSTR lpExtension;
|
|
|
|
/* get the extension */
|
|
lpExtension = PathFindExtensionW(pContext->szTarget);
|
|
|
|
if (IsExtensionAShortcut(lpExtension))
|
|
{
|
|
hr = CoCreateInstance(&CLSID_ShellLink, NULL, CLSCTX_ALL, &IID_IShellLinkW, (void**)&pSourceShellLink);
|
|
|
|
if (FAILED(hr))
|
|
return FALSE;
|
|
|
|
hr = IUnknown_QueryInterface(pSourceShellLink, &IID_IPersistFile, (void**)&pPersistFile);
|
|
if (FAILED(hr))
|
|
{
|
|
IUnknown_Release(pSourceShellLink);
|
|
return FALSE;
|
|
}
|
|
|
|
hr = pPersistFile->lpVtbl->Load(pPersistFile, (LPCOLESTR)pContext->szTarget, STGM_READ);
|
|
IUnknown_Release(pPersistFile);
|
|
|
|
if (FAILED(hr))
|
|
{
|
|
IUnknown_Release(pSourceShellLink);
|
|
return FALSE;
|
|
}
|
|
|
|
hr = IShellLinkW_GetPath(pSourceShellLink, Path, _countof(Path), NULL, 0);
|
|
IUnknown_Release(pSourceShellLink);
|
|
|
|
if (FAILED(hr))
|
|
{
|
|
return FALSE;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
StringCchCopyW(Path, _countof(Path), pContext->szTarget);
|
|
}
|
|
|
|
hr = CoCreateInstance(&CLSID_ShellLink, NULL, CLSCTX_ALL,
|
|
&IID_IShellLinkW, (void**)&pShellLink);
|
|
|
|
if (hr != S_OK)
|
|
return FALSE;
|
|
|
|
pShellLink->lpVtbl->SetPath(pShellLink, Path);
|
|
pShellLink->lpVtbl->SetDescription(pShellLink, pContext->szDescription);
|
|
pShellLink->lpVtbl->SetWorkingDirectory(pShellLink, pContext->szWorkingDirectory);
|
|
|
|
hr = IUnknown_QueryInterface(pShellLink, &IID_IPersistFile, (void**)&pPersistFile);
|
|
if (hr != S_OK)
|
|
{
|
|
IUnknown_Release(pShellLink);
|
|
return FALSE;
|
|
}
|
|
|
|
hr = pPersistFile->lpVtbl->Save(pPersistFile, pContext->szLinkName, TRUE);
|
|
IUnknown_Release(pPersistFile);
|
|
IUnknown_Release(pShellLink);
|
|
return (hr == S_OK);
|
|
}
|
|
|
|
BOOL
|
|
CreateInternetShortcut(PCREATE_LINK_CONTEXT pContext)
|
|
{
|
|
IUniformResourceLocatorW *pURL = NULL;
|
|
IPersistFile *pPersistFile = NULL;
|
|
HRESULT hr;
|
|
WCHAR szPath[MAX_PATH];
|
|
GetFullPathNameW(pContext->szLinkName, _countof(szPath), szPath, NULL);
|
|
|
|
hr = CoCreateInstance(&CLSID_InternetShortcut, NULL, CLSCTX_ALL,
|
|
&IID_IUniformResourceLocatorW, (void **)&pURL);
|
|
if (FAILED(hr))
|
|
return FALSE;
|
|
|
|
hr = IUnknown_QueryInterface(pURL, &IID_IPersistFile, (void **)&pPersistFile);
|
|
if (FAILED(hr))
|
|
{
|
|
IUnknown_Release(pURL);
|
|
return FALSE;
|
|
}
|
|
|
|
pURL->lpVtbl->SetURL(pURL, pContext->szTarget, 0);
|
|
|
|
hr = pPersistFile->lpVtbl->Save(pPersistFile, szPath, TRUE);
|
|
|
|
IUnknown_Release(pPersistFile);
|
|
IUnknown_Release(pURL);
|
|
|
|
return SUCCEEDED(hr);
|
|
}
|
|
|
|
BOOL IsInternetLocation(LPCWSTR pszLocation)
|
|
{
|
|
return (PathIsURLW(pszLocation) || wcsstr(pszLocation, L"www.") == pszLocation);
|
|
}
|
|
|
|
INT_PTR
|
|
CALLBACK
|
|
WelcomeDlgProc(HWND hwndDlg,
|
|
UINT uMsg,
|
|
WPARAM wParam,
|
|
LPARAM lParam)
|
|
{
|
|
LPPROPSHEETPAGEW ppsp;
|
|
PCREATE_LINK_CONTEXT pContext;
|
|
LPPSHNOTIFY lppsn;
|
|
WCHAR szPath[MAX_PATH];
|
|
WCHAR szDesc[100];
|
|
BROWSEINFOW brws;
|
|
LPITEMIDLIST pidllist;
|
|
|
|
switch(uMsg)
|
|
{
|
|
case WM_INITDIALOG:
|
|
ppsp = (LPPROPSHEETPAGEW)lParam;
|
|
pContext = (PCREATE_LINK_CONTEXT) ppsp->lParam;
|
|
SetWindowLongPtr(hwndDlg, DWLP_USER, (LONG_PTR)pContext);
|
|
PropSheet_SetWizButtons(GetParent(hwndDlg), 0);
|
|
break;
|
|
case WM_COMMAND:
|
|
switch(HIWORD(wParam))
|
|
{
|
|
case EN_CHANGE:
|
|
if (SendDlgItemMessage(hwndDlg, IDC_SHORTCUT_LOCATION, WM_GETTEXTLENGTH, 0, 0))
|
|
{
|
|
PropSheet_SetWizButtons(GetParent(hwndDlg), PSWIZB_NEXT);
|
|
}
|
|
else
|
|
{
|
|
PropSheet_SetWizButtons(GetParent(hwndDlg), 0);
|
|
}
|
|
break;
|
|
}
|
|
switch(LOWORD(wParam))
|
|
{
|
|
case IDC_SHORTCUT_BROWSE:
|
|
ZeroMemory(&brws, sizeof(brws));
|
|
brws.hwndOwner = hwndDlg;
|
|
brws.pidlRoot = NULL;
|
|
brws.pszDisplayName = szPath;
|
|
brws.ulFlags = BIF_BROWSEINCLUDEFILES;
|
|
brws.lpfn = NULL;
|
|
pidllist = SHBrowseForFolderW(&brws);
|
|
if (!pidllist)
|
|
break;
|
|
|
|
if (SHGetPathFromIDListW(pidllist, szPath))
|
|
SetDlgItemTextW(hwndDlg, IDC_SHORTCUT_LOCATION, szPath);
|
|
|
|
/* Free memory, if possible */
|
|
CoTaskMemFree(pidllist);
|
|
break;
|
|
}
|
|
break;
|
|
case WM_NOTIFY:
|
|
lppsn = (LPPSHNOTIFY) lParam;
|
|
if (lppsn->hdr.code == PSN_WIZNEXT)
|
|
{
|
|
LPWSTR pch;
|
|
pContext = (PCREATE_LINK_CONTEXT) GetWindowLongPtr(hwndDlg, DWLP_USER);
|
|
GetDlgItemTextW(hwndDlg, IDC_SHORTCUT_LOCATION, pContext->szTarget, _countof(pContext->szTarget));
|
|
StrTrimW(pContext->szTarget, L" \t");
|
|
|
|
if (IsInternetLocation(pContext->szTarget))
|
|
{
|
|
/* internet */
|
|
WCHAR szName[128];
|
|
LoadStringW(hApplet, IDS_NEW_INTERNET_SHORTCUT, szName, _countof(szName));
|
|
StringCchCopyW(pContext->szDescription, _countof(pContext->szDescription), szName);
|
|
|
|
pContext->szWorkingDirectory[0] = 0;
|
|
}
|
|
else if (GetFileAttributesW(pContext->szTarget) != INVALID_FILE_ATTRIBUTES)
|
|
{
|
|
/* file */
|
|
SendDlgItemMessage(hwndDlg, IDC_SHORTCUT_LOCATION, EM_SETSEL, 0, -1);
|
|
SetFocus(GetDlgItem(hwndDlg, IDC_SHORTCUT_LOCATION));
|
|
SetWindowLongPtr(hwndDlg, DWLP_MSGRESULT, PSNRET_INVALID_NOCHANGEPAGE);
|
|
|
|
/* set working directory */
|
|
StringCchCopyW(pContext->szWorkingDirectory, _countof(pContext->szWorkingDirectory),
|
|
pContext->szTarget);
|
|
PathRemoveBackslashW(pContext->szWorkingDirectory);
|
|
pch = PathFindFileNameW(pContext->szWorkingDirectory);
|
|
if (pch && *pch)
|
|
*pch = 0;
|
|
PathRemoveBackslashW(pContext->szWorkingDirectory);
|
|
}
|
|
else
|
|
{
|
|
/* not found */
|
|
WCHAR szError[MAX_PATH + 100];
|
|
LoadStringW(hApplet, IDS_CREATE_SHORTCUT, szDesc, _countof(szDesc));
|
|
LoadStringW(hApplet, IDS_ERROR_NOT_FOUND, szPath, _countof(szPath));
|
|
StringCchPrintfW(szError, _countof(szError), szPath, pContext->szTarget);
|
|
MessageBoxW(hwndDlg, szError, szDesc, MB_ICONERROR);
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
return FALSE;
|
|
}
|
|
|
|
INT_PTR
|
|
CALLBACK
|
|
FinishDlgProc(HWND hwndDlg,
|
|
UINT uMsg,
|
|
WPARAM wParam,
|
|
LPARAM lParam)
|
|
{
|
|
LPPROPSHEETPAGEW ppsp;
|
|
PCREATE_LINK_CONTEXT pContext;
|
|
LPPSHNOTIFY lppsn;
|
|
|
|
switch(uMsg)
|
|
{
|
|
case WM_INITDIALOG:
|
|
ppsp = (LPPROPSHEETPAGEW)lParam;
|
|
pContext = (PCREATE_LINK_CONTEXT) ppsp->lParam;
|
|
SetWindowLongPtr(hwndDlg, DWLP_USER, (LONG_PTR)pContext);
|
|
SetDlgItemTextW(hwndDlg, IDC_SHORTCUT_NAME, pContext->szDescription);
|
|
PropSheet_SetWizButtons(GetParent(hwndDlg), PSWIZB_BACK | PSWIZB_FINISH);
|
|
break;
|
|
case WM_COMMAND:
|
|
switch(HIWORD(wParam))
|
|
{
|
|
case EN_CHANGE:
|
|
if (SendDlgItemMessage(hwndDlg, IDC_SHORTCUT_NAME, WM_GETTEXTLENGTH, 0, 0))
|
|
{
|
|
PropSheet_SetWizButtons(GetParent(hwndDlg), PSWIZB_BACK | PSWIZB_FINISH);
|
|
}
|
|
else
|
|
{
|
|
PropSheet_SetWizButtons(GetParent(hwndDlg), PSWIZB_BACK);
|
|
}
|
|
break;
|
|
}
|
|
break;
|
|
case WM_NOTIFY:
|
|
lppsn = (LPPSHNOTIFY) lParam;
|
|
pContext = (PCREATE_LINK_CONTEXT) GetWindowLongPtr(hwndDlg, DWLP_USER);
|
|
if (lppsn->hdr.code == PSN_WIZFINISH)
|
|
{
|
|
LPWSTR pch;
|
|
DWORD attrs;
|
|
GetDlgItemTextW(hwndDlg, IDC_SHORTCUT_NAME, pContext->szDescription, MAX_PATH);
|
|
StrTrimW(pContext->szDescription, L" \t");
|
|
|
|
/* if old shortcut file exists, then delete it now */
|
|
attrs = GetFileAttributesW(pContext->szOldFile);
|
|
if (attrs != INVALID_FILE_ATTRIBUTES && !(attrs & FILE_ATTRIBUTE_DIRECTORY))
|
|
{
|
|
DeleteFileW(pContext->szOldFile);
|
|
}
|
|
|
|
if (IsInternetLocation(pContext->szTarget))
|
|
{
|
|
/* internet */
|
|
StringCchCopyW(pContext->szLinkName, _countof(pContext->szLinkName),
|
|
pContext->szOrigin);
|
|
PathAppendW(pContext->szLinkName, pContext->szDescription);
|
|
|
|
/* change extension if any */
|
|
pch = PathFindExtensionW(pContext->szLinkName);
|
|
if (pch && *pch)
|
|
*pch = 0;
|
|
StringCchCatW(pContext->szLinkName, _countof(pContext->szLinkName), L".url");
|
|
|
|
if (!CreateInternetShortcut(pContext))
|
|
{
|
|
WCHAR szMessage[128];
|
|
LoadStringW(hApplet, IDS_CANTMAKEINETSHORTCUT, szMessage, _countof(szMessage));
|
|
MessageBoxW(hwndDlg, szMessage, NULL, MB_ICONERROR);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
/* file */
|
|
StringCchCopyW(pContext->szLinkName, _countof(pContext->szLinkName),
|
|
pContext->szOrigin);
|
|
PathAppendW(pContext->szLinkName, pContext->szDescription);
|
|
|
|
/* change extension if any */
|
|
pch = PathFindExtensionW(pContext->szLinkName);
|
|
if (pch && *pch)
|
|
*pch = 0;
|
|
StringCchCatW(pContext->szLinkName, _countof(pContext->szLinkName), L".lnk");
|
|
|
|
if (!CreateShortcut(pContext))
|
|
{
|
|
WCHAR szMessage[128];
|
|
LoadStringW(hApplet, IDS_CANTMAKESHORTCUT, szMessage, _countof(szMessage));
|
|
MessageBoxW(hwndDlg, szMessage, NULL, MB_ICONERROR);
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
return FALSE;
|
|
}
|
|
|
|
LONG CALLBACK
|
|
ShowCreateShortcutWizard(HWND hwndCPl, LPWSTR szPath)
|
|
{
|
|
PROPSHEETHEADERW psh;
|
|
HPROPSHEETPAGE ahpsp[2];
|
|
PROPSHEETPAGE psp;
|
|
UINT nPages = 0;
|
|
UINT nLength;
|
|
DWORD attrs;
|
|
|
|
PCREATE_LINK_CONTEXT pContext = (PCREATE_LINK_CONTEXT) HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(CREATE_LINK_CONTEXT));
|
|
if (!pContext)
|
|
{
|
|
/* no memory */
|
|
return FALSE;
|
|
}
|
|
|
|
nLength = wcslen(szPath);
|
|
if (!nLength)
|
|
{
|
|
HeapFree(GetProcessHeap(), 0, pContext);
|
|
|
|
/* no directory given */
|
|
return FALSE;
|
|
}
|
|
|
|
attrs = GetFileAttributesW(szPath);
|
|
if (attrs == INVALID_FILE_ATTRIBUTES)
|
|
{
|
|
HeapFree(GetProcessHeap(), 0, pContext);
|
|
|
|
/* invalid path */
|
|
return FALSE;
|
|
}
|
|
|
|
/* build the pContext->szOrigin and pContext->szOldFile */
|
|
StringCchCopyW(pContext->szOrigin, _countof(pContext->szOrigin), szPath);
|
|
pContext->szOldFile[0] = 0;
|
|
if (!(attrs & FILE_ATTRIBUTE_DIRECTORY))
|
|
{
|
|
LPWSTR pch;
|
|
StringCchCopyW(pContext->szOldFile, _countof(pContext->szOldFile), szPath);
|
|
pch = PathFindFileNameW(pContext->szOrigin);
|
|
if (pch && *pch)
|
|
*pch = 0;
|
|
}
|
|
PathAddBackslashW(pContext->szOrigin);
|
|
|
|
/* Create the Welcome page */
|
|
psp.dwSize = sizeof(PROPSHEETPAGE);
|
|
psp.dwFlags = PSP_DEFAULT | PSP_HIDEHEADER;
|
|
psp.hInstance = hApplet;
|
|
psp.pfnDlgProc = WelcomeDlgProc;
|
|
psp.pszTemplate = MAKEINTRESOURCEW(IDD_SHORTCUT_LOCATION);
|
|
psp.lParam = (LPARAM)pContext;
|
|
ahpsp[nPages++] = CreatePropertySheetPage(&psp);
|
|
|
|
/* Create the Finish page */
|
|
psp.dwFlags = PSP_DEFAULT | PSP_HIDEHEADER;
|
|
psp.pfnDlgProc = FinishDlgProc;
|
|
psp.pszTemplate = MAKEINTRESOURCEW(IDD_SHORTCUT_FINISH);
|
|
ahpsp[nPages++] = CreatePropertySheetPage(&psp);
|
|
|
|
|
|
/* Create the property sheet */
|
|
psh.dwSize = sizeof(PROPSHEETHEADER);
|
|
psh.dwFlags = PSH_WIZARD97 | PSH_WATERMARK;
|
|
psh.hInstance = hApplet;
|
|
psh.hwndParent = NULL;
|
|
psh.nPages = nPages;
|
|
psh.nStartPage = 0;
|
|
psh.phpage = ahpsp;
|
|
psh.pszbmWatermark = MAKEINTRESOURCEW(IDB_SHORTCUT);
|
|
|
|
/* Display the wizard */
|
|
PropertySheet(&psh);
|
|
HeapFree(GetProcessHeap(), 0, pContext);
|
|
return TRUE;
|
|
}
|
|
|
|
LONG
|
|
CALLBACK
|
|
NewLinkHereW(HWND hwndCPl, UINT uMsg, LPARAM lParam1, LPARAM lParam2)
|
|
{
|
|
return ShowCreateShortcutWizard(hwndCPl, (LPWSTR) lParam1);
|
|
}
|
|
|
|
LONG
|
|
CALLBACK
|
|
NewLinkHereA(HWND hwndCPl, UINT uMsg, LPARAM lParam1, LPARAM lParam2)
|
|
{
|
|
WCHAR szFile[MAX_PATH];
|
|
|
|
if (MultiByteToWideChar(CP_ACP, 0, (LPSTR) lParam1, -1, szFile, MAX_PATH))
|
|
{
|
|
return ShowCreateShortcutWizard(hwndCPl, szFile);
|
|
}
|
|
return -1;
|
|
}
|