mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-10-31 00:10:06 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			42 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <scwx/qt/gl/draw/draw_item.hpp>
 | |
| #include <scwx/qt/map/generic_layer.hpp>
 | |
| 
 | |
| namespace scwx
 | |
| {
 | |
| namespace qt
 | |
| {
 | |
| namespace map
 | |
| {
 | |
| 
 | |
| class DrawLayerImpl;
 | |
| 
 | |
| class DrawLayer : public GenericLayer
 | |
| {
 | |
| public:
 | |
|    explicit DrawLayer(const std::shared_ptr<MapContext>& context);
 | |
|    virtual ~DrawLayer();
 | |
| 
 | |
|    virtual void Initialize() override;
 | |
|    virtual void Render(const QMapLibre::CustomLayerRenderParameters&) override;
 | |
|    virtual void Deinitialize() override;
 | |
| 
 | |
|    virtual bool
 | |
|    RunMousePicking(const QMapLibre::CustomLayerRenderParameters& params,
 | |
|                    const QPointF&                                mouseLocalPos,
 | |
|                    const QPointF&                                mouseGlobalPos,
 | |
|                    const glm::vec2&                              mouseCoords,
 | |
|                    const common::Coordinate&                     mouseGeoCoords,
 | |
|                    std::shared_ptr<types::EventHandler>& eventHandler) override;
 | |
| 
 | |
| protected:
 | |
|    void AddDrawItem(const std::shared_ptr<gl::draw::DrawItem>& drawItem);
 | |
| 
 | |
| private:
 | |
|    std::unique_ptr<DrawLayerImpl> p;
 | |
| };
 | |
| 
 | |
| } // namespace map
 | |
| } // namespace qt
 | |
| } // namespace scwx
 | 
