2017-03-10 19:11:41 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2023-03-10 17:15:40 +00:00
|
|
|
* Copyright (C) 2016-2023 KiCad Developers, see AUTHORS.txt for contributors.
|
2017-03-10 19:11:41 +00:00
|
|
|
* Copyright (C) 2017 Chris Pavlina <pavlina.chris@gmail.com>
|
|
|
|
* Copyright (C) 2016 Tomasz Wlostowski <tomasz.wlostowski@cern.ch>
|
|
|
|
*
|
|
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __FOOTPRINT_PREVIEW_PANEL_H
|
|
|
|
#define __FOOTPRINT_PREVIEW_PANEL_H
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
#include <deque>
|
|
|
|
#include <functional>
|
|
|
|
|
|
|
|
#include <pcb_draw_panel_gal.h>
|
2020-08-10 01:29:15 +00:00
|
|
|
#include <gal/color4d.h>
|
2017-03-10 19:11:41 +00:00
|
|
|
#include <gal/gal_display_options.h>
|
|
|
|
#include <lib_id.h>
|
|
|
|
#include <kiway_player.h>
|
2022-08-25 22:50:47 +00:00
|
|
|
#include <optional>
|
2017-03-10 19:11:41 +00:00
|
|
|
|
|
|
|
#include <widgets/footprint_preview_widget.h>
|
|
|
|
|
2020-11-13 15:15:52 +00:00
|
|
|
class FOOTPRINT;
|
2017-03-10 19:11:41 +00:00
|
|
|
class KIWAY;
|
|
|
|
class IO_MGR;
|
|
|
|
class BOARD;
|
2023-12-08 15:40:19 +00:00
|
|
|
class FOOTPRINT;
|
2017-03-10 19:11:41 +00:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Panel that renders a single footprint via Cairo GAL, meant to be exported
|
|
|
|
* through Kiface.
|
|
|
|
*/
|
2020-12-21 22:02:13 +00:00
|
|
|
class FOOTPRINT_PREVIEW_PANEL : public PCB_DRAW_PANEL_GAL,
|
|
|
|
public KIWAY_HOLDER,
|
|
|
|
public FOOTPRINT_PREVIEW_PANEL_BASE
|
2017-03-10 19:11:41 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
virtual ~FOOTPRINT_PREVIEW_PANEL( );
|
|
|
|
|
2023-01-02 22:11:44 +00:00
|
|
|
virtual void SetUserUnits( EDA_UNITS aUnits ) override { m_userUnits = aUnits; }
|
2024-03-09 11:58:23 +00:00
|
|
|
virtual void SetPinFunctions( const std::map<wxString, wxString>& aPinFunctions ) override
|
|
|
|
{
|
|
|
|
m_pinFunctions = aPinFunctions;
|
|
|
|
}
|
|
|
|
|
2020-12-21 22:02:13 +00:00
|
|
|
virtual bool DisplayFootprint( const LIB_ID& aFPID ) override;
|
2023-03-10 17:15:40 +00:00
|
|
|
virtual void DisplayFootprints( std::shared_ptr<FOOTPRINT> aFootprintA,
|
|
|
|
std::shared_ptr<FOOTPRINT> aFootprintB ) override;
|
2017-03-10 19:11:41 +00:00
|
|
|
|
2022-09-16 16:20:36 +00:00
|
|
|
virtual const KIGFX::COLOR4D& GetBackgroundColor() const override;
|
|
|
|
virtual const KIGFX::COLOR4D& GetForegroundColor() const override;
|
2020-08-10 01:29:15 +00:00
|
|
|
|
2017-03-10 19:11:41 +00:00
|
|
|
virtual wxWindow* GetWindow() override;
|
2020-08-06 18:37:43 +00:00
|
|
|
BOARD* GetBoard() { return m_dummyBoard.get(); }
|
2017-03-10 19:11:41 +00:00
|
|
|
|
2023-03-10 17:15:40 +00:00
|
|
|
virtual void RefreshAll() override;
|
|
|
|
|
2023-09-02 21:13:48 +00:00
|
|
|
static FOOTPRINT_PREVIEW_PANEL* New( KIWAY* aKiway, wxWindow* aParent,
|
|
|
|
UNITS_PROVIDER* aUnitsProvider );
|
2023-12-08 15:40:19 +00:00
|
|
|
const FOOTPRINT* GetCurrentFootprint() const { return m_currentFootprint.get(); }
|
2017-03-10 19:11:41 +00:00
|
|
|
|
|
|
|
private:
|
Pcbnew: FOOTPRINT_PREVIEW_PANEL passes reference to local
Previously, the GAL_DISPLAY_OPTIONS object in FOOTPRINT_PREVIEW_PANEL::New
was passed by reference in the ctor, down to EDA_DRAW_PANEL_GAL, which stored
it as a reference. The object in New() then goes out of scope, so the
referencing panel outlives the options.
Fix this by making a copy in a std::unique_ptr of the options, and giving
ownership to the panel.
There is another issue here: when the Pcbnew options are copies, the
OBSERVABLE subscriber list is copied too. This means if the panel called
NotifyChanged() on the options, Pcbnew would get updates, even though a copy
of the options changed. However, the panel doesn't change the options or
notify, so it's OK for now.
2019-04-11 11:06:50 +00:00
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
*/
|
2023-09-02 21:13:48 +00:00
|
|
|
FOOTPRINT_PREVIEW_PANEL( KIWAY* aKiway, wxWindow* aParent, UNITS_PROVIDER* aUnitsProvider,
|
|
|
|
std::unique_ptr<KIGFX::GAL_DISPLAY_OPTIONS> aOpts, GAL_TYPE aGalType );
|
2017-03-10 19:11:41 +00:00
|
|
|
|
2020-11-13 15:15:52 +00:00
|
|
|
void renderFootprint( std::shared_ptr<FOOTPRINT> aFootprint );
|
2017-03-10 19:11:41 +00:00
|
|
|
|
2023-03-10 17:15:40 +00:00
|
|
|
void fitToCurrentFootprint();
|
|
|
|
|
2020-08-06 18:37:43 +00:00
|
|
|
private:
|
2020-01-09 14:18:41 +00:00
|
|
|
std::unique_ptr<BOARD> m_dummyBoard;
|
|
|
|
std::unique_ptr<KIGFX::GAL_DISPLAY_OPTIONS> m_displayOptions;
|
2023-01-02 22:11:44 +00:00
|
|
|
EDA_UNITS m_userUnits;
|
2024-03-09 11:58:23 +00:00
|
|
|
std::map<wxString, wxString> m_pinFunctions;
|
2020-12-21 22:02:13 +00:00
|
|
|
std::shared_ptr<FOOTPRINT> m_currentFootprint;
|
2023-03-10 17:15:40 +00:00
|
|
|
std::shared_ptr<FOOTPRINT> m_otherFootprint;
|
2017-03-10 19:11:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|