2013-04-26 15:11:52 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2018-08-06 18:26:37 +00:00
|
|
|
* Copyright (C) 2018 Jean-Pierre Charras, jaen-pierre.charras@gipsa-lab.inpg.com
|
2022-02-25 13:05:25 +00:00
|
|
|
* Copyright (C) 2007-2022 KiCad Developers, see AUTHORS.txt for contributors.
|
2013-04-26 15:11:52 +00:00
|
|
|
*
|
|
|
|
* 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 2
|
|
|
|
* 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, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
2011-09-23 13:57:12 +00:00
|
|
|
/**
|
2018-01-28 08:51:28 +00:00
|
|
|
* @file display_footprints_frame.h
|
2011-09-23 13:57:12 +00:00
|
|
|
*/
|
2018-08-06 18:26:37 +00:00
|
|
|
#ifndef DISPLAY_FOOTPRINTS_FRAME_H
|
|
|
|
#define DISPLAY_FOOTPRINTS_FRAME_H
|
2010-02-01 21:23:27 +00:00
|
|
|
|
2018-01-29 15:39:40 +00:00
|
|
|
#include <pcb_base_frame.h>
|
2020-05-22 18:27:05 +00:00
|
|
|
#include <pcbnew_settings.h>
|
2010-02-01 21:23:27 +00:00
|
|
|
|
2020-06-03 23:34:42 +00:00
|
|
|
class REPORTER;
|
2024-04-27 19:57:24 +00:00
|
|
|
class COMPONENT;
|
2020-06-03 23:34:42 +00:00
|
|
|
|
2014-03-21 11:50:04 +00:00
|
|
|
// The name (for wxWidgets) of the footprint viewer frame
|
|
|
|
#define FOOTPRINTVIEWER_FRAME_NAME wxT( "FootprintViewerFrame" )
|
2011-09-23 13:57:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
2021-01-26 15:23:37 +00:00
|
|
|
* Display footprints.
|
2011-09-23 13:57:12 +00:00
|
|
|
*/
|
2011-03-01 19:26:17 +00:00
|
|
|
class DISPLAY_FOOTPRINTS_FRAME : public PCB_BASE_FRAME
|
2010-02-01 21:23:27 +00:00
|
|
|
{
|
|
|
|
public:
|
2018-07-01 14:48:35 +00:00
|
|
|
DISPLAY_FOOTPRINTS_FRAME( KIWAY* aKiway, wxWindow* aParent );
|
|
|
|
~DISPLAY_FOOTPRINTS_FRAME() override;
|
2010-02-01 21:23:27 +00:00
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
void ReCreateHToolbar() override;
|
|
|
|
void ReCreateVToolbar() override;
|
2018-02-03 22:55:13 +00:00
|
|
|
void ReCreateOptToolbar() override;
|
2021-03-27 21:49:38 +00:00
|
|
|
void UpdateToolbarControlSizes() override;
|
2010-02-01 21:23:27 +00:00
|
|
|
|
2012-05-31 17:41:37 +00:00
|
|
|
/**
|
|
|
|
* Refresh the full display for this frame:
|
|
|
|
* Set the title, the status line and redraw the canvas
|
2021-01-26 15:23:37 +00:00
|
|
|
* Must be called after the footprint to display is modified
|
2012-05-31 17:41:37 +00:00
|
|
|
*/
|
|
|
|
void InitDisplay();
|
|
|
|
|
2021-01-26 15:23:37 +00:00
|
|
|
///< @copydoc PCB_BASE_FRAME::GetModel()
|
2020-05-22 18:27:05 +00:00
|
|
|
BOARD_ITEM_CONTAINER* GetModel() const override;
|
|
|
|
|
2018-08-06 18:26:37 +00:00
|
|
|
/**
|
2021-01-26 15:23:37 +00:00
|
|
|
* Update the gal canvas (view, colors ...).
|
2018-08-06 18:26:37 +00:00
|
|
|
*/
|
|
|
|
void updateView();
|
|
|
|
|
2020-01-13 01:44:19 +00:00
|
|
|
void LoadSettings( APP_SETTINGS_BASE* aCfg ) override;
|
|
|
|
void SaveSettings( APP_SETTINGS_BASE* aCfg ) override;
|
|
|
|
|
|
|
|
WINDOW_SETTINGS* GetWindowSettings( APP_SETTINGS_BASE* aCfg ) override;
|
2018-08-06 18:26:37 +00:00
|
|
|
|
2022-07-24 22:40:47 +00:00
|
|
|
PCB_VIEWERS_SETTINGS_BASE* GetViewerSettingsBase() const override;
|
|
|
|
|
2020-05-22 18:27:05 +00:00
|
|
|
MAGNETIC_SETTINGS* GetMagneticItemsSettings() override;
|
|
|
|
|
2021-01-26 15:23:37 +00:00
|
|
|
///< @copydoc EDA_DRAW_FRAME::UpdateMsgPanel()
|
2018-08-06 18:26:37 +00:00
|
|
|
void UpdateMsgPanel() override;
|
|
|
|
|
2021-09-07 20:34:10 +00:00
|
|
|
COLOR_SETTINGS* GetColorSettings( bool aForceRefresh = false ) const override;
|
2020-05-08 21:05:29 +00:00
|
|
|
|
2010-11-12 15:17:10 +00:00
|
|
|
/**
|
2021-01-26 15:23:37 +00:00
|
|
|
* @return the color of the grid.
|
2010-02-01 21:23:27 +00:00
|
|
|
*/
|
2018-07-01 14:48:35 +00:00
|
|
|
COLOR4D GetGridColor() override;
|
2010-02-01 21:23:27 +00:00
|
|
|
|
2020-11-13 15:15:52 +00:00
|
|
|
FOOTPRINT* GetFootprint( const wxString& aFootprintName, REPORTER& aReporter );
|
2010-02-01 21:23:27 +00:00
|
|
|
|
2020-07-29 23:50:25 +00:00
|
|
|
SELECTION& GetCurrentSelection() override;
|
|
|
|
|
2023-05-31 20:37:58 +00:00
|
|
|
void ReloadFootprint( FOOTPRINT* aFootprint ) override;
|
2010-02-01 21:23:27 +00:00
|
|
|
DECLARE_EVENT_TABLE()
|
2020-07-29 23:50:25 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
void setupUIConditions() override;
|
2022-07-25 12:29:18 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
wxString m_currentFootprint;
|
|
|
|
COMPONENT* m_currentComp;
|
2010-02-01 21:23:27 +00:00
|
|
|
};
|
2018-08-06 18:26:37 +00:00
|
|
|
|
|
|
|
#endif // DISPLAY_FOOTPRINTS_FRAME_H
|