mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-03 17:56:44 +02:00
30 lines
591 B
C++
30 lines
591 B
C++
#pragma once
|
|
#include <optional>
|
|
#include <string>
|
|
|
|
enum class ESettingsWindowNames
|
|
{
|
|
Overview = 0,
|
|
Awake,
|
|
ColorPicker,
|
|
FancyZones,
|
|
Run,
|
|
ImageResizer,
|
|
KBM,
|
|
MouseUtils,
|
|
PowerRename,
|
|
FileExplorer,
|
|
ShortcutGuide,
|
|
VideoConference,
|
|
Hosts
|
|
};
|
|
|
|
std::string ESettingsWindowNames_to_string(ESettingsWindowNames value);
|
|
ESettingsWindowNames ESettingsWindowNames_from_string(std::string value);
|
|
|
|
void open_settings_window(std::optional<std::wstring> settings_window);
|
|
void close_settings_window();
|
|
|
|
void open_oobe_window();
|
|
void open_scoobe_window();
|