mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-27 03:14:18 +08:00
fc8ee435e6
* [Flyout]Appear next to the tray icon position * fix spellchecker
31 lines
674 B
C++
31 lines
674 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, bool show_flyout, const std::optional<POINT>& flyout_position);
|
|
void close_settings_window();
|
|
|
|
void open_oobe_window();
|
|
void open_scoobe_window();
|
|
void open_flyout();
|