2011-10-19 20:32:21 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2015-04-16 15:26:51 +00:00
|
|
|
* Copyright (C) 2015 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
2017-10-06 18:07:43 +00:00
|
|
|
* Copyright (C) 2008 Wayne Stambaugh <stambaughw@gmail.com>
|
2018-01-03 02:52:35 +00:00
|
|
|
* Copyright (C) 2004-2018 KiCad Developers, see AUTHORS.txt for contributors.
|
2011-10-19 20:32:21 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
2011-10-07 14:41:30 +00:00
|
|
|
/**
|
|
|
|
* @file getpart.cpp
|
2012-08-31 07:43:37 +00:00
|
|
|
* @brief functions to get and place library components.
|
2011-10-07 14:41:30 +00:00
|
|
|
*/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2017-03-23 00:59:25 +00:00
|
|
|
#include <algorithm>
|
2012-01-23 04:33:36 +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 <pgm_base.h>
|
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
|
|
|
#include <kiway.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <gr_basic.h>
|
2018-08-03 12:18:26 +00:00
|
|
|
#include <sch_draw_panel.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <confirm.h>
|
2018-01-30 10:49:51 +00:00
|
|
|
#include <sch_edit_frame.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <kicad_device_context.h>
|
2013-01-12 17:32:24 +00:00
|
|
|
#include <msgpanel.h>
|
2009-09-18 14:56:05 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <general.h>
|
|
|
|
#include <class_library.h>
|
|
|
|
#include <sch_component.h>
|
2018-01-30 10:49:51 +00:00
|
|
|
#include <lib_edit_frame.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <viewlib_frame.h>
|
|
|
|
#include <eeschema_id.h>
|
2017-09-15 14:17:44 +00:00
|
|
|
#include <symbol_lib_table.h>
|
2009-09-18 14:56:05 +00:00
|
|
|
|
2014-02-14 08:05:04 +00:00
|
|
|
#include <dialog_choose_component.h>
|
2018-07-27 20:47:51 +00:00
|
|
|
#include <symbol_tree_model_adapter.h>
|
2009-09-25 18:49:04 +00:00
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2017-03-23 00:59:25 +00:00
|
|
|
SCH_BASE_FRAME::COMPONENT_SELECTION SCH_BASE_FRAME::SelectComponentFromLibBrowser(
|
2018-01-01 09:41:43 +00:00
|
|
|
wxTopLevelWindow* aParent,
|
|
|
|
const SCHLIB_FILTER* aFilter, const LIB_ID& aPreselectedLibId,
|
2017-03-23 00:59:25 +00:00
|
|
|
int aUnit, int aConvert )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2014-05-04 18:22:27 +00:00
|
|
|
// Close any open non-modal Lib browser, and open a new one, in "modal" mode:
|
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
|
|
|
LIB_VIEW_FRAME* viewlibFrame = (LIB_VIEW_FRAME*) Kiway().Player( FRAME_SCH_VIEWER, false );
|
2015-04-16 15:26:51 +00:00
|
|
|
|
2012-09-12 09:53:11 +00:00
|
|
|
if( viewlibFrame )
|
|
|
|
viewlibFrame->Destroy();
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2018-01-01 09:41:43 +00:00
|
|
|
viewlibFrame = (LIB_VIEW_FRAME*) Kiway().Player( FRAME_SCH_VIEWER_MODAL, true, aParent );
|
* 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
|
|
|
|
2015-04-16 15:26:51 +00:00
|
|
|
if( aFilter )
|
|
|
|
viewlibFrame->SetFilter( aFilter );
|
|
|
|
|
2017-09-15 14:17:44 +00:00
|
|
|
if( aPreselectedLibId.IsValid() )
|
2014-02-24 10:52:08 +00:00
|
|
|
{
|
2017-09-15 14:17:44 +00:00
|
|
|
viewlibFrame->SetSelectedLibrary( aPreselectedLibId.GetLibNickname() );
|
|
|
|
viewlibFrame->SetSelectedComponent( aPreselectedLibId.GetLibItemName() );
|
2014-02-24 10:52:08 +00:00
|
|
|
}
|
|
|
|
|
2017-07-17 20:57:15 +00:00
|
|
|
viewlibFrame->SetUnitAndConvert( aUnit, aConvert );
|
2014-02-24 10:52:08 +00:00
|
|
|
|
|
|
|
viewlibFrame->Refresh();
|
|
|
|
|
2017-03-23 00:59:25 +00:00
|
|
|
COMPONENT_SELECTION sel;
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2017-11-06 01:59:51 +00:00
|
|
|
wxString symbol = sel.LibId.Format();
|
|
|
|
|
2018-01-01 16:18:28 +00:00
|
|
|
if( viewlibFrame->ShowModal( &symbol, aParent ) )
|
2014-05-04 18:22:27 +00:00
|
|
|
{
|
2017-11-06 01:59:51 +00:00
|
|
|
LIB_ID id;
|
|
|
|
|
2018-07-26 14:38:30 +00:00
|
|
|
if( id.Parse( symbol, LIB_ID::ID_SCH ) == -1 )
|
2017-11-06 01:59:51 +00:00
|
|
|
sel.LibId = id;
|
|
|
|
|
2017-03-23 00:59:25 +00:00
|
|
|
sel.Unit = viewlibFrame->GetUnit();
|
|
|
|
sel.Convert = viewlibFrame->GetConvert();
|
2014-05-04 18:22:27 +00:00
|
|
|
}
|
2014-02-24 10:52:08 +00:00
|
|
|
|
2012-09-12 09:53:11 +00:00
|
|
|
viewlibFrame->Destroy();
|
2011-04-09 10:52:14 +00:00
|
|
|
|
2017-03-23 00:59:25 +00:00
|
|
|
return sel;
|
2007-06-05 12:10:51 +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
|
|
|
|
2018-07-27 20:47:51 +00:00
|
|
|
SCH_BASE_FRAME::COMPONENT_SELECTION SCH_BASE_FRAME::SelectComponentFromLibTree(
|
2017-03-23 00:59:25 +00:00
|
|
|
const SCHLIB_FILTER* aFilter,
|
|
|
|
std::vector<COMPONENT_SELECTION>& aHistoryList,
|
2018-07-27 20:47:51 +00:00
|
|
|
bool aAllowBrowser,
|
2017-03-23 00:59:25 +00:00
|
|
|
int aUnit,
|
|
|
|
int aConvert,
|
2018-01-03 02:52:35 +00:00
|
|
|
bool aShowFootprints,
|
2017-11-06 01:59:51 +00:00
|
|
|
const LIB_ID* aHighlight,
|
2017-03-23 00:59:25 +00:00
|
|
|
bool aAllowFields )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2018-04-16 22:18:02 +00:00
|
|
|
std::unique_lock<std::mutex> dialogLock( DIALOG_CHOOSE_COMPONENT::g_Mutex, std::defer_lock );
|
|
|
|
wxString dialogTitle;
|
|
|
|
SYMBOL_LIB_TABLE* libs = Prj().SchSymbolLibTable();
|
|
|
|
|
|
|
|
// One CHOOSE_COMPONENT dialog at a time. User probaby can't handle more anyway.
|
|
|
|
if( !dialogLock.try_lock() )
|
|
|
|
return COMPONENT_SELECTION();
|
2014-02-14 08:05:04 +00:00
|
|
|
|
2018-07-27 20:47:51 +00:00
|
|
|
auto adapterPtr( SYMBOL_TREE_MODEL_ADAPTER::Create( libs ) );
|
|
|
|
auto adapter = static_cast<SYMBOL_TREE_MODEL_ADAPTER*>( adapterPtr.get() );
|
2015-04-16 15:26:51 +00:00
|
|
|
bool loaded = false;
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2015-04-16 15:26:51 +00:00
|
|
|
if( aFilter )
|
2007-08-20 01:20:48 +00:00
|
|
|
{
|
2015-04-16 15:26:51 +00:00
|
|
|
const wxArrayString& liblist = aFilter->GetAllowedLibList();
|
2009-09-18 14:56:05 +00:00
|
|
|
|
2015-04-16 15:26:51 +00:00
|
|
|
for( unsigned ii = 0; ii < liblist.GetCount(); ii++ )
|
2014-02-14 08:05:04 +00:00
|
|
|
{
|
2018-04-28 09:43:41 +00:00
|
|
|
if( libs->HasLibrary( liblist[ii], true ) )
|
2015-04-16 15:26:51 +00:00
|
|
|
{
|
|
|
|
loaded = true;
|
2017-09-15 14:17:44 +00:00
|
|
|
adapter->AddLibrary( liblist[ii] );
|
2015-04-16 15:26:51 +00:00
|
|
|
}
|
2014-02-14 08:05:04 +00:00
|
|
|
}
|
2015-04-16 15:26:51 +00:00
|
|
|
|
2018-08-05 11:56:02 +00:00
|
|
|
adapter->AssignIntrinsicRanks();
|
|
|
|
|
2015-04-16 15:26:51 +00:00
|
|
|
if( aFilter->GetFilterPowerParts() )
|
2018-07-27 20:47:51 +00:00
|
|
|
adapter->SetFilter( SYMBOL_TREE_MODEL_ADAPTER::CMP_FILTER_POWER );
|
2007-08-20 01:20:48 +00:00
|
|
|
}
|
2015-04-16 15:26:51 +00:00
|
|
|
|
2018-08-20 12:08:35 +00:00
|
|
|
std::vector< LIB_TREE_ITEM* > history_list;
|
|
|
|
|
|
|
|
for( auto const& i : aHistoryList )
|
2009-10-16 17:18:23 +00:00
|
|
|
{
|
2018-08-20 12:08:35 +00:00
|
|
|
LIB_ALIAS* alias = GetLibAlias( i.LibId );
|
2017-03-23 00:59:25 +00:00
|
|
|
|
2018-08-20 12:08:35 +00:00
|
|
|
if( alias )
|
|
|
|
history_list.push_back( alias );
|
|
|
|
}
|
2017-09-15 14:17:44 +00:00
|
|
|
|
2018-08-20 12:08:35 +00:00
|
|
|
adapter->DoAddLibrary( "-- " + _( "Recently Used" ) + " --", wxEmptyString, history_list, true );
|
2017-03-23 00:59:25 +00:00
|
|
|
|
2018-08-20 12:08:35 +00:00
|
|
|
if( !aHistoryList.empty() )
|
2017-11-06 01:59:51 +00:00
|
|
|
adapter->SetPreselectNode( aHistoryList[0].LibId, aHistoryList[0].Unit );
|
2009-10-16 17:18:23 +00:00
|
|
|
|
2017-11-15 10:48:38 +00:00
|
|
|
const std::vector< wxString > libNicknames = libs->GetLogicalLibs();
|
2017-09-15 14:17:44 +00:00
|
|
|
|
2017-08-19 06:39:55 +00:00
|
|
|
if( !loaded )
|
2018-07-27 20:47:51 +00:00
|
|
|
adapter->AddLibraries( libNicknames, this );
|
2017-08-19 06:39:55 +00:00
|
|
|
|
2017-11-06 01:59:51 +00:00
|
|
|
if( aHighlight && aHighlight->IsValid() )
|
|
|
|
adapter->SetPreselectNode( *aHighlight, /* aUnit */ 0 );
|
2017-01-30 21:53:48 +00:00
|
|
|
|
2018-07-27 20:47:51 +00:00
|
|
|
if( adapter->GetFilter() == SYMBOL_TREE_MODEL_ADAPTER::CMP_FILTER_POWER )
|
|
|
|
dialogTitle.Printf( _( "Choose Power Symbol (%d items loaded)" ), adapter->GetItemCount() );
|
2018-02-08 09:58:22 +00:00
|
|
|
else
|
2018-07-27 20:47:51 +00:00
|
|
|
dialogTitle.Printf( _( "Choose Symbol (%d items loaded)" ), adapter->GetItemCount() );
|
2018-02-08 09:58:22 +00:00
|
|
|
|
2018-07-27 20:47:51 +00:00
|
|
|
DIALOG_CHOOSE_COMPONENT dlg( this, dialogTitle, adapterPtr, aConvert,
|
|
|
|
aAllowFields, aShowFootprints, aAllowBrowser );
|
2017-03-23 00:59:25 +00:00
|
|
|
|
|
|
|
if( dlg.ShowQuasiModal() == wxID_CANCEL )
|
|
|
|
return COMPONENT_SELECTION();
|
|
|
|
|
|
|
|
COMPONENT_SELECTION sel;
|
2019-01-30 21:50:13 +00:00
|
|
|
LIB_ID id = dlg.GetSelectedLibId( &sel.Unit );
|
2017-03-23 00:59:25 +00:00
|
|
|
|
2017-11-23 11:09:35 +00:00
|
|
|
if( dlg.IsExternalBrowserSelected() ) // User requested component browser.
|
|
|
|
{
|
2018-01-01 09:41:43 +00:00
|
|
|
sel = SelectComponentFromLibBrowser( this, aFilter, id, sel.Unit, sel.Convert );
|
2017-11-23 11:09:35 +00:00
|
|
|
id = sel.LibId;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !id.IsValid() ) // Dialog closed by OK button,
|
|
|
|
// or the selection by lib browser was requested,
|
|
|
|
// but no symbol selected
|
2017-03-27 06:53:19 +00:00
|
|
|
return COMPONENT_SELECTION();
|
|
|
|
|
2017-03-30 19:44:47 +00:00
|
|
|
if( sel.Unit == 0 )
|
2017-03-23 00:59:25 +00:00
|
|
|
sel.Unit = 1;
|
2009-10-16 17:18:23 +00:00
|
|
|
|
2017-03-23 00:59:25 +00:00
|
|
|
sel.Fields = dlg.GetFields();
|
2017-11-06 01:59:51 +00:00
|
|
|
sel.LibId = id;
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2017-11-06 01:59:51 +00:00
|
|
|
if( sel.LibId.IsValid() )
|
2007-08-20 01:20:48 +00:00
|
|
|
{
|
2017-03-23 00:59:25 +00:00
|
|
|
aHistoryList.erase(
|
|
|
|
std::remove_if(
|
|
|
|
aHistoryList.begin(),
|
|
|
|
aHistoryList.end(),
|
2017-11-06 01:59:51 +00:00
|
|
|
[ &sel ]( COMPONENT_SELECTION const& i ){ return i.LibId == sel.LibId; } ),
|
2017-03-23 00:59:25 +00:00
|
|
|
aHistoryList.end() );
|
|
|
|
|
|
|
|
aHistoryList.insert( aHistoryList.begin(), sel );
|
2012-02-19 19:53:11 +00:00
|
|
|
}
|
2009-08-27 11:41:56 +00:00
|
|
|
|
2017-03-23 00:59:25 +00:00
|
|
|
return sel;
|
2012-02-19 19:53:11 +00:00
|
|
|
}
|
2009-08-27 11:41:56 +00:00
|
|
|
|
2012-02-19 19:53:11 +00:00
|
|
|
|
2018-09-09 21:06:38 +00:00
|
|
|
SCH_COMPONENT* SCH_EDIT_FRAME::Load_Component( const SCHLIB_FILTER* aFilter,
|
2017-10-06 18:07:43 +00:00
|
|
|
SCH_BASE_FRAME::HISTORY_LIST& aHistoryList,
|
2018-07-27 20:47:51 +00:00
|
|
|
bool aAllowBrowser )
|
2012-02-19 19:53:11 +00:00
|
|
|
{
|
2017-10-06 18:07:43 +00:00
|
|
|
wxString msg;
|
|
|
|
|
2013-08-05 21:02:41 +00:00
|
|
|
SetRepeatItem( NULL );
|
2012-02-19 19:53:11 +00:00
|
|
|
m_canvas->SetIgnoreMouseEvents( true );
|
|
|
|
|
2018-07-27 20:47:51 +00:00
|
|
|
auto sel = SelectComponentFromLibTree( aFilter, aHistoryList, aAllowBrowser, 1, 1,
|
2018-01-03 02:52:35 +00:00
|
|
|
m_footprintPreview );
|
2012-02-19 19:53:11 +00:00
|
|
|
|
2017-11-06 01:59:51 +00:00
|
|
|
if( !sel.LibId.IsValid() )
|
2012-02-19 19:53:11 +00:00
|
|
|
{
|
|
|
|
m_canvas->SetIgnoreMouseEvents( false );
|
|
|
|
m_canvas->MoveCursorToCrossHair();
|
|
|
|
return NULL;
|
2007-08-20 01:20:48 +00:00
|
|
|
}
|
|
|
|
|
2011-12-29 20:11:42 +00:00
|
|
|
m_canvas->SetIgnoreMouseEvents( false );
|
2011-12-22 13:28:11 +00:00
|
|
|
m_canvas->MoveCursorToCrossHair();
|
2010-12-08 20:12:46 +00:00
|
|
|
|
2015-04-16 15:26:51 +00:00
|
|
|
wxString libsource; // the library name to use. If empty, load from any lib
|
|
|
|
|
|
|
|
if( aFilter )
|
|
|
|
libsource = aFilter->GetLibSource();
|
|
|
|
|
2017-11-06 01:59:51 +00:00
|
|
|
LIB_ID libId = sel.LibId;
|
2017-10-06 18:07:43 +00:00
|
|
|
|
|
|
|
LIB_PART* part = GetLibPart( libId, true );
|
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
|
|
|
|
|
|
|
if( !part )
|
2007-08-20 01:20:48 +00:00
|
|
|
return NULL;
|
|
|
|
|
2018-11-22 21:30:36 +00:00
|
|
|
SCH_COMPONENT* component = new SCH_COMPONENT( *part, libId, m_CurrentSheet,
|
|
|
|
sel.Unit, sel.Convert,
|
2017-02-11 18:43:41 +00:00
|
|
|
GetCrossHairPosition(), true );
|
2011-10-19 20:32:21 +00:00
|
|
|
|
2014-10-06 18:13:11 +00:00
|
|
|
// Be sure the link to the corresponding LIB_PART is OK:
|
2017-10-06 18:07:43 +00:00
|
|
|
component->Resolve( *Prj().SchSymbolLibTable() );
|
2014-10-06 18:13:11 +00:00
|
|
|
|
2017-03-23 00:59:25 +00:00
|
|
|
// Set any fields that have been modified
|
|
|
|
for( auto const& i : sel.Fields )
|
|
|
|
{
|
|
|
|
auto field = component->GetField( i.first );
|
|
|
|
|
|
|
|
if( field )
|
|
|
|
field->SetText( i.second );
|
|
|
|
}
|
|
|
|
|
2013-01-12 17:32:24 +00:00
|
|
|
MSG_PANEL_ITEMS items;
|
2013-05-24 23:58:29 +00:00
|
|
|
|
2016-02-15 20:15:51 +00:00
|
|
|
component->SetCurrentSheetPath( &GetCurrentSheet() );
|
2018-04-10 10:52:12 +00:00
|
|
|
component->GetMsgPanelInfo( m_UserUnits, items );
|
2013-05-24 23:58:29 +00:00
|
|
|
|
2013-01-12 17:32:24 +00:00
|
|
|
SetMsgPanel( items );
|
2011-10-19 20:32:21 +00:00
|
|
|
component->SetFlags( IS_NEW );
|
2015-12-13 16:56:47 +00:00
|
|
|
|
|
|
|
if( m_autoplaceFields )
|
|
|
|
component->AutoplaceFields( /* aScreen */ NULL, /* aManual */ false );
|
|
|
|
|
2018-09-09 21:06:38 +00:00
|
|
|
PrepareMoveItem( component );
|
2009-10-27 10:55:46 +00:00
|
|
|
|
2011-10-19 20:32:21 +00:00
|
|
|
return component;
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2011-10-28 20:30:50 +00:00
|
|
|
void SCH_EDIT_FRAME::OrientComponent( COMPONENT_ORIENTATION_T aOrientation )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2018-09-09 21:06:38 +00:00
|
|
|
SCH_SCREEN* screen = GetScreen();
|
|
|
|
SCH_ITEM* item = screen->GetCurItem();
|
2011-03-25 19:16:05 +00:00
|
|
|
SCH_COMPONENT* component = (SCH_COMPONENT*) item;
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2018-09-09 21:06:38 +00:00
|
|
|
GetCanvas()->MoveCursorToCrossHair();
|
2011-03-03 19:55:44 +00:00
|
|
|
|
2017-12-29 20:01:56 +00:00
|
|
|
if( item->GetFlags() == 0 )
|
|
|
|
SetUndoItem( item );
|
2011-03-03 19:55:44 +00:00
|
|
|
|
2011-10-28 20:30:50 +00:00
|
|
|
component->SetOrientation( aOrientation );
|
2011-03-03 19:55:44 +00:00
|
|
|
|
2018-08-03 12:18:26 +00:00
|
|
|
m_canvas->CrossHairOn( );
|
2016-02-19 15:41:32 +00:00
|
|
|
|
2017-12-29 20:01:56 +00:00
|
|
|
if( item->GetFlags() == 0 )
|
|
|
|
{
|
2018-09-10 10:58:50 +00:00
|
|
|
addCurrentItemToScreen();
|
2017-12-29 20:01:56 +00:00
|
|
|
SchematicCleanUp( true );
|
|
|
|
}
|
|
|
|
|
2018-10-16 13:11:33 +00:00
|
|
|
TestDanglingEnds();
|
2016-02-19 15:41:32 +00:00
|
|
|
|
2018-09-09 21:06:38 +00:00
|
|
|
RefreshItem( item );
|
2011-03-03 19:55:44 +00:00
|
|
|
OnModify();
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2011-03-02 00:46:08 +00:00
|
|
|
void SCH_EDIT_FRAME::OnSelectUnit( wxCommandEvent& aEvent )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2018-09-09 21:06:38 +00:00
|
|
|
SCH_SCREEN* screen = GetScreen();
|
|
|
|
SCH_ITEM* item = screen->GetCurItem();
|
2011-03-25 19:16:05 +00:00
|
|
|
SCH_COMPONENT* component = (SCH_COMPONENT*) item;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2018-09-09 21:06:38 +00:00
|
|
|
GetCanvas()->MoveCursorToCrossHair();
|
|
|
|
|
2011-03-02 00:46:08 +00:00
|
|
|
int unit = aEvent.GetId() + 1 - ID_POPUP_SCH_SELECT_UNIT1;
|
|
|
|
|
2017-10-06 18:07:43 +00:00
|
|
|
LIB_PART* part = GetLibPart( component->GetLibId() );
|
2015-03-02 08:28:49 +00:00
|
|
|
|
2017-10-06 18:07:43 +00:00
|
|
|
if( !part )
|
|
|
|
return;
|
2011-03-02 00:46:08 +00:00
|
|
|
|
2017-10-06 18:07:43 +00:00
|
|
|
int unitCount = part->GetUnitCount();
|
2010-12-08 20:12:46 +00:00
|
|
|
|
2017-10-06 18:07:43 +00:00
|
|
|
if( unitCount <= 1 || component->GetUnit() == unit )
|
|
|
|
return;
|
2011-01-18 10:42:49 +00:00
|
|
|
|
2017-10-06 18:07:43 +00:00
|
|
|
if( unit > unitCount )
|
|
|
|
unit = unitCount;
|
2011-03-02 00:46:08 +00:00
|
|
|
|
2017-10-06 18:07:43 +00:00
|
|
|
STATUS_FLAGS flags = component->GetFlags();
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2017-10-06 18:07:43 +00:00
|
|
|
if( !flags ) // No command in progress: save in undo list
|
|
|
|
SaveCopyInUndoList( component, UR_CHANGED );
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2017-10-06 18:07:43 +00:00
|
|
|
/* Update the unit number. */
|
|
|
|
component->SetUnitSelection( m_CurrentSheet, unit );
|
|
|
|
component->SetUnit( unit );
|
|
|
|
component->ClearFlags();
|
|
|
|
component->SetFlags( flags ); // Restore m_Flag modified by SetUnit()
|
2016-02-19 15:41:32 +00:00
|
|
|
|
2017-10-06 18:07:43 +00:00
|
|
|
if( m_autoplaceFields )
|
|
|
|
component->AutoAutoplaceFields( GetScreen() );
|
|
|
|
|
2018-10-16 13:11:33 +00:00
|
|
|
TestDanglingEnds();
|
2017-10-06 18:07:43 +00:00
|
|
|
|
2018-09-09 21:06:38 +00:00
|
|
|
RefreshItem( component );
|
2017-10-06 18:07:43 +00:00
|
|
|
OnModify();
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2018-09-09 21:06:38 +00:00
|
|
|
void SCH_EDIT_FRAME::ConvertPart( SCH_COMPONENT* aComponent )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2017-10-06 18:07:43 +00:00
|
|
|
if( !aComponent )
|
2007-08-20 01:20:48 +00:00
|
|
|
return;
|
|
|
|
|
2017-10-06 18:07:43 +00:00
|
|
|
LIB_ID id = aComponent->GetLibId();
|
|
|
|
LIB_PART* part = GetLibPart( id );
|
|
|
|
|
|
|
|
if( part )
|
2007-08-20 01:20:48 +00:00
|
|
|
{
|
2017-10-06 18:07:43 +00:00
|
|
|
wxString msg;
|
|
|
|
|
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
|
|
|
if( !part->HasConversion() )
|
|
|
|
{
|
2017-12-15 11:37:46 +00:00
|
|
|
msg.Printf( _( "No alternate body style found for symbol \"%s\" in library \"%s\"." ),
|
2017-10-06 18:07:43 +00:00
|
|
|
id.GetLibItemName().wx_str(), id.GetLibNickname().wx_str() );
|
|
|
|
DisplayError( this, msg );
|
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;
|
|
|
|
}
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2017-10-06 18:07:43 +00:00
|
|
|
STATUS_FLAGS flags = aComponent->GetFlags();
|
2011-12-21 13:42:02 +00:00
|
|
|
|
2017-10-06 18:07:43 +00:00
|
|
|
aComponent->SetConvert( aComponent->GetConvert() + 1 );
|
2010-12-14 15:56:30 +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
|
|
|
// ensure m_Convert = 0, 1 or 2
|
|
|
|
// 0 and 1 = shape 1 = not converted
|
|
|
|
// 2 = shape 2 = first converted shape
|
|
|
|
// > 2 is not used but could be used for more shapes
|
|
|
|
// like multiple shapes for a programmable component
|
|
|
|
// When m_Convert = val max, return to the first shape
|
2017-10-06 18:07:43 +00:00
|
|
|
if( aComponent->GetConvert() > 2 )
|
|
|
|
aComponent->SetConvert( 1 );
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2016-02-19 15:41:32 +00:00
|
|
|
// The alternate symbol may cause a change in the connection status so test the
|
|
|
|
// connections so the connection indicators are drawn correctly.
|
2018-10-16 13:11:33 +00:00
|
|
|
TestDanglingEnds();
|
2017-10-06 18:07:43 +00:00
|
|
|
aComponent->ClearFlags();
|
|
|
|
aComponent->SetFlags( flags ); // Restore m_Flag (modified by SetConvert())
|
2011-04-29 08:17:14 +00:00
|
|
|
|
2018-09-09 21:06:38 +00:00
|
|
|
RefreshItem( aComponent );
|
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
|
|
|
OnModify();
|
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|