2012-05-09 17:37:25 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
2012-09-11 19:03:21 +00:00
|
|
|
*
|
2015-01-22 13:42:24 +00:00
|
|
|
* Copyright (C) 2012-2015 Miguel Angel Ajo Pelayo <miguelangel@nbee.es>
|
2018-08-11 06:25:09 +00:00
|
|
|
* Copyright (C) 2012-2018 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
2015-01-22 13:42:24 +00:00
|
|
|
* Copyright (C) 2008-2015 Wayne Stambaugh <stambaughw@verizon.net>
|
2018-08-11 06:25:09 +00:00
|
|
|
* Copyright (C) 2004-2018 KiCad Developers, see AUTHORS.txt for contributors.
|
2012-05-09 17:37:25 +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
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2015-04-21 15:42:30 +00:00
|
|
|
* @file footprint_wizard_frame.cpp
|
2012-05-09 17:37:25 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <fctsys.h>
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
#include <kiface_i.h>
|
2018-08-11 06:25:09 +00:00
|
|
|
#include <gal/graphics_abstraction_layer.h>
|
2012-05-09 17:37:25 +00:00
|
|
|
#include <class_drawpanel.h>
|
2018-08-11 06:25:09 +00:00
|
|
|
#include <pcb_draw_panel_gal.h>
|
2018-01-29 20:58:58 +00:00
|
|
|
#include <pcb_edit_frame.h>
|
2017-01-29 11:25:19 +00:00
|
|
|
#include <pcbnew.h>
|
2016-07-19 17:35:25 +00:00
|
|
|
#include <3d_viewer/eda_3d_viewer.h>
|
2013-01-12 17:32:24 +00:00
|
|
|
#include <msgpanel.h>
|
2013-05-02 18:06:58 +00:00
|
|
|
#include <macros.h>
|
2017-02-20 12:20:39 +00:00
|
|
|
#include <bitmaps.h>
|
2018-03-21 23:25:36 +00:00
|
|
|
#include <grid_tricks.h>
|
2018-08-11 16:04:46 +00:00
|
|
|
#include <eda_dockart.h>
|
2012-05-09 17:37:25 +00:00
|
|
|
|
|
|
|
#include <class_board.h>
|
|
|
|
#include <class_module.h>
|
2018-01-29 20:58:58 +00:00
|
|
|
#include <footprint_edit_frame.h>
|
2012-05-09 17:37:25 +00:00
|
|
|
|
|
|
|
#include <pcbnew_id.h>
|
|
|
|
#include "footprint_wizard_frame.h"
|
|
|
|
#include <footprint_info.h>
|
2012-05-10 22:30:26 +00:00
|
|
|
#include <wx/grid.h>
|
2017-01-03 15:01:47 +00:00
|
|
|
#include <wx/tokenzr.h>
|
|
|
|
#include <wx/numformatter.h>
|
2018-08-11 16:04:46 +00:00
|
|
|
#include <wx/statline.h>
|
2012-05-09 17:37:25 +00:00
|
|
|
|
|
|
|
#include <hotkeys.h>
|
|
|
|
#include <wildcards_and_files_ext.h>
|
2012-07-22 22:23:17 +00:00
|
|
|
#include <base_units.h>
|
2012-05-09 17:37:25 +00:00
|
|
|
|
2018-08-11 06:25:09 +00:00
|
|
|
#include <tool/tool_manager.h>
|
|
|
|
#include <tool/tool_dispatcher.h>
|
|
|
|
#include <tool/common_tools.h>
|
|
|
|
#include "tools/selection_tool.h"
|
|
|
|
#include "tools/pcbnew_control.h"
|
|
|
|
#include "tools/pcb_actions.h"
|
|
|
|
|
|
|
|
|
2012-05-09 17:37:25 +00:00
|
|
|
BEGIN_EVENT_TABLE( FOOTPRINT_WIZARD_FRAME, EDA_DRAW_FRAME )
|
2014-01-29 17:01:42 +00:00
|
|
|
|
2014-08-29 20:23:40 +00:00
|
|
|
// Window events
|
|
|
|
EVT_CLOSE( FOOTPRINT_WIZARD_FRAME::OnCloseWindow )
|
|
|
|
EVT_SIZE( FOOTPRINT_WIZARD_FRAME::OnSize )
|
|
|
|
EVT_ACTIVATE( FOOTPRINT_WIZARD_FRAME::OnActivate )
|
2012-05-09 17:37:25 +00:00
|
|
|
|
2014-08-29 20:23:40 +00:00
|
|
|
// Toolbar events
|
|
|
|
EVT_TOOL( ID_FOOTPRINT_WIZARD_SELECT_WIZARD,
|
|
|
|
FOOTPRINT_WIZARD_FRAME::SelectCurrentWizard )
|
2012-05-09 23:04:08 +00:00
|
|
|
|
2017-01-03 15:01:47 +00:00
|
|
|
EVT_TOOL( ID_FOOTPRINT_WIZARD_RESET_TO_DEFAULT,
|
|
|
|
FOOTPRINT_WIZARD_FRAME::DefaultParameters )
|
|
|
|
|
2014-08-29 20:23:40 +00:00
|
|
|
EVT_TOOL( ID_FOOTPRINT_WIZARD_NEXT,
|
|
|
|
FOOTPRINT_WIZARD_FRAME::Process_Special_Functions )
|
2012-05-09 23:04:08 +00:00
|
|
|
|
2014-08-29 20:23:40 +00:00
|
|
|
EVT_TOOL( ID_FOOTPRINT_WIZARD_PREVIOUS,
|
|
|
|
FOOTPRINT_WIZARD_FRAME::Process_Special_Functions )
|
2012-08-04 22:15:57 +00:00
|
|
|
|
2014-08-29 20:23:40 +00:00
|
|
|
EVT_TOOL( ID_FOOTPRINT_WIZARD_DONE,
|
|
|
|
FOOTPRINT_WIZARD_FRAME::ExportSelectedFootprint )
|
2012-08-04 22:15:57 +00:00
|
|
|
|
2014-08-29 20:23:40 +00:00
|
|
|
EVT_TOOL( ID_FOOTPRINT_WIZARD_SHOW_3D_VIEW,
|
|
|
|
FOOTPRINT_WIZARD_FRAME::Show3D_Frame )
|
2012-05-09 17:37:25 +00:00
|
|
|
|
2014-08-29 20:23:40 +00:00
|
|
|
// listbox events
|
2017-01-03 15:01:47 +00:00
|
|
|
|
2014-08-29 20:23:40 +00:00
|
|
|
EVT_LISTBOX( ID_FOOTPRINT_WIZARD_PAGE_LIST, FOOTPRINT_WIZARD_FRAME::ClickOnPageList )
|
|
|
|
EVT_GRID_CMD_CELL_CHANGED( ID_FOOTPRINT_WIZARD_PARAMETER_LIST,
|
|
|
|
FOOTPRINT_WIZARD_FRAME::ParametersUpdated )
|
2012-05-09 17:37:25 +00:00
|
|
|
|
2014-08-29 20:23:40 +00:00
|
|
|
EVT_MENU( ID_SET_RELATIVE_OFFSET, FOOTPRINT_WIZARD_FRAME::OnSetRelativeOffset )
|
2012-05-09 17:37:25 +00:00
|
|
|
END_EVENT_TABLE()
|
|
|
|
|
|
|
|
|
2016-03-21 16:36:06 +00:00
|
|
|
/* Note: our FOOTPRINT_WIZARD_FRAME is always modal.
|
|
|
|
* Note:
|
|
|
|
* On windows, when the frame with type wxFRAME_FLOAT_ON_PARENT is displayed
|
|
|
|
* its parent frame is sometimes brought to the foreground when closing the
|
|
|
|
* LIB_VIEW_FRAME frame.
|
|
|
|
* If it still happens, it could be better to use wxSTAY_ON_TOP
|
|
|
|
* instead of wxFRAME_FLOAT_ON_PARENT
|
|
|
|
*/
|
|
|
|
#ifdef __WINDOWS__
|
|
|
|
#define MODAL_MODE_EXTRASTYLE wxFRAME_FLOAT_ON_PARENT // could be wxSTAY_ON_TOP if issues
|
|
|
|
#else
|
|
|
|
#define MODAL_MODE_EXTRASTYLE wxFRAME_FLOAT_ON_PARENT
|
|
|
|
#endif
|
|
|
|
|
Modular-Kicad milestone B), major portions:
*) Rework the set language support, simplify it by using KIWAY. Now any major
frame with a "change language" menu can change the language for all KIWAY_PLAYERs
in the whole KIWAY. Multiple KIWAYs are not supported yet.
*) Simplify "modal wxFrame" support, and add that support exclusively to
KIWAY_PLAYER where it is inherited by all derivatives. The function
KIWAY_PLAYER::ShowModal() is in the vtable and so is cross module capable.
*) Remove the requirements and assumptions that the wxFrame hierarchy always
had PCB_EDIT_FRAME and SCH_EDIT_FRAME as immediate parents of their viewers
and editors. This is no longer the case, nor required.
*) Use KIWAY::Player() everywhere to make KIWAY_PLAYERs, this registers the
KIWAY_PLAYER within the KIWAY and makes it very easy to find an open frame
quickly. It also gives control to the KIWAY as to frame hierarchical
relationships.
*) Change single_top to use the KIWAY for loading a KIFACE and instantiating
the single KIWAY_PLAYER, see bullet immediately above.
*) Add KIWAY::OnKiwayEnd() and call it from PGM_BASE at program termination, this
gives the KIFACEs a chance to save their final configuration dope to disk.
*) Add dedicated FRAME_T's for the modal frames, so m_Ident can be tested and
these modal frames are distinctly different than their non-modal equivalents.
KIWAY_PLAYER::IsModal() is !not! a valid test during the wxFrame's constructor,
so this is another important reason for having a dedicated FRAME_T for each
modal wxFrame.
On balance, more lines were deleted than were added to achieve all this.
2014-05-03 17:40:19 +00:00
|
|
|
FOOTPRINT_WIZARD_FRAME::FOOTPRINT_WIZARD_FRAME( KIWAY* aKiway,
|
|
|
|
wxWindow* aParent, FRAME_T aFrameType ) :
|
|
|
|
PCB_BASE_FRAME( aKiway, aParent, aFrameType, _( "Footprint Wizard" ),
|
2015-06-27 09:12:32 +00:00
|
|
|
wxDefaultPosition, wxDefaultSize,
|
2016-03-21 16:36:06 +00:00
|
|
|
aParent ? KICAD_DEFAULT_DRAWFRAME_STYLE | MODAL_MODE_EXTRASTYLE
|
2015-12-30 07:46:32 +00:00
|
|
|
: KICAD_DEFAULT_DRAWFRAME_STYLE | wxSTAY_ON_TOP,
|
2018-12-10 12:43:44 +00:00
|
|
|
FOOTPRINT_WIZARD_FRAME_NAME ), m_wizardListShown( false )
|
2012-05-09 17:37:25 +00:00
|
|
|
{
|
2018-08-11 16:04:46 +00:00
|
|
|
wxASSERT( aFrameType == FRAME_PCB_FOOTPRINT_WIZARD );
|
Modular-Kicad milestone B), major portions:
*) Rework the set language support, simplify it by using KIWAY. Now any major
frame with a "change language" menu can change the language for all KIWAY_PLAYERs
in the whole KIWAY. Multiple KIWAYs are not supported yet.
*) Simplify "modal wxFrame" support, and add that support exclusively to
KIWAY_PLAYER where it is inherited by all derivatives. The function
KIWAY_PLAYER::ShowModal() is in the vtable and so is cross module capable.
*) Remove the requirements and assumptions that the wxFrame hierarchy always
had PCB_EDIT_FRAME and SCH_EDIT_FRAME as immediate parents of their viewers
and editors. This is no longer the case, nor required.
*) Use KIWAY::Player() everywhere to make KIWAY_PLAYERs, this registers the
KIWAY_PLAYER within the KIWAY and makes it very easy to find an open frame
quickly. It also gives control to the KIWAY as to frame hierarchical
relationships.
*) Change single_top to use the KIWAY for loading a KIFACE and instantiating
the single KIWAY_PLAYER, see bullet immediately above.
*) Add KIWAY::OnKiwayEnd() and call it from PGM_BASE at program termination, this
gives the KIFACEs a chance to save their final configuration dope to disk.
*) Add dedicated FRAME_T's for the modal frames, so m_Ident can be tested and
these modal frames are distinctly different than their non-modal equivalents.
KIWAY_PLAYER::IsModal() is !not! a valid test during the wxFrame's constructor,
so this is another important reason for having a dedicated FRAME_T for each
modal wxFrame.
On balance, more lines were deleted than were added to achieve all this.
2014-05-03 17:40:19 +00:00
|
|
|
|
2015-06-27 09:12:32 +00:00
|
|
|
// This frame is always show modal:
|
|
|
|
SetModal( true );
|
2014-05-04 18:22:27 +00:00
|
|
|
|
2015-09-07 10:52:16 +00:00
|
|
|
m_showAxis = true; // true to draw axis.
|
2012-05-09 17:37:25 +00:00
|
|
|
|
|
|
|
// Give an icon
|
2013-08-05 13:43:15 +00:00
|
|
|
wxIcon icon;
|
|
|
|
icon.CopyFromBitmap( KiBitmap( module_wizard_xpm) );
|
|
|
|
SetIcon( icon );
|
2012-05-09 17:37:25 +00:00
|
|
|
|
2018-02-14 22:07:59 +00:00
|
|
|
m_hotkeysDescrList = g_Module_Viewer_Hotkeys_Descr;
|
2012-05-09 17:37:25 +00:00
|
|
|
m_wizardName.Empty();
|
|
|
|
|
|
|
|
SetBoard( new BOARD() );
|
Modular-Kicad milestone B), major portions:
*) Rework the set language support, simplify it by using KIWAY. Now any major
frame with a "change language" menu can change the language for all KIWAY_PLAYERs
in the whole KIWAY. Multiple KIWAYs are not supported yet.
*) Simplify "modal wxFrame" support, and add that support exclusively to
KIWAY_PLAYER where it is inherited by all derivatives. The function
KIWAY_PLAYER::ShowModal() is in the vtable and so is cross module capable.
*) Remove the requirements and assumptions that the wxFrame hierarchy always
had PCB_EDIT_FRAME and SCH_EDIT_FRAME as immediate parents of their viewers
and editors. This is no longer the case, nor required.
*) Use KIWAY::Player() everywhere to make KIWAY_PLAYERs, this registers the
KIWAY_PLAYER within the KIWAY and makes it very easy to find an open frame
quickly. It also gives control to the KIWAY as to frame hierarchical
relationships.
*) Change single_top to use the KIWAY for loading a KIFACE and instantiating
the single KIWAY_PLAYER, see bullet immediately above.
*) Add KIWAY::OnKiwayEnd() and call it from PGM_BASE at program termination, this
gives the KIFACEs a chance to save their final configuration dope to disk.
*) Add dedicated FRAME_T's for the modal frames, so m_Ident can be tested and
these modal frames are distinctly different than their non-modal equivalents.
KIWAY_PLAYER::IsModal() is !not! a valid test during the wxFrame's constructor,
so this is another important reason for having a dedicated FRAME_T for each
modal wxFrame.
On balance, more lines were deleted than were added to achieve all this.
2014-05-03 17:40:19 +00:00
|
|
|
|
2012-05-09 17:37:25 +00:00
|
|
|
// Ensure all layers and items are visible:
|
|
|
|
GetBoard()->SetVisibleAlls();
|
2013-03-15 16:35:24 +00:00
|
|
|
SetScreen( new PCB_SCREEN( GetPageSizeIU() ) );
|
2012-05-09 17:37:25 +00:00
|
|
|
GetScreen()->m_Center = true; // Center coordinate origins on screen.
|
2014-01-29 17:01:42 +00:00
|
|
|
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
LoadSettings( config() );
|
2012-05-09 17:37:25 +00:00
|
|
|
|
|
|
|
SetSize( m_FramePos.x, m_FramePos.y, m_FrameSize.x, m_FrameSize.y );
|
2015-09-02 13:55:36 +00:00
|
|
|
|
|
|
|
// Set some display options here, because the FOOTPRINT_WIZARD_FRAME
|
|
|
|
// does not have a config menu to do that:
|
2018-08-11 06:25:09 +00:00
|
|
|
|
|
|
|
// the footprint wizard frame has no config menu. so use some settings
|
|
|
|
// from the caller, or force some options:
|
|
|
|
PCB_BASE_FRAME* caller = dynamic_cast<PCB_BASE_FRAME*>( aParent );
|
|
|
|
|
|
|
|
if( caller )
|
|
|
|
{
|
|
|
|
SetUserUnits( caller->GetUserUnits() );
|
|
|
|
}
|
|
|
|
|
2017-10-30 17:21:07 +00:00
|
|
|
auto disp_opts = (PCB_DISPLAY_OPTIONS*)GetDisplayOptions();
|
2018-08-11 06:25:09 +00:00
|
|
|
// In viewer, the default net clearance is not known (it depends on the actual board).
|
|
|
|
// So we do not show the default clearance, by setting it to 0
|
|
|
|
// The footprint or pad specific clearance will be shown
|
|
|
|
GetBoard()->GetDesignSettings().GetDefault()->SetClearance(0);
|
|
|
|
|
|
|
|
disp_opts->m_DisplayPadIsol = true;
|
2015-09-02 13:55:36 +00:00
|
|
|
disp_opts->m_DisplayPadNum = true;
|
2017-03-13 03:19:33 +00:00
|
|
|
GetBoard()->SetElementVisibility( LAYER_NO_CONNECTS, false );
|
2015-09-02 13:55:36 +00:00
|
|
|
|
2012-05-09 17:37:25 +00:00
|
|
|
GetScreen()->SetGrid( ID_POPUP_GRID_LEVEL_1000 + m_LastGridSizeId );
|
|
|
|
|
|
|
|
ReCreateHToolbar();
|
|
|
|
ReCreateVToolbar();
|
2018-08-11 06:25:09 +00:00
|
|
|
|
|
|
|
// Create GAL canvas
|
2018-09-11 15:28:57 +00:00
|
|
|
#ifdef __WXMAC__
|
|
|
|
// Cairo renderer doesn't handle Retina displays
|
|
|
|
EDA_DRAW_PANEL_GAL::GAL_TYPE backend = EDA_DRAW_PANEL_GAL::GAL_TYPE_OPENGL;
|
|
|
|
#else
|
2018-08-11 06:25:09 +00:00
|
|
|
EDA_DRAW_PANEL_GAL::GAL_TYPE backend = EDA_DRAW_PANEL_GAL::GAL_TYPE_CAIRO;
|
2018-09-11 15:28:57 +00:00
|
|
|
#endif
|
2018-08-11 06:25:09 +00:00
|
|
|
PCB_DRAW_PANEL_GAL* gal_drawPanel = new PCB_DRAW_PANEL_GAL( this, -1, wxPoint( 0, 0 ), m_FrameSize,
|
|
|
|
GetGalDisplayOptions(), backend );
|
|
|
|
SetGalCanvas( gal_drawPanel );
|
2012-05-09 17:37:25 +00:00
|
|
|
|
2018-05-20 22:46:24 +00:00
|
|
|
// Create the parameters panel
|
|
|
|
m_parametersPanel = new wxPanel( this, wxID_ANY );
|
|
|
|
|
|
|
|
m_pageList = new wxListBox( m_parametersPanel, ID_FOOTPRINT_WIZARD_PAGE_LIST,
|
2018-08-11 16:04:46 +00:00
|
|
|
wxDefaultPosition, wxDefaultSize, 0, NULL,
|
|
|
|
wxLB_HSCROLL | wxNO_BORDER );
|
|
|
|
|
|
|
|
auto divider = new wxStaticLine( m_parametersPanel, wxID_ANY,
|
|
|
|
wxDefaultPosition, wxDefaultSize, wxLI_VERTICAL );
|
2012-05-09 17:37:25 +00:00
|
|
|
|
2019-03-04 11:02:12 +00:00
|
|
|
m_parameterGrid = new WX_GRID( m_parametersPanel, ID_FOOTPRINT_WIZARD_PARAMETER_LIST );
|
2015-09-07 10:52:16 +00:00
|
|
|
initParameterGrid();
|
2018-03-21 23:25:36 +00:00
|
|
|
m_parameterGrid->PushEventHandler( new GRID_TRICKS( m_parameterGrid ) );
|
2013-03-15 14:50:54 +00:00
|
|
|
|
2012-05-09 17:37:25 +00:00
|
|
|
ReCreatePageList();
|
|
|
|
|
2018-05-20 22:46:24 +00:00
|
|
|
wxBoxSizer* parametersSizer = new wxBoxSizer( wxHORIZONTAL );
|
2018-08-11 16:04:46 +00:00
|
|
|
parametersSizer->Add( m_pageList, 0, wxEXPAND, 5 );
|
|
|
|
parametersSizer->Add( divider, 0, wxEXPAND, 5 );
|
|
|
|
parametersSizer->Add( m_parameterGrid, 1, wxEXPAND, 5 );
|
2018-05-20 22:46:24 +00:00
|
|
|
m_parametersPanel->SetSizer( parametersSizer );
|
|
|
|
m_parametersPanel->Layout();
|
|
|
|
|
|
|
|
// Create the build message box
|
|
|
|
m_buildMessageBox = new wxTextCtrl( this, wxID_ANY, wxEmptyString,
|
|
|
|
wxDefaultPosition, wxDefaultSize,
|
2018-08-11 16:04:46 +00:00
|
|
|
wxTE_MULTILINE | wxTE_READONLY | wxNO_BORDER );
|
2018-05-20 22:46:24 +00:00
|
|
|
|
2012-05-09 17:37:25 +00:00
|
|
|
DisplayWizardInfos();
|
|
|
|
|
|
|
|
m_auimgr.SetManagedWindow( this );
|
2018-08-11 16:04:46 +00:00
|
|
|
m_auimgr.SetArtProvider( new EDA_DOCKART( this ) );
|
2012-05-09 17:37:25 +00:00
|
|
|
|
2018-08-11 16:04:46 +00:00
|
|
|
m_auimgr.AddPane( m_mainToolBar, EDA_PANE().HToolbar().Name( "MainToolbar" ).Top().Layer(6) );
|
|
|
|
m_auimgr.AddPane( m_messagePanel, EDA_PANE().Messages().Name( "MsgPanel" ).Bottom().Layer(6) );
|
2013-03-15 16:35:24 +00:00
|
|
|
|
2018-08-11 16:04:46 +00:00
|
|
|
m_auimgr.AddPane( m_parametersPanel, EDA_PANE().Palette().Name( "Params" ).Left().Position(0)
|
|
|
|
.Caption( _( "Parameters" ) ).MinSize( 360, 180 ) );
|
|
|
|
m_auimgr.AddPane( m_buildMessageBox, EDA_PANE().Palette().Name( "Output" ).Left().Position(1)
|
|
|
|
.CaptionVisible( false ).MinSize( 360, -1 ) );
|
2012-09-11 19:03:21 +00:00
|
|
|
|
2018-08-11 16:04:46 +00:00
|
|
|
m_auimgr.AddPane( m_canvas, EDA_PANE().Canvas().Name( "DrawFrame" ).Center() );
|
2018-08-11 09:26:47 +00:00
|
|
|
|
2018-08-11 06:25:09 +00:00
|
|
|
m_auimgr.AddPane( (wxWindow*) GetGalCanvas(),
|
|
|
|
wxAuiPaneInfo().Name( "DrawFrameGal" ).CentrePane().Hide() );
|
|
|
|
|
|
|
|
// Create the manager and dispatcher & route draw panel events to the dispatcher
|
|
|
|
m_toolManager = new TOOL_MANAGER;
|
|
|
|
m_toolManager->SetEnvironment( GetBoard(), gal_drawPanel->GetView(),
|
|
|
|
gal_drawPanel->GetViewControls(), this );
|
|
|
|
m_actions = new PCB_ACTIONS();
|
|
|
|
m_toolDispatcher = new TOOL_DISPATCHER( m_toolManager, m_actions );
|
|
|
|
gal_drawPanel->SetEventDispatcher( m_toolDispatcher );
|
|
|
|
|
|
|
|
m_toolManager->RegisterTool( new PCBNEW_CONTROL );
|
|
|
|
m_toolManager->RegisterTool( new SELECTION_TOOL ); // for std context menus (zoom & grid)
|
|
|
|
m_toolManager->RegisterTool( new COMMON_TOOLS );
|
|
|
|
m_toolManager->InitTools();
|
|
|
|
|
|
|
|
// Run the control tool, it is supposed to be always active
|
|
|
|
m_toolManager->InvokeTool( "pcbnew.InteractiveSelection" );
|
|
|
|
|
|
|
|
auto& galOpts = GetGalDisplayOptions();
|
|
|
|
galOpts.m_fullscreenCursor = true;
|
|
|
|
galOpts.m_forceDisplayCursor = true;
|
|
|
|
galOpts.m_axesEnabled = true;
|
|
|
|
|
|
|
|
UseGalCanvas( backend != EDA_DRAW_PANEL_GAL::GAL_TYPE_NONE );
|
|
|
|
updateView();
|
|
|
|
|
|
|
|
SetActiveLayer( F_Cu );
|
2012-05-09 17:37:25 +00:00
|
|
|
// Now Drawpanel is sized, we can use BestZoom to show the component (if any)
|
|
|
|
#ifdef USE_WX_GRAPHICS_CONTEXT
|
2018-02-13 21:19:41 +00:00
|
|
|
GetScreen()->SetScalingFactor( BestZoom() );
|
2012-05-09 17:37:25 +00:00
|
|
|
#else
|
|
|
|
Zoom_Automatique( false );
|
|
|
|
#endif
|
|
|
|
|
2015-09-07 10:52:16 +00:00
|
|
|
// Do not Run a dialog here: on some Window Managers, it creates issues.
|
|
|
|
// Reason: the FOOTPRINT_WIZARD_FRAME is run as modal;
|
|
|
|
// It means the call to FOOTPRINT_WIZARD_FRAME::ShowModal will change the
|
|
|
|
// Event Loop Manager, and stop the one created by the dialog.
|
2015-10-24 17:46:50 +00:00
|
|
|
// It does not happen on all W.M., perhaps due to the way the order events are called
|
2018-12-10 12:43:44 +00:00
|
|
|
// See the call in onActivate instead
|
2012-05-09 17:37:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
FOOTPRINT_WIZARD_FRAME::~FOOTPRINT_WIZARD_FRAME()
|
|
|
|
{
|
2018-03-21 23:25:36 +00:00
|
|
|
// Delete the GRID_TRICKS.
|
|
|
|
m_parameterGrid->PopEventHandler( true );
|
|
|
|
|
2018-08-11 06:25:09 +00:00
|
|
|
if( IsGalCanvasActive() )
|
|
|
|
{
|
|
|
|
GetGalCanvas()->StopDrawing();
|
|
|
|
// Be sure any event cannot be fired after frame deletion:
|
|
|
|
GetGalCanvas()->SetEvtHandlerEnabled( false );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Be sure a active tool (if exists) is desactivated:
|
|
|
|
if( m_toolManager )
|
|
|
|
m_toolManager->DeactivateTool();
|
|
|
|
|
2016-07-19 17:35:25 +00:00
|
|
|
EDA_3D_VIEWER* draw3DFrame = Get3DViewerFrame();
|
2015-12-21 11:52:00 +00:00
|
|
|
|
|
|
|
if( draw3DFrame )
|
|
|
|
draw3DFrame->Destroy();
|
2018-08-11 06:25:09 +00:00
|
|
|
|
|
|
|
// Now this frame can be deleted
|
2012-05-09 17:37:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void FOOTPRINT_WIZARD_FRAME::OnCloseWindow( wxCloseEvent& Event )
|
2012-08-04 22:15:57 +00:00
|
|
|
{
|
2015-09-07 10:52:16 +00:00
|
|
|
SaveSettings( config() );
|
|
|
|
|
Modular-Kicad milestone B), major portions:
*) Rework the set language support, simplify it by using KIWAY. Now any major
frame with a "change language" menu can change the language for all KIWAY_PLAYERs
in the whole KIWAY. Multiple KIWAYs are not supported yet.
*) Simplify "modal wxFrame" support, and add that support exclusively to
KIWAY_PLAYER where it is inherited by all derivatives. The function
KIWAY_PLAYER::ShowModal() is in the vtable and so is cross module capable.
*) Remove the requirements and assumptions that the wxFrame hierarchy always
had PCB_EDIT_FRAME and SCH_EDIT_FRAME as immediate parents of their viewers
and editors. This is no longer the case, nor required.
*) Use KIWAY::Player() everywhere to make KIWAY_PLAYERs, this registers the
KIWAY_PLAYER within the KIWAY and makes it very easy to find an open frame
quickly. It also gives control to the KIWAY as to frame hierarchical
relationships.
*) Change single_top to use the KIWAY for loading a KIFACE and instantiating
the single KIWAY_PLAYER, see bullet immediately above.
*) Add KIWAY::OnKiwayEnd() and call it from PGM_BASE at program termination, this
gives the KIFACEs a chance to save their final configuration dope to disk.
*) Add dedicated FRAME_T's for the modal frames, so m_Ident can be tested and
these modal frames are distinctly different than their non-modal equivalents.
KIWAY_PLAYER::IsModal() is !not! a valid test during the wxFrame's constructor,
so this is another important reason for having a dedicated FRAME_T for each
modal wxFrame.
On balance, more lines were deleted than were added to achieve all this.
2014-05-03 17:40:19 +00:00
|
|
|
if( IsModal() )
|
2012-05-09 17:37:25 +00:00
|
|
|
{
|
Modular-Kicad milestone B), major portions:
*) Rework the set language support, simplify it by using KIWAY. Now any major
frame with a "change language" menu can change the language for all KIWAY_PLAYERs
in the whole KIWAY. Multiple KIWAYs are not supported yet.
*) Simplify "modal wxFrame" support, and add that support exclusively to
KIWAY_PLAYER where it is inherited by all derivatives. The function
KIWAY_PLAYER::ShowModal() is in the vtable and so is cross module capable.
*) Remove the requirements and assumptions that the wxFrame hierarchy always
had PCB_EDIT_FRAME and SCH_EDIT_FRAME as immediate parents of their viewers
and editors. This is no longer the case, nor required.
*) Use KIWAY::Player() everywhere to make KIWAY_PLAYERs, this registers the
KIWAY_PLAYER within the KIWAY and makes it very easy to find an open frame
quickly. It also gives control to the KIWAY as to frame hierarchical
relationships.
*) Change single_top to use the KIWAY for loading a KIFACE and instantiating
the single KIWAY_PLAYER, see bullet immediately above.
*) Add KIWAY::OnKiwayEnd() and call it from PGM_BASE at program termination, this
gives the KIFACEs a chance to save their final configuration dope to disk.
*) Add dedicated FRAME_T's for the modal frames, so m_Ident can be tested and
these modal frames are distinctly different than their non-modal equivalents.
KIWAY_PLAYER::IsModal() is !not! a valid test during the wxFrame's constructor,
so this is another important reason for having a dedicated FRAME_T for each
modal wxFrame.
On balance, more lines were deleted than were added to achieve all this.
2014-05-03 17:40:19 +00:00
|
|
|
// Only dismiss a modal frame once, so that the return values set by
|
|
|
|
// the prior DismissModal() are not bashed for ShowModal().
|
|
|
|
if( !IsDismissed() )
|
|
|
|
DismissModal( false );
|
2012-05-09 17:37:25 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Destroy();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-08-05 13:43:15 +00:00
|
|
|
void FOOTPRINT_WIZARD_FRAME::ExportSelectedFootprint( wxCommandEvent& aEvent )
|
|
|
|
{
|
Modular-Kicad milestone B), major portions:
*) Rework the set language support, simplify it by using KIWAY. Now any major
frame with a "change language" menu can change the language for all KIWAY_PLAYERs
in the whole KIWAY. Multiple KIWAYs are not supported yet.
*) Simplify "modal wxFrame" support, and add that support exclusively to
KIWAY_PLAYER where it is inherited by all derivatives. The function
KIWAY_PLAYER::ShowModal() is in the vtable and so is cross module capable.
*) Remove the requirements and assumptions that the wxFrame hierarchy always
had PCB_EDIT_FRAME and SCH_EDIT_FRAME as immediate parents of their viewers
and editors. This is no longer the case, nor required.
*) Use KIWAY::Player() everywhere to make KIWAY_PLAYERs, this registers the
KIWAY_PLAYER within the KIWAY and makes it very easy to find an open frame
quickly. It also gives control to the KIWAY as to frame hierarchical
relationships.
*) Change single_top to use the KIWAY for loading a KIFACE and instantiating
the single KIWAY_PLAYER, see bullet immediately above.
*) Add KIWAY::OnKiwayEnd() and call it from PGM_BASE at program termination, this
gives the KIFACEs a chance to save their final configuration dope to disk.
*) Add dedicated FRAME_T's for the modal frames, so m_Ident can be tested and
these modal frames are distinctly different than their non-modal equivalents.
KIWAY_PLAYER::IsModal() is !not! a valid test during the wxFrame's constructor,
so this is another important reason for having a dedicated FRAME_T for each
modal wxFrame.
On balance, more lines were deleted than were added to achieve all this.
2014-05-03 17:40:19 +00:00
|
|
|
DismissModal( true );
|
2013-08-05 13:43:15 +00:00
|
|
|
Close();
|
|
|
|
}
|
|
|
|
|
2018-05-20 22:46:24 +00:00
|
|
|
|
2017-01-03 15:01:47 +00:00
|
|
|
void FOOTPRINT_WIZARD_FRAME::OnGridSize( wxSizeEvent& aSizeEvent )
|
|
|
|
{
|
|
|
|
// Resize the parameter columns
|
|
|
|
ResizeParamColumns();
|
|
|
|
|
|
|
|
aSizeEvent.Skip();
|
|
|
|
}
|
2013-08-05 13:43:15 +00:00
|
|
|
|
2018-05-20 22:46:24 +00:00
|
|
|
|
2012-05-09 17:37:25 +00:00
|
|
|
void FOOTPRINT_WIZARD_FRAME::OnSize( wxSizeEvent& SizeEv )
|
|
|
|
{
|
|
|
|
if( m_auimgr.GetManagedWindow() )
|
|
|
|
m_auimgr.Update();
|
|
|
|
|
|
|
|
SizeEv.Skip();
|
|
|
|
}
|
|
|
|
|
2013-03-15 16:35:24 +00:00
|
|
|
|
2012-05-09 17:37:25 +00:00
|
|
|
void FOOTPRINT_WIZARD_FRAME::OnSetRelativeOffset( wxCommandEvent& event )
|
|
|
|
{
|
2013-08-03 05:15:23 +00:00
|
|
|
GetScreen()->m_O_Curseur = GetCrossHairPosition();
|
2012-05-09 17:37:25 +00:00
|
|
|
UpdateStatusBar();
|
|
|
|
}
|
|
|
|
|
2018-05-20 22:46:24 +00:00
|
|
|
|
2018-08-11 06:25:09 +00:00
|
|
|
void FOOTPRINT_WIZARD_FRAME::updateView()
|
|
|
|
{
|
|
|
|
if( IsGalCanvasActive() )
|
|
|
|
{
|
|
|
|
auto dp = static_cast<PCB_DRAW_PANEL_GAL*>( GetGalCanvas() );
|
|
|
|
dp->UseColorScheme( &Settings().Colors() );
|
|
|
|
dp->DisplayBoard( GetBoard() );
|
|
|
|
m_toolManager->ResetTools( TOOL_BASE::MODEL_RELOAD );
|
|
|
|
m_toolManager->RunAction( ACTIONS::zoomFitScreen, true );
|
|
|
|
UpdateMsgPanel();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void FOOTPRINT_WIZARD_FRAME::UpdateMsgPanel()
|
|
|
|
{
|
|
|
|
BOARD_ITEM* footprint = GetBoard()->m_Modules;
|
|
|
|
|
|
|
|
if( footprint )
|
|
|
|
{
|
|
|
|
MSG_PANEL_ITEMS items;
|
|
|
|
|
|
|
|
footprint->GetMsgPanelInfo( m_UserUnits, items );
|
|
|
|
SetMsgPanel( items );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
ClearMsgPanel();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-09-07 10:52:16 +00:00
|
|
|
void FOOTPRINT_WIZARD_FRAME::initParameterGrid()
|
|
|
|
{
|
2018-05-20 22:46:24 +00:00
|
|
|
m_parameterGridPage = -1;
|
|
|
|
|
2015-09-07 10:52:16 +00:00
|
|
|
// Prepare the grid where parameters are displayed
|
2018-05-20 22:46:24 +00:00
|
|
|
|
2015-09-07 10:52:16 +00:00
|
|
|
m_parameterGrid->CreateGrid( 0, 3 );
|
|
|
|
|
2017-01-03 15:01:47 +00:00
|
|
|
m_parameterGrid->SetColLabelValue( WIZ_COL_NAME, _( "Parameter" ) );
|
|
|
|
m_parameterGrid->SetColLabelValue( WIZ_COL_VALUE, _( "Value" ) );
|
|
|
|
m_parameterGrid->SetColLabelValue( WIZ_COL_UNITS, _( "Units" ) );
|
|
|
|
|
2018-05-20 22:46:24 +00:00
|
|
|
m_parameterGrid->SetColLabelSize( 22 );
|
2015-09-07 10:52:16 +00:00
|
|
|
m_parameterGrid->SetColLabelAlignment( wxALIGN_LEFT, wxALIGN_CENTRE );
|
|
|
|
m_parameterGrid->AutoSizeColumns();
|
|
|
|
|
|
|
|
m_parameterGrid->AutoSizeRows();
|
2018-05-20 22:46:24 +00:00
|
|
|
m_parameterGrid->SetRowLabelSize( 0 );
|
2017-01-03 15:01:47 +00:00
|
|
|
|
|
|
|
m_parameterGrid->DisableDragGridSize();
|
|
|
|
m_parameterGrid->DisableDragColSize();
|
|
|
|
|
2018-03-14 00:32:53 +00:00
|
|
|
m_parameterGrid->Connect( wxEVT_SIZE,
|
|
|
|
wxSizeEventHandler( FOOTPRINT_WIZARD_FRAME::OnGridSize ),
|
|
|
|
NULL, this );
|
2015-09-07 10:52:16 +00:00
|
|
|
}
|
|
|
|
|
2013-03-15 16:35:24 +00:00
|
|
|
|
2012-05-09 17:37:25 +00:00
|
|
|
void FOOTPRINT_WIZARD_FRAME::ReCreatePageList()
|
|
|
|
{
|
2014-01-29 17:01:42 +00:00
|
|
|
if( m_pageList == NULL )
|
2012-05-09 17:37:25 +00:00
|
|
|
return;
|
2012-09-11 19:03:21 +00:00
|
|
|
|
2013-03-16 03:27:48 +00:00
|
|
|
FOOTPRINT_WIZARD* footprintWizard = GetMyWizard();
|
|
|
|
|
|
|
|
if( !footprintWizard )
|
2012-05-09 23:04:08 +00:00
|
|
|
return;
|
2012-05-09 17:37:25 +00:00
|
|
|
|
2014-01-29 17:01:42 +00:00
|
|
|
m_pageList->Clear();
|
2013-03-16 03:27:48 +00:00
|
|
|
int max_page = footprintWizard->GetNumParameterPages();
|
2013-03-15 16:35:24 +00:00
|
|
|
|
|
|
|
for( int i = 0; i<max_page; i++ )
|
2012-05-09 17:37:25 +00:00
|
|
|
{
|
2013-03-16 03:27:48 +00:00
|
|
|
wxString name = footprintWizard->GetParameterPageName( i );
|
2014-01-29 17:01:42 +00:00
|
|
|
m_pageList->Append( name );
|
2012-05-09 17:37:25 +00:00
|
|
|
}
|
2012-09-11 19:03:21 +00:00
|
|
|
|
2014-01-29 17:01:42 +00:00
|
|
|
m_pageList->SetSelection( 0, true );
|
2012-09-11 19:03:21 +00:00
|
|
|
|
2012-05-09 23:04:08 +00:00
|
|
|
ReCreateParameterList();
|
2012-05-09 17:37:25 +00:00
|
|
|
ReCreateHToolbar();
|
|
|
|
DisplayWizardInfos();
|
|
|
|
m_canvas->Refresh();
|
|
|
|
}
|
|
|
|
|
2013-03-15 16:35:24 +00:00
|
|
|
|
2012-05-09 17:37:25 +00:00
|
|
|
void FOOTPRINT_WIZARD_FRAME::ReCreateParameterList()
|
|
|
|
{
|
2014-01-29 17:01:42 +00:00
|
|
|
if( m_parameterGrid == NULL )
|
2012-05-09 17:37:25 +00:00
|
|
|
return;
|
2012-09-11 19:03:21 +00:00
|
|
|
|
2013-03-16 03:27:48 +00:00
|
|
|
FOOTPRINT_WIZARD* footprintWizard = GetMyWizard();
|
|
|
|
|
|
|
|
if( footprintWizard == NULL )
|
2012-05-09 23:04:08 +00:00
|
|
|
return;
|
2012-09-11 19:03:21 +00:00
|
|
|
|
2019-11-02 09:17:35 +00:00
|
|
|
m_parameterGrid->Freeze();
|
|
|
|
|
2017-12-23 17:34:57 +00:00
|
|
|
m_parameterGrid->ClearGrid();
|
2018-03-11 23:10:27 +00:00
|
|
|
m_parameterGridPage = m_pageList->GetSelection();
|
2012-09-11 19:03:21 +00:00
|
|
|
|
2017-12-23 17:34:57 +00:00
|
|
|
if( m_parameterGridPage < 0 ) // Should not happen
|
2012-05-09 23:04:08 +00:00
|
|
|
return;
|
2012-05-09 17:37:25 +00:00
|
|
|
|
2017-01-03 15:01:47 +00:00
|
|
|
// Get the list of names, values, types, hints and designators
|
2017-12-23 17:34:57 +00:00
|
|
|
wxArrayString designatorsList = footprintWizard->GetParameterDesignators( m_parameterGridPage );
|
|
|
|
wxArrayString namesList = footprintWizard->GetParameterNames( m_parameterGridPage );
|
|
|
|
wxArrayString valuesList = footprintWizard->GetParameterValues( m_parameterGridPage );
|
|
|
|
wxArrayString typesList = footprintWizard->GetParameterTypes( m_parameterGridPage );
|
|
|
|
wxArrayString hintsList = footprintWizard->GetParameterHints( m_parameterGridPage );
|
2012-09-11 19:03:21 +00:00
|
|
|
|
|
|
|
// Dimension the wxGrid
|
2015-09-07 18:25:45 +00:00
|
|
|
if( m_parameterGrid->GetNumberRows() > 0 )
|
|
|
|
m_parameterGrid->DeleteRows( 0, m_parameterGrid->GetNumberRows() );
|
|
|
|
|
2017-01-03 15:01:47 +00:00
|
|
|
m_parameterGrid->AppendRows( namesList.size() );
|
2012-09-11 19:03:21 +00:00
|
|
|
|
2017-01-03 15:01:47 +00:00
|
|
|
wxString designator, name, value, units, hint;
|
|
|
|
|
|
|
|
for( unsigned int i = 0; i< namesList.size(); i++ )
|
2012-05-10 22:30:26 +00:00
|
|
|
{
|
2017-01-03 15:01:47 +00:00
|
|
|
designator = designatorsList[i];
|
|
|
|
name = namesList[i];
|
|
|
|
value = valuesList[i];
|
|
|
|
units = typesList[i];
|
|
|
|
hint = hintsList[i];
|
2012-09-11 19:03:21 +00:00
|
|
|
|
2017-01-03 15:01:47 +00:00
|
|
|
m_parameterGrid->SetRowLabelValue( i, designator );
|
2012-09-11 19:03:21 +00:00
|
|
|
|
2017-01-03 15:01:47 +00:00
|
|
|
// Set the 'Name'
|
|
|
|
m_parameterGrid->SetCellValue( i, WIZ_COL_NAME, name );
|
|
|
|
m_parameterGrid->SetReadOnly( i, WIZ_COL_NAME );
|
2013-03-15 16:35:24 +00:00
|
|
|
|
2017-12-23 17:34:57 +00:00
|
|
|
// Boolean parameters are displayed using a checkbox
|
2017-01-03 17:04:35 +00:00
|
|
|
if( units == WIZARD_PARAM_UNITS_BOOL )
|
2017-01-03 15:01:47 +00:00
|
|
|
{
|
2018-03-21 23:25:36 +00:00
|
|
|
// Set to ReadOnly as we delegate interactivity to GRID_TRICKS
|
2018-03-14 00:32:53 +00:00
|
|
|
m_parameterGrid->SetReadOnly( i, WIZ_COL_VALUE );
|
2017-01-03 15:01:47 +00:00
|
|
|
m_parameterGrid->SetCellRenderer( i, WIZ_COL_VALUE, new wxGridCellBoolRenderer );
|
|
|
|
}
|
|
|
|
// Parameters that can be selected from a list of multiple options
|
2017-01-03 17:04:35 +00:00
|
|
|
else if( units.Contains( "," ) ) // Indicates list of available options
|
2017-01-03 15:01:47 +00:00
|
|
|
{
|
|
|
|
wxStringTokenizer tokenizer( units, "," );
|
|
|
|
wxArrayString options;
|
2012-07-22 22:23:17 +00:00
|
|
|
|
2017-01-03 17:04:35 +00:00
|
|
|
while( tokenizer.HasMoreTokens() )
|
2012-07-22 22:23:17 +00:00
|
|
|
{
|
2017-01-03 15:01:47 +00:00
|
|
|
options.Add( tokenizer.GetNextToken() );
|
2012-07-22 22:23:17 +00:00
|
|
|
}
|
|
|
|
|
2017-01-03 15:01:47 +00:00
|
|
|
m_parameterGrid->SetCellEditor( i, WIZ_COL_VALUE, new wxGridCellChoiceEditor( options ) );
|
|
|
|
|
|
|
|
units = wxT( "" );
|
2012-07-22 22:23:17 +00:00
|
|
|
}
|
2017-01-03 15:01:47 +00:00
|
|
|
// Integer parameters
|
2017-01-03 17:04:35 +00:00
|
|
|
else if( units == WIZARD_PARAM_UNITS_INTEGER )
|
2012-07-22 22:23:17 +00:00
|
|
|
{
|
2017-01-03 15:01:47 +00:00
|
|
|
m_parameterGrid->SetCellEditor( i, WIZ_COL_VALUE, new wxGridCellNumberEditor );
|
|
|
|
}
|
|
|
|
// Non-integer numerical parameters
|
2017-01-03 17:04:35 +00:00
|
|
|
else if( ( units == WIZARD_PARAM_UNITS_MM ) ||
|
|
|
|
( units == WIZARD_PARAM_UNITS_MILS ) ||
|
|
|
|
( units == WIZARD_PARAM_UNITS_FLOAT ) ||
|
|
|
|
( units == WIZARD_PARAM_UNITS_RADIANS ) ||
|
|
|
|
( units == WIZARD_PARAM_UNITS_DEGREES ) ||
|
|
|
|
( units == WIZARD_PARAM_UNITS_PERCENT ) )
|
2017-01-03 15:01:47 +00:00
|
|
|
{
|
|
|
|
m_parameterGrid->SetCellEditor( i, WIZ_COL_VALUE, new wxGridCellFloatEditor );
|
|
|
|
|
|
|
|
// Convert separators to the locale-specific character
|
|
|
|
value.Replace( ",", wxNumberFormatter::GetDecimalSeparator() );
|
|
|
|
value.Replace( ".", wxNumberFormatter::GetDecimalSeparator() );
|
2012-07-22 22:23:17 +00:00
|
|
|
}
|
|
|
|
|
2017-01-03 15:01:47 +00:00
|
|
|
// Set the 'Units'
|
|
|
|
m_parameterGrid->SetCellValue( i, WIZ_COL_UNITS, units );
|
|
|
|
m_parameterGrid->SetReadOnly( i, WIZ_COL_UNITS );
|
|
|
|
|
|
|
|
// Set the 'Value'
|
|
|
|
m_parameterGrid->SetCellValue( i, WIZ_COL_VALUE, value );
|
2012-05-10 22:30:26 +00:00
|
|
|
}
|
2012-09-11 19:03:21 +00:00
|
|
|
|
2017-01-03 15:01:47 +00:00
|
|
|
ResizeParamColumns();
|
2019-11-02 09:17:35 +00:00
|
|
|
|
|
|
|
m_parameterGrid->Thaw();
|
2017-01-03 15:01:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void FOOTPRINT_WIZARD_FRAME::ResizeParamColumns()
|
|
|
|
{
|
|
|
|
|
|
|
|
// Parameter grid is not yet configured
|
2017-01-03 17:04:35 +00:00
|
|
|
if( ( m_parameterGrid == NULL ) || ( m_parameterGrid->GetNumberCols() == 0 ) )
|
2017-01-03 15:01:47 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
// first auto-size the columns to ensure enough space around text
|
2014-01-29 17:01:42 +00:00
|
|
|
m_parameterGrid->AutoSizeColumns();
|
2017-01-03 15:01:47 +00:00
|
|
|
|
|
|
|
// Auto-size the value column
|
|
|
|
int width = m_parameterGrid->GetClientSize().GetWidth() -
|
|
|
|
m_parameterGrid->GetRowLabelSize() -
|
|
|
|
m_parameterGrid->GetColSize( WIZ_COL_NAME ) -
|
|
|
|
m_parameterGrid->GetColSize( WIZ_COL_UNITS );
|
|
|
|
|
2017-01-03 17:04:35 +00:00
|
|
|
if( width > m_parameterGrid->GetColMinimalAcceptableWidth() )
|
2017-01-03 15:01:47 +00:00
|
|
|
{
|
|
|
|
m_parameterGrid->SetColSize( WIZ_COL_VALUE, width );
|
|
|
|
}
|
2012-05-09 17:37:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void FOOTPRINT_WIZARD_FRAME::ClickOnPageList( wxCommandEvent& event )
|
|
|
|
{
|
2014-01-29 17:01:42 +00:00
|
|
|
int ii = m_pageList->GetSelection();
|
2012-05-09 17:37:25 +00:00
|
|
|
|
|
|
|
if( ii < 0 )
|
2012-09-11 19:03:21 +00:00
|
|
|
return;
|
|
|
|
|
2012-05-09 17:37:25 +00:00
|
|
|
ReCreateParameterList();
|
|
|
|
m_canvas->Refresh();
|
|
|
|
DisplayWizardInfos();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-05-20 22:46:24 +00:00
|
|
|
#define AUI_PERSPECTIVE_KEY wxT( "Fpwizard_auiPerspective" )
|
2012-05-09 17:37:25 +00:00
|
|
|
|
|
|
|
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
void FOOTPRINT_WIZARD_FRAME::LoadSettings( wxConfigBase* aCfg )
|
2012-05-09 17:37:25 +00:00
|
|
|
{
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
EDA_DRAW_FRAME::LoadSettings( aCfg );
|
2012-05-09 17:37:25 +00:00
|
|
|
|
2018-05-20 22:46:24 +00:00
|
|
|
aCfg->Read( AUI_PERSPECTIVE_KEY, &m_auiPerspective );
|
2012-05-09 17:37:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
void FOOTPRINT_WIZARD_FRAME::SaveSettings( wxConfigBase* aCfg )
|
2012-05-09 17:37:25 +00:00
|
|
|
{
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
EDA_DRAW_FRAME::SaveSettings( aCfg );
|
2012-05-09 17:37:25 +00:00
|
|
|
|
2018-05-20 22:46:24 +00:00
|
|
|
aCfg->Write( AUI_PERSPECTIVE_KEY, m_auimgr.SavePerspective() );
|
2012-05-09 17:37:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void FOOTPRINT_WIZARD_FRAME::OnActivate( wxActivateEvent& event )
|
|
|
|
{
|
|
|
|
EDA_DRAW_FRAME::OnActivate( event );
|
|
|
|
|
|
|
|
// Ensure we do not have old selection:
|
2015-01-22 13:42:24 +00:00
|
|
|
if( !event.GetActive() )
|
2012-05-09 17:37:25 +00:00
|
|
|
return;
|
|
|
|
|
2018-12-10 12:43:44 +00:00
|
|
|
if( !m_wizardListShown )
|
|
|
|
{
|
|
|
|
m_wizardListShown = true;
|
2019-06-23 14:29:29 +00:00
|
|
|
wxPostEvent( this, wxCommandEvent( wxEVT_TOOL, ID_FOOTPRINT_WIZARD_SELECT_WIZARD ) );
|
2018-12-10 12:43:44 +00:00
|
|
|
}
|
2015-08-23 12:35:49 +00:00
|
|
|
#if 0
|
|
|
|
// Currently, we do not have a way to see if a Python wizard has changed,
|
|
|
|
// therefore the lists of parameters and option has to be rebuilt
|
|
|
|
// This code could be enabled when this way exists
|
2013-03-15 16:35:24 +00:00
|
|
|
bool footprintWizardsChanged = false;
|
|
|
|
|
|
|
|
if( footprintWizardsChanged )
|
2012-05-09 17:37:25 +00:00
|
|
|
{
|
2013-03-15 16:35:24 +00:00
|
|
|
// If we are here, the library list has changed, rebuild it
|
2012-05-09 17:37:25 +00:00
|
|
|
ReCreatePageList();
|
|
|
|
DisplayWizardInfos();
|
|
|
|
}
|
2015-08-23 12:35:49 +00:00
|
|
|
#endif
|
2012-05-09 17:37:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-01-20 12:11:17 +00:00
|
|
|
bool FOOTPRINT_WIZARD_FRAME::GeneralControl( wxDC* aDC, const wxPoint& aPosition, EDA_KEY aHotKey )
|
2012-05-09 17:37:25 +00:00
|
|
|
{
|
2014-06-12 16:12:14 +00:00
|
|
|
// Filter out the 'fake' mouse motion after a keyboard movement
|
|
|
|
if( !aHotKey && m_movingCursorWithKeyboard )
|
|
|
|
{
|
|
|
|
m_movingCursorWithKeyboard = false;
|
2014-08-29 20:23:40 +00:00
|
|
|
return false;
|
2014-06-12 16:12:14 +00:00
|
|
|
}
|
2013-03-15 16:35:24 +00:00
|
|
|
|
|
|
|
wxCommandEvent cmd( wxEVT_COMMAND_MENU_SELECTED );
|
2012-05-09 17:37:25 +00:00
|
|
|
cmd.SetEventObject( this );
|
|
|
|
|
2014-06-12 16:12:14 +00:00
|
|
|
wxPoint pos = aPosition;
|
|
|
|
wxPoint oldpos = GetCrossHairPosition();
|
2017-10-09 08:35:53 +00:00
|
|
|
bool keyHandled = GeneralControlKeyMovement( aHotKey, &pos, true );
|
2012-05-09 17:37:25 +00:00
|
|
|
|
|
|
|
switch( aHotKey )
|
|
|
|
{
|
|
|
|
case WXK_F1:
|
2018-01-12 10:40:55 +00:00
|
|
|
cmd.SetId( ID_KEY_ZOOM_IN );
|
2012-05-09 17:37:25 +00:00
|
|
|
GetEventHandler()->ProcessEvent( cmd );
|
2017-10-09 08:35:53 +00:00
|
|
|
keyHandled = true;
|
2012-05-09 17:37:25 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case WXK_F2:
|
2018-01-12 10:40:55 +00:00
|
|
|
cmd.SetId( ID_KEY_ZOOM_OUT );
|
2012-05-09 17:37:25 +00:00
|
|
|
GetEventHandler()->ProcessEvent( cmd );
|
2017-10-09 08:35:53 +00:00
|
|
|
keyHandled = true;
|
2012-05-09 17:37:25 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case WXK_F3:
|
|
|
|
cmd.SetId( ID_ZOOM_REDRAW );
|
|
|
|
GetEventHandler()->ProcessEvent( cmd );
|
2017-10-09 08:35:53 +00:00
|
|
|
keyHandled = true;
|
2012-05-09 17:37:25 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case WXK_F4:
|
|
|
|
cmd.SetId( ID_POPUP_ZOOM_CENTER );
|
|
|
|
GetEventHandler()->ProcessEvent( cmd );
|
2017-10-09 08:35:53 +00:00
|
|
|
keyHandled = true;
|
2012-05-09 17:37:25 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case WXK_HOME:
|
|
|
|
cmd.SetId( ID_ZOOM_PAGE );
|
|
|
|
GetEventHandler()->ProcessEvent( cmd );
|
2017-10-09 08:35:53 +00:00
|
|
|
keyHandled = true;
|
2012-05-09 17:37:25 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ' ':
|
2014-06-12 16:12:14 +00:00
|
|
|
GetScreen()->m_O_Curseur = GetCrossHairPosition();
|
2017-10-09 08:35:53 +00:00
|
|
|
keyHandled = true;
|
2012-05-09 17:37:25 +00:00
|
|
|
break;
|
2014-08-29 20:23:40 +00:00
|
|
|
|
|
|
|
default:
|
2017-10-09 08:35:53 +00:00
|
|
|
break;
|
2012-05-09 17:37:25 +00:00
|
|
|
}
|
|
|
|
|
2013-08-03 05:15:23 +00:00
|
|
|
SetCrossHairPosition( pos );
|
2014-06-12 16:12:14 +00:00
|
|
|
RefreshCrossHair( oldpos, aPosition, aDC );
|
2012-05-09 17:37:25 +00:00
|
|
|
|
2013-08-03 05:15:23 +00:00
|
|
|
UpdateStatusBar(); // Display new cursor coordinates
|
2014-08-29 20:23:40 +00:00
|
|
|
|
2017-10-09 08:35:53 +00:00
|
|
|
return keyHandled;
|
2012-05-09 17:37:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void FOOTPRINT_WIZARD_FRAME::Show3D_Frame( wxCommandEvent& event )
|
|
|
|
{
|
2016-07-19 17:35:25 +00:00
|
|
|
EDA_3D_VIEWER* draw3DFrame = Get3DViewerFrame();
|
2015-12-21 11:52:00 +00:00
|
|
|
|
2018-03-14 19:16:01 +00:00
|
|
|
// We can probably remove this for 6.0, but just to be safe we'll stick to
|
|
|
|
// one 3DFrame at a time for 5.0
|
2015-12-21 11:52:00 +00:00
|
|
|
if( draw3DFrame )
|
2018-03-14 19:16:01 +00:00
|
|
|
draw3DFrame->Close( true );
|
2012-05-09 17:37:25 +00:00
|
|
|
|
2018-03-14 19:16:01 +00:00
|
|
|
draw3DFrame = new EDA_3D_VIEWER( &Kiway(), this, _( "3D Viewer" ) );
|
2012-05-09 17:37:25 +00:00
|
|
|
Update3D_Frame( false );
|
2018-03-14 19:16:01 +00:00
|
|
|
|
|
|
|
#ifdef __WXMAC__
|
|
|
|
// A stronger version of Raise() which promotes the window to its parent's level.
|
|
|
|
draw3DFrame->ReparentQuasiModal();
|
|
|
|
#else
|
2015-12-21 11:52:00 +00:00
|
|
|
draw3DFrame->Raise(); // Needed with some Window Managers
|
2018-03-14 19:16:01 +00:00
|
|
|
#endif
|
|
|
|
|
2015-12-21 11:52:00 +00:00
|
|
|
draw3DFrame->Show( true );
|
2012-05-09 17:37:25 +00:00
|
|
|
}
|
|
|
|
|
2013-03-15 16:35:24 +00:00
|
|
|
|
2012-05-09 17:37:25 +00:00
|
|
|
/**
|
|
|
|
* Function Update3D_Frame
|
|
|
|
* must be called after a footprint selection
|
|
|
|
* Updates the 3D view and 3D frame title.
|
|
|
|
*/
|
|
|
|
void FOOTPRINT_WIZARD_FRAME::Update3D_Frame( bool aForceReloadFootprint )
|
|
|
|
{
|
2016-07-19 17:35:25 +00:00
|
|
|
EDA_3D_VIEWER* draw3DFrame = Get3DViewerFrame();
|
2015-12-21 11:52:00 +00:00
|
|
|
|
|
|
|
if( draw3DFrame == NULL )
|
2012-05-09 17:37:25 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
wxString frm3Dtitle;
|
|
|
|
frm3Dtitle.Printf( _( "ModView: 3D Viewer [%s]" ), GetChars( m_wizardName ) );
|
2015-12-21 11:52:00 +00:00
|
|
|
draw3DFrame->SetTitle( frm3Dtitle );
|
2012-05-09 17:37:25 +00:00
|
|
|
|
|
|
|
if( aForceReloadFootprint )
|
|
|
|
{
|
|
|
|
// Force 3D screen refresh immediately
|
2017-05-13 06:17:06 +00:00
|
|
|
draw3DFrame->NewDisplay( true );
|
2012-05-09 17:37:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void FOOTPRINT_WIZARD_FRAME::ReCreateHToolbar()
|
|
|
|
{
|
|
|
|
wxString msg;
|
|
|
|
|
Modular-Kicad milestone B), major portions:
*) Rework the set language support, simplify it by using KIWAY. Now any major
frame with a "change language" menu can change the language for all KIWAY_PLAYERs
in the whole KIWAY. Multiple KIWAYs are not supported yet.
*) Simplify "modal wxFrame" support, and add that support exclusively to
KIWAY_PLAYER where it is inherited by all derivatives. The function
KIWAY_PLAYER::ShowModal() is in the vtable and so is cross module capable.
*) Remove the requirements and assumptions that the wxFrame hierarchy always
had PCB_EDIT_FRAME and SCH_EDIT_FRAME as immediate parents of their viewers
and editors. This is no longer the case, nor required.
*) Use KIWAY::Player() everywhere to make KIWAY_PLAYERs, this registers the
KIWAY_PLAYER within the KIWAY and makes it very easy to find an open frame
quickly. It also gives control to the KIWAY as to frame hierarchical
relationships.
*) Change single_top to use the KIWAY for loading a KIFACE and instantiating
the single KIWAY_PLAYER, see bullet immediately above.
*) Add KIWAY::OnKiwayEnd() and call it from PGM_BASE at program termination, this
gives the KIFACEs a chance to save their final configuration dope to disk.
*) Add dedicated FRAME_T's for the modal frames, so m_Ident can be tested and
these modal frames are distinctly different than their non-modal equivalents.
KIWAY_PLAYER::IsModal() is !not! a valid test during the wxFrame's constructor,
so this is another important reason for having a dedicated FRAME_T for each
modal wxFrame.
On balance, more lines were deleted than were added to achieve all this.
2014-05-03 17:40:19 +00:00
|
|
|
if( !m_mainToolBar )
|
2012-05-09 17:37:25 +00:00
|
|
|
{
|
|
|
|
m_mainToolBar = new wxAuiToolBar( this, wxID_ANY, wxDefaultPosition, wxDefaultSize,
|
2017-09-27 17:40:18 +00:00
|
|
|
KICAD_AUI_TB_STYLE | wxAUI_TB_HORZ_LAYOUT );
|
2012-05-09 17:37:25 +00:00
|
|
|
|
|
|
|
// Set up toolbar
|
|
|
|
m_mainToolBar->AddTool( ID_FOOTPRINT_WIZARD_SELECT_WIZARD, wxEmptyString,
|
2015-09-07 10:52:16 +00:00
|
|
|
KiBitmap( module_wizard_xpm ),
|
2017-06-02 09:51:11 +00:00
|
|
|
_( "Select wizard script to run" ) );
|
2012-05-09 17:37:25 +00:00
|
|
|
|
|
|
|
m_mainToolBar->AddSeparator();
|
2017-01-03 15:01:47 +00:00
|
|
|
|
|
|
|
m_mainToolBar->AddTool( ID_FOOTPRINT_WIZARD_RESET_TO_DEFAULT, wxEmptyString,
|
|
|
|
KiBitmap( reload_xpm ),
|
2017-06-02 09:51:11 +00:00
|
|
|
_( "Reset wizard parameters to default") );
|
2017-01-03 15:01:47 +00:00
|
|
|
|
|
|
|
m_mainToolBar->AddSeparator();
|
|
|
|
|
2012-05-09 17:37:25 +00:00
|
|
|
m_mainToolBar->AddTool( ID_FOOTPRINT_WIZARD_PREVIOUS, wxEmptyString,
|
|
|
|
KiBitmap( lib_previous_xpm ),
|
2015-09-07 10:52:16 +00:00
|
|
|
_( "Select previous parameters page" ) );
|
2012-05-09 17:37:25 +00:00
|
|
|
|
|
|
|
m_mainToolBar->AddTool( ID_FOOTPRINT_WIZARD_NEXT, wxEmptyString,
|
|
|
|
KiBitmap( lib_next_xpm ),
|
2015-09-07 10:52:16 +00:00
|
|
|
_( "Select next parameters page" ) );
|
2012-05-09 17:37:25 +00:00
|
|
|
|
|
|
|
m_mainToolBar->AddSeparator();
|
|
|
|
m_mainToolBar->AddTool( ID_FOOTPRINT_WIZARD_SHOW_3D_VIEW, wxEmptyString,
|
|
|
|
KiBitmap( three_d_xpm ),
|
|
|
|
_( "Show footprint in 3D viewer" ) );
|
|
|
|
|
|
|
|
m_mainToolBar->AddSeparator();
|
2018-02-14 22:07:59 +00:00
|
|
|
msg = AddHotkeyName( _( "Zoom in" ), g_Module_Editor_Hotkeys_Descr,
|
2012-05-09 17:37:25 +00:00
|
|
|
HK_ZOOM_IN, IS_COMMENT );
|
|
|
|
m_mainToolBar->AddTool( ID_ZOOM_IN, wxEmptyString,
|
|
|
|
KiBitmap( zoom_in_xpm ), msg );
|
|
|
|
|
2018-02-14 22:07:59 +00:00
|
|
|
msg = AddHotkeyName( _( "Zoom out" ), g_Module_Editor_Hotkeys_Descr,
|
2012-05-09 17:37:25 +00:00
|
|
|
HK_ZOOM_OUT, IS_COMMENT );
|
|
|
|
m_mainToolBar->AddTool( ID_ZOOM_OUT, wxEmptyString,
|
|
|
|
KiBitmap( zoom_out_xpm ), msg );
|
|
|
|
|
2018-02-14 22:07:59 +00:00
|
|
|
msg = AddHotkeyName( _( "Redraw view" ), g_Module_Editor_Hotkeys_Descr,
|
2012-05-09 17:37:25 +00:00
|
|
|
HK_ZOOM_REDRAW, IS_COMMENT );
|
|
|
|
m_mainToolBar->AddTool( ID_ZOOM_REDRAW, wxEmptyString,
|
2013-03-15 16:35:24 +00:00
|
|
|
KiBitmap( zoom_redraw_xpm ), msg );
|
2012-05-09 17:37:25 +00:00
|
|
|
|
2018-02-14 22:07:59 +00:00
|
|
|
msg = AddHotkeyName( _( "Zoom auto" ), g_Module_Editor_Hotkeys_Descr,
|
2012-05-09 17:37:25 +00:00
|
|
|
HK_ZOOM_AUTO, IS_COMMENT );
|
|
|
|
m_mainToolBar->AddTool( ID_ZOOM_PAGE, wxEmptyString,
|
|
|
|
KiBitmap( zoom_fit_in_page_xpm ), msg );
|
2013-03-15 16:35:24 +00:00
|
|
|
|
2015-09-02 13:55:36 +00:00
|
|
|
// The footprint wizard always can export the current footprint
|
|
|
|
m_mainToolBar->AddSeparator();
|
|
|
|
m_mainToolBar->AddTool( ID_FOOTPRINT_WIZARD_DONE,
|
|
|
|
wxEmptyString, KiBitmap( export_footprint_names_xpm ),
|
2017-06-02 09:51:11 +00:00
|
|
|
_( "Export footprint to editor" ) );
|
2012-07-31 21:00:33 +00:00
|
|
|
|
2012-05-09 17:37:25 +00:00
|
|
|
// after adding the buttons to the toolbar, must call Realize() to
|
|
|
|
// reflect the changes
|
|
|
|
m_mainToolBar->Realize();
|
|
|
|
}
|
|
|
|
|
|
|
|
m_mainToolBar->Refresh();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void FOOTPRINT_WIZARD_FRAME::ReCreateVToolbar()
|
|
|
|
{
|
2015-09-02 13:55:36 +00:00
|
|
|
// Currently, there is no vertical toolbar
|
2012-05-09 17:37:25 +00:00
|
|
|
}
|
2015-09-05 12:10:54 +00:00
|
|
|
|
2017-01-28 17:47:11 +00:00
|
|
|
#if defined(KICAD_SCRIPTING)
|
|
|
|
void FOOTPRINT_WIZARD_FRAME::PythonPluginsReload()
|
|
|
|
{
|
|
|
|
// Reload the Python plugins
|
|
|
|
// Because the board editor has also a plugin python menu,
|
|
|
|
// call PCB_EDIT_FRAME::PythonPluginsReload() if the board editor
|
|
|
|
// is running
|
|
|
|
PCB_EDIT_FRAME* brd_frame =
|
2017-01-28 19:33:02 +00:00
|
|
|
static_cast<PCB_EDIT_FRAME*>( Kiway().Player( FRAME_PCB, false ) );
|
2017-01-28 17:47:11 +00:00
|
|
|
|
|
|
|
if( brd_frame )
|
|
|
|
brd_frame->PythonPluginsReload();
|
|
|
|
else
|
2017-01-29 11:25:19 +00:00
|
|
|
PythonPluginsReloadBase();
|
2017-01-28 17:47:11 +00:00
|
|
|
}
|
|
|
|
#endif
|
2015-09-05 12:10:54 +00:00
|
|
|
|
2015-10-24 17:46:50 +00:00
|
|
|
|