mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-11-04 06:10:04 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			79 lines
		
	
	
	
		
			2.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			79 lines
		
	
	
	
		
			2.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
#pragma once
 | 
						|
 | 
						|
#include <scwx/qt/gl/gl_context.hpp>
 | 
						|
#include <scwx/qt/map/map_provider.hpp>
 | 
						|
#include <scwx/common/geographic.hpp>
 | 
						|
#include <scwx/common/products.hpp>
 | 
						|
 | 
						|
#include <qmaplibre.hpp>
 | 
						|
#include <QMargins>
 | 
						|
 | 
						|
namespace scwx
 | 
						|
{
 | 
						|
namespace qt
 | 
						|
{
 | 
						|
namespace view
 | 
						|
{
 | 
						|
 | 
						|
class OverlayProductView;
 | 
						|
class RadarProductView;
 | 
						|
 | 
						|
} // namespace view
 | 
						|
 | 
						|
namespace map
 | 
						|
{
 | 
						|
 | 
						|
struct MapSettings;
 | 
						|
 | 
						|
class MapContext : public gl::GlContext
 | 
						|
{
 | 
						|
public:
 | 
						|
   explicit MapContext(
 | 
						|
      std::shared_ptr<view::RadarProductView> radarProductView = nullptr);
 | 
						|
   ~MapContext();
 | 
						|
 | 
						|
   MapContext(const MapContext&)            = delete;
 | 
						|
   MapContext& operator=(const MapContext&) = delete;
 | 
						|
 | 
						|
   MapContext(MapContext&&) noexcept;
 | 
						|
   MapContext& operator=(MapContext&&) noexcept;
 | 
						|
 | 
						|
   std::weak_ptr<QMapLibre::Map>             map() const;
 | 
						|
   std::string                               map_copyrights() const;
 | 
						|
   MapProvider                               map_provider() const;
 | 
						|
   MapSettings&                              settings();
 | 
						|
   QMargins                                  color_table_margins() const;
 | 
						|
   float                                     pixel_ratio() const;
 | 
						|
   common::Coordinate                        mouse_coordinate() const;
 | 
						|
   std::shared_ptr<view::OverlayProductView> overlay_product_view() const;
 | 
						|
   std::shared_ptr<view::RadarProductView>   radar_product_view() const;
 | 
						|
   common::RadarProductGroup                 radar_product_group() const;
 | 
						|
   std::string                               radar_product() const;
 | 
						|
   int16_t                                   radar_product_code() const;
 | 
						|
   QMapLibre::CustomLayerRenderParameters    render_parameters() const;
 | 
						|
 | 
						|
   void set_map(const std::shared_ptr<QMapLibre::Map>& map);
 | 
						|
   void set_map_copyrights(const std::string& copyrights);
 | 
						|
   void set_map_provider(MapProvider provider);
 | 
						|
   void set_color_table_margins(const QMargins& margins);
 | 
						|
   void set_mouse_coordinate(const common::Coordinate& coordinate);
 | 
						|
   void set_overlay_product_view(
 | 
						|
      const std::shared_ptr<view::OverlayProductView>& overlayProductView);
 | 
						|
   void set_pixel_ratio(float pixelRatio);
 | 
						|
   void set_radar_product_view(
 | 
						|
      const std::shared_ptr<view::RadarProductView>& radarProductView);
 | 
						|
   void set_radar_product_group(common::RadarProductGroup radarProductGroup);
 | 
						|
   void set_radar_product(const std::string& radarProduct);
 | 
						|
   void set_radar_product_code(int16_t radarProductCode);
 | 
						|
   void
 | 
						|
   set_render_parameters(const QMapLibre::CustomLayerRenderParameters& params);
 | 
						|
 | 
						|
private:
 | 
						|
   class Impl;
 | 
						|
 | 
						|
   std::unique_ptr<Impl> p;
 | 
						|
};
 | 
						|
 | 
						|
} // namespace map
 | 
						|
} // namespace qt
 | 
						|
} // namespace scwx
 |