mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-20 14:57:55 +08:00
87bb89ab15
* [Oobe]Add a What's New page * Show What's New when version changes * Add link to GitHub * Use generic icon for now * Get only the latest 5 releases * fix spellchecker * rename last_version_run.json * Remove UserControl_Loaded * Remove installer hash from the release notes * constexpr some strings * Add check your internet connection message
29 lines
580 B
C++
29 lines
580 B
C++
#pragma once
|
|
#include <optional>
|
|
#include <string>
|
|
|
|
enum class ESettingsWindowNames
|
|
{
|
|
Overview = 0,
|
|
Awake,
|
|
ColorPicker,
|
|
FancyZones,
|
|
Run,
|
|
ImageResizer,
|
|
KBM,
|
|
MouseUtils,
|
|
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);
|
|
void close_settings_window();
|
|
|
|
void open_oobe_window();
|
|
void open_scoobe_window();
|