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
|
|
|
|
* Copyright (C) 2007-2018 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>
|
2010-02-01 21:23:27 +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
|
|
|
|
|
|
|
class CVPCB_MAINFRAME;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class DISPLAY_FOOTPRINTS_FRAME
|
|
|
|
* is used to display footprints.
|
|
|
|
*/
|
2011-03-01 19:26:17 +00:00
|
|
|
class DISPLAY_FOOTPRINTS_FRAME : public PCB_BASE_FRAME
|
2010-02-01 21:23:27 +00:00
|
|
|
{
|
2018-09-11 15:28:57 +00:00
|
|
|
bool m_autoZoom;
|
|
|
|
double m_lastZoom;
|
|
|
|
|
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 OnCloseWindow( wxCloseEvent& Event ) override;
|
2013-04-26 15:11:52 +00:00
|
|
|
|
2018-08-08 19:23:31 +00:00
|
|
|
/** UI events:
|
|
|
|
*/
|
|
|
|
void OnUIToolSelection( wxUpdateUIEvent& aEvent );
|
|
|
|
|
2013-04-26 15:11:52 +00:00
|
|
|
/*
|
|
|
|
* Draws the current highlighted footprint.
|
|
|
|
*/
|
2016-09-24 18:53:15 +00:00
|
|
|
void RedrawActiveWindow( wxDC* DC, bool EraseBg ) override;
|
2013-04-26 15:11:52 +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;
|
2010-02-01 21:23:27 +00:00
|
|
|
|
2012-05-31 17:41:37 +00:00
|
|
|
/**
|
|
|
|
* Function InitDisplay
|
|
|
|
* Refresh the full display for this frame:
|
|
|
|
* Set the title, the status line and redraw the canvas
|
|
|
|
* Must be called after the footprint to display is modifed
|
|
|
|
*/
|
|
|
|
void InitDisplay();
|
|
|
|
|
2018-08-06 18:26:37 +00:00
|
|
|
/**
|
|
|
|
* update the gal canvas (view, colors ...)
|
|
|
|
*/
|
|
|
|
void updateView();
|
|
|
|
|
2018-09-11 15:28:57 +00:00
|
|
|
void LoadSettings( wxConfigBase* aCfg ) override;
|
|
|
|
void SaveSettings( wxConfigBase* aCfg ) override;
|
2018-08-06 18:26:37 +00:00
|
|
|
|
2018-09-11 15:28:57 +00:00
|
|
|
/// Updates the GAL with display settings changes
|
|
|
|
void ApplyDisplaySettingsToGAL();
|
2018-08-06 18:26:37 +00:00
|
|
|
|
|
|
|
///> @copydoc EDA_DRAW_FRAME::UpdateMsgPanel()
|
|
|
|
void UpdateMsgPanel() override;
|
|
|
|
|
2018-09-11 15:28:57 +00:00
|
|
|
bool GetAutoZoom() const { return m_autoZoom; }
|
|
|
|
void SetAutoZoom( bool aEnable ) { m_autoZoom = aEnable; }
|
|
|
|
|
2010-11-12 15:17:10 +00:00
|
|
|
/**
|
|
|
|
* Function IsGridVisible() , virtual
|
2010-02-01 21:23:27 +00:00
|
|
|
* @return true if the grid must be shown
|
|
|
|
*/
|
2018-07-01 14:48:35 +00:00
|
|
|
bool IsGridVisible() const override;
|
2010-02-01 21:23:27 +00:00
|
|
|
|
2010-11-12 15:17:10 +00:00
|
|
|
/**
|
|
|
|
* Function SetGridVisibility() , virtual
|
2010-02-01 21:23:27 +00:00
|
|
|
* It may be overloaded by derived classes
|
2011-02-21 21:07:00 +00:00
|
|
|
* if you want to store/retrieve the grid visibility in configuration.
|
2010-02-01 21:23:27 +00:00
|
|
|
* @param aVisible = true if the grid must be shown
|
|
|
|
*/
|
2018-07-01 14:48:35 +00:00
|
|
|
void SetGridVisibility( bool aVisible ) override;
|
2010-11-12 15:17:10 +00:00
|
|
|
/**
|
|
|
|
* Function GetGridColor() , virtual
|
2010-02-01 21:23:27 +00:00
|
|
|
* @return the color of the grid
|
|
|
|
*/
|
2018-07-01 14:48:35 +00:00
|
|
|
COLOR4D GetGridColor() override;
|
2010-02-01 21:23:27 +00:00
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
void OnLeftClick( wxDC* DC, const wxPoint& MousePos ) override;
|
|
|
|
void OnLeftDClick( wxDC* DC, const wxPoint& MousePos ) override;
|
|
|
|
bool OnRightClick( const wxPoint& MousePos, wxMenu* PopMenu ) override;
|
|
|
|
bool GeneralControl( wxDC* DC, const wxPoint& aPosition, EDA_KEY aHotKey = 0 ) override;
|
2010-02-01 21:23:27 +00:00
|
|
|
void InstallOptionsDisplay( wxCommandEvent& event );
|
|
|
|
MODULE* Get_Module( const wxString& CmpName );
|
|
|
|
|
2015-05-05 18:39:42 +00:00
|
|
|
///> @copydoc EDA_DRAW_FRAME::GetHotKeyDescription()
|
2016-09-25 17:06:49 +00:00
|
|
|
EDA_HOTKEY* GetHotKeyDescription( int aCommand ) const override { return NULL; }
|
2015-05-05 18:39:42 +00:00
|
|
|
|
2013-04-26 15:11:52 +00:00
|
|
|
/**
|
|
|
|
* Display 3D frame of current footprint selection.
|
|
|
|
*/
|
2016-09-24 18:53:15 +00:00
|
|
|
void Show3D_Frame( wxCommandEvent& event ) override;
|
2010-02-01 21:23:27 +00:00
|
|
|
|
|
|
|
/* SaveCopyInUndoList() virtual
|
2011-09-30 18:15:37 +00:00
|
|
|
* currently: do nothing in CvPcb.
|
2011-03-01 19:26:17 +00:00
|
|
|
* but but be defined because it is a pure virtual in PCB_BASE_FRAME
|
2010-02-01 21:23:27 +00:00
|
|
|
*/
|
2018-07-01 14:48:35 +00:00
|
|
|
void SaveCopyInUndoList( BOARD_ITEM* aItemToCopy, UNDO_REDO_T aTypeCommand = UR_UNSPECIFIED,
|
|
|
|
const wxPoint& aTransformPoint = wxPoint( 0, 0 ) ) override
|
2010-02-01 21:23:27 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-11-12 15:17:10 +00:00
|
|
|
/**
|
|
|
|
* Function SaveCopyInUndoList (overloaded).
|
2010-02-01 21:23:27 +00:00
|
|
|
* Creates a new entry in undo list of commands.
|
|
|
|
* add a list of pickers to handle a list of items
|
|
|
|
* @param aItemsList = the list of items modified by the command to undo
|
2011-04-05 14:46:51 +00:00
|
|
|
* @param aTypeCommand = command type (see enum UNDO_REDO_T)
|
2010-02-01 21:23:27 +00:00
|
|
|
* @param aTransformPoint = the reference point of the transformation,
|
|
|
|
* for commands like move
|
|
|
|
*/
|
2018-07-01 14:48:35 +00:00
|
|
|
void SaveCopyInUndoList( const PICKED_ITEMS_LIST& aItemsList, UNDO_REDO_T aTypeCommand,
|
|
|
|
const wxPoint& aTransformPoint = wxPoint( 0, 0 ) ) override
|
2010-02-01 21:23:27 +00:00
|
|
|
{
|
2011-09-30 18:15:37 +00:00
|
|
|
// currently: do nothing in CvPcb.
|
2010-02-01 21:23:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
};
|
2018-08-06 18:26:37 +00:00
|
|
|
|
|
|
|
#endif // DISPLAY_FOOTPRINTS_FRAME_H
|