mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-11-04 08:30:04 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			44 lines
		
	
	
	
		
			845 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
	
		
			845 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#pragma once
 | 
						|
 | 
						|
#include <scwx/awips/phenomenon.hpp>
 | 
						|
#include <scwx/qt/map/draw_layer.hpp>
 | 
						|
#include <scwx/qt/types/text_event_key.hpp>
 | 
						|
 | 
						|
#include <memory>
 | 
						|
#include <string>
 | 
						|
#include <vector>
 | 
						|
 | 
						|
namespace scwx
 | 
						|
{
 | 
						|
namespace qt
 | 
						|
{
 | 
						|
namespace map
 | 
						|
{
 | 
						|
 | 
						|
class AlertLayer : public DrawLayer
 | 
						|
{
 | 
						|
   Q_OBJECT
 | 
						|
   Q_DISABLE_COPY_MOVE(AlertLayer)
 | 
						|
 | 
						|
public:
 | 
						|
   explicit AlertLayer(std::shared_ptr<MapContext> context,
 | 
						|
                       scwx::awips::Phenomenon     phenomenon);
 | 
						|
   ~AlertLayer();
 | 
						|
 | 
						|
   void Initialize() override final;
 | 
						|
   void Render(const QMapLibre::CustomLayerRenderParameters&) override final;
 | 
						|
   void Deinitialize() override final;
 | 
						|
 | 
						|
   static void InitializeHandler();
 | 
						|
 | 
						|
signals:
 | 
						|
   void AlertSelected(const types::TextEventKey& key);
 | 
						|
 | 
						|
private:
 | 
						|
   class Impl;
 | 
						|
   std::unique_ptr<Impl> p;
 | 
						|
};
 | 
						|
 | 
						|
} // namespace map
 | 
						|
} // namespace qt
 | 
						|
} // namespace scwx
 |