2011-10-19 16:32:21 -04:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2015-04-16 17:26:51 +02:00
|
|
|
* Copyright (C) 2015 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
2017-10-06 14:07:43 -04:00
|
|
|
* Copyright (C) 2008 Wayne Stambaugh <stambaughw@gmail.com>
|
2023-06-23 19:59:18 +01:00
|
|
|
* Copyright (C) 2004-2023 KiCad Developers, see AUTHORS.txt for contributors.
|
2011-10-19 16:32:21 -04: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
|
|
|
|
*/
|
|
|
|
|
2021-10-23 11:37:15 +01:00
|
|
|
#include <pgm_base.h>
|
2021-03-13 23:13:47 +01:00
|
|
|
#include <symbol_library.h>
|
2021-10-23 11:37:15 +01:00
|
|
|
#include <settings/settings_manager.h>
|
2022-07-22 09:26:49 +01:00
|
|
|
#include <project/project_file.h>
|
2021-10-01 11:52:34 +01:00
|
|
|
#include <core/kicad_algo.h>
|
2022-01-29 14:07:07 -05:00
|
|
|
#include <symbol_library_common.h>
|
2019-06-25 16:39:58 -07:00
|
|
|
#include <confirm.h>
|
|
|
|
#include <eeschema_id.h>
|
|
|
|
#include <general.h>
|
|
|
|
#include <kiway.h>
|
2020-12-25 23:37:01 +00:00
|
|
|
#include <symbol_viewer_frame.h>
|
2021-10-23 11:37:15 +01:00
|
|
|
#include <symbol_tree_model_adapter.h>
|
|
|
|
#include <symbol_editor/symbol_editor_settings.h>
|
2021-02-24 08:48:02 -05:00
|
|
|
#include <sch_symbol.h>
|
2023-06-23 19:59:18 +01:00
|
|
|
#include <sch_commit.h>
|
2018-01-30 11:49:51 +01:00
|
|
|
#include <sch_edit_frame.h>
|
2019-06-25 16:39:58 -07:00
|
|
|
#include <symbol_lib_table.h>
|
2019-05-01 22:50:11 +01:00
|
|
|
#include <tool/tool_manager.h>
|
2019-05-10 18:19:48 +01:00
|
|
|
#include <tools/ee_actions.h>
|
2023-09-27 23:04:53 -04:00
|
|
|
#include <project_sch.h>
|
2009-09-18 14:56:05 +00:00
|
|
|
|
2023-09-28 14:09:45 +01:00
|
|
|
#include <dialog_symbol_chooser.h>
|
2009-09-25 18:49:04 +00:00
|
|
|
|
2023-09-28 14:09:45 +01:00
|
|
|
PICKED_SYMBOL SCH_BASE_FRAME::PickSymbolFromLibrary( const SYMBOL_LIBRARY_FILTER* aFilter,
|
2021-03-13 23:13:47 +01:00
|
|
|
std::vector<PICKED_SYMBOL>& aHistoryList,
|
|
|
|
std::vector<PICKED_SYMBOL>& aAlreadyPlaced,
|
2020-12-25 23:37:01 +00:00
|
|
|
bool aShowFootprints, const LIB_ID* aHighlight,
|
2020-11-07 14:31:50 +00:00
|
|
|
bool aAllowFields )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2023-09-28 14:09:45 +01:00
|
|
|
std::unique_lock<std::mutex> dialogLock( DIALOG_SYMBOL_CHOOSER::g_Mutex, std::defer_lock );
|
2018-04-16 23:18:02 +01:00
|
|
|
|
2023-09-28 14:09:45 +01:00
|
|
|
// One DIALOG_SYMBOL_CHOOSER dialog at a time. User probably can't handle more anyway.
|
2018-04-16 23:18:02 +01:00
|
|
|
if( !dialogLock.try_lock() )
|
2020-11-07 14:31:50 +00:00
|
|
|
return PICKED_SYMBOL();
|
2014-02-14 09:05:04 +01:00
|
|
|
|
2021-03-13 23:13:47 +01:00
|
|
|
DIALOG_SYMBOL_CHOOSER dlg( this, aHighlight, aFilter, aHistoryList, aAlreadyPlaced,
|
|
|
|
aAllowFields, aShowFootprints );
|
2022-07-22 09:26:49 +01:00
|
|
|
|
2023-09-28 14:09:45 +01:00
|
|
|
if( dlg.ShowModal() == wxID_CANCEL )
|
2023-02-14 18:25:22 -05:00
|
|
|
return PICKED_SYMBOL();
|
|
|
|
|
2020-11-07 14:31:50 +00:00
|
|
|
PICKED_SYMBOL sel;
|
2019-01-30 21:50:13 +00:00
|
|
|
LIB_ID id = dlg.GetSelectedLibId( &sel.Unit );
|
2017-03-22 20:59:25 -04:00
|
|
|
|
2023-09-28 14:09:45 +01:00
|
|
|
if( !id.IsValid() )
|
2020-11-07 14:31:50 +00:00
|
|
|
return PICKED_SYMBOL();
|
2017-03-27 08:53:19 +02:00
|
|
|
|
2017-03-30 15:44:47 -04:00
|
|
|
if( sel.Unit == 0 )
|
2017-03-22 20:59:25 -04:00
|
|
|
sel.Unit = 1;
|
2009-10-16 17:18:23 +00:00
|
|
|
|
2017-03-22 20:59:25 -04:00
|
|
|
sel.Fields = dlg.GetFields();
|
2017-11-05 20:59:51 -05:00
|
|
|
sel.LibId = id;
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2017-11-05 20:59:51 -05:00
|
|
|
if( sel.LibId.IsValid() )
|
2007-08-20 01:20:48 +00:00
|
|
|
{
|
2021-10-01 11:52:34 +01:00
|
|
|
alg::delete_if( aHistoryList, [&sel]( PICKED_SYMBOL const& i )
|
|
|
|
{
|
|
|
|
return i.LibId == sel.LibId;
|
|
|
|
} );
|
2017-03-22 20:59:25 -04:00
|
|
|
|
|
|
|
aHistoryList.insert( aHistoryList.begin(), sel );
|
2012-02-19 20:53:11 +01:00
|
|
|
}
|
2009-08-27 11:41:56 +00:00
|
|
|
|
2017-03-22 20:59:25 -04:00
|
|
|
return sel;
|
2012-02-19 20:53:11 +01:00
|
|
|
}
|
2009-08-27 11:41:56 +00:00
|
|
|
|
2012-02-19 20:53:11 +01:00
|
|
|
|
2021-06-10 10:10:55 -04:00
|
|
|
void SCH_EDIT_FRAME::SelectUnit( SCH_SYMBOL* aSymbol, int aUnit )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2023-06-23 19:59:18 +01:00
|
|
|
SCH_COMMIT commit( m_toolManager );
|
2021-06-17 22:22:10 +01:00
|
|
|
LIB_SYMBOL* symbol = GetLibSymbol( aSymbol->GetLibId() );
|
2015-03-02 09:28:49 +01:00
|
|
|
|
2021-06-10 14:51:46 -04:00
|
|
|
if( !symbol )
|
2017-10-06 14:07:43 -04:00
|
|
|
return;
|
2011-03-01 19:46:08 -05:00
|
|
|
|
2021-06-10 14:51:46 -04:00
|
|
|
int unitCount = symbol->GetUnitCount();
|
2010-12-08 15:12:46 -05:00
|
|
|
|
2021-03-19 20:27:30 +00:00
|
|
|
if( unitCount <= 1 || aSymbol->GetUnit() == aUnit )
|
2017-10-06 14:07:43 -04:00
|
|
|
return;
|
2011-01-18 11:42:49 +01:00
|
|
|
|
2019-05-02 21:44:23 +01:00
|
|
|
if( aUnit > unitCount )
|
|
|
|
aUnit = unitCount;
|
2011-03-01 19:46:08 -05:00
|
|
|
|
2021-03-19 20:27:30 +00:00
|
|
|
if( !aSymbol->GetEditFlags() ) // No command in progress: save in undo list
|
2023-06-23 19:59:18 +01:00
|
|
|
commit.Modify( aSymbol, GetScreen() );
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2017-10-06 14:07:43 -04:00
|
|
|
/* Update the unit number. */
|
2021-03-19 20:27:30 +00:00
|
|
|
aSymbol->SetUnitSelection( &GetCurrentSheet(), aUnit );
|
|
|
|
aSymbol->SetUnit( aUnit );
|
2016-02-19 10:41:32 -05:00
|
|
|
|
2023-06-23 19:59:18 +01:00
|
|
|
if( !commit.Empty() )
|
2019-05-02 21:44:23 +01:00
|
|
|
{
|
2020-04-13 00:09:17 +01:00
|
|
|
if( eeconfig()->m_AutoplaceFields.enable )
|
2021-03-19 20:27:30 +00:00
|
|
|
aSymbol->AutoAutoplaceFields( GetScreen() );
|
2017-10-06 14:07:43 -04:00
|
|
|
|
2023-06-23 19:59:18 +01:00
|
|
|
commit.Push( _( "Change Unit" ) );
|
2019-05-02 21:44:23 +01:00
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2024-01-26 16:16:13 +00:00
|
|
|
void SCH_EDIT_FRAME::FlipBodyStyle( SCH_SYMBOL* aSymbol )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2021-06-15 08:31:28 -04:00
|
|
|
if( !aSymbol || !aSymbol->GetLibSymbolRef() )
|
2007-08-20 01:20:48 +00:00
|
|
|
return;
|
|
|
|
|
2023-06-23 19:59:18 +01:00
|
|
|
SCH_COMMIT commit( m_toolManager );
|
|
|
|
wxString msg;
|
2017-10-06 14:07:43 -04:00
|
|
|
|
2024-01-26 16:16:13 +00:00
|
|
|
if( !aSymbol->GetLibSymbolRef()->HasAlternateBodyStyle() )
|
2007-08-20 01:20:48 +00:00
|
|
|
{
|
2021-06-15 08:31:28 -04:00
|
|
|
LIB_ID id = aSymbol->GetLibSymbolRef()->GetLibId();
|
2017-10-06 14:07:43 -04:00
|
|
|
|
2021-06-16 23:35:00 +01:00
|
|
|
msg.Printf( _( "No alternate body style found for symbol '%s' in library '%s'." ),
|
|
|
|
id.GetLibItemName().wx_str(),
|
|
|
|
id.GetLibNickname().wx_str() );
|
2020-05-05 16:42:38 -04:00
|
|
|
DisplayError( this, msg );
|
|
|
|
return;
|
|
|
|
}
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2023-06-23 19:59:18 +01:00
|
|
|
commit.Modify( aSymbol, GetScreen() );
|
2011-12-21 08:42:02 -05:00
|
|
|
|
2024-01-26 16:16:13 +00:00
|
|
|
aSymbol->SetBodyStyle( aSymbol->GetBodyStyle() + 1 );
|
2010-12-14 10:56:30 -05:00
|
|
|
|
2024-01-26 16:16:13 +00:00
|
|
|
// ensure m_bodyStyle = 1 or 2
|
|
|
|
// 1 = shape 1 = first (base DeMorgan) alternate body style
|
|
|
|
// 2 = shape 2 = second (DeMorgan conversion) alternate body style
|
2021-03-19 20:27:30 +00:00
|
|
|
// > 2 is not currently supported
|
2024-01-26 16:16:13 +00:00
|
|
|
// When m_bodyStyle = val max, return to the first shape
|
2024-04-06 14:14:44 +01:00
|
|
|
if( aSymbol->GetBodyStyle() > BODY_STYLE::DEMORGAN )
|
|
|
|
aSymbol->SetBodyStyle( BODY_STYLE::BASE );
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2020-05-05 16:42:38 -04:00
|
|
|
// If selected make sure all the now-included pins are selected
|
2021-03-19 20:27:30 +00:00
|
|
|
if( aSymbol->IsSelected() )
|
2023-06-26 23:16:51 +01:00
|
|
|
m_toolManager->RunAction<EDA_ITEM*>( EE_ACTIONS::addItemToSel, aSymbol );
|
2011-04-29 10:17:14 +02:00
|
|
|
|
2024-02-05 11:05:31 +00:00
|
|
|
commit.Push( _( "Change Body Style" ) );
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
2023-08-28 12:29:47 +01:00
|
|
|
|
|
|
|
|
|
|
|
void SCH_EDIT_FRAME::SetAltPinFunction( SCH_PIN* aPin, const wxString& aFunction )
|
|
|
|
{
|
|
|
|
if( !aPin )
|
|
|
|
return;
|
|
|
|
|
|
|
|
SCH_COMMIT commit( m_toolManager );
|
|
|
|
commit.Modify( aPin, GetScreen() );
|
|
|
|
|
|
|
|
if( aFunction == aPin->GetName() )
|
|
|
|
aPin->SetAlt( wxEmptyString );
|
|
|
|
else
|
|
|
|
aPin->SetAlt( aFunction );
|
|
|
|
|
2023-08-29 18:04:33 +01:00
|
|
|
commit.Push( _( "Set Pin Function" ) );
|
2023-08-28 12:29:47 +01:00
|
|
|
}
|