mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 19:10:06 +00:00
124 lines
3.6 KiB
C++
124 lines
3.6 KiB
C++
#include <scwx/qt/settings/ui_settings.hpp>
|
|
|
|
namespace scwx
|
|
{
|
|
namespace qt
|
|
{
|
|
namespace settings
|
|
{
|
|
|
|
static const std::string logPrefix_ = "scwx::qt::settings::ui_settings";
|
|
|
|
class UiSettingsImpl
|
|
{
|
|
public:
|
|
explicit UiSettingsImpl()
|
|
{
|
|
level2ProductsExpanded_.SetDefault(false);
|
|
level2SettingsExpanded_.SetDefault(true);
|
|
level3ProductsExpanded_.SetDefault(true);
|
|
mapSettingsExpanded_.SetDefault(true);
|
|
timelineExpanded_.SetDefault(true);
|
|
mainUIState_.SetDefault("");
|
|
mainUIGeometry_.SetDefault("");
|
|
}
|
|
|
|
~UiSettingsImpl() {}
|
|
|
|
SettingsVariable<bool> level2ProductsExpanded_ {"level2_products_expanded"};
|
|
SettingsVariable<bool> level2SettingsExpanded_ {"level2_settings_expanded"};
|
|
SettingsVariable<bool> level3ProductsExpanded_ {"level3_products_expanded"};
|
|
SettingsVariable<bool> mapSettingsExpanded_ {"map_settings_expanded"};
|
|
SettingsVariable<bool> timelineExpanded_ {"timeline_expanded"};
|
|
SettingsVariable<std::string> mainUIState_ {"main_ui_state"};
|
|
SettingsVariable<std::string> mainUIGeometry_ {"main_ui_geometry"};
|
|
};
|
|
|
|
UiSettings::UiSettings() :
|
|
SettingsCategory("ui"), p(std::make_unique<UiSettingsImpl>())
|
|
{
|
|
RegisterVariables({&p->level2ProductsExpanded_,
|
|
&p->level2SettingsExpanded_,
|
|
&p->level3ProductsExpanded_,
|
|
&p->mapSettingsExpanded_,
|
|
&p->timelineExpanded_,
|
|
&p->mainUIState_,
|
|
&p->mainUIGeometry_});
|
|
SetDefaults();
|
|
}
|
|
UiSettings::~UiSettings() = default;
|
|
|
|
UiSettings::UiSettings(UiSettings&&) noexcept = default;
|
|
UiSettings& UiSettings::operator=(UiSettings&&) noexcept = default;
|
|
|
|
SettingsVariable<bool>& UiSettings::level2_products_expanded() const
|
|
{
|
|
return p->level2ProductsExpanded_;
|
|
}
|
|
|
|
SettingsVariable<bool>& UiSettings::level2_settings_expanded() const
|
|
{
|
|
return p->level2SettingsExpanded_;
|
|
}
|
|
|
|
SettingsVariable<bool>& UiSettings::level3_products_expanded() const
|
|
{
|
|
return p->level3ProductsExpanded_;
|
|
}
|
|
|
|
SettingsVariable<bool>& UiSettings::map_settings_expanded() const
|
|
{
|
|
return p->mapSettingsExpanded_;
|
|
}
|
|
|
|
SettingsVariable<bool>& UiSettings::timeline_expanded() const
|
|
{
|
|
return p->timelineExpanded_;
|
|
}
|
|
|
|
SettingsVariable<std::string>& UiSettings::main_ui_state() const
|
|
{
|
|
return p->mainUIState_;
|
|
}
|
|
|
|
SettingsVariable<std::string>& UiSettings::main_ui_geometry() const
|
|
{
|
|
return p->mainUIGeometry_;
|
|
}
|
|
|
|
bool UiSettings::Shutdown()
|
|
{
|
|
bool dataChanged = false;
|
|
|
|
// Commit settings that are managed separate from the settings dialog
|
|
dataChanged |= p->level2ProductsExpanded_.Commit();
|
|
dataChanged |= p->level2SettingsExpanded_.Commit();
|
|
dataChanged |= p->level3ProductsExpanded_.Commit();
|
|
dataChanged |= p->mapSettingsExpanded_.Commit();
|
|
dataChanged |= p->timelineExpanded_.Commit();
|
|
dataChanged |= p->mainUIState_.Commit();
|
|
dataChanged |= p->mainUIGeometry_.Commit();
|
|
|
|
return dataChanged;
|
|
}
|
|
|
|
UiSettings& UiSettings::Instance()
|
|
{
|
|
static UiSettings uiSettings_;
|
|
return uiSettings_;
|
|
}
|
|
|
|
bool operator==(const UiSettings& lhs, const UiSettings& rhs)
|
|
{
|
|
return (lhs.p->level2ProductsExpanded_ == rhs.p->level2ProductsExpanded_ &&
|
|
lhs.p->level2SettingsExpanded_ == rhs.p->level2SettingsExpanded_ &&
|
|
lhs.p->level3ProductsExpanded_ == rhs.p->level3ProductsExpanded_ &&
|
|
lhs.p->mapSettingsExpanded_ == rhs.p->mapSettingsExpanded_ &&
|
|
lhs.p->timelineExpanded_ == rhs.p->timelineExpanded_ &&
|
|
lhs.p->mainUIState_ == rhs.p->mainUIState_ &&
|
|
lhs.p->mainUIGeometry_ == rhs.p->mainUIGeometry_);
|
|
}
|
|
|
|
} // namespace settings
|
|
} // namespace qt
|
|
} // namespace scwx
|