mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-01-08 04:17:55 +08:00
c355a2b61e
* Use JSON data file for storing PowerRename settings instead of registry * Address PR comments and made several improvements * Remove WindowsApp.lib dependencies in test app and unit tests * Revert changes in vcxproj for unit test * Solve linker warnings generated while linking WindowsApp.lib * Don't migrate enabled flag. Always read / write from registry.
124 lines
2.6 KiB
C++
124 lines
2.6 KiB
C++
#pragma once
|
|
|
|
#include "json.h"
|
|
|
|
#include <string>
|
|
|
|
class CSettings
|
|
{
|
|
public:
|
|
static const int MAX_INPUT_STRING_LEN = 1024;
|
|
|
|
CSettings();
|
|
|
|
bool GetEnabled();
|
|
|
|
void SetEnabled(bool enabled);
|
|
|
|
inline bool GetShowIconOnMenu() const
|
|
{
|
|
return settings.showIconOnMenu;
|
|
}
|
|
|
|
inline void SetShowIconOnMenu(bool show)
|
|
{
|
|
settings.showIconOnMenu = show;
|
|
}
|
|
|
|
inline bool GetExtendedContextMenuOnly() const
|
|
{
|
|
return settings.extendedContextMenuOnly;
|
|
}
|
|
|
|
inline void SetExtendedContextMenuOnly(bool extendedOnly)
|
|
{
|
|
settings.extendedContextMenuOnly = extendedOnly;
|
|
}
|
|
|
|
inline bool GetPersistState() const
|
|
{
|
|
return settings.persistState;
|
|
}
|
|
|
|
inline void SetPersistState(bool persistState)
|
|
{
|
|
settings.persistState = persistState;
|
|
}
|
|
|
|
inline bool GetMRUEnabled() const
|
|
{
|
|
return settings.MRUEnabled;
|
|
}
|
|
|
|
inline void SetMRUEnabled(bool MRUEnabled)
|
|
{
|
|
settings.MRUEnabled = MRUEnabled;
|
|
}
|
|
|
|
inline long GetMaxMRUSize() const
|
|
{
|
|
return settings.maxMRUSize;
|
|
}
|
|
|
|
inline void SetMaxMRUSize(long maxMRUSize)
|
|
{
|
|
settings.maxMRUSize = maxMRUSize;
|
|
}
|
|
|
|
inline long GetFlags() const
|
|
{
|
|
return settings.flags;
|
|
}
|
|
|
|
inline void SetFlags(long flags)
|
|
{
|
|
settings.flags = flags;
|
|
}
|
|
|
|
inline const std::wstring& GetSearchText() const
|
|
{
|
|
return settings.searchText;
|
|
}
|
|
|
|
inline void SetSearchText(const std::wstring& text)
|
|
{
|
|
settings.searchText = text;
|
|
}
|
|
|
|
inline const std::wstring& GetReplaceText() const
|
|
{
|
|
return settings.replaceText;
|
|
}
|
|
|
|
inline void SetReplaceText(const std::wstring& text)
|
|
{
|
|
settings.replaceText = text;
|
|
}
|
|
|
|
void LoadPowerRenameData();
|
|
void SavePowerRenameData() const;
|
|
|
|
private:
|
|
struct Settings
|
|
{
|
|
bool showIconOnMenu{ true };
|
|
bool extendedContextMenuOnly{ false }; // Disabled by default.
|
|
bool persistState{ true };
|
|
bool MRUEnabled{ true };
|
|
long maxMRUSize{ 10 };
|
|
long flags{ 0 };
|
|
std::wstring searchText{};
|
|
std::wstring replaceText{};
|
|
};
|
|
|
|
void MigrateSettingsFromRegistry();
|
|
void ParseJsonSettings();
|
|
|
|
Settings settings;
|
|
std::wstring jsonFilePath;
|
|
};
|
|
|
|
CSettings& CSettingsInstance();
|
|
|
|
HRESULT CRenameMRUSearch_CreateInstance(_Outptr_ IUnknown** ppUnk);
|
|
HRESULT CRenameMRUReplace_CreateInstance(_Outptr_ IUnknown** ppUnk); |