mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 22:20:04 +00:00
Add alert palette reset buttons
This commit is contained in:
parent
2d8c3c8175
commit
a1d9b25f0b
6 changed files with 177 additions and 0 deletions
|
|
@ -37,6 +37,24 @@ public:
|
|||
SettingsVariable(SettingsVariable&&) noexcept;
|
||||
SettingsVariable& operator=(SettingsVariable&&) noexcept;
|
||||
|
||||
/**
|
||||
* Gets whether or not the settings variable is currently set to its default
|
||||
* value.
|
||||
*
|
||||
* @return true if the settings variable is currently set to its default
|
||||
* value, otherwise false.
|
||||
*/
|
||||
bool IsDefault() const;
|
||||
|
||||
/**
|
||||
* Gets whether or not the settings variable currently has its staged value
|
||||
* set to default.
|
||||
*
|
||||
* @return true if the settings variable currently has its staged value set
|
||||
* to default, otherwise false.
|
||||
*/
|
||||
bool IsDefaultStaged() const;
|
||||
|
||||
/**
|
||||
* Gets the current value of the settings variable.
|
||||
*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue