2019-11-12 03:00:42 +08:00
|
|
|
#include "stdafx.h"
|
|
|
|
#include "Settings.h"
|
2019-12-17 16:21:46 +08:00
|
|
|
#include "PowerRenameInterfaces.h"
|
2020-04-09 01:12:46 +08:00
|
|
|
#include "settings_helpers.h"
|
2020-01-18 03:25:42 +08:00
|
|
|
|
2020-04-09 01:12:46 +08:00
|
|
|
#include <filesystem>
|
|
|
|
#include <commctrl.h>
|
2019-11-12 03:00:42 +08:00
|
|
|
|
2020-04-09 01:12:46 +08:00
|
|
|
namespace
|
2019-11-12 03:00:42 +08:00
|
|
|
{
|
2020-04-09 01:12:46 +08:00
|
|
|
const wchar_t c_powerRenameDataFilePath[] = L"power-rename-settings.json";
|
2019-11-12 03:00:42 +08:00
|
|
|
|
2020-04-09 01:12:46 +08:00
|
|
|
const wchar_t c_rootRegPath[] = L"Software\\Microsoft\\PowerRename";
|
|
|
|
const wchar_t c_mruSearchRegPath[] = L"SearchMRU";
|
|
|
|
const wchar_t c_mruReplaceRegPath[] = L"ReplaceMRU";
|
2019-11-12 03:00:42 +08:00
|
|
|
|
2020-04-09 01:12:46 +08:00
|
|
|
const wchar_t c_enabled[] = L"Enabled";
|
|
|
|
const wchar_t c_showIconOnMenu[] = L"ShowIcon";
|
|
|
|
const wchar_t c_extendedContextMenuOnly[] = L"ExtendedContextMenuOnly";
|
|
|
|
const wchar_t c_persistState[] = L"PersistState";
|
|
|
|
const wchar_t c_maxMRUSize[] = L"MaxMRUSize";
|
|
|
|
const wchar_t c_flags[] = L"Flags";
|
|
|
|
const wchar_t c_searchText[] = L"SearchText";
|
|
|
|
const wchar_t c_replaceText[] = L"ReplaceText";
|
|
|
|
const wchar_t c_mruEnabled[] = L"MRUEnabled";
|
2019-11-12 03:00:42 +08:00
|
|
|
|
2020-04-09 01:12:46 +08:00
|
|
|
long GetRegNumber(const std::wstring& valueName, long defaultValue)
|
2019-11-12 03:00:42 +08:00
|
|
|
{
|
2020-04-09 01:12:46 +08:00
|
|
|
DWORD type = REG_DWORD;
|
|
|
|
DWORD data = 0;
|
|
|
|
DWORD size = sizeof(DWORD);
|
|
|
|
if (SHGetValue(HKEY_CURRENT_USER, c_rootRegPath, valueName.c_str(), &type, &data, &size) == ERROR_SUCCESS)
|
|
|
|
{
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
return defaultValue;
|
2019-11-12 03:00:42 +08:00
|
|
|
}
|
|
|
|
|
2020-04-09 01:12:46 +08:00
|
|
|
void SetRegNumber(const std::wstring& valueName, long value)
|
|
|
|
{
|
|
|
|
SHSetValue(HKEY_CURRENT_USER, c_rootRegPath, valueName.c_str(), REG_DWORD, &value, sizeof(value));
|
|
|
|
}
|
2019-11-12 03:00:42 +08:00
|
|
|
|
2020-04-09 01:12:46 +08:00
|
|
|
bool GetRegBoolean(const std::wstring& valueName, bool defaultValue)
|
|
|
|
{
|
|
|
|
DWORD value = GetRegNumber(valueName.c_str(), defaultValue ? 1 : 0);
|
|
|
|
return (value == 0) ? false : true;
|
|
|
|
}
|
2019-11-12 03:00:42 +08:00
|
|
|
|
2020-04-09 01:12:46 +08:00
|
|
|
void SetRegBoolean(const std::wstring& valueName, bool value)
|
2019-11-12 03:00:42 +08:00
|
|
|
{
|
2020-04-09 01:12:46 +08:00
|
|
|
SetRegNumber(valueName, value ? 1 : 0);
|
2019-11-12 03:00:42 +08:00
|
|
|
}
|
|
|
|
|
2020-04-09 01:12:46 +08:00
|
|
|
std::wstring GetRegString(const std::wstring& valueName) {
|
|
|
|
wchar_t value[CSettings::MAX_INPUT_STRING_LEN];
|
|
|
|
value[0] = L'\0';
|
|
|
|
DWORD type = REG_SZ;
|
|
|
|
DWORD size = CSettings::MAX_INPUT_STRING_LEN * sizeof(wchar_t);
|
|
|
|
if (SUCCEEDED(HRESULT_FROM_WIN32(SHGetValue(HKEY_CURRENT_USER, c_rootRegPath, valueName.c_str(), &type, value, &size) == ERROR_SUCCESS)))
|
|
|
|
{
|
|
|
|
return std::wstring(value);
|
|
|
|
}
|
|
|
|
return std::wstring{};
|
|
|
|
}
|
2019-11-12 03:00:42 +08:00
|
|
|
}
|
|
|
|
|
2020-01-18 06:38:41 +08:00
|
|
|
typedef int (CALLBACK* MRUCMPPROC)(LPCWSTR, LPCWSTR);
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
DWORD cbSize;
|
|
|
|
UINT uMax;
|
|
|
|
UINT fFlags;
|
|
|
|
HKEY hKey;
|
|
|
|
LPCTSTR lpszSubKey;
|
2019-11-12 03:00:42 +08:00
|
|
|
MRUCMPPROC lpfnCompare;
|
|
|
|
} MRUINFO;
|
|
|
|
|
|
|
|
typedef HANDLE (*CreateMRUListFn)(MRUINFO* pmi);
|
|
|
|
typedef int (*AddMRUStringFn)(HANDLE hMRU, LPCWSTR data);
|
|
|
|
typedef int (*EnumMRUListFn)(HANDLE hMRU, int nItem, void* lpData, UINT uLen);
|
|
|
|
typedef int (*FreeMRUListFn)(HANDLE hMRU);
|
|
|
|
|
|
|
|
class CRenameMRU :
|
|
|
|
public IEnumString,
|
|
|
|
public IPowerRenameMRU
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// IUnknown
|
2020-01-18 06:38:41 +08:00
|
|
|
IFACEMETHODIMP_(ULONG) AddRef();
|
|
|
|
IFACEMETHODIMP_(ULONG) Release();
|
2019-11-12 03:00:42 +08:00
|
|
|
IFACEMETHODIMP QueryInterface(_In_ REFIID riid, _Outptr_ void** ppv);
|
|
|
|
|
|
|
|
// IEnumString
|
|
|
|
IFACEMETHODIMP Next(__in ULONG celt, __out_ecount_part(celt, *pceltFetched) LPOLESTR* rgelt, __out_opt ULONG* pceltFetched);
|
2019-11-12 12:58:39 +08:00
|
|
|
IFACEMETHODIMP Skip(__in ULONG) { return E_NOTIMPL; }
|
2019-11-12 03:00:42 +08:00
|
|
|
IFACEMETHODIMP Reset();
|
2020-01-18 06:38:41 +08:00
|
|
|
IFACEMETHODIMP Clone(__deref_out IEnumString** ppenum) { *ppenum = nullptr; return E_NOTIMPL; }
|
2019-11-12 03:00:42 +08:00
|
|
|
|
|
|
|
// IPowerRenameMRU
|
|
|
|
IFACEMETHODIMP AddMRUString(_In_ PCWSTR entry);
|
|
|
|
|
|
|
|
static HRESULT CreateInstance(_In_ PCWSTR regPathMRU, _In_ ULONG maxMRUSize, _Outptr_ IUnknown** ppUnk);
|
|
|
|
|
|
|
|
private:
|
|
|
|
CRenameMRU();
|
|
|
|
~CRenameMRU();
|
|
|
|
|
|
|
|
HRESULT _Initialize(_In_ PCWSTR regPathMRU, __in ULONG maxMRUSize);
|
|
|
|
HRESULT _CreateMRUList(_In_ MRUINFO* pmi);
|
|
|
|
int _AddMRUString(_In_ PCWSTR data);
|
|
|
|
int _EnumMRUList(_In_ int nItem, _Out_ void* lpData, _In_ UINT uLen);
|
|
|
|
void _FreeMRUList();
|
|
|
|
|
2020-01-18 06:38:41 +08:00
|
|
|
long m_refCount = 0;
|
|
|
|
HKEY m_hKey = NULL;
|
|
|
|
ULONG m_maxMRUSize = 0;
|
|
|
|
ULONG m_mruIndex = 0;
|
|
|
|
ULONG m_mruSize = 0;
|
2019-11-12 03:00:42 +08:00
|
|
|
HANDLE m_mruHandle = NULL;
|
|
|
|
HMODULE m_hComctl32Dll = NULL;
|
2020-01-18 06:38:41 +08:00
|
|
|
PWSTR m_regPath = nullptr;
|
2019-11-12 03:00:42 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
CRenameMRU::CRenameMRU() :
|
|
|
|
m_refCount(1)
|
2020-01-18 06:38:41 +08:00
|
|
|
{}
|
2019-11-12 03:00:42 +08:00
|
|
|
|
|
|
|
CRenameMRU::~CRenameMRU()
|
|
|
|
{
|
|
|
|
if (m_hKey)
|
|
|
|
{
|
|
|
|
RegCloseKey(m_hKey);
|
|
|
|
}
|
|
|
|
|
|
|
|
_FreeMRUList();
|
|
|
|
|
|
|
|
if (m_hComctl32Dll)
|
|
|
|
{
|
|
|
|
FreeLibrary(m_hComctl32Dll);
|
|
|
|
}
|
|
|
|
|
|
|
|
CoTaskMemFree(m_regPath);
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT CRenameMRU::CreateInstance(_In_ PCWSTR regPathMRU, _In_ ULONG maxMRUSize, _Outptr_ IUnknown** ppUnk)
|
|
|
|
{
|
|
|
|
*ppUnk = nullptr;
|
|
|
|
HRESULT hr = (regPathMRU && maxMRUSize > 0) ? S_OK : E_FAIL;
|
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
CRenameMRU* renameMRU = new CRenameMRU();
|
|
|
|
hr = renameMRU ? S_OK : E_OUTOFMEMORY;
|
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
hr = renameMRU->_Initialize(regPathMRU, maxMRUSize);
|
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
hr = renameMRU->QueryInterface(IID_PPV_ARGS(ppUnk));
|
|
|
|
}
|
|
|
|
|
|
|
|
renameMRU->Release();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// IUnknown
|
2020-01-18 06:38:41 +08:00
|
|
|
IFACEMETHODIMP_(ULONG) CRenameMRU::AddRef()
|
2019-11-12 03:00:42 +08:00
|
|
|
{
|
|
|
|
return InterlockedIncrement(&m_refCount);
|
|
|
|
}
|
|
|
|
|
2020-01-18 06:38:41 +08:00
|
|
|
IFACEMETHODIMP_(ULONG) CRenameMRU::Release()
|
2019-11-12 03:00:42 +08:00
|
|
|
{
|
|
|
|
long refCount = InterlockedDecrement(&m_refCount);
|
|
|
|
|
|
|
|
if (refCount == 0)
|
|
|
|
{
|
|
|
|
delete this;
|
|
|
|
}
|
|
|
|
return refCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
IFACEMETHODIMP CRenameMRU::QueryInterface(_In_ REFIID riid, _Outptr_ void** ppv)
|
|
|
|
{
|
|
|
|
static const QITAB qit[] = {
|
|
|
|
QITABENT(CRenameMRU, IEnumString),
|
|
|
|
QITABENT(CRenameMRU, IPowerRenameMRU),
|
|
|
|
{ 0 }
|
|
|
|
};
|
|
|
|
return QISearch(this, qit, riid, ppv);
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT CRenameMRU::_Initialize(_In_ PCWSTR regPathMRU, __in ULONG maxMRUSize)
|
|
|
|
{
|
|
|
|
m_maxMRUSize = maxMRUSize;
|
|
|
|
|
|
|
|
wchar_t regPath[MAX_PATH] = { 0 };
|
|
|
|
HRESULT hr = StringCchPrintf(regPath, ARRAYSIZE(regPath), L"%s\\%s", c_rootRegPath, regPathMRU);
|
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
hr = SHStrDup(regPathMRU, &m_regPath);
|
|
|
|
|
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
MRUINFO mi = {
|
|
|
|
sizeof(MRUINFO),
|
|
|
|
maxMRUSize,
|
|
|
|
0,
|
|
|
|
HKEY_CURRENT_USER,
|
|
|
|
regPath,
|
|
|
|
nullptr
|
|
|
|
};
|
|
|
|
|
|
|
|
hr = _CreateMRUList(&mi);
|
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
m_mruSize = _EnumMRUList(-1, NULL, 0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
hr = E_FAIL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// IEnumString
|
|
|
|
IFACEMETHODIMP CRenameMRU::Reset()
|
|
|
|
{
|
|
|
|
m_mruIndex = 0;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define MAX_ENTRY_STRING 1024
|
|
|
|
|
|
|
|
IFACEMETHODIMP CRenameMRU::Next(__in ULONG celt, __out_ecount_part(celt, *pceltFetched) LPOLESTR* rgelt, __out_opt ULONG* pceltFetched)
|
|
|
|
{
|
|
|
|
HRESULT hr = S_OK;
|
|
|
|
WCHAR mruEntry[MAX_ENTRY_STRING];
|
|
|
|
mruEntry[0] = L'\0';
|
|
|
|
|
|
|
|
if (pceltFetched)
|
|
|
|
{
|
|
|
|
*pceltFetched = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!celt)
|
|
|
|
{
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!rgelt)
|
|
|
|
{
|
|
|
|
return S_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
hr = S_FALSE;
|
|
|
|
if (m_mruIndex <= m_mruSize && _EnumMRUList(m_mruIndex++, (void*)mruEntry, ARRAYSIZE(mruEntry)) > 0)
|
|
|
|
{
|
|
|
|
hr = SHStrDup(mruEntry, rgelt);
|
|
|
|
if (SUCCEEDED(hr) && pceltFetched != nullptr)
|
|
|
|
{
|
|
|
|
*pceltFetched = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
IFACEMETHODIMP CRenameMRU::AddMRUString(_In_ PCWSTR entry)
|
|
|
|
{
|
|
|
|
return (_AddMRUString(entry) < 0) ? E_FAIL : S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT CRenameMRU::_CreateMRUList(_In_ MRUINFO* pmi)
|
|
|
|
{
|
|
|
|
if (m_mruHandle != NULL)
|
|
|
|
{
|
|
|
|
_FreeMRUList();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_hComctl32Dll == NULL)
|
|
|
|
{
|
|
|
|
m_hComctl32Dll = LoadLibraryEx(L"comctl32.dll", nullptr, LOAD_LIBRARY_SEARCH_SYSTEM32);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_hComctl32Dll != nullptr)
|
|
|
|
{
|
|
|
|
CreateMRUListFn pfnCreateMRUList = reinterpret_cast<CreateMRUListFn>(GetProcAddress(m_hComctl32Dll, (LPCSTR)MAKEINTRESOURCE(400)));
|
|
|
|
if (pfnCreateMRUList != nullptr)
|
|
|
|
{
|
|
|
|
m_mruHandle = pfnCreateMRUList(pmi);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (m_mruHandle != NULL) ? S_OK : E_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
int CRenameMRU::_AddMRUString(_In_ PCWSTR data)
|
|
|
|
{
|
|
|
|
int retVal = -1;
|
|
|
|
if (m_mruHandle != NULL)
|
|
|
|
{
|
|
|
|
if (m_hComctl32Dll == NULL)
|
|
|
|
{
|
|
|
|
m_hComctl32Dll = LoadLibraryEx(L"comctl32.dll", nullptr, LOAD_LIBRARY_SEARCH_SYSTEM32);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_hComctl32Dll != nullptr)
|
|
|
|
{
|
|
|
|
AddMRUStringFn pfnAddMRUString = reinterpret_cast<AddMRUStringFn>(GetProcAddress(m_hComctl32Dll, (LPCSTR)MAKEINTRESOURCE(401)));
|
|
|
|
if (pfnAddMRUString != nullptr)
|
|
|
|
{
|
|
|
|
retVal = pfnAddMRUString(m_mruHandle, data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return retVal;
|
|
|
|
}
|
|
|
|
|
|
|
|
int CRenameMRU::_EnumMRUList(_In_ int nItem, _Out_ void* lpData, _In_ UINT uLen)
|
|
|
|
{
|
|
|
|
int retVal = -1;
|
|
|
|
if (m_mruHandle != NULL)
|
|
|
|
{
|
|
|
|
if (m_hComctl32Dll == NULL)
|
|
|
|
{
|
|
|
|
m_hComctl32Dll = LoadLibraryEx(L"comctl32.dll", nullptr, LOAD_LIBRARY_SEARCH_SYSTEM32);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_hComctl32Dll != nullptr)
|
|
|
|
{
|
|
|
|
EnumMRUListFn pfnEnumMRUList = reinterpret_cast<EnumMRUListFn>(GetProcAddress(m_hComctl32Dll, (LPCSTR)MAKEINTRESOURCE(403)));
|
|
|
|
if (pfnEnumMRUList != nullptr)
|
|
|
|
{
|
|
|
|
retVal = pfnEnumMRUList(m_mruHandle, nItem, lpData, uLen);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return retVal;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CRenameMRU::_FreeMRUList()
|
|
|
|
{
|
|
|
|
if (m_mruHandle != NULL)
|
|
|
|
{
|
|
|
|
if (m_hComctl32Dll == NULL)
|
|
|
|
{
|
|
|
|
m_hComctl32Dll = LoadLibraryEx(L"comctl32.dll", nullptr, LOAD_LIBRARY_SEARCH_SYSTEM32);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_hComctl32Dll != nullptr)
|
|
|
|
{
|
|
|
|
FreeMRUListFn pfnFreeMRUList = reinterpret_cast<FreeMRUListFn>(GetProcAddress(m_hComctl32Dll, (LPCSTR)MAKEINTRESOURCE(152)));
|
|
|
|
if (pfnFreeMRUList != nullptr)
|
|
|
|
{
|
|
|
|
pfnFreeMRUList(m_mruHandle);
|
|
|
|
}
|
2020-01-18 06:38:41 +08:00
|
|
|
|
2019-11-12 03:00:42 +08:00
|
|
|
}
|
|
|
|
m_mruHandle = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-09 01:12:46 +08:00
|
|
|
CSettings::CSettings()
|
|
|
|
{
|
|
|
|
std::wstring result = PTSettingsHelper::get_module_save_folder_location(L"PowerRename");
|
|
|
|
jsonFilePath = result + L"\\" + std::wstring(c_powerRenameDataFilePath);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CSettings::GetEnabled()
|
|
|
|
{
|
|
|
|
return GetRegBoolean(c_enabled, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CSettings::SetEnabled(bool enabled)
|
|
|
|
{
|
|
|
|
SetRegBoolean(c_enabled, enabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CSettings::LoadPowerRenameData()
|
|
|
|
{
|
|
|
|
if (!std::filesystem::exists(jsonFilePath))
|
|
|
|
{
|
|
|
|
MigrateSettingsFromRegistry();
|
|
|
|
|
|
|
|
SavePowerRenameData();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ParseJsonSettings();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CSettings::SavePowerRenameData() const
|
|
|
|
{
|
|
|
|
json::JsonObject jsonData;
|
|
|
|
|
|
|
|
jsonData.SetNamedValue(c_showIconOnMenu, json::value(settings.showIconOnMenu));
|
|
|
|
jsonData.SetNamedValue(c_extendedContextMenuOnly, json::value(settings.extendedContextMenuOnly));
|
|
|
|
jsonData.SetNamedValue(c_persistState, json::value(settings.persistState));
|
|
|
|
jsonData.SetNamedValue(c_mruEnabled, json::value(settings.MRUEnabled));
|
|
|
|
jsonData.SetNamedValue(c_maxMRUSize, json::value(settings.maxMRUSize));
|
|
|
|
jsonData.SetNamedValue(c_flags, json::value(settings.flags));
|
|
|
|
jsonData.SetNamedValue(c_searchText, json::value(settings.searchText));
|
|
|
|
jsonData.SetNamedValue(c_replaceText, json::value(settings.replaceText));
|
|
|
|
|
|
|
|
json::to_file(jsonFilePath, jsonData);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CSettings::MigrateSettingsFromRegistry()
|
|
|
|
{
|
|
|
|
settings.showIconOnMenu = GetRegBoolean(c_showIconOnMenu, true);
|
|
|
|
settings.extendedContextMenuOnly = GetRegBoolean(c_extendedContextMenuOnly, false); // Disabled by default.
|
|
|
|
settings.persistState = GetRegBoolean(c_persistState, true);
|
|
|
|
settings.MRUEnabled = GetRegBoolean(c_mruEnabled, true);
|
|
|
|
settings.maxMRUSize = GetRegNumber(c_maxMRUSize, 10);
|
|
|
|
settings.flags = GetRegNumber(c_flags, 0);
|
|
|
|
settings.searchText = GetRegString(c_searchText);
|
|
|
|
settings.replaceText = GetRegString(c_replaceText);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CSettings::ParseJsonSettings()
|
|
|
|
{
|
|
|
|
auto json = json::from_file(jsonFilePath);
|
|
|
|
if (json)
|
|
|
|
{
|
|
|
|
const json::JsonObject& jsonSettings = json.value();
|
|
|
|
try
|
|
|
|
{
|
|
|
|
if (json::has(jsonSettings, c_showIconOnMenu, json::JsonValueType::Boolean))
|
|
|
|
{
|
|
|
|
settings.showIconOnMenu = jsonSettings.GetNamedBoolean(c_showIconOnMenu);
|
|
|
|
}
|
|
|
|
if (json::has(jsonSettings, c_extendedContextMenuOnly, json::JsonValueType::Boolean))
|
|
|
|
{
|
|
|
|
settings.extendedContextMenuOnly = jsonSettings.GetNamedBoolean(c_extendedContextMenuOnly);
|
|
|
|
}
|
|
|
|
if (json::has(jsonSettings, c_persistState, json::JsonValueType::Boolean))
|
|
|
|
{
|
|
|
|
settings.persistState = jsonSettings.GetNamedBoolean(c_persistState);
|
|
|
|
}
|
|
|
|
if (json::has(jsonSettings, c_mruEnabled, json::JsonValueType::Boolean))
|
|
|
|
{
|
|
|
|
settings.MRUEnabled = jsonSettings.GetNamedBoolean(c_mruEnabled);
|
|
|
|
}
|
|
|
|
if (json::has(jsonSettings, c_maxMRUSize, json::JsonValueType::Number))
|
|
|
|
{
|
|
|
|
settings.maxMRUSize = (long)jsonSettings.GetNamedNumber(c_maxMRUSize);
|
|
|
|
}
|
|
|
|
if (json::has(jsonSettings, c_flags, json::JsonValueType::Number))
|
|
|
|
{
|
|
|
|
settings.flags = (long)jsonSettings.GetNamedNumber(c_flags);
|
|
|
|
}
|
|
|
|
if (json::has(jsonSettings, c_searchText, json::JsonValueType::String))
|
|
|
|
{
|
|
|
|
settings.searchText = jsonSettings.GetNamedString(c_searchText);
|
|
|
|
}
|
|
|
|
if (json::has(jsonSettings, c_replaceText, json::JsonValueType::String))
|
|
|
|
{
|
|
|
|
settings.replaceText = jsonSettings.GetNamedString(c_replaceText);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (const winrt::hresult_error&) { }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
CSettings& CSettingsInstance()
|
|
|
|
{
|
|
|
|
static CSettings instance;
|
|
|
|
return instance;
|
|
|
|
}
|
|
|
|
|
2019-11-12 03:00:42 +08:00
|
|
|
HRESULT CRenameMRUSearch_CreateInstance(_Outptr_ IUnknown** ppUnk)
|
|
|
|
{
|
2020-04-09 01:12:46 +08:00
|
|
|
return CRenameMRU::CreateInstance(c_mruSearchRegPath, CSettingsInstance().GetMaxMRUSize(), ppUnk);
|
2019-11-12 03:00:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT CRenameMRUReplace_CreateInstance(_Outptr_ IUnknown** ppUnk)
|
|
|
|
{
|
2020-04-09 01:12:46 +08:00
|
|
|
return CRenameMRU::CreateInstance(c_mruReplaceRegPath, CSettingsInstance().GetMaxMRUSize(), ppUnk);
|
2019-11-12 03:00:42 +08:00
|
|
|
}
|