2019-09-05 00:26:26 +08:00
|
|
|
#pragma once
|
2021-09-29 18:54:05 +08:00
|
|
|
#include <optional>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
enum class ESettingsWindowNames
|
|
|
|
{
|
|
|
|
Overview = 0,
|
|
|
|
Awake,
|
|
|
|
ColorPicker,
|
|
|
|
FancyZones,
|
|
|
|
Run,
|
|
|
|
ImageResizer,
|
|
|
|
KBM,
|
2021-10-22 20:30:18 +08:00
|
|
|
MouseUtils,
|
2021-09-29 18:54:05 +08:00
|
|
|
PowerRename,
|
|
|
|
FileExplorer,
|
|
|
|
ShortcutGuide,
|
|
|
|
VideoConference
|
|
|
|
};
|
|
|
|
|
|
|
|
std::string ESettingsWindowNames_to_string(ESettingsWindowNames value);
|
|
|
|
ESettingsWindowNames ESettingsWindowNames_from_string(std::string value);
|
|
|
|
|
|
|
|
void open_settings_window(std::optional<std::wstring> settings_window);
|
2021-03-03 01:56:37 +08:00
|
|
|
void close_settings_window();
|
|
|
|
|
2022-02-22 19:02:08 +08:00
|
|
|
void open_oobe_window();
|
|
|
|
void open_scoobe_window();
|