/* * This program source code file is part of KiCad, a free EDA CAD application. * * Copyright (C) 2016-2023 KiCad Developers, see AUTHORS.txt for contributors. * Copyright (C) 2017 Chris Pavlina * Copyright (C) 2016 Tomasz Wlostowski * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation, either version 3 of the License, or (at your * option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see . */ #ifndef __FOOTPRINT_PREVIEW_PANEL_H #define __FOOTPRINT_PREVIEW_PANEL_H #include #include #include #include #include #include #include #include #include #include class FOOTPRINT; class KIWAY; class IO_MGR; class BOARD; /** * Panel that renders a single footprint via Cairo GAL, meant to be exported * through Kiface. */ class FOOTPRINT_PREVIEW_PANEL : public PCB_DRAW_PANEL_GAL, public KIWAY_HOLDER, public FOOTPRINT_PREVIEW_PANEL_BASE { public: virtual ~FOOTPRINT_PREVIEW_PANEL( ); virtual void SetUserUnits( EDA_UNITS aUnits ) override { m_userUnits = aUnits; } virtual bool DisplayFootprint( const LIB_ID& aFPID ) override; virtual void DisplayFootprints( std::shared_ptr aFootprintA, std::shared_ptr aFootprintB ) override; virtual const KIGFX::COLOR4D& GetBackgroundColor() const override; virtual const KIGFX::COLOR4D& GetForegroundColor() const override; virtual wxWindow* GetWindow() override; BOARD* GetBoard() { return m_dummyBoard.get(); } virtual void RefreshAll() override; static FOOTPRINT_PREVIEW_PANEL* New( KIWAY* aKiway, wxWindow* aParent, UNITS_PROVIDER* aUnitsProvider ); private: /** * Create a new panel * * @param aKiway the connected KIWAY * @param aParent the owning WX window * @param aOpts the GAL options (ownership is assumed) * @param aGalType the displayed GAL type */ FOOTPRINT_PREVIEW_PANEL( KIWAY* aKiway, wxWindow* aParent, UNITS_PROVIDER* aUnitsProvider, std::unique_ptr aOpts, GAL_TYPE aGalType ); void renderFootprint( std::shared_ptr aFootprint ); void fitToCurrentFootprint(); private: std::unique_ptr m_dummyBoard; std::unique_ptr m_displayOptions; EDA_UNITS m_userUnits; std::shared_ptr m_currentFootprint; std::shared_ptr m_otherFootprint; }; #endif