mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 18:57:19 +02:00
46 lines
1.3 KiB
C++
46 lines
1.3 KiB
C++
#pragma once
|
|
|
|
#include <FancyZonesLib/FancyZonesData/Layout.h>
|
|
#include <FancyZonesLib/ModuleConstants.h>
|
|
|
|
#include <common/SettingsAPI/FileWatcher.h>
|
|
#include <common/SettingsAPI/settings_helpers.h>
|
|
|
|
namespace NonLocalizable
|
|
{
|
|
namespace LayoutTemplatesIds
|
|
{
|
|
const static wchar_t* LayoutTemplatesArrayID = L"layout-templates";
|
|
const static wchar_t* TypeID = L"type";
|
|
const static wchar_t* ShowSpacingID = L"show-spacing";
|
|
const static wchar_t* SpacingID = L"spacing";
|
|
const static wchar_t* ZoneCountID = L"zone-count";
|
|
const static wchar_t* SensitivityRadiusID = L"sensitivity-radius";
|
|
}
|
|
}
|
|
|
|
class LayoutTemplates
|
|
{
|
|
public:
|
|
static LayoutTemplates& instance();
|
|
|
|
inline static std::wstring LayoutTemplatesFileName()
|
|
{
|
|
std::wstring saveFolderPath = PTSettingsHelper::get_module_save_folder_location(NonLocalizable::ModuleKey);
|
|
#if defined(UNIT_TESTS)
|
|
return saveFolderPath + L"\\test-layout-templates.json";
|
|
#endif
|
|
return saveFolderPath + L"\\layout-templates.json";
|
|
}
|
|
|
|
void LoadData();
|
|
|
|
std::optional<Layout> GetLayout(FancyZonesDataTypes::ZoneSetLayoutType type) const noexcept;
|
|
|
|
private:
|
|
LayoutTemplates();
|
|
~LayoutTemplates() = default;
|
|
|
|
std::unique_ptr<FileWatcher> m_fileWatcher;
|
|
std::vector<Layout> m_layouts;
|
|
}; |