2017-03-10 19:11:41 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2023-01-02 22:11:44 +00:00
|
|
|
* Copyright (C) 2017-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>
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2020-12-21 22:02:13 +00:00
|
|
|
#ifndef FOOTPRINT_PREVIEW_WIDGET_H
|
|
|
|
#define FOOTPRINT_PREVIEW_WIDGET_H
|
2017-03-10 19:11:41 +00:00
|
|
|
|
|
|
|
#include <wx/panel.h>
|
|
|
|
#include <functional>
|
|
|
|
#include <import_export.h>
|
2021-02-25 20:13:42 +00:00
|
|
|
#include <lib_id.h>
|
2023-01-02 22:11:44 +00:00
|
|
|
#include <eda_units.h>
|
2020-08-10 01:29:15 +00:00
|
|
|
#include <gal/color4d.h>
|
|
|
|
|
2017-03-10 19:11:41 +00:00
|
|
|
class FOOTPRINT_PREVIEW_PANEL_BASE;
|
2023-03-10 17:15:40 +00:00
|
|
|
class FOOTPRINT;
|
2017-03-10 19:11:41 +00:00
|
|
|
class KIWAY;
|
|
|
|
class wxStaticText;
|
|
|
|
class wxSizer;
|
|
|
|
|
|
|
|
|
|
|
|
class FOOTPRINT_PREVIEW_WIDGET: public wxPanel
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Construct a footprint preview widget.
|
|
|
|
*
|
|
|
|
* @param aParent - parent window
|
|
|
|
* @param aKiway - an active Kiway instance
|
|
|
|
*/
|
|
|
|
FOOTPRINT_PREVIEW_WIDGET( wxWindow* aParent, KIWAY& aKiway );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return whether the widget initialized properly. This could return false
|
|
|
|
* if Kiway is not available. If this returns false, no other methods should
|
|
|
|
* be called.
|
|
|
|
*/
|
2020-12-21 22:02:13 +00:00
|
|
|
bool IsInitialized() const { return m_prev_panel != nullptr; }
|
2017-03-10 19:11:41 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the contents of the status label and display it.
|
|
|
|
*/
|
2021-07-27 12:22:27 +00:00
|
|
|
void SetStatusText( const wxString& aText );
|
2017-03-10 19:11:41 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Clear the contents of the status label and hide it.
|
|
|
|
*/
|
|
|
|
void ClearStatus();
|
|
|
|
|
2023-01-02 22:11:44 +00:00
|
|
|
/**
|
|
|
|
* Set the units for the preview.
|
|
|
|
*/
|
|
|
|
void SetUserUnits( EDA_UNITS aUnits );
|
|
|
|
|
2017-03-10 19:11:41 +00:00
|
|
|
/**
|
|
|
|
* Set the currently displayed footprint. Any footprint passed in here
|
|
|
|
* must have been passed to CacheFootprint before.
|
|
|
|
*/
|
|
|
|
void DisplayFootprint( const LIB_ID& aFPID );
|
|
|
|
|
2023-03-10 17:15:40 +00:00
|
|
|
/**
|
|
|
|
* Display a pair of footprints. (Normally used for diff'ing.)
|
|
|
|
*/
|
|
|
|
void DisplayFootprints( std::shared_ptr<FOOTPRINT> aFootprintA,
|
|
|
|
std::shared_ptr<FOOTPRINT> aFootprintB );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Force the redrawing of all contents.
|
|
|
|
*/
|
|
|
|
void RefreshAll();
|
|
|
|
|
|
|
|
protected:
|
2017-03-10 19:11:41 +00:00
|
|
|
FOOTPRINT_PREVIEW_PANEL_BASE* m_prev_panel;
|
2020-08-10 01:29:15 +00:00
|
|
|
|
2023-01-02 22:11:44 +00:00
|
|
|
wxStaticText* m_status;
|
|
|
|
wxPanel* m_statusPanel;
|
|
|
|
wxSizer* m_statusSizer;
|
|
|
|
wxSizer* m_outerSizer;
|
|
|
|
LIB_ID m_libid;
|
2017-03-10 19:11:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Base class for the actual viewer panel. The implementation is in
|
|
|
|
* pcbnew/footprint_preview_panel.cpp, accessed via kiface.
|
|
|
|
*/
|
|
|
|
class APIEXPORT FOOTPRINT_PREVIEW_PANEL_BASE
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual ~FOOTPRINT_PREVIEW_PANEL_BASE() {}
|
|
|
|
|
2023-01-02 22:11:44 +00:00
|
|
|
virtual void SetUserUnits( EDA_UNITS aUnits ) = 0;
|
|
|
|
|
2017-03-10 19:11:41 +00:00
|
|
|
/**
|
|
|
|
* Set the currently displayed footprint. Any footprint passed in here
|
|
|
|
* must have been passed to CacheFootprint before.
|
|
|
|
*/
|
2020-12-21 22:02:13 +00:00
|
|
|
virtual bool DisplayFootprint( LIB_ID const& aFPID ) = 0;
|
2017-03-10 19:11:41 +00:00
|
|
|
|
2023-03-10 17:15:40 +00:00
|
|
|
/**
|
|
|
|
* Display a pair of footprints. (Normally used for diff'ing.)
|
|
|
|
*/
|
|
|
|
virtual void DisplayFootprints( std::shared_ptr<FOOTPRINT> aFootprintA,
|
|
|
|
std::shared_ptr<FOOTPRINT> aFootprintB ) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Force the redrawing of all contents.
|
|
|
|
*/
|
|
|
|
virtual void RefreshAll() = 0;
|
|
|
|
|
2017-03-10 19:11:41 +00:00
|
|
|
/**
|
|
|
|
* Get the underlying wxWindow.
|
|
|
|
*/
|
|
|
|
virtual wxWindow* GetWindow() = 0;
|
|
|
|
|
2020-08-10 01:29:15 +00:00
|
|
|
/**
|
|
|
|
* Get the colors to use in a preview widget to match the preview panel.
|
|
|
|
*/
|
2022-09-16 16:20:36 +00:00
|
|
|
virtual const KIGFX::COLOR4D& GetBackgroundColor() const = 0;
|
|
|
|
virtual const KIGFX::COLOR4D& GetForegroundColor() const = 0;
|
2020-08-10 01:29:15 +00:00
|
|
|
|
2017-03-10 19:11:41 +00:00
|
|
|
/**
|
|
|
|
* Return a footprint preview panel instance via Kiface. May return null
|
|
|
|
* if Kiway is not available or there is any error on load.
|
|
|
|
*/
|
|
|
|
static FOOTPRINT_PREVIEW_PANEL_BASE* Create( wxWindow* aParent, KIWAY& aKiway );
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2020-12-21 22:02:13 +00:00
|
|
|
#endif // FOOTPRINT_PREVIEW_WIDGET_H
|