mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-11-04 05:10:06 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			68 lines
		
	
	
	
		
			2.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
	
		
			2.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
#pragma once
 | 
						|
 | 
						|
#include <scwx/qt/settings/settings_category.hpp>
 | 
						|
#include <scwx/qt/settings/settings_container.hpp>
 | 
						|
 | 
						|
#include <memory>
 | 
						|
#include <string>
 | 
						|
 | 
						|
namespace scwx
 | 
						|
{
 | 
						|
namespace qt
 | 
						|
{
 | 
						|
namespace settings
 | 
						|
{
 | 
						|
 | 
						|
class GeneralSettings : public SettingsCategory
 | 
						|
{
 | 
						|
public:
 | 
						|
   explicit GeneralSettings();
 | 
						|
   ~GeneralSettings();
 | 
						|
 | 
						|
   GeneralSettings(const GeneralSettings&)            = delete;
 | 
						|
   GeneralSettings& operator=(const GeneralSettings&) = delete;
 | 
						|
 | 
						|
   GeneralSettings(GeneralSettings&&) noexcept;
 | 
						|
   GeneralSettings& operator=(GeneralSettings&&) noexcept;
 | 
						|
 | 
						|
   SettingsVariable<bool>&                       anti_aliasing_enabled() const;
 | 
						|
   SettingsVariable<std::string>&                clock_format() const;
 | 
						|
   SettingsVariable<bool>&                       debug_enabled() const;
 | 
						|
   SettingsVariable<std::string>&                default_alert_action() const;
 | 
						|
   SettingsVariable<std::string>&                default_radar_site() const;
 | 
						|
   SettingsVariable<std::string>&                default_time_zone() const;
 | 
						|
   SettingsContainer<std::vector<std::int64_t>>& font_sizes() const;
 | 
						|
   SettingsVariable<std::int64_t>&               grid_height() const;
 | 
						|
   SettingsVariable<std::int64_t>&               grid_width() const;
 | 
						|
   SettingsVariable<std::int64_t>&               loop_delay() const;
 | 
						|
   SettingsVariable<double>&                     loop_speed() const;
 | 
						|
   SettingsVariable<std::int64_t>&               loop_time() const;
 | 
						|
   SettingsVariable<std::string>&                map_provider() const;
 | 
						|
   SettingsVariable<std::string>&                mapbox_api_key() const;
 | 
						|
   SettingsVariable<std::string>&                maptiler_api_key() const;
 | 
						|
   SettingsVariable<std::int64_t>&               nmea_baud_rate() const;
 | 
						|
   SettingsVariable<std::string>&                nmea_source() const;
 | 
						|
   SettingsVariable<std::string>&                positioning_plugin() const;
 | 
						|
   SettingsVariable<bool>&                       show_map_attribution() const;
 | 
						|
   SettingsVariable<bool>&                       show_map_center() const;
 | 
						|
   SettingsVariable<bool>&                       show_map_logo() const;
 | 
						|
   SettingsVariable<std::string>&                theme() const;
 | 
						|
   SettingsVariable<bool>&                       track_location() const;
 | 
						|
   SettingsVariable<bool>&        update_notifications_enabled() const;
 | 
						|
   SettingsVariable<std::string>& warnings_provider() const;
 | 
						|
 | 
						|
   static GeneralSettings& Instance();
 | 
						|
 | 
						|
   friend bool operator==(const GeneralSettings& lhs,
 | 
						|
                          const GeneralSettings& rhs);
 | 
						|
 | 
						|
   bool Shutdown();
 | 
						|
 | 
						|
private:
 | 
						|
   class Impl;
 | 
						|
   std::unique_ptr<Impl> p;
 | 
						|
};
 | 
						|
 | 
						|
} // namespace settings
 | 
						|
} // namespace qt
 | 
						|
} // namespace scwx
 |