mirror of
https://github.com/Blinue/Magpie.git
synced 2026-06-24 02:04:10 +00:00
74 lines
1.8 KiB
C++
74 lines
1.8 KiB
C++
#pragma once
|
|
#include "SettingsViewModel.g.h"
|
|
|
|
|
|
namespace winrt::Magpie::App::implementation {
|
|
|
|
struct SettingsViewModel : SettingsViewModelT<SettingsViewModel> {
|
|
SettingsViewModel();
|
|
|
|
int32_t Theme() const noexcept;
|
|
void Theme(int32_t value) noexcept;
|
|
|
|
bool IsRunAtStartup() const noexcept {
|
|
return _isRunAtStartup;
|
|
}
|
|
|
|
void IsRunAtStartup(bool value) noexcept;
|
|
|
|
bool IsMinimizeAtStartup() const noexcept {
|
|
return _isMinimizeAtStartup;
|
|
}
|
|
|
|
void IsMinimizeAtStartup(bool value) noexcept;
|
|
|
|
bool IsMinimizeAtStartupEnabled() const noexcept;
|
|
|
|
bool IsPortableMode() const noexcept;
|
|
void IsPortableMode(bool value) noexcept;
|
|
|
|
void OpenConfigLocation() const noexcept;
|
|
|
|
bool IsShowTrayIcon() const noexcept;
|
|
void IsShowTrayIcon(bool value) noexcept;
|
|
|
|
bool IsSimulateExclusiveFullscreen() const noexcept;
|
|
void IsSimulateExclusiveFullscreen(bool value) noexcept;
|
|
|
|
bool IsBreakpointMode() const noexcept;
|
|
void IsBreakpointMode(bool value) noexcept;
|
|
|
|
bool IsDisableEffectCache() const noexcept;
|
|
void IsDisableEffectCache(bool value) noexcept;
|
|
|
|
bool IsSaveEffectSources() const noexcept;
|
|
void IsSaveEffectSources(bool value) noexcept;
|
|
|
|
bool IsWarningsAreErrors() const noexcept;
|
|
void IsWarningsAreErrors(bool value) noexcept;
|
|
|
|
event_token PropertyChanged(PropertyChangedEventHandler const& handler) {
|
|
return _propertyChangedEvent.add(handler);
|
|
}
|
|
|
|
void PropertyChanged(event_token const& token) noexcept {
|
|
_propertyChangedEvent.remove(token);
|
|
}
|
|
|
|
private:
|
|
void _UpdateStartupOptions() noexcept;
|
|
|
|
event<PropertyChangedEventHandler> _propertyChangedEvent;
|
|
|
|
bool _isRunAtStartup = false;
|
|
bool _isMinimizeAtStartup = false;
|
|
};
|
|
|
|
}
|
|
|
|
namespace winrt::Magpie::App::factory_implementation {
|
|
|
|
struct SettingsViewModel : SettingsViewModelT<SettingsViewModel, implementation::SettingsViewModel> {
|
|
};
|
|
|
|
}
|