2011-10-28 13:43:37 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2013-01-01 20:52:37 +00:00
|
|
|
* Copyright (C) 2013 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
2017-10-06 18:07:43 +00:00
|
|
|
* Copyright (C) 2008 Wayne Stambaugh <stambaughw@gmail.com>
|
2021-01-08 23:24:12 +00:00
|
|
|
* Copyright (C) 2004-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
2011-10-28 13:43:37 +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
|
|
|
|
*/
|
|
|
|
|
2020-12-06 22:40:54 +00:00
|
|
|
#include <wx/hyperlink.h>
|
2018-01-29 10:37:29 +00:00
|
|
|
#include <base_screen.h>
|
2020-01-13 01:44:19 +00:00
|
|
|
#include <class_library.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <confirm.h>
|
2020-10-24 12:53:11 +00:00
|
|
|
#include <core/kicad_algo.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <eeschema_id.h>
|
2020-01-13 01:44:19 +00:00
|
|
|
#include <eeschema_settings.h>
|
2020-12-29 18:59:48 +00:00
|
|
|
#include <env_paths.h>
|
2020-01-13 01:44:19 +00:00
|
|
|
#include <kiface_i.h>
|
2020-09-01 10:14:51 +00:00
|
|
|
#include <kiplatform/app.h>
|
2020-01-13 01:44:19 +00:00
|
|
|
#include <kiway_express.h>
|
2020-10-31 01:27:16 +00:00
|
|
|
#include <symbol_edit_frame.h>
|
|
|
|
#include <symbol_library_manager.h>
|
2020-04-14 12:25:00 +00:00
|
|
|
#include <lib_text.h>
|
2020-10-31 01:27:16 +00:00
|
|
|
#include <symbol_editor_settings.h>
|
2020-01-13 01:44:19 +00:00
|
|
|
#include <pgm_base.h>
|
|
|
|
#include <sch_draw_panel.h>
|
|
|
|
#include <sch_painter.h>
|
|
|
|
#include <sch_view.h>
|
|
|
|
#include <settings/settings_manager.h>
|
2017-10-06 18:07:43 +00:00
|
|
|
#include <symbol_lib_table.h>
|
2020-08-06 23:03:58 +00:00
|
|
|
#include <tool/action_manager.h>
|
2019-06-09 21:57:23 +00:00
|
|
|
#include <tool/action_toolbar.h>
|
|
|
|
#include <tool/common_control.h>
|
2019-05-04 11:23:04 +00:00
|
|
|
#include <tool/common_tools.h>
|
2020-08-06 23:03:58 +00:00
|
|
|
#include <tool/editor_conditions.h>
|
2020-01-13 01:44:19 +00:00
|
|
|
#include <tool/picker_tool.h>
|
2020-08-06 23:03:58 +00:00
|
|
|
#include <tool/selection.h>
|
2020-01-13 01:44:19 +00:00
|
|
|
#include <tool/tool_dispatcher.h>
|
|
|
|
#include <tool/tool_manager.h>
|
2019-05-04 11:23:04 +00:00
|
|
|
#include <tool/zoom_tool.h>
|
2019-05-10 17:19:48 +00:00
|
|
|
#include <tools/ee_actions.h>
|
|
|
|
#include <tools/ee_inspection_tool.h>
|
2020-01-13 01:44:19 +00:00
|
|
|
#include <tools/ee_point_editor.h>
|
|
|
|
#include <tools/ee_selection_tool.h>
|
2020-12-12 03:13:52 +00:00
|
|
|
#include <tools/symbol_editor_control.h>
|
|
|
|
#include <tools/symbol_editor_drawing_tools.h>
|
|
|
|
#include <tools/symbol_editor_edit_tool.h>
|
|
|
|
#include <tools/symbol_editor_move_tool.h>
|
|
|
|
#include <tools/symbol_editor_pin_tool.h>
|
2020-08-09 10:55:00 +00:00
|
|
|
#include <widgets/app_progress_dialog.h>
|
2020-05-20 01:31:47 +00:00
|
|
|
#include <widgets/infobar.h>
|
2020-01-13 01:44:19 +00:00
|
|
|
#include <widgets/lib_tree.h>
|
|
|
|
#include <widgets/symbol_tree_pane.h>
|
|
|
|
#include <wildcards_and_files_ext.h>
|
2020-12-22 00:07:01 +00:00
|
|
|
#include <panel_sym_lib_table.h>
|
2019-05-04 11:23:04 +00:00
|
|
|
|
2017-12-18 05:21:00 +00:00
|
|
|
|
2021-01-08 23:24:12 +00:00
|
|
|
bool SYMBOL_EDIT_FRAME::m_showDeMorgan = false;
|
2010-11-19 16:28:46 +00:00
|
|
|
|
2020-08-31 15:06:23 +00:00
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
BEGIN_EVENT_TABLE( SYMBOL_EDIT_FRAME, EDA_DRAW_FRAME )
|
|
|
|
EVT_SIZE( SYMBOL_EDIT_FRAME::OnSize )
|
2010-10-04 18:54:14 +00:00
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
EVT_COMBOBOX( ID_LIBEDIT_SELECT_PART_NUMBER, SYMBOL_EDIT_FRAME::OnSelectUnit )
|
2010-10-04 18:54:14 +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
|
|
|
// menubar commands
|
2020-10-31 01:27:16 +00:00
|
|
|
EVT_MENU( wxID_EXIT, SYMBOL_EDIT_FRAME::OnExitKiCad )
|
|
|
|
EVT_MENU( wxID_CLOSE, SYMBOL_EDIT_FRAME::CloseWindow )
|
2018-09-04 18:22:26 +00:00
|
|
|
EVT_MENU( ID_GRID_SETTINGS, SCH_BASE_FRAME::OnGridSettings )
|
2010-10-04 18:54:14 +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
|
|
|
// Update user interface elements.
|
2020-10-31 01:27:16 +00:00
|
|
|
EVT_UPDATE_UI( ID_LIBEDIT_SELECT_PART_NUMBER, SYMBOL_EDIT_FRAME::OnUpdatePartNumber )
|
2016-11-04 12:59:45 +00:00
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
END_EVENT_TABLE()
|
|
|
|
|
2020-08-31 15:06:23 +00:00
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
SYMBOL_EDIT_FRAME::SYMBOL_EDIT_FRAME( KIWAY* aKiway, wxWindow* aParent ) :
|
|
|
|
SCH_BASE_FRAME( aKiway, aParent, FRAME_SCH_SYMBOL_EDITOR, _( "Library Editor" ),
|
2020-04-12 23:09:17 +00:00
|
|
|
wxDefaultPosition, wxDefaultSize, KICAD_DEFAULT_DRAWFRAME_STYLE,
|
|
|
|
LIB_EDIT_FRAME_NAME ),
|
2020-08-31 15:06:23 +00:00
|
|
|
m_unitSelectBox( nullptr ),
|
|
|
|
m_isSymbolFromSchematic( false )
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2009-10-10 17:27:53 +00:00
|
|
|
SetShowDeMorgan( false );
|
2020-05-23 15:50:08 +00:00
|
|
|
m_SyncPinEdit = false;
|
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
|
|
|
|
2019-12-13 21:51:59 +00:00
|
|
|
m_my_part = nullptr;
|
2017-11-12 17:55:20 +00:00
|
|
|
m_treePane = nullptr;
|
|
|
|
m_libMgr = nullptr;
|
2019-05-07 23:51:37 +00:00
|
|
|
m_unit = 1;
|
|
|
|
m_convert = 1;
|
2020-11-16 11:16:44 +00:00
|
|
|
m_aboutTitle = _( "Symbol Editor" );
|
2015-04-30 11:08:35 +00:00
|
|
|
|
2011-09-08 05:58:45 +00:00
|
|
|
wxIcon icon;
|
2020-12-22 19:41:32 +00:00
|
|
|
wxIconBundle icon_bundle;
|
|
|
|
|
2016-09-20 11:22:42 +00:00
|
|
|
icon.CopyFromBitmap( KiBitmap( icon_libedit_xpm ) );
|
2020-12-22 19:41:32 +00:00
|
|
|
icon_bundle.AddIcon( icon );
|
|
|
|
icon.CopyFromBitmap( KiBitmap( icon_libedit_32_xpm ) );
|
|
|
|
icon_bundle.AddIcon( icon );
|
|
|
|
icon.CopyFromBitmap( KiBitmap( icon_libedit_16_xpm ) );
|
|
|
|
icon_bundle.AddIcon( icon );
|
|
|
|
|
|
|
|
SetIcons( icon_bundle );
|
2011-09-08 05:58:45 +00:00
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
m_settings = Pgm().GetSettingsManager().GetAppSettings<SYMBOL_EDITOR_SETTINGS>();
|
2020-01-13 01:44:19 +00:00
|
|
|
LoadSettings( m_settings );
|
2015-08-06 00:10:52 +00:00
|
|
|
|
2019-05-22 08:04:34 +00:00
|
|
|
// Ensure axis are always drawn
|
|
|
|
KIGFX::GAL_DISPLAY_OPTIONS& gal_opts = GetGalDisplayOptions();
|
|
|
|
gal_opts.m_axesEnabled = true;
|
|
|
|
|
2020-05-21 02:27:48 +00:00
|
|
|
m_dummyScreen = new SCH_SCREEN();
|
2017-11-12 17:55:20 +00:00
|
|
|
SetScreen( m_dummyScreen );
|
2009-09-04 18:57:37 +00:00
|
|
|
GetScreen()->m_Center = true;
|
2011-12-31 05:44:00 +00:00
|
|
|
|
2019-06-13 17:28:55 +00:00
|
|
|
GetCanvas()->GetViewControls()->SetCrossHairCursorPosition( VECTOR2D( 0, 0 ), false );
|
2012-05-06 16:55:51 +00:00
|
|
|
|
2020-04-12 23:09:17 +00:00
|
|
|
GetRenderSettings()->LoadColors( GetColorSettings() );
|
2020-03-06 03:57:50 +00:00
|
|
|
|
2019-06-05 19:15:57 +00:00
|
|
|
setupTools();
|
2020-08-06 23:03:58 +00:00
|
|
|
setupUIConditions();
|
2019-06-13 11:44:12 +00:00
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
m_libMgr = new SYMBOL_LIBRARY_MANAGER( *this );
|
2017-11-30 11:31:36 +00:00
|
|
|
SyncLibraries( true );
|
2018-07-27 20:47:51 +00:00
|
|
|
m_treePane = new SYMBOL_TREE_PANE( this, m_libMgr );
|
2017-11-12 17:55:20 +00:00
|
|
|
|
2010-03-18 20:35:29 +00:00
|
|
|
ReCreateMenuBar();
|
2007-09-15 04:25:54 +00:00
|
|
|
ReCreateHToolbar();
|
|
|
|
ReCreateVToolbar();
|
2018-01-08 04:05:03 +00:00
|
|
|
ReCreateOptToolbar();
|
2020-11-16 11:16:44 +00:00
|
|
|
initExitKey();
|
2018-08-13 17:00:08 +00:00
|
|
|
|
2018-10-05 12:55:34 +00:00
|
|
|
updateTitle();
|
2020-11-15 16:08:31 +00:00
|
|
|
DisplaySymbolDatasheet();
|
2019-05-06 12:32:51 +00:00
|
|
|
RebuildSymbolUnitsList();
|
2010-02-08 18:15:42 +00:00
|
|
|
|
2009-11-04 20:46:53 +00:00
|
|
|
m_auimgr.SetManagedWindow( this );
|
|
|
|
|
2020-12-22 21:35:25 +00:00
|
|
|
CreateInfoBar();
|
2020-12-11 12:09:37 +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 ) );
|
2011-09-15 18:25:44 +00:00
|
|
|
|
2020-12-11 12:09:37 +00:00
|
|
|
m_auimgr.AddPane( m_optionsToolBar, EDA_PANE().VToolbar().Name( "OptToolbar" )
|
|
|
|
.Left().Layer( 3 ) );
|
|
|
|
m_auimgr.AddPane( m_treePane, EDA_PANE().Palette().Name( "ComponentTree" )
|
|
|
|
.Left().Layer( 2 )
|
|
|
|
.Caption( _( "Libraries" ) )
|
|
|
|
.MinSize( 250, -1 ).BestSize( 250, -1 ) );
|
|
|
|
m_auimgr.AddPane( m_drawToolBar, EDA_PANE().VToolbar().Name( "ToolsToolbar" )
|
|
|
|
.Right().Layer( 2 ) );
|
2011-09-15 18:25:44 +00:00
|
|
|
|
2020-12-11 12:09:37 +00:00
|
|
|
m_auimgr.AddPane( GetCanvas(), wxAuiPaneInfo().Name( "DrawFrame" )
|
|
|
|
.CentrePane() );
|
2011-02-23 14:20:01 +00:00
|
|
|
|
2020-12-22 21:35:25 +00:00
|
|
|
FinishAUIInitialization();
|
2011-02-23 14:20:01 +00:00
|
|
|
|
2020-10-26 15:34:59 +00:00
|
|
|
if( m_settings->m_LibWidth > 0 )
|
|
|
|
{
|
|
|
|
wxAuiPaneInfo& treePane = m_auimgr.GetPane( "ComponentTree" );
|
|
|
|
|
|
|
|
// wxAUI hack: force width by setting MinSize() and then Fixed()
|
|
|
|
// thanks to ZenJu http://trac.wxwidgets.org/ticket/13180
|
|
|
|
treePane.MinSize( m_settings->m_LibWidth, -1 );
|
|
|
|
treePane.Fixed();
|
|
|
|
m_auimgr.Update();
|
|
|
|
|
|
|
|
// now make it resizable again
|
|
|
|
treePane.Resizable();
|
|
|
|
m_auimgr.Update();
|
|
|
|
|
|
|
|
// Note: DO NOT call m_auimgr.Update() anywhere after this; it will nuke the size
|
|
|
|
// back to minimum.
|
|
|
|
treePane.MinSize( 250, -1 );
|
|
|
|
}
|
|
|
|
|
2015-07-15 12:41:30 +00:00
|
|
|
Raise();
|
2011-04-12 12:41:13 +00:00
|
|
|
Show( true );
|
|
|
|
|
2018-08-03 12:18:26 +00:00
|
|
|
SyncView();
|
2019-06-13 17:28:55 +00:00
|
|
|
GetCanvas()->GetView()->UseDrawPriority( true );
|
|
|
|
GetCanvas()->GetGAL()->SetAxesEnabled( true );
|
2018-11-20 14:11:22 +00:00
|
|
|
|
2020-10-05 19:26:33 +00:00
|
|
|
setupUnits( m_settings );
|
|
|
|
|
2018-11-20 14:11:22 +00:00
|
|
|
// Set the working/draw area size to display a symbol to a reasonable value:
|
|
|
|
// A 600mm x 600mm with a origin at the area center looks like a large working area
|
|
|
|
double max_size_x = Millimeter2iu( 600 );
|
|
|
|
double max_size_y = Millimeter2iu( 600 );
|
|
|
|
BOX2D bbox;
|
|
|
|
bbox.SetOrigin( -max_size_x /2, -max_size_y/2 );
|
|
|
|
bbox.SetSize( max_size_x, max_size_y );
|
|
|
|
GetCanvas()->GetView()->SetBoundary( bbox );
|
2019-07-20 15:52:30 +00:00
|
|
|
|
|
|
|
m_toolManager->RunAction( ACTIONS::zoomFitScreen, true );
|
2019-12-19 14:11:11 +00:00
|
|
|
|
2020-09-01 10:14:51 +00:00
|
|
|
KIPLATFORM::APP::SetShutdownBlockReason( this, _( "Library changes are unsaved" ) );
|
2020-04-17 23:32:29 +00:00
|
|
|
|
|
|
|
// Ensure the window is on top
|
|
|
|
Raise();
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
2007-09-15 04:25:54 +00:00
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
SYMBOL_EDIT_FRAME::~SYMBOL_EDIT_FRAME()
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2020-02-03 14:00:48 +00:00
|
|
|
// Shutdown all running tools
|
|
|
|
if( m_toolManager )
|
|
|
|
m_toolManager->ShutdownAllTools();
|
|
|
|
|
2020-08-31 15:06:23 +00:00
|
|
|
if( IsSymbolFromSchematic() )
|
|
|
|
{
|
|
|
|
delete m_my_part;
|
|
|
|
m_my_part = nullptr;
|
|
|
|
|
|
|
|
SCH_SCREEN* screen = GetScreen();
|
|
|
|
delete screen;
|
|
|
|
m_isSymbolFromSchematic = false;
|
|
|
|
}
|
2017-11-12 17:55:20 +00:00
|
|
|
// current screen is destroyed in EDA_DRAW_FRAME
|
|
|
|
SetScreen( m_dummyScreen );
|
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
auto libedit = Pgm().GetSettingsManager().GetAppSettings<SYMBOL_EDITOR_SETTINGS>();
|
2020-01-13 01:44:19 +00:00
|
|
|
Pgm().GetSettingsManager().Save( libedit );
|
|
|
|
|
2017-11-12 17:55:20 +00:00
|
|
|
delete m_libMgr;
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
void SYMBOL_EDIT_FRAME::LoadSettings( APP_SETTINGS_BASE* aCfg )
|
2020-01-13 01:44:19 +00:00
|
|
|
{
|
2020-10-31 01:27:16 +00:00
|
|
|
wxCHECK_RET( m_settings, "Call to SYMBOL_EDIT_FRAME::LoadSettings with null m_settings" );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-05-10 22:02:58 +00:00
|
|
|
SCH_BASE_FRAME::LoadSettings( GetSettings() );
|
|
|
|
|
2020-05-22 23:11:04 +00:00
|
|
|
GetRenderSettings()->m_ShowPinsElectricalType = m_settings->m_ShowPinElectricalType;
|
2020-01-13 01:44:19 +00:00
|
|
|
|
|
|
|
// Hidden elements must be editable
|
2020-04-12 23:09:17 +00:00
|
|
|
GetRenderSettings()->m_ShowHiddenText = true;
|
|
|
|
GetRenderSettings()->m_ShowHiddenPins = true;
|
|
|
|
GetRenderSettings()->m_ShowUmbilicals = false;
|
2020-01-13 01:44:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
void SYMBOL_EDIT_FRAME::SaveSettings( APP_SETTINGS_BASE* aCfg )
|
2020-01-13 01:44:19 +00:00
|
|
|
{
|
2020-10-31 01:27:16 +00:00
|
|
|
wxCHECK_RET( m_settings, "Call to SYMBOL_EDIT_FRAME::LoadSettings with null m_settings" );
|
2020-05-10 22:02:58 +00:00
|
|
|
|
|
|
|
SCH_BASE_FRAME::SaveSettings( GetSettings() );
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2020-05-22 23:11:04 +00:00
|
|
|
m_settings->m_ShowPinElectricalType = GetRenderSettings()->m_ShowPinsElectricalType;
|
2020-04-12 23:09:17 +00:00
|
|
|
m_settings->m_LibWidth = m_treePane->GetSize().x;
|
2020-01-13 01:44:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-12-23 23:18:02 +00:00
|
|
|
COLOR_SETTINGS* SYMBOL_EDIT_FRAME::GetColorSettings() const
|
2020-03-06 03:57:50 +00:00
|
|
|
{
|
2020-05-16 13:23:51 +00:00
|
|
|
SETTINGS_MANAGER& mgr = Pgm().GetSettingsManager();
|
|
|
|
|
2020-05-10 22:02:58 +00:00
|
|
|
if( GetSettings()->m_UseEeschemaColorSettings )
|
2020-05-16 13:23:51 +00:00
|
|
|
return mgr.GetColorSettings( mgr.GetAppSettings<EESCHEMA_SETTINGS>()->m_ColorTheme );
|
2020-03-06 03:57:50 +00:00
|
|
|
else
|
2020-05-16 13:23:51 +00:00
|
|
|
return mgr.GetColorSettings( GetSettings()->m_ColorTheme );
|
2020-03-06 03:57:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
void SYMBOL_EDIT_FRAME::setupTools()
|
2019-05-04 11:23:04 +00:00
|
|
|
{
|
|
|
|
// Create the manager and dispatcher & route draw panel events to the dispatcher
|
|
|
|
m_toolManager = new TOOL_MANAGER;
|
|
|
|
m_toolManager->SetEnvironment( GetScreen(), GetCanvas()->GetView(),
|
2020-06-12 10:58:56 +00:00
|
|
|
GetCanvas()->GetViewControls(), config(), this );
|
2019-05-10 17:19:48 +00:00
|
|
|
m_actions = new EE_ACTIONS();
|
2019-05-04 11:23:04 +00:00
|
|
|
m_toolDispatcher = new TOOL_DISPATCHER( m_toolManager, m_actions );
|
|
|
|
|
|
|
|
// Register tools
|
2019-06-09 21:57:23 +00:00
|
|
|
m_toolManager->RegisterTool( new COMMON_CONTROL );
|
2019-05-04 11:23:04 +00:00
|
|
|
m_toolManager->RegisterTool( new COMMON_TOOLS );
|
|
|
|
m_toolManager->RegisterTool( new ZOOM_TOOL );
|
2019-05-10 17:19:48 +00:00
|
|
|
m_toolManager->RegisterTool( new EE_SELECTION_TOOL );
|
2019-07-15 23:44:01 +00:00
|
|
|
m_toolManager->RegisterTool( new PICKER_TOOL );
|
2019-05-10 17:19:48 +00:00
|
|
|
m_toolManager->RegisterTool( new EE_INSPECTION_TOOL );
|
2020-12-12 03:13:52 +00:00
|
|
|
m_toolManager->RegisterTool( new SYMBOL_EDITOR_PIN_TOOL );
|
|
|
|
m_toolManager->RegisterTool( new SYMBOL_EDITOR_DRAWING_TOOLS );
|
2019-05-10 17:19:48 +00:00
|
|
|
m_toolManager->RegisterTool( new EE_POINT_EDITOR );
|
2020-12-12 03:13:52 +00:00
|
|
|
m_toolManager->RegisterTool( new SYMBOL_EDITOR_MOVE_TOOL );
|
|
|
|
m_toolManager->RegisterTool( new SYMBOL_EDITOR_EDIT_TOOL );
|
|
|
|
m_toolManager->RegisterTool( new SYMBOL_EDITOR_CONTROL );
|
2019-05-04 11:23:04 +00:00
|
|
|
m_toolManager->InitTools();
|
|
|
|
|
|
|
|
// Run the selection tool, it is supposed to be always active
|
2019-05-08 18:56:03 +00:00
|
|
|
m_toolManager->InvokeTool( "eeschema.InteractiveSelection" );
|
2019-05-04 11:23:04 +00:00
|
|
|
|
|
|
|
GetCanvas()->SetEventDispatcher( m_toolDispatcher );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
void SYMBOL_EDIT_FRAME::setupUIConditions()
|
2020-08-06 23:03:58 +00:00
|
|
|
{
|
|
|
|
SCH_BASE_FRAME::setupUIConditions();
|
|
|
|
|
|
|
|
ACTION_MANAGER* mgr = m_toolManager->GetActionManager();
|
|
|
|
EDITOR_CONDITIONS cond( this );
|
|
|
|
|
|
|
|
wxASSERT( mgr );
|
|
|
|
|
|
|
|
#define ENABLE( x ) ACTION_CONDITIONS().Enable( x )
|
|
|
|
#define CHECK( x ) ACTION_CONDITIONS().Check( x )
|
|
|
|
|
|
|
|
auto haveSymbolCond =
|
|
|
|
[this] ( const SELECTION& )
|
|
|
|
{
|
|
|
|
return m_my_part;
|
|
|
|
};
|
|
|
|
|
2020-12-22 02:29:27 +00:00
|
|
|
auto isEditableCond =
|
2020-11-04 20:00:09 +00:00
|
|
|
[this] ( const SELECTION& )
|
|
|
|
{
|
2021-01-08 23:24:12 +00:00
|
|
|
// Only root symbols from the new s-expression libraries or the schematic
|
|
|
|
// are editable.
|
|
|
|
return IsSymbolEditable();
|
2020-11-04 20:00:09 +00:00
|
|
|
};
|
|
|
|
|
2020-12-25 11:55:45 +00:00
|
|
|
auto schematicModifiedCond =
|
2020-08-06 23:03:58 +00:00
|
|
|
[this] ( const SELECTION& )
|
|
|
|
{
|
2020-12-25 11:55:45 +00:00
|
|
|
return IsSymbolFromSchematic() && GetScreen() && GetScreen()->IsModify();
|
2020-08-06 23:03:58 +00:00
|
|
|
};
|
|
|
|
|
2020-12-25 11:55:45 +00:00
|
|
|
auto libModifiedCondition =
|
2020-08-06 23:03:58 +00:00
|
|
|
[this] ( const SELECTION& sel )
|
|
|
|
{
|
2020-12-25 11:55:45 +00:00
|
|
|
return m_libMgr->HasModifications();
|
2020-08-06 23:03:58 +00:00
|
|
|
};
|
|
|
|
|
2020-12-27 16:28:52 +00:00
|
|
|
auto libSelectedCondition =
|
|
|
|
[this] ( const SELECTION& sel )
|
|
|
|
{
|
|
|
|
return !getTargetLibId().GetLibNickname().empty();
|
|
|
|
};
|
|
|
|
|
2020-11-04 20:00:09 +00:00
|
|
|
mgr->SetConditions( ACTIONS::saveAll,
|
2020-12-25 11:55:45 +00:00
|
|
|
ENABLE( schematicModifiedCond || libModifiedCondition ) );
|
2020-11-04 20:00:09 +00:00
|
|
|
mgr->SetConditions( ACTIONS::save,
|
2020-12-25 11:55:45 +00:00
|
|
|
ENABLE( schematicModifiedCond || libModifiedCondition ) );
|
|
|
|
mgr->SetConditions( EE_ACTIONS::saveInSchematic,
|
|
|
|
ENABLE( schematicModifiedCond ) );
|
2020-12-27 16:28:52 +00:00
|
|
|
mgr->SetConditions( EE_ACTIONS::saveLibraryAs, ENABLE( libSelectedCondition ) );
|
|
|
|
mgr->SetConditions( EE_ACTIONS::saveSymbolAs, ENABLE( haveSymbolCond ) );
|
|
|
|
|
2020-11-04 20:00:09 +00:00
|
|
|
mgr->SetConditions( ACTIONS::undo,
|
|
|
|
ENABLE( haveSymbolCond && cond.UndoAvailable() ) );
|
|
|
|
mgr->SetConditions( ACTIONS::redo,
|
|
|
|
ENABLE( haveSymbolCond && cond.RedoAvailable() ) );
|
|
|
|
mgr->SetConditions( ACTIONS::revert,
|
2020-12-25 11:55:45 +00:00
|
|
|
ENABLE( haveSymbolCond && libModifiedCondition ) );
|
2020-11-04 20:00:09 +00:00
|
|
|
|
|
|
|
mgr->SetConditions( ACTIONS::toggleGrid,
|
|
|
|
CHECK( cond.GridVisible() ) );
|
|
|
|
mgr->SetConditions( ACTIONS::toggleCursorStyle,
|
|
|
|
CHECK( cond.FullscreenCursor() ) );
|
|
|
|
mgr->SetConditions( ACTIONS::millimetersUnits,
|
|
|
|
CHECK( cond.Units( EDA_UNITS::MILLIMETRES ) ) );
|
|
|
|
mgr->SetConditions( ACTIONS::inchesUnits,
|
|
|
|
CHECK( cond.Units( EDA_UNITS::INCHES ) ) );
|
|
|
|
mgr->SetConditions( ACTIONS::milsUnits,
|
|
|
|
CHECK( cond.Units( EDA_UNITS::MILS ) ) );
|
|
|
|
mgr->SetConditions( ACTIONS::acceleratedGraphics,
|
|
|
|
CHECK( cond.CanvasType( EDA_DRAW_PANEL_GAL::GAL_TYPE_OPENGL ) ) );
|
|
|
|
mgr->SetConditions( ACTIONS::standardGraphics,
|
|
|
|
CHECK( cond.CanvasType( EDA_DRAW_PANEL_GAL::GAL_TYPE_CAIRO ) ) );
|
|
|
|
|
|
|
|
mgr->SetConditions( ACTIONS::cut,
|
2020-12-22 02:29:27 +00:00
|
|
|
ENABLE( isEditableCond && SELECTION_CONDITIONS::NotEmpty ) );
|
2020-11-04 20:00:09 +00:00
|
|
|
mgr->SetConditions( ACTIONS::copy,
|
2020-12-22 02:29:27 +00:00
|
|
|
ENABLE( haveSymbolCond && SELECTION_CONDITIONS::NotEmpty ) );
|
2020-11-04 20:00:09 +00:00
|
|
|
mgr->SetConditions( ACTIONS::paste,
|
2020-12-22 02:29:27 +00:00
|
|
|
ENABLE( isEditableCond && SELECTION_CONDITIONS::Idle ) );
|
2020-11-04 20:00:09 +00:00
|
|
|
mgr->SetConditions( ACTIONS::doDelete,
|
2020-12-22 02:29:27 +00:00
|
|
|
ENABLE( isEditableCond && SELECTION_CONDITIONS::NotEmpty ) );
|
2020-11-04 20:00:09 +00:00
|
|
|
mgr->SetConditions( ACTIONS::duplicate,
|
2020-12-22 02:29:27 +00:00
|
|
|
ENABLE( isEditableCond && SELECTION_CONDITIONS::NotEmpty ) );
|
2020-11-04 20:00:09 +00:00
|
|
|
mgr->SetConditions( ACTIONS::selectAll,
|
2020-12-22 02:29:27 +00:00
|
|
|
ENABLE( haveSymbolCond ) );
|
2020-11-04 20:00:09 +00:00
|
|
|
|
|
|
|
mgr->SetConditions( ACTIONS::zoomTool,
|
|
|
|
CHECK( cond.CurrentTool( ACTIONS::zoomTool ) ) );
|
|
|
|
mgr->SetConditions( ACTIONS::selectionTool,
|
|
|
|
CHECK( cond.CurrentTool( ACTIONS::selectionTool ) ) );
|
|
|
|
|
|
|
|
auto pinTypeCond =
|
2020-08-06 23:03:58 +00:00
|
|
|
[this] ( const SELECTION& )
|
|
|
|
{
|
|
|
|
return GetRenderSettings()->m_ShowPinsElectricalType;
|
|
|
|
};
|
|
|
|
|
|
|
|
auto showCompTreeCond =
|
|
|
|
[this] ( const SELECTION& )
|
|
|
|
{
|
|
|
|
return IsSearchTreeShown();
|
|
|
|
};
|
|
|
|
|
|
|
|
mgr->SetConditions( EE_ACTIONS::showElectricalTypes, CHECK( pinTypeCond ) );
|
|
|
|
mgr->SetConditions( EE_ACTIONS::showComponentTree, CHECK( showCompTreeCond ) );
|
|
|
|
|
|
|
|
auto demorganCond =
|
|
|
|
[this] ( const SELECTION& )
|
|
|
|
{
|
|
|
|
return GetShowDeMorgan();
|
|
|
|
};
|
|
|
|
|
|
|
|
auto demorganStandardCond =
|
|
|
|
[this] ( const SELECTION& )
|
|
|
|
{
|
|
|
|
return m_convert == LIB_ITEM::LIB_CONVERT::BASE;
|
|
|
|
};
|
|
|
|
|
|
|
|
auto demorganAlternateCond =
|
|
|
|
[this] ( const SELECTION& )
|
|
|
|
{
|
|
|
|
return m_convert == LIB_ITEM::LIB_CONVERT::DEMORGAN;
|
|
|
|
};
|
|
|
|
|
|
|
|
auto multiUnitModeCond =
|
|
|
|
[this] ( const SELECTION& )
|
|
|
|
{
|
|
|
|
return m_my_part && m_my_part->IsMulti() && !m_my_part->UnitsLocked();
|
|
|
|
};
|
|
|
|
|
|
|
|
auto syncedPinsModeCond =
|
|
|
|
[this] ( const SELECTION& )
|
|
|
|
{
|
|
|
|
return m_SyncPinEdit;
|
|
|
|
};
|
|
|
|
|
|
|
|
auto haveDatasheetCond =
|
|
|
|
[this] ( const SELECTION& )
|
|
|
|
{
|
|
|
|
return m_my_part && !m_my_part->GetDatasheetField().GetText().IsEmpty();
|
|
|
|
};
|
|
|
|
|
|
|
|
mgr->SetConditions( EE_ACTIONS::showDatasheet, ENABLE( haveDatasheetCond ) );
|
2021-01-08 23:24:12 +00:00
|
|
|
mgr->SetConditions( EE_ACTIONS::symbolProperties, ENABLE( isEditableCond && haveSymbolCond ) );
|
2020-12-22 02:29:27 +00:00
|
|
|
mgr->SetConditions( EE_ACTIONS::runERC, ENABLE( haveSymbolCond ) );
|
2021-01-08 23:24:12 +00:00
|
|
|
mgr->SetConditions( EE_ACTIONS::pinTable, ENABLE( isEditableCond && haveSymbolCond ) );
|
2020-08-06 23:03:58 +00:00
|
|
|
|
|
|
|
mgr->SetConditions( EE_ACTIONS::showDeMorganStandard,
|
|
|
|
ACTION_CONDITIONS().Enable( demorganCond ).Check( demorganStandardCond ) );
|
|
|
|
mgr->SetConditions( EE_ACTIONS::showDeMorganAlternate,
|
|
|
|
ACTION_CONDITIONS().Enable( demorganCond ).Check( demorganAlternateCond ) );
|
|
|
|
mgr->SetConditions( EE_ACTIONS::toggleSyncedPinsMode,
|
|
|
|
ACTION_CONDITIONS().Enable( multiUnitModeCond ).Check( syncedPinsModeCond ) );
|
|
|
|
|
|
|
|
// Only enable a tool if the part is edtable
|
|
|
|
#define EDIT_TOOL( tool ) ACTION_CONDITIONS().Enable( isEditableCond ).Check( cond.CurrentTool( tool ) )
|
|
|
|
|
|
|
|
mgr->SetConditions( ACTIONS::deleteTool, EDIT_TOOL( ACTIONS::deleteTool ) );
|
|
|
|
mgr->SetConditions( EE_ACTIONS::placeSymbolPin, EDIT_TOOL( EE_ACTIONS::placeSymbolPin ) );
|
|
|
|
mgr->SetConditions( EE_ACTIONS::placeSymbolText, EDIT_TOOL( EE_ACTIONS::placeSymbolText ) );
|
2021-01-08 23:24:12 +00:00
|
|
|
mgr->SetConditions( EE_ACTIONS::drawSymbolRectangle,
|
|
|
|
EDIT_TOOL( EE_ACTIONS::drawSymbolRectangle ) );
|
|
|
|
mgr->SetConditions( EE_ACTIONS::drawSymbolCircle,
|
|
|
|
EDIT_TOOL( EE_ACTIONS::drawSymbolCircle ) );
|
2020-08-06 23:03:58 +00:00
|
|
|
mgr->SetConditions( EE_ACTIONS::drawSymbolArc, EDIT_TOOL( EE_ACTIONS::drawSymbolArc ) );
|
|
|
|
mgr->SetConditions( EE_ACTIONS::drawSymbolLines, EDIT_TOOL( EE_ACTIONS::drawSymbolLines ) );
|
2021-01-08 23:24:12 +00:00
|
|
|
mgr->SetConditions( EE_ACTIONS::placeSymbolAnchor,
|
|
|
|
EDIT_TOOL( EE_ACTIONS::placeSymbolAnchor ) );
|
2020-08-06 23:03:58 +00:00
|
|
|
|
|
|
|
#undef CHECK
|
|
|
|
#undef ENABLE
|
|
|
|
#undef EDIT_TOOL
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
bool SYMBOL_EDIT_FRAME::canCloseWindow( wxCloseEvent& aEvent )
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2019-12-19 14:11:11 +00:00
|
|
|
// Shutdown blocks must be determined and vetoed as early as possible
|
2020-09-01 10:14:51 +00:00
|
|
|
if( KIPLATFORM::APP::SupportsShutdownBlockReason() && aEvent.GetId() == wxEVT_QUERY_END_SESSION
|
|
|
|
&& IsContentModified() )
|
2019-12-19 14:11:11 +00:00
|
|
|
{
|
2020-08-24 02:01:14 +00:00
|
|
|
return false;
|
2019-12-19 14:11:11 +00:00
|
|
|
}
|
|
|
|
|
2020-10-23 15:56:15 +00:00
|
|
|
if( m_isSymbolFromSchematic && IsContentModified() )
|
|
|
|
{
|
|
|
|
SCH_EDIT_FRAME* schframe = (SCH_EDIT_FRAME*) Kiway().Player( FRAME_SCH, false );
|
|
|
|
|
|
|
|
switch( UnsavedChangesDialog( this,
|
|
|
|
_( "Save changes to schematic before closing?" ),
|
|
|
|
nullptr ) )
|
|
|
|
{
|
|
|
|
case wxID_YES:
|
|
|
|
if( schframe && GetCurPart() ) // Should be always the case
|
|
|
|
schframe->UpdateSymbolFromEditor( *GetCurPart() );
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
case wxID_NO: return true;
|
|
|
|
|
|
|
|
default:
|
|
|
|
case wxID_CANCEL: return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-24 02:01:14 +00:00
|
|
|
if( !saveAllLibraries( true ) )
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
void SYMBOL_EDIT_FRAME::doCloseWindow()
|
2020-08-24 02:01:14 +00:00
|
|
|
{
|
|
|
|
Destroy();
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
void SYMBOL_EDIT_FRAME::RebuildSymbolUnitsList()
|
2009-09-14 13:24:17 +00:00
|
|
|
{
|
2019-06-16 18:51:47 +00:00
|
|
|
if( !m_unitSelectBox )
|
2009-09-14 13:24:17 +00:00
|
|
|
return;
|
|
|
|
|
2019-06-16 18:51:47 +00:00
|
|
|
if( m_unitSelectBox->GetCount() != 0 )
|
|
|
|
m_unitSelectBox->Clear();
|
2009-09-14 13:24:17 +00:00
|
|
|
|
2019-11-06 19:15:42 +00:00
|
|
|
if( !m_my_part || m_my_part->GetUnitCount() <= 1 )
|
2009-09-14 13:24:17 +00:00
|
|
|
{
|
2014-09-02 11:47:57 +00:00
|
|
|
m_unit = 1;
|
2019-06-16 18:51:47 +00:00
|
|
|
m_unitSelectBox->Append( wxEmptyString );
|
2009-09-14 13:24:17 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-11-06 19:15:42 +00:00
|
|
|
for( int i = 0; i < m_my_part->GetUnitCount(); i++ )
|
2009-09-14 13:24:17 +00:00
|
|
|
{
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
wxString sub = LIB_PART::SubReference( i+1, false );
|
2020-10-16 00:39:55 +00:00
|
|
|
wxString unit = wxString::Format( _( "Unit %s" ), sub );
|
2019-06-16 18:51:47 +00:00
|
|
|
m_unitSelectBox->Append( unit );
|
2009-09-14 13:24:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-02 20:09:23 +00:00
|
|
|
// Ensure the selected unit is compatible with the number of units of the current part:
|
2019-11-06 19:15:42 +00:00
|
|
|
if( m_my_part && m_my_part->GetUnitCount() < m_unit )
|
2014-09-02 11:47:57 +00:00
|
|
|
m_unit = 1;
|
|
|
|
|
2019-06-16 18:51:47 +00:00
|
|
|
m_unitSelectBox->SetSelection(( m_unit > 0 ) ? m_unit - 1 : 0 );
|
2009-09-14 13:24:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
void SYMBOL_EDIT_FRAME::OnToggleSearchTree( wxCommandEvent& event )
|
2017-10-31 11:13:20 +00:00
|
|
|
{
|
2017-11-12 17:55:20 +00:00
|
|
|
auto& treePane = m_auimgr.GetPane( m_treePane );
|
2017-10-31 11:13:20 +00:00
|
|
|
treePane.Show( !IsSearchTreeShown() );
|
|
|
|
m_auimgr.Update();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
bool SYMBOL_EDIT_FRAME::IsSearchTreeShown()
|
2017-11-12 17:55:20 +00:00
|
|
|
{
|
2019-06-02 23:17:27 +00:00
|
|
|
return m_auimgr.GetPane( m_treePane ).IsShown();
|
2017-11-12 17:55:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
void SYMBOL_EDIT_FRAME::FreezeSearchTree()
|
2017-10-31 11:13:20 +00:00
|
|
|
{
|
2020-10-16 15:26:19 +00:00
|
|
|
m_treePane->Freeze();
|
2019-06-02 23:17:27 +00:00
|
|
|
m_libMgr->GetAdapter()->Freeze();
|
2017-10-31 11:13:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
void SYMBOL_EDIT_FRAME::ThawSearchTree()
|
2018-01-20 17:15:46 +00:00
|
|
|
{
|
2019-06-02 23:17:27 +00:00
|
|
|
m_libMgr->GetAdapter()->Thaw();
|
2020-10-16 15:26:19 +00:00
|
|
|
m_treePane->Thaw();
|
2018-01-20 17:15:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
void SYMBOL_EDIT_FRAME::OnExitKiCad( wxCommandEvent& event )
|
2019-06-25 04:44:34 +00:00
|
|
|
{
|
|
|
|
Kiway().OnKiCadExit();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
void SYMBOL_EDIT_FRAME::OnUpdatePartNumber( wxUpdateUIEvent& event )
|
2009-09-14 13:24:17 +00:00
|
|
|
{
|
2019-06-16 18:51:47 +00:00
|
|
|
if( !m_unitSelectBox )
|
2009-09-14 13:24:17 +00:00
|
|
|
return;
|
|
|
|
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
// Using the typical event.Enable() call doesn't seem to work with wxGTK
|
|
|
|
// so use the pointer to alias combobox to directly enable or disable.
|
2019-11-06 19:15:42 +00:00
|
|
|
m_unitSelectBox->Enable( m_my_part && m_my_part->GetUnitCount() > 1 );
|
2009-09-14 13:24:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
void SYMBOL_EDIT_FRAME::OnSelectUnit( wxCommandEvent& event )
|
2009-09-14 13:24:17 +00:00
|
|
|
{
|
|
|
|
int i = event.GetSelection();
|
2009-09-18 14:56:05 +00:00
|
|
|
|
2009-09-25 18:49:04 +00:00
|
|
|
if( ( i == wxNOT_FOUND ) || ( ( i + 1 ) == m_unit ) )
|
2009-09-14 13:24:17 +00:00
|
|
|
return;
|
2009-09-18 14:56:05 +00:00
|
|
|
|
2019-05-10 22:24:02 +00:00
|
|
|
m_toolManager->RunAction( ACTIONS::cancelInteractive, true );
|
2019-05-10 17:19:48 +00:00
|
|
|
m_toolManager->RunAction( EE_ACTIONS::clearSelection, true );
|
2019-05-06 12:32:51 +00:00
|
|
|
|
2009-09-25 18:49:04 +00:00
|
|
|
m_unit = i + 1;
|
2018-09-02 20:19:22 +00:00
|
|
|
|
2019-05-06 12:32:51 +00:00
|
|
|
m_toolManager->ResetTools( TOOL_BASE::MODEL_RELOAD );
|
2018-09-04 16:12:15 +00:00
|
|
|
RebuildView();
|
2009-09-14 13:24:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-12-22 00:07:01 +00:00
|
|
|
bool SYMBOL_EDIT_FRAME::IsSymbolFromLegacyLibrary() const
|
|
|
|
{
|
|
|
|
if( m_my_part )
|
|
|
|
{
|
|
|
|
SYMBOL_LIB_TABLE_ROW* row = m_libMgr->GetLibrary( m_my_part->GetLibNickname() );
|
|
|
|
|
|
|
|
if( row && row->GetType() == SCH_IO_MGR::ShowType( SCH_IO_MGR::SCH_LEGACY ) )
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
wxString SYMBOL_EDIT_FRAME::GetCurLib() const
|
2009-12-22 20:08:56 +00:00
|
|
|
{
|
2017-10-06 18:07:43 +00:00
|
|
|
wxString libNickname = Prj().GetRString( PROJECT::SCH_LIBEDIT_CUR_LIB );
|
2009-12-22 20:08:56 +00:00
|
|
|
|
2017-10-06 18:07:43 +00:00
|
|
|
if( !libNickname.empty() )
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
{
|
2017-10-06 18:07:43 +00:00
|
|
|
if( !Prj().SchSymbolLibTable()->HasLibrary( libNickname ) )
|
|
|
|
{
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
Prj().SetRString( PROJECT::SCH_LIBEDIT_CUR_LIB, wxEmptyString );
|
2017-10-06 18:07:43 +00:00
|
|
|
libNickname = wxEmptyString;
|
|
|
|
}
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
}
|
|
|
|
|
2017-10-06 18:07:43 +00:00
|
|
|
return libNickname;
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
wxString SYMBOL_EDIT_FRAME::SetCurLib( const wxString& aLibNickname )
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
{
|
2017-10-06 18:07:43 +00:00
|
|
|
wxString old = GetCurLib();
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
|
2017-10-06 18:07:43 +00:00
|
|
|
if( aLibNickname.empty() || !Prj().SchSymbolLibTable()->HasLibrary( aLibNickname ) )
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
Prj().SetRString( PROJECT::SCH_LIBEDIT_CUR_LIB, wxEmptyString );
|
2009-12-22 20:08:56 +00:00
|
|
|
else
|
2017-10-06 18:07:43 +00:00
|
|
|
Prj().SetRString( PROJECT::SCH_LIBEDIT_CUR_LIB, aLibNickname );
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
|
|
|
|
return old;
|
2009-12-22 20:08:56 +00:00
|
|
|
}
|
2010-03-20 19:57:59 +00:00
|
|
|
|
2010-10-20 20:24:26 +00:00
|
|
|
|
2020-12-08 15:27:50 +00:00
|
|
|
void SYMBOL_EDIT_FRAME::SetCurPart( LIB_PART* aPart, bool aUpdateZoom )
|
2010-10-23 10:09:23 +00:00
|
|
|
{
|
2019-05-10 17:19:48 +00:00
|
|
|
m_toolManager->RunAction( EE_ACTIONS::clearSelection, true );
|
2020-12-07 15:49:39 +00:00
|
|
|
GetCanvas()->GetView()->Clear();
|
2020-03-21 20:54:35 +00:00
|
|
|
delete m_my_part;
|
2020-12-07 15:49:39 +00:00
|
|
|
|
2019-12-13 21:51:59 +00:00
|
|
|
m_my_part = aPart;
|
2010-12-10 19:47:44 +00:00
|
|
|
|
2017-11-14 11:03:19 +00:00
|
|
|
// select the current component in the tree widget
|
2020-08-31 15:06:23 +00:00
|
|
|
if( !IsSymbolFromSchematic() && m_my_part )
|
2019-11-06 19:15:42 +00:00
|
|
|
m_treePane->GetLibTree()->SelectLibId( m_my_part->GetLibId() );
|
2020-08-31 15:06:23 +00:00
|
|
|
else
|
|
|
|
m_treePane->GetLibTree()->Unselect();
|
2017-11-14 11:03:19 +00:00
|
|
|
|
2019-11-06 19:15:42 +00:00
|
|
|
wxString partName = m_my_part ? m_my_part->GetName() : wxString();
|
2020-12-08 15:27:50 +00:00
|
|
|
bool isAlias = !IsSymbolFromSchematic() && m_my_part && m_my_part->IsAlias();
|
2020-12-22 00:07:01 +00:00
|
|
|
bool isLegacy = IsSymbolFromLegacyLibrary();
|
2017-11-13 11:19:14 +00:00
|
|
|
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
// retain in case this wxFrame is re-opened later on the same PROJECT
|
2017-11-13 11:19:14 +00:00
|
|
|
Prj().SetRString( PROJECT::SCH_LIBEDIT_CUR_PART, partName );
|
2018-01-22 12:33:24 +00:00
|
|
|
|
2018-01-23 11:15:19 +00:00
|
|
|
// Ensure synchronized pin edit can be enabled only symbols with interchangeable units
|
2019-11-06 19:15:42 +00:00
|
|
|
m_SyncPinEdit = aPart && aPart->IsRoot() && aPart->IsMulti() && !aPart->UnitsLocked();
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2020-12-08 15:05:35 +00:00
|
|
|
m_toolManager->ResetTools( TOOL_BASE::MODEL_RELOAD );
|
2020-12-08 15:27:50 +00:00
|
|
|
|
|
|
|
GetRenderSettings()->m_ShowUnit = m_unit;
|
|
|
|
GetRenderSettings()->m_ShowConvert = m_convert;
|
2021-01-08 23:24:12 +00:00
|
|
|
GetRenderSettings()->m_ShowDisabled = ( isAlias || isLegacy ) && !IsSymbolFromSchematic();
|
2020-12-08 15:27:50 +00:00
|
|
|
GetCanvas()->DisplayComponent( m_my_part );
|
|
|
|
GetCanvas()->GetView()->HideWorksheet();
|
|
|
|
GetCanvas()->GetView()->ClearHiddenFlags();
|
|
|
|
|
|
|
|
if( aUpdateZoom )
|
|
|
|
m_toolManager->RunAction( ACTIONS::zoomFitScreen, true );
|
|
|
|
|
|
|
|
GetCanvas()->Refresh();
|
2020-12-08 15:05:35 +00:00
|
|
|
|
2020-12-06 22:40:54 +00:00
|
|
|
WX_INFOBAR* infobar = GetInfoBar();
|
|
|
|
|
2020-08-31 15:06:23 +00:00
|
|
|
if( IsSymbolFromSchematic() )
|
2020-08-21 22:44:43 +00:00
|
|
|
{
|
|
|
|
wxString msg;
|
2020-08-31 15:06:23 +00:00
|
|
|
msg.Printf( _( "Editing symbol %s from schematic. Saving will update the schematic "
|
|
|
|
"only." ), m_reference );
|
2020-08-21 22:44:43 +00:00
|
|
|
|
2020-12-06 22:40:54 +00:00
|
|
|
infobar->RemoveAllButtons();
|
|
|
|
infobar->ShowMessage( msg, wxICON_INFORMATION );
|
|
|
|
}
|
2020-12-22 00:07:01 +00:00
|
|
|
else if( isLegacy )
|
|
|
|
{
|
|
|
|
wxHyperlinkCtrl* button = new wxHyperlinkCtrl( infobar, wxID_ANY,
|
|
|
|
_( "Manage symbol libraries" ),
|
|
|
|
wxEmptyString );
|
|
|
|
|
|
|
|
button->Bind( wxEVT_COMMAND_HYPERLINK, std::function<void( wxHyperlinkEvent& aEvent )>(
|
|
|
|
[&]( wxHyperlinkEvent& aEvent )
|
|
|
|
{
|
|
|
|
InvokeSchEditSymbolLibTable( &Kiway(), this );
|
|
|
|
} ) );
|
|
|
|
|
|
|
|
infobar->RemoveAllButtons();
|
|
|
|
infobar->AddButton( button );
|
|
|
|
infobar->ShowMessage( _( "Symbols in legacy libraries are not editable. Use Manage "
|
|
|
|
"Symbol Libraries to migrate to current format." ),
|
|
|
|
wxICON_INFORMATION );
|
|
|
|
}
|
2020-12-08 15:27:50 +00:00
|
|
|
else if( isAlias )
|
2020-12-06 22:40:54 +00:00
|
|
|
{
|
|
|
|
wxString parentPartName = m_my_part->GetParent().lock()->GetName();
|
|
|
|
wxString msg;
|
|
|
|
wxString link;
|
|
|
|
|
|
|
|
msg.Printf( _( "Symbol %s is derived from %s. Symbol graphics will not be editable." ),
|
|
|
|
partName,
|
|
|
|
parentPartName );
|
|
|
|
|
|
|
|
link.Printf( _( "Open %s" ), parentPartName );
|
|
|
|
|
|
|
|
wxHyperlinkCtrl* button = new wxHyperlinkCtrl( infobar, wxID_ANY, link, wxEmptyString );
|
|
|
|
button->Bind( wxEVT_COMMAND_HYPERLINK, std::function<void( wxHyperlinkEvent& aEvent )>(
|
|
|
|
[&]( wxHyperlinkEvent& aEvent )
|
|
|
|
{
|
|
|
|
LoadSymbolFromCurrentLib( m_my_part->GetParent().lock()->GetName(),
|
|
|
|
GetUnit(), GetConvert() );
|
|
|
|
} ) );
|
|
|
|
|
|
|
|
infobar->RemoveAllButtons();
|
|
|
|
infobar->AddButton( button );
|
|
|
|
infobar->ShowMessage( msg, wxICON_INFORMATION );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
infobar->Dismiss();
|
2020-08-21 22:44:43 +00:00
|
|
|
}
|
2019-11-06 19:15:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
SYMBOL_LIBRARY_MANAGER& SYMBOL_EDIT_FRAME::GetLibManager()
|
2019-11-06 19:15:42 +00:00
|
|
|
{
|
|
|
|
wxASSERT( m_libMgr );
|
|
|
|
return *m_libMgr;
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
}
|
2010-12-10 19:47:44 +00:00
|
|
|
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
void SYMBOL_EDIT_FRAME::OnModify()
|
2017-10-31 11:13:20 +00:00
|
|
|
{
|
2017-11-12 17:55:20 +00:00
|
|
|
GetScreen()->SetModify();
|
|
|
|
storeCurrentPart();
|
2018-09-04 16:12:15 +00:00
|
|
|
|
2019-11-26 21:38:57 +00:00
|
|
|
m_treePane->GetLibTree()->RefreshLibTree();
|
2017-10-31 11:13:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
bool SYMBOL_EDIT_FRAME::SynchronizePins()
|
2011-10-28 13:43:37 +00:00
|
|
|
{
|
2019-11-06 19:15:42 +00:00
|
|
|
return m_SyncPinEdit && m_my_part && m_my_part->IsMulti() && !m_my_part->UnitsLocked();
|
2011-10-28 13:43:37 +00:00
|
|
|
}
|
2017-03-10 13:38:39 +00:00
|
|
|
|
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
bool SYMBOL_EDIT_FRAME::AddLibraryFile( bool aCreateNew )
|
2017-11-12 17:55:20 +00:00
|
|
|
{
|
2018-07-27 20:47:51 +00:00
|
|
|
wxFileName fn = m_libMgr->GetUniqueLibraryName();
|
|
|
|
|
2020-05-07 15:25:48 +00:00
|
|
|
if( !LibraryFileBrowser( !aCreateNew, fn, KiCadSymbolLibFileWildcard(),
|
|
|
|
KiCadSymbolLibFileExtension, false ) )
|
2018-11-04 12:32:54 +00:00
|
|
|
{
|
2018-07-27 20:47:51 +00:00
|
|
|
return false;
|
2018-11-04 12:32:54 +00:00
|
|
|
}
|
2018-07-27 20:47:51 +00:00
|
|
|
|
|
|
|
wxString libName = fn.GetName();
|
2017-11-12 17:55:20 +00:00
|
|
|
|
|
|
|
if( libName.IsEmpty() )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if( m_libMgr->LibraryExists( libName ) )
|
|
|
|
{
|
2018-07-27 20:47:51 +00:00
|
|
|
DisplayError( this, wxString::Format( _( "Library \"%s\" already exists" ), libName ) );
|
2017-11-12 17:55:20 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-11-22 13:02:45 +00:00
|
|
|
// Select the target library table (global/project)
|
|
|
|
SYMBOL_LIB_TABLE* libTable = selectSymLibTable();
|
|
|
|
|
|
|
|
if( !libTable )
|
|
|
|
return false;
|
|
|
|
|
2017-11-12 17:55:20 +00:00
|
|
|
if( aCreateNew )
|
2017-11-22 12:20:26 +00:00
|
|
|
{
|
2018-07-27 20:47:51 +00:00
|
|
|
if( !m_libMgr->CreateLibrary( fn.GetFullPath(), libTable ) )
|
|
|
|
{
|
2019-05-10 19:57:24 +00:00
|
|
|
DisplayError( this, wxString::Format( _( "Could not create the library file '%s'.\n"
|
|
|
|
"Check write permission." ),
|
|
|
|
fn.GetFullPath() ) );
|
2018-07-27 20:47:51 +00:00
|
|
|
return false;
|
|
|
|
}
|
2017-11-22 12:20:26 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-07-27 20:47:51 +00:00
|
|
|
if( !m_libMgr->AddLibrary( fn.GetFullPath(), libTable ) )
|
|
|
|
{
|
2017-11-22 12:20:26 +00:00
|
|
|
DisplayError( this, _( "Could not open the library file." ) );
|
2018-07-27 20:47:51 +00:00
|
|
|
return false;
|
|
|
|
}
|
2017-11-22 12:20:26 +00:00
|
|
|
}
|
2017-11-12 17:55:20 +00:00
|
|
|
|
2018-01-31 09:46:01 +00:00
|
|
|
bool globalTable = ( libTable == &SYMBOL_LIB_TABLE::GetGlobalLibTable() );
|
|
|
|
saveSymbolLibTables( globalTable, !globalTable );
|
|
|
|
|
2018-07-27 20:47:51 +00:00
|
|
|
return true;
|
2017-11-12 17:55:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
LIB_ID SYMBOL_EDIT_FRAME::GetTreeLIBID( int* aUnit ) const
|
2017-11-12 17:55:20 +00:00
|
|
|
{
|
2019-06-05 22:29:59 +00:00
|
|
|
return m_treePane->GetLibTree()->GetSelectedLibId( aUnit );
|
2019-06-05 19:15:57 +00:00
|
|
|
}
|
2017-11-12 17:55:20 +00:00
|
|
|
|
2019-06-05 19:15:57 +00:00
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
LIB_PART* SYMBOL_EDIT_FRAME::getTargetPart() const
|
2019-06-05 19:15:57 +00:00
|
|
|
{
|
|
|
|
LIB_ID libId = GetTreeLIBID();
|
2019-06-13 11:44:12 +00:00
|
|
|
|
2019-06-05 19:15:57 +00:00
|
|
|
if( libId.IsValid() )
|
2017-11-12 17:55:20 +00:00
|
|
|
{
|
2019-11-06 19:15:42 +00:00
|
|
|
LIB_PART* alias = m_libMgr->GetAlias( libId.GetLibItemName(), libId.GetLibNickname() );
|
|
|
|
return alias;
|
2017-11-12 17:55:20 +00:00
|
|
|
}
|
|
|
|
|
2019-12-13 21:51:59 +00:00
|
|
|
return m_my_part;
|
2017-11-12 17:55:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
LIB_ID SYMBOL_EDIT_FRAME::getTargetLibId() const
|
2017-11-12 17:55:20 +00:00
|
|
|
{
|
2019-06-05 19:15:57 +00:00
|
|
|
LIB_ID id = GetTreeLIBID();
|
2017-11-12 17:55:20 +00:00
|
|
|
|
2019-11-06 19:15:42 +00:00
|
|
|
if( id.GetLibNickname().empty() && m_my_part )
|
|
|
|
id = m_my_part->GetLibId();
|
2017-11-12 17:55:20 +00:00
|
|
|
|
2018-05-02 22:33:53 +00:00
|
|
|
return id;
|
2017-11-12 17:55:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
LIB_TREE_NODE* SYMBOL_EDIT_FRAME::GetCurrentTreeNode() const
|
2020-02-07 17:06:24 +00:00
|
|
|
{
|
|
|
|
return m_treePane->GetLibTree()->GetCurrentTreeNode();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
wxString SYMBOL_EDIT_FRAME::getTargetLib() const
|
2017-11-12 17:55:20 +00:00
|
|
|
{
|
2018-05-02 22:33:53 +00:00
|
|
|
return getTargetLibId().GetLibNickname();
|
2017-11-12 17:55:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
void SYMBOL_EDIT_FRAME::SyncLibraries( bool aShowProgress )
|
2017-11-22 13:02:45 +00:00
|
|
|
{
|
2018-01-09 12:48:00 +00:00
|
|
|
LIB_ID selected;
|
|
|
|
|
|
|
|
if( m_treePane )
|
2018-07-27 20:47:51 +00:00
|
|
|
selected = m_treePane->GetLibTree()->GetSelectedLibId();
|
2018-01-09 12:48:00 +00:00
|
|
|
|
2018-08-25 12:21:09 +00:00
|
|
|
if( aShowProgress )
|
2017-11-30 11:31:36 +00:00
|
|
|
{
|
2020-08-09 10:55:00 +00:00
|
|
|
APP_PROGRESS_DIALOG progressDlg( _( "Loading Symbol Libraries" ), wxEmptyString,
|
|
|
|
m_libMgr->GetAdapter()->GetLibrariesCount(), this );
|
2017-11-22 13:02:45 +00:00
|
|
|
|
2018-08-25 12:21:09 +00:00
|
|
|
m_libMgr->Sync( true, [&]( int progress, int max, const wxString& libName )
|
|
|
|
{
|
2019-11-06 19:15:42 +00:00
|
|
|
progressDlg.Update( progress, wxString::Format( _( "Loading library \"%s\"" ),
|
|
|
|
libName ) );
|
2017-11-30 11:31:36 +00:00
|
|
|
} );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_libMgr->Sync( true );
|
|
|
|
}
|
2017-11-22 13:15:51 +00:00
|
|
|
|
2017-11-30 11:31:36 +00:00
|
|
|
if( m_treePane )
|
2018-01-09 12:48:00 +00:00
|
|
|
{
|
|
|
|
wxDataViewItem found;
|
|
|
|
|
|
|
|
if( selected.IsValid() )
|
|
|
|
{
|
|
|
|
// Check if the previously selected item is still valid,
|
|
|
|
// if not - it has to be unselected to prevent crash
|
|
|
|
found = m_libMgr->GetAdapter()->FindItem( selected );
|
|
|
|
|
|
|
|
if( !found )
|
2018-07-27 20:47:51 +00:00
|
|
|
m_treePane->GetLibTree()->Unselect();
|
2018-01-09 12:48:00 +00:00
|
|
|
}
|
|
|
|
|
2020-02-07 17:06:24 +00:00
|
|
|
m_treePane->GetLibTree()->Regenerate( true );
|
2018-01-09 12:48:00 +00:00
|
|
|
|
|
|
|
// Try to select the parent library, in case the part is not found
|
|
|
|
if( !found && selected.IsValid() )
|
|
|
|
{
|
|
|
|
selected.SetLibItemName( "" );
|
|
|
|
found = m_libMgr->GetAdapter()->FindItem( selected );
|
|
|
|
|
|
|
|
if( found )
|
2018-07-27 20:47:51 +00:00
|
|
|
m_treePane->GetLibTree()->SelectLibId( selected );
|
2018-01-09 12:48:00 +00:00
|
|
|
}
|
2019-02-27 15:34:51 +00:00
|
|
|
|
|
|
|
// If no selection, see if there's a current part to centre
|
2019-11-06 19:15:42 +00:00
|
|
|
if( !selected.IsValid() && m_my_part )
|
2019-02-27 15:34:51 +00:00
|
|
|
{
|
2019-11-06 19:15:42 +00:00
|
|
|
LIB_ID current( GetCurLib(), m_my_part->GetName() );
|
2019-02-27 15:34:51 +00:00
|
|
|
m_treePane->GetLibTree()->CenterLibId( current );
|
|
|
|
}
|
2018-01-09 12:48:00 +00:00
|
|
|
}
|
2017-11-22 13:02:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
void SYMBOL_EDIT_FRAME::RegenerateLibraryTree()
|
2020-02-07 17:06:24 +00:00
|
|
|
{
|
|
|
|
LIB_ID target = getTargetLibId();
|
|
|
|
|
|
|
|
m_treePane->GetLibTree()->Regenerate( true );
|
|
|
|
|
|
|
|
if( target.IsValid() )
|
|
|
|
m_treePane->GetLibTree()->CenterLibId( target );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
SYMBOL_LIB_TABLE* SYMBOL_EDIT_FRAME::selectSymLibTable( bool aOptional )
|
2017-11-12 17:55:20 +00:00
|
|
|
{
|
2020-08-07 19:22:15 +00:00
|
|
|
// If no project is loaded, always work with the global table
|
|
|
|
if( Prj().IsNullProject() )
|
|
|
|
{
|
|
|
|
SYMBOL_LIB_TABLE* ret = &SYMBOL_LIB_TABLE::GetGlobalLibTable();
|
|
|
|
|
|
|
|
if( aOptional )
|
|
|
|
{
|
|
|
|
wxMessageDialog dlg( this, _( "Add the library to the global library table?" ),
|
|
|
|
_( "Add To Global Library Table" ), wxYES_NO );
|
|
|
|
|
|
|
|
if( dlg.ShowModal() != wxID_OK )
|
|
|
|
ret = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2017-11-12 17:55:20 +00:00
|
|
|
wxArrayString libTableNames;
|
2017-11-14 12:57:58 +00:00
|
|
|
libTableNames.Add( _( "Global" ) );
|
|
|
|
libTableNames.Add( _( "Project" ) );
|
2017-11-12 17:55:20 +00:00
|
|
|
|
2018-08-23 11:48:14 +00:00
|
|
|
wxSingleChoiceDialog dlg( this, _( "Choose the Library Table to add the library to:" ),
|
|
|
|
_( "Add To Library Table" ), libTableNames );
|
|
|
|
|
|
|
|
if( aOptional )
|
|
|
|
{
|
|
|
|
dlg.FindWindow( wxID_CANCEL )->SetLabel( _( "Skip" ) );
|
|
|
|
dlg.FindWindow( wxID_OK )->SetLabel( _( "Add" ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( dlg.ShowModal() != wxID_OK )
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
switch( dlg.GetSelection() )
|
2017-11-12 17:55:20 +00:00
|
|
|
{
|
2018-07-29 15:33:58 +00:00
|
|
|
case 0: return &SYMBOL_LIB_TABLE::GetGlobalLibTable();
|
|
|
|
case 1: return Prj().SchSymbolLibTable();
|
|
|
|
default: return nullptr;
|
2017-11-12 17:55:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
bool SYMBOL_EDIT_FRAME::backupFile( const wxFileName& aOriginalFile, const wxString& aBackupExt )
|
2017-11-13 14:15:10 +00:00
|
|
|
{
|
|
|
|
if( aOriginalFile.FileExists() )
|
|
|
|
{
|
|
|
|
wxFileName backupFileName( aOriginalFile );
|
2020-05-22 14:12:44 +00:00
|
|
|
backupFileName.SetExt( aBackupExt );
|
2017-11-13 14:15:10 +00:00
|
|
|
|
|
|
|
if( backupFileName.FileExists() )
|
|
|
|
wxRemoveFile( backupFileName.GetFullPath() );
|
|
|
|
|
|
|
|
if( !wxCopyFile( aOriginalFile.GetFullPath(), backupFileName.GetFullPath() ) )
|
|
|
|
{
|
2019-04-22 07:34:28 +00:00
|
|
|
DisplayError( this, wxString::Format( _( "Failed to save backup to \"%s\"" ),
|
|
|
|
backupFileName.GetFullPath() ) );
|
2017-11-13 14:15:10 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
void SYMBOL_EDIT_FRAME::storeCurrentPart()
|
2017-11-12 17:55:20 +00:00
|
|
|
{
|
|
|
|
if( m_my_part && !GetCurLib().IsEmpty() && GetScreen()->IsModify() )
|
2019-12-13 21:51:59 +00:00
|
|
|
m_libMgr->UpdatePart( m_my_part, GetCurLib() ); // UpdatePart() makes a copy
|
2017-11-12 17:55:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
bool SYMBOL_EDIT_FRAME::isCurrentPart( const LIB_ID& aLibId ) const
|
2017-11-12 17:55:20 +00:00
|
|
|
{
|
2018-01-19 18:56:01 +00:00
|
|
|
// This will return the root part of any alias
|
|
|
|
LIB_PART* part = m_libMgr->GetBufferedPart( aLibId.GetLibItemName(), aLibId.GetLibNickname() );
|
|
|
|
// Now we can compare the libId of the current part and the root part
|
2019-11-06 19:15:42 +00:00
|
|
|
return ( part && m_my_part && part->GetLibId() == m_my_part->GetLibId() );
|
2017-11-12 17:55:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
void SYMBOL_EDIT_FRAME::emptyScreen()
|
2017-11-12 17:55:20 +00:00
|
|
|
{
|
2019-06-13 11:44:12 +00:00
|
|
|
m_treePane->GetLibTree()->Unselect();
|
2017-11-12 17:55:20 +00:00
|
|
|
SetCurLib( wxEmptyString );
|
2020-12-08 15:27:50 +00:00
|
|
|
SetCurPart( nullptr, false );
|
2017-11-12 17:55:20 +00:00
|
|
|
SetScreen( m_dummyScreen );
|
2020-07-13 11:21:40 +00:00
|
|
|
ClearUndoRedoList();
|
2019-06-04 12:46:02 +00:00
|
|
|
m_toolManager->RunAction( ACTIONS::zoomFitScreen, true );
|
2017-11-12 17:55:20 +00:00
|
|
|
Refresh();
|
|
|
|
}
|
2018-01-08 04:05:03 +00:00
|
|
|
|
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
void SYMBOL_EDIT_FRAME::CommonSettingsChanged( bool aEnvVarsChanged, bool aTextVarsChanged )
|
2018-01-08 04:05:03 +00:00
|
|
|
{
|
2020-07-17 20:04:14 +00:00
|
|
|
SCH_BASE_FRAME::CommonSettingsChanged( aEnvVarsChanged, aTextVarsChanged );
|
2018-01-08 04:05:03 +00:00
|
|
|
|
2020-03-22 00:03:59 +00:00
|
|
|
GetCanvas()->GetGAL()->SetAxesColor( m_colorSettings->GetColor( LAYER_SCHEMATIC_GRID_AXES ) );
|
|
|
|
|
2019-07-20 15:52:30 +00:00
|
|
|
RecreateToolbars();
|
2019-06-24 09:22:49 +00:00
|
|
|
|
|
|
|
if( aEnvVarsChanged )
|
|
|
|
SyncLibraries( true );
|
|
|
|
|
2018-01-08 04:05:03 +00:00
|
|
|
Layout();
|
|
|
|
SendSizeEvent();
|
|
|
|
}
|
2018-06-30 22:38:04 +00:00
|
|
|
|
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
void SYMBOL_EDIT_FRAME::ShowChangedLanguage()
|
2018-06-30 22:38:04 +00:00
|
|
|
{
|
|
|
|
// call my base class
|
|
|
|
SCH_BASE_FRAME::ShowChangedLanguage();
|
|
|
|
|
|
|
|
// tooltips in toolbars
|
2019-07-20 15:52:30 +00:00
|
|
|
RecreateToolbars();
|
2018-06-30 22:38:04 +00:00
|
|
|
|
|
|
|
// status bar
|
|
|
|
UpdateMsgPanel();
|
|
|
|
}
|
|
|
|
|
2018-10-17 11:14:09 +00:00
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
void SYMBOL_EDIT_FRAME::SetScreen( BASE_SCREEN* aScreen )
|
2018-08-03 12:18:26 +00:00
|
|
|
{
|
2019-04-17 19:09:48 +00:00
|
|
|
SCH_BASE_FRAME::SetScreen( aScreen );
|
2018-08-03 12:18:26 +00:00
|
|
|
}
|
|
|
|
|
2018-10-17 11:14:09 +00:00
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
void SYMBOL_EDIT_FRAME::RebuildView()
|
2018-08-03 12:18:26 +00:00
|
|
|
{
|
2018-09-02 20:19:22 +00:00
|
|
|
GetRenderSettings()->m_ShowUnit = m_unit;
|
|
|
|
GetRenderSettings()->m_ShowConvert = m_convert;
|
2021-01-08 23:24:12 +00:00
|
|
|
GetRenderSettings()->m_ShowDisabled =
|
|
|
|
m_my_part && m_my_part->IsAlias() && !IsSymbolFromSchematic();
|
2019-12-13 21:51:59 +00:00
|
|
|
GetCanvas()->DisplayComponent( m_my_part );
|
2018-10-21 12:50:31 +00:00
|
|
|
GetCanvas()->GetView()->HideWorksheet();
|
|
|
|
GetCanvas()->GetView()->ClearHiddenFlags();
|
2018-09-04 16:12:15 +00:00
|
|
|
|
|
|
|
GetCanvas()->Refresh();
|
2018-08-03 12:18:26 +00:00
|
|
|
}
|
|
|
|
|
2018-10-17 11:14:09 +00:00
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
void SYMBOL_EDIT_FRAME::HardRedraw()
|
2018-10-17 11:14:09 +00:00
|
|
|
{
|
2019-04-11 01:23:34 +00:00
|
|
|
SyncLibraries( true );
|
2020-03-21 20:54:35 +00:00
|
|
|
|
|
|
|
if( m_my_part )
|
|
|
|
{
|
|
|
|
EE_SELECTION_TOOL* selectionTool = m_toolManager->GetTool<EE_SELECTION_TOOL>();
|
|
|
|
EE_SELECTION& selection = selectionTool->GetSelection();
|
|
|
|
|
|
|
|
for( LIB_ITEM& item : m_my_part->GetDrawItems() )
|
|
|
|
{
|
2020-09-26 13:42:40 +00:00
|
|
|
if( !alg::contains( selection, &item ) )
|
2020-03-21 20:54:35 +00:00
|
|
|
item.ClearSelected();
|
|
|
|
else
|
|
|
|
item.SetSelected();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-17 11:14:09 +00:00
|
|
|
RebuildView();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
const BOX2I SYMBOL_EDIT_FRAME::GetDocumentExtents( bool aIncludeAllVisible ) const
|
2018-08-03 12:18:26 +00:00
|
|
|
{
|
2019-11-06 19:15:42 +00:00
|
|
|
if( !m_my_part )
|
2018-08-03 12:18:26 +00:00
|
|
|
{
|
2019-12-30 20:43:10 +00:00
|
|
|
return BOX2I( VECTOR2I( Mils2iu( -100 ), Mils2iu( -100 ) ),
|
|
|
|
VECTOR2I( Mils2iu( 200 ), Mils2iu( 200 ) ) );
|
2018-08-03 12:18:26 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-11-06 19:15:42 +00:00
|
|
|
EDA_RECT boundingBox = m_my_part->Flatten()->GetUnitBoundingBox( m_unit, m_convert );
|
|
|
|
return BOX2I( boundingBox.GetOrigin(), VECTOR2I( boundingBox.GetWidth(),
|
|
|
|
boundingBox.GetHeight() ) );
|
2018-08-03 12:18:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-19 16:53:01 +00:00
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
void SYMBOL_EDIT_FRAME::KiwayMailIn( KIWAY_EXPRESS& mail )
|
2018-08-19 16:53:01 +00:00
|
|
|
{
|
|
|
|
const std::string& payload = mail.GetPayload();
|
|
|
|
|
|
|
|
switch( mail.Command() )
|
|
|
|
{
|
|
|
|
case MAIL_LIB_EDIT:
|
|
|
|
if( !payload.empty() )
|
|
|
|
{
|
|
|
|
wxString libFileName( payload );
|
|
|
|
wxString libNickname;
|
|
|
|
wxString msg;
|
|
|
|
|
|
|
|
SYMBOL_LIB_TABLE* libTable = Prj().SchSymbolLibTable();
|
|
|
|
const LIB_TABLE_ROW* libTableRow = libTable->FindRowByURI( libFileName );
|
|
|
|
|
|
|
|
if( !libTableRow )
|
|
|
|
{
|
2020-12-17 23:32:23 +00:00
|
|
|
msg.Printf( _( "The current configuration does not include the library '%s'.\n"
|
|
|
|
"Use Manage Symbol Libraries to edit the configuration." ),
|
2018-08-19 16:53:01 +00:00
|
|
|
libFileName );
|
|
|
|
DisplayErrorMessage( this, _( "Library not found in symbol library table." ), msg );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
libNickname = libTableRow->GetNickName();
|
|
|
|
|
|
|
|
if( !libTable->HasLibrary( libNickname, true ) )
|
|
|
|
{
|
2020-12-17 23:32:23 +00:00
|
|
|
msg.Printf( _( "The library '%s' is not enabled in the current configuration.\n"
|
|
|
|
"Use Manage Symbol Libraries to edit the configuration." ),
|
|
|
|
libNickname );
|
2018-08-19 16:53:01 +00:00
|
|
|
DisplayErrorMessage( this, _( "Symbol library not enabled." ), msg );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
SetCurLib( libNickname );
|
|
|
|
|
|
|
|
if( m_treePane )
|
2018-09-24 14:45:51 +00:00
|
|
|
{
|
|
|
|
LIB_ID id( libNickname, wxEmptyString );
|
|
|
|
m_treePane->GetLibTree()->ExpandLibId( id );
|
|
|
|
m_treePane->GetLibTree()->CenterLibId( id );
|
|
|
|
}
|
2018-08-19 16:53:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
;
|
|
|
|
}
|
|
|
|
}
|
2019-02-24 11:56:17 +00:00
|
|
|
|
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
void SYMBOL_EDIT_FRAME::SwitchCanvas( EDA_DRAW_PANEL_GAL::GAL_TYPE aCanvasType )
|
2019-02-24 11:56:17 +00:00
|
|
|
{
|
|
|
|
// switches currently used canvas ( Cairo / OpenGL):
|
2019-05-28 13:51:47 +00:00
|
|
|
SCH_BASE_FRAME::SwitchCanvas( aCanvasType );
|
2019-02-24 11:56:17 +00:00
|
|
|
|
|
|
|
// Set options specific to symbol editor (axies are always enabled):
|
2019-06-13 17:28:55 +00:00
|
|
|
GetCanvas()->GetGAL()->SetAxesEnabled( true );
|
2020-03-22 00:03:59 +00:00
|
|
|
GetCanvas()->GetGAL()->SetAxesColor( m_colorSettings->GetColor( LAYER_SCHEMATIC_GRID_AXES ) );
|
2019-02-24 11:56:17 +00:00
|
|
|
}
|
2019-05-10 19:57:24 +00:00
|
|
|
|
2019-06-13 11:44:12 +00:00
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
bool SYMBOL_EDIT_FRAME::HasLibModifications() const
|
2019-06-13 11:44:12 +00:00
|
|
|
{
|
|
|
|
wxCHECK( m_libMgr, false );
|
|
|
|
|
|
|
|
return m_libMgr->HasModifications();
|
|
|
|
}
|
2019-12-19 15:34:01 +00:00
|
|
|
|
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
bool SYMBOL_EDIT_FRAME::IsContentModified()
|
2019-12-19 15:34:01 +00:00
|
|
|
{
|
|
|
|
wxCHECK( m_libMgr, false );
|
|
|
|
|
|
|
|
// Test if the currently edited part is modified
|
|
|
|
if( GetScreen() && GetScreen()->IsModify() && GetCurPart() )
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// Test if any library has been modified
|
|
|
|
for( const auto& libNickname : m_libMgr->GetLibraryNames() )
|
|
|
|
{
|
2020-05-16 21:25:13 +00:00
|
|
|
if( m_libMgr->IsLibraryModified( libNickname )
|
|
|
|
&& !m_libMgr->IsLibraryReadOnly( libNickname ) )
|
2019-12-19 15:34:01 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2020-07-13 11:21:40 +00:00
|
|
|
|
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
void SYMBOL_EDIT_FRAME::ClearUndoORRedoList( UNDO_REDO_LIST whichList, int aItemCount )
|
2020-07-13 11:21:40 +00:00
|
|
|
{
|
|
|
|
if( aItemCount == 0 )
|
|
|
|
return;
|
|
|
|
|
2020-07-13 13:50:35 +00:00
|
|
|
UNDO_REDO_CONTAINER& list = whichList == UNDO_LIST ? m_undoList : m_redoList;
|
|
|
|
|
|
|
|
for( PICKED_ITEMS_LIST* command : list.m_CommandsList )
|
2020-07-13 11:21:40 +00:00
|
|
|
{
|
|
|
|
command->ClearListAndDeleteItems();
|
|
|
|
delete command;
|
|
|
|
}
|
|
|
|
|
2020-07-13 13:50:35 +00:00
|
|
|
list.m_CommandsList.clear();
|
2020-07-13 11:21:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
SELECTION& SYMBOL_EDIT_FRAME::GetCurrentSelection()
|
2020-08-06 23:03:58 +00:00
|
|
|
{
|
|
|
|
return m_toolManager->GetTool<EE_SELECTION_TOOL>()->GetSelection();
|
|
|
|
}
|
2020-08-31 15:06:23 +00:00
|
|
|
|
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
void SYMBOL_EDIT_FRAME::LoadSymbolFromSchematic( const std::unique_ptr<LIB_PART>& aSymbol,
|
|
|
|
const wxString& aReference, int aUnit,
|
|
|
|
int aConvert )
|
2020-08-31 15:06:23 +00:00
|
|
|
{
|
|
|
|
std::unique_ptr<LIB_PART> symbol = aSymbol->Flatten();
|
|
|
|
wxCHECK( symbol, /* void */ );
|
|
|
|
|
|
|
|
if( m_my_part )
|
2020-12-08 15:27:50 +00:00
|
|
|
SetCurPart( nullptr, false );
|
2020-08-31 15:06:23 +00:00
|
|
|
|
|
|
|
m_isSymbolFromSchematic = true;
|
|
|
|
m_reference = aReference;
|
|
|
|
m_unit = aUnit > 0 ? aUnit : 1;
|
|
|
|
m_convert = aConvert > 0 ? aConvert : 1;
|
|
|
|
|
|
|
|
// The buffered screen for the part
|
|
|
|
SCH_SCREEN* tmpScreen = new SCH_SCREEN();
|
|
|
|
|
|
|
|
SetScreen( tmpScreen );
|
2020-12-08 15:27:50 +00:00
|
|
|
SetCurPart( symbol.release(), true );
|
2020-08-31 15:06:23 +00:00
|
|
|
|
|
|
|
ReCreateMenuBar();
|
|
|
|
ReCreateHToolbar();
|
|
|
|
|
|
|
|
if( IsSearchTreeShown() )
|
|
|
|
{
|
|
|
|
wxCommandEvent evt;
|
|
|
|
OnToggleSearchTree( evt );
|
|
|
|
}
|
|
|
|
|
|
|
|
updateTitle();
|
|
|
|
RebuildSymbolUnitsList();
|
|
|
|
SetShowDeMorgan( GetCurPart()->HasConversion() );
|
2020-11-15 16:08:31 +00:00
|
|
|
DisplaySymbolDatasheet();
|
2020-08-31 15:06:23 +00:00
|
|
|
Refresh();
|
|
|
|
}
|
2020-12-29 18:59:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
bool SYMBOL_EDIT_FRAME::addLibTableEntry( const wxString& aLibFile, TABLE_SCOPE aScope )
|
|
|
|
{
|
|
|
|
wxFileName fn = aLibFile;
|
|
|
|
wxFileName libTableFileName( Prj().GetProjectPath(),
|
|
|
|
SYMBOL_LIB_TABLE::GetSymbolLibTableFileName() );
|
|
|
|
wxString libNickname = fn.GetName();
|
|
|
|
SYMBOL_LIB_TABLE* libTable = Prj().SchSymbolLibTable();
|
|
|
|
const ENV_VAR_MAP& envVars = Pgm().GetLocalEnvVariables();
|
|
|
|
|
|
|
|
if( libTable->HasLibrary( libNickname ) )
|
|
|
|
{
|
|
|
|
wxString tmp;
|
|
|
|
int suffix = 1;
|
|
|
|
|
|
|
|
while( libTable->HasLibrary( libNickname ) )
|
|
|
|
{
|
|
|
|
tmp.Printf( "%s%d", fn.GetName(), suffix );
|
|
|
|
libNickname = tmp;
|
|
|
|
suffix += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SYMBOL_LIB_TABLE_ROW* row = new SYMBOL_LIB_TABLE_ROW();
|
|
|
|
row->SetNickName( libNickname );
|
|
|
|
|
|
|
|
wxString normalizedPath = NormalizePath( aLibFile, &envVars, Prj().GetProjectPath() );
|
|
|
|
|
|
|
|
if( aScope == GLOBAL_LIB_TABLE )
|
|
|
|
{
|
|
|
|
libTable = &SYMBOL_LIB_TABLE::GetGlobalLibTable();
|
|
|
|
libTableFileName = SYMBOL_LIB_TABLE::GetGlobalTableFileName();
|
|
|
|
|
|
|
|
// We cannot normalize against the current project path when saving to global table.
|
|
|
|
normalizedPath = NormalizePath( aLibFile, &envVars, wxEmptyString );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( normalizedPath.IsEmpty() )
|
|
|
|
normalizedPath = aLibFile;
|
|
|
|
|
|
|
|
row->SetFullURI( normalizedPath );
|
|
|
|
|
|
|
|
wxCHECK( libTable->InsertRow( row ), false );
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
libTable->Save( libTableFileName.GetFullPath() );
|
|
|
|
}
|
|
|
|
catch( const IO_ERROR& ioe )
|
|
|
|
{
|
|
|
|
wxString msg;
|
|
|
|
msg.Printf( _( "Error saving %s symbol library table." ),
|
|
|
|
( aScope == GLOBAL_LIB_TABLE ) ? _( "global" ) : _( "project" ) );
|
|
|
|
|
|
|
|
wxMessageDialog dlg( this, msg, _( "File Save Error" ), wxOK | wxICON_ERROR );
|
|
|
|
dlg.SetExtendedMessage( ioe.What() );
|
|
|
|
dlg.ShowModal();
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool SYMBOL_EDIT_FRAME::replaceLibTableEntry( const wxString& aLibNickname,
|
|
|
|
const wxString& aLibFile )
|
|
|
|
{
|
|
|
|
// Check the global library table first because checking the project library table
|
|
|
|
// checks the global library table as well due to library chaining.
|
|
|
|
bool isGlobalTable = true;
|
|
|
|
wxFileName libTableFileName = SYMBOL_LIB_TABLE::GetGlobalTableFileName();;
|
|
|
|
const ENV_VAR_MAP& envVars = Pgm().GetLocalEnvVariables();
|
|
|
|
SYMBOL_LIB_TABLE* libTable = &SYMBOL_LIB_TABLE::GetGlobalLibTable();
|
|
|
|
SYMBOL_LIB_TABLE_ROW* row = libTable->FindRow( aLibNickname );
|
|
|
|
|
|
|
|
if( !row )
|
|
|
|
{
|
|
|
|
libTableFileName.SetPath( Prj().GetProjectPath() );
|
|
|
|
libTableFileName.SetName( SYMBOL_LIB_TABLE::GetSymbolLibTableFileName() );
|
|
|
|
libTable = Prj().SchSymbolLibTable();
|
|
|
|
isGlobalTable = false;
|
|
|
|
row = libTable->FindRow( aLibNickname );
|
|
|
|
}
|
|
|
|
|
|
|
|
wxCHECK( row, false );
|
|
|
|
|
|
|
|
wxString projectPath;
|
|
|
|
|
|
|
|
if( !isGlobalTable )
|
|
|
|
projectPath = Prj().GetProjectPath();
|
|
|
|
|
|
|
|
wxString normalizedPath = NormalizePath( aLibFile, &envVars, projectPath );
|
|
|
|
|
|
|
|
if( normalizedPath.IsEmpty() )
|
|
|
|
normalizedPath = aLibFile;
|
|
|
|
|
|
|
|
row->SetFullURI( normalizedPath );
|
|
|
|
row->SetType( "KiCad" );
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
libTable->Save( libTableFileName.GetFullPath() );
|
|
|
|
}
|
|
|
|
catch( const IO_ERROR& ioe )
|
|
|
|
{
|
|
|
|
wxString msg;
|
|
|
|
msg.Printf( _( "Error saving %s symbol library table." ),
|
|
|
|
( isGlobalTable ) ? _( "global" ) : _( "project" ) );
|
|
|
|
|
|
|
|
wxMessageDialog dlg( this, msg, _( "File Save Error" ), wxOK | wxICON_ERROR );
|
|
|
|
dlg.SetExtendedMessage( ioe.What() );
|
|
|
|
dlg.ShowModal();
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2021-01-08 23:24:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
bool SYMBOL_EDIT_FRAME::IsSymbolEditable() const
|
|
|
|
{
|
|
|
|
return m_my_part && m_my_part->IsRoot() &&
|
|
|
|
( !IsSymbolFromLegacyLibrary() || IsSymbolFromSchematic() );
|
|
|
|
}
|