2019-09-04 18:26:26 +02:00
|
|
|
#pragma once
|
2021-09-29 12:54:05 +02:00
|
|
|
#include <optional>
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
|
|
enum class ESettingsWindowNames
|
|
|
|
|
{
|
|
|
|
|
Overview = 0,
|
|
|
|
|
Awake,
|
|
|
|
|
ColorPicker,
|
|
|
|
|
FancyZones,
|
|
|
|
|
Run,
|
|
|
|
|
ImageResizer,
|
|
|
|
|
KBM,
|
2021-10-22 13:30:18 +01:00
|
|
|
MouseUtils,
|
2021-09-29 12:54:05 +02: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-02 20:56:37 +03:00
|
|
|
void close_settings_window();
|
|
|
|
|
|
|
|
|
|
void open_oobe_window();
|