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>
|
2023-06-23 18:59:18 +00:00
|
|
|
* Copyright (C) 2004-2023 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
|
|
|
|
*/
|
|
|
|
|
2021-10-23 10:37:15 +00:00
|
|
|
#include <pgm_base.h>
|
2021-03-13 22:13:47 +00:00
|
|
|
#include <symbol_library.h>
|
2021-10-23 10:37:15 +00:00
|
|
|
#include <settings/settings_manager.h>
|
2022-07-22 08:26:49 +00:00
|
|
|
#include <project/project_file.h>
|
2021-10-01 10:52:34 +00:00
|
|
|
#include <core/kicad_algo.h>
|
2022-01-29 19:07:07 +00:00
|
|
|
#include <symbol_library_common.h>
|
2019-06-25 23:39:58 +00: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 10:37:15 +00:00
|
|
|
#include <symbol_tree_model_adapter.h>
|
|
|
|
#include <symbol_editor/symbol_editor_settings.h>
|
2021-02-24 13:48:02 +00:00
|
|
|
#include <sch_symbol.h>
|
2023-06-23 18:59:18 +00:00
|
|
|
#include <sch_commit.h>
|
2018-01-30 10:49:51 +00:00
|
|
|
#include <sch_edit_frame.h>
|
2019-06-25 23:39:58 +00:00
|
|
|
#include <symbol_lib_table.h>
|
2019-05-01 21:50:11 +00:00
|
|
|
#include <tool/tool_manager.h>
|
2019-05-10 17:19:48 +00:00
|
|
|
#include <tools/ee_actions.h>
|
2023-09-28 03:04:53 +00:00
|
|
|
#include <project_sch.h>
|
2009-09-18 14:56:05 +00:00
|
|
|
|
2023-09-28 13:09:45 +00:00
|
|
|
#include <dialog_symbol_chooser.h>
|
2009-09-25 18:49:04 +00:00
|
|
|
|
2023-09-28 13:09:45 +00:00
|
|
|
PICKED_SYMBOL SCH_BASE_FRAME::PickSymbolFromLibrary( const SYMBOL_LIBRARY_FILTER* aFilter,
|
2021-03-13 22:13:47 +00: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 13:09:45 +00:00
|
|
|
std::unique_lock<std::mutex> dialogLock( DIALOG_SYMBOL_CHOOSER::g_Mutex, std::defer_lock );
|
2018-04-16 22:18:02 +00:00
|
|
|
|
2023-09-28 13:09:45 +00:00
|
|
|
// One DIALOG_SYMBOL_CHOOSER dialog at a time. User probably can't handle more anyway.
|
2018-04-16 22:18:02 +00:00
|
|
|
if( !dialogLock.try_lock() )
|
2020-11-07 14:31:50 +00:00
|
|
|
return PICKED_SYMBOL();
|
2014-02-14 08:05:04 +00:00
|
|
|
|
2021-03-13 22:13:47 +00:00
|
|
|
DIALOG_SYMBOL_CHOOSER dlg( this, aHighlight, aFilter, aHistoryList, aAlreadyPlaced,
|
|
|
|
aAllowFields, aShowFootprints );
|
2022-07-22 08:26:49 +00:00
|
|
|
|
2023-09-28 13:09:45 +00:00
|
|
|
if( dlg.ShowModal() == wxID_CANCEL )
|
2023-02-14 23:25:22 +00: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-23 00:59:25 +00:00
|
|
|
|
2023-09-28 13:09:45 +00:00
|
|
|
if( !id.IsValid() )
|
2020-11-07 14:31:50 +00:00
|
|
|
return PICKED_SYMBOL();
|
2017-03-27 06:53:19 +00:00
|
|
|
|
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
|
|
|
{
|
2021-10-01 10:52:34 +00:00
|
|
|
alg::delete_if( aHistoryList, [&sel]( PICKED_SYMBOL const& i )
|
|
|
|
{
|
|
|
|
return i.LibId == sel.LibId;
|
|
|
|
} );
|
2017-03-23 00:59:25 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
2021-06-10 14:10:55 +00:00
|
|
|
void SCH_EDIT_FRAME::SelectUnit( SCH_SYMBOL* aSymbol, int aUnit )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2023-06-23 18:59:18 +00:00
|
|
|
SCH_COMMIT commit( m_toolManager );
|
2021-06-17 21:22:10 +00:00
|
|
|
LIB_SYMBOL* symbol = GetLibSymbol( aSymbol->GetLibId() );
|
2015-03-02 08:28:49 +00:00
|
|
|
|
2021-06-10 18:51:46 +00:00
|
|
|
if( !symbol )
|
2017-10-06 18:07:43 +00:00
|
|
|
return;
|
2011-03-02 00:46:08 +00:00
|
|
|
|
2021-06-10 18:51:46 +00:00
|
|
|
int unitCount = symbol->GetUnitCount();
|
2010-12-08 20:12:46 +00:00
|
|
|
|
2021-03-19 20:27:30 +00:00
|
|
|
if( unitCount <= 1 || aSymbol->GetUnit() == aUnit )
|
2017-10-06 18:07:43 +00:00
|
|
|
return;
|
2011-01-18 10:42:49 +00:00
|
|
|
|
2019-05-02 20:44:23 +00:00
|
|
|
if( aUnit > unitCount )
|
|
|
|
aUnit = unitCount;
|
2011-03-02 00:46:08 +00:00
|
|
|
|
2021-03-19 20:27:30 +00:00
|
|
|
if( !aSymbol->GetEditFlags() ) // No command in progress: save in undo list
|
2023-06-23 18:59:18 +00:00
|
|
|
commit.Modify( aSymbol, GetScreen() );
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2017-10-06 18:07:43 +00:00
|
|
|
/* Update the unit number. */
|
2021-03-19 20:27:30 +00:00
|
|
|
aSymbol->SetUnitSelection( &GetCurrentSheet(), aUnit );
|
|
|
|
aSymbol->SetUnit( aUnit );
|
2016-02-19 15:41:32 +00:00
|
|
|
|
2023-06-23 18:59:18 +00:00
|
|
|
if( !commit.Empty() )
|
2019-05-02 20:44:23 +00:00
|
|
|
{
|
2020-04-12 23:09:17 +00:00
|
|
|
if( eeconfig()->m_AutoplaceFields.enable )
|
2021-03-19 20:27:30 +00:00
|
|
|
aSymbol->AutoAutoplaceFields( GetScreen() );
|
2017-10-06 18:07:43 +00:00
|
|
|
|
2023-06-23 18:59:18 +00:00
|
|
|
commit.Push( _( "Change Unit" ) );
|
2019-05-02 20:44:23 +00: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 12:31:28 +00:00
|
|
|
if( !aSymbol || !aSymbol->GetLibSymbolRef() )
|
2007-08-20 01:20:48 +00:00
|
|
|
return;
|
|
|
|
|
2023-06-23 18:59:18 +00:00
|
|
|
SCH_COMMIT commit( m_toolManager );
|
|
|
|
wxString msg;
|
2017-10-06 18:07:43 +00:00
|
|
|
|
2024-01-26 16:16:13 +00:00
|
|
|
if( !aSymbol->GetLibSymbolRef()->HasAlternateBodyStyle() )
|
2007-08-20 01:20:48 +00:00
|
|
|
{
|
2021-06-15 12:31:28 +00:00
|
|
|
LIB_ID id = aSymbol->GetLibSymbolRef()->GetLibId();
|
2017-10-06 18:07:43 +00:00
|
|
|
|
2021-06-16 22:35:00 +00: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 20:42:38 +00:00
|
|
|
DisplayError( this, msg );
|
|
|
|
return;
|
|
|
|
}
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2023-06-23 18:59:18 +00:00
|
|
|
commit.Modify( aSymbol, GetScreen() );
|
2011-12-21 13:42:02 +00:00
|
|
|
|
2024-01-26 16:16:13 +00:00
|
|
|
aSymbol->SetBodyStyle( aSymbol->GetBodyStyle() + 1 );
|
2010-12-14 15:56:30 +00: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
|
|
|
|
if( aSymbol->GetBodyStyle() > LIB_ITEM::BODY_STYLE::DEMORGAN )
|
|
|
|
aSymbol->SetBodyStyle( LIB_ITEM::BODY_STYLE::BASE );
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2020-05-05 20:42:38 +00: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 22:16:51 +00:00
|
|
|
m_toolManager->RunAction<EDA_ITEM*>( EE_ACTIONS::addItemToSel, aSymbol );
|
2011-04-29 08:17:14 +00:00
|
|
|
|
2024-01-26 18:11:10 +00:00
|
|
|
// TODO: 9.0 It would be better as "Change Body Style", but we're past string freeze so
|
|
|
|
// this (existing) string will have to do....
|
2023-06-23 18:59:18 +00:00
|
|
|
commit.Push( _( "Convert Symbol" ) );
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
2023-08-28 11:29:47 +00: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 17:04:33 +00:00
|
|
|
commit.Push( _( "Set Pin Function" ) );
|
2023-08-28 11:29:47 +00:00
|
|
|
}
|