Add UI settings for collapsible groups

This commit is contained in:
Dan Paulat 2023-06-30 00:11:43 -05:00
parent af650c6687
commit 1e4e2ba1b4
5 changed files with 162 additions and 3 deletions

View file

@ -0,0 +1,104 @@
#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);
}
~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"};
};
UiSettings::UiSettings() :
SettingsCategory("ui"), p(std::make_unique<UiSettingsImpl>())
{
RegisterVariables({&p->level2ProductsExpanded_,
&p->level2SettingsExpanded_,
&p->level3ProductsExpanded_,
&p->mapSettingsExpanded_,
&p->timelineExpanded_});
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_;
}
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();
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_);
}
} // namespace settings
} // namespace qt
} // namespace scwx

View file

@ -0,0 +1,48 @@
#pragma once
#include <scwx/qt/settings/settings_category.hpp>
#include <scwx/qt/settings/settings_variable.hpp>
#include <memory>
#include <string>
namespace scwx
{
namespace qt
{
namespace settings
{
class UiSettingsImpl;
class UiSettings : public SettingsCategory
{
public:
explicit UiSettings();
~UiSettings();
UiSettings(const UiSettings&) = delete;
UiSettings& operator=(const UiSettings&) = delete;
UiSettings(UiSettings&&) noexcept;
UiSettings& operator=(UiSettings&&) noexcept;
SettingsVariable<bool>& level2_products_expanded() const;
SettingsVariable<bool>& level2_settings_expanded() const;
SettingsVariable<bool>& level3_products_expanded() const;
SettingsVariable<bool>& map_settings_expanded() const;
SettingsVariable<bool>& timeline_expanded() const;
bool Shutdown();
static UiSettings& Instance();
friend bool operator==(const UiSettings& lhs, const UiSettings& rhs);
private:
std::unique_ptr<UiSettingsImpl> p;
};
} // namespace settings
} // namespace qt
} // namespace scwx