2019-05-13 22:49:05 +01:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2019-08-14 09:28:07 +01:00
|
|
|
* Copyright (C) 2019 CERN
|
2025-01-01 13:30:11 -08:00
|
|
|
* Copyright The KiCad Developers, see AUTHORS.txt for contributors.
|
2019-05-13 22:49:05 +01: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
|
|
|
|
*/
|
|
|
|
|
2024-10-04 15:49:31 +01:00
|
|
|
#include "tools/symbol_editor_control.h"
|
|
|
|
|
2024-02-29 19:01:59 +00:00
|
|
|
#include <advanced_config.h>
|
2024-08-30 16:03:06 -07:00
|
|
|
#include <bitmaps/bitmap_types.h>
|
|
|
|
#include <confirm.h>
|
2025-09-06 00:05:27 +01:00
|
|
|
#include <dialogs/dialog_lib_fields_table.h>
|
2024-08-30 16:03:06 -07:00
|
|
|
#include <gestfich.h> // To open with a text editor
|
|
|
|
#include <kidialog.h>
|
2019-06-16 19:51:47 +01:00
|
|
|
#include <kiway.h>
|
2024-08-30 16:03:06 -07:00
|
|
|
#include <launch_ext.h> // To default when file manager setting is empty
|
|
|
|
#include <lib_symbol_library_manager.h>
|
2022-07-22 09:26:49 +01:00
|
|
|
#include <pgm_base.h>
|
2019-05-14 20:21:10 +01:00
|
|
|
#include <sch_painter.h>
|
2024-08-30 16:03:06 -07:00
|
|
|
#include <string_utils.h>
|
2024-10-01 21:44:50 +01:00
|
|
|
#include <symbol_editor/symbol_editor_settings.h>
|
2024-10-04 15:49:31 +01:00
|
|
|
#include <symbol_lib_table.h>
|
2024-08-30 16:03:06 -07:00
|
|
|
#include <symbol_tree_model_adapter.h>
|
|
|
|
#include <symbol_viewer_frame.h>
|
|
|
|
#include <tool/library_editor_control.h>
|
|
|
|
#include <tool/tool_manager.h>
|
|
|
|
#include <tools/sch_actions.h>
|
2019-06-16 17:07:15 +01:00
|
|
|
#include <wildcards_and_files_ext.h>
|
2024-08-30 16:03:06 -07:00
|
|
|
|
2021-05-01 09:50:29 +02:00
|
|
|
#include <wx/filedlg.h>
|
2024-08-30 16:03:06 -07:00
|
|
|
|
2019-05-13 22:49:05 +01:00
|
|
|
|
2020-12-12 03:13:52 +00:00
|
|
|
bool SYMBOL_EDITOR_CONTROL::Init()
|
2019-06-05 20:15:57 +01:00
|
|
|
{
|
2019-06-05 23:32:03 +01:00
|
|
|
m_frame = getEditFrame<SCH_BASE_FRAME>();
|
2025-03-12 14:41:25 +00:00
|
|
|
m_selectionTool = m_toolMgr->GetTool<SCH_SELECTION_TOOL>();
|
2020-10-31 01:27:16 +00:00
|
|
|
m_isSymbolEditor = m_frame->IsType( FRAME_SCH_SYMBOL_EDITOR );
|
2019-12-12 14:55:21 -05:00
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
if( m_isSymbolEditor )
|
2019-06-05 20:15:57 +01:00
|
|
|
{
|
2024-06-08 14:00:18 +01:00
|
|
|
LIBRARY_EDITOR_CONTROL* libraryTreeTool = m_toolMgr->GetTool<LIBRARY_EDITOR_CONTROL>();
|
2024-07-30 17:57:33 +02:00
|
|
|
CONDITIONAL_MENU& ctxMenu = m_menu->GetMenu();
|
2021-01-30 12:59:04 -05:00
|
|
|
|
2020-12-11 22:44:10 +00:00
|
|
|
auto libSelectedCondition =
|
2025-09-01 12:36:44 +01:00
|
|
|
[this]( const SELECTION& aSel )
|
2020-12-11 22:44:10 +00:00
|
|
|
{
|
2025-09-01 12:36:44 +01:00
|
|
|
if( SYMBOL_EDIT_FRAME* editFrame = getEditFrame<SYMBOL_EDIT_FRAME>() )
|
|
|
|
{
|
|
|
|
LIB_ID sel = editFrame->GetTreeLIBID();
|
|
|
|
return !sel.GetLibNickname().empty() && sel.GetLibItemName().empty();
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2020-12-11 22:44:10 +00:00
|
|
|
};
|
2024-06-08 14:00:18 +01:00
|
|
|
|
2021-02-18 16:25:49 +00:00
|
|
|
// The libInferredCondition allows you to do things like New Symbol and Paste with a
|
|
|
|
// symbol selected (in other words, when we know the library context even if the library
|
|
|
|
// itself isn't selected.
|
|
|
|
auto libInferredCondition =
|
2025-09-01 12:36:44 +01:00
|
|
|
[this]( const SELECTION& aSel )
|
2021-02-18 16:25:49 +00:00
|
|
|
{
|
2025-09-01 12:36:44 +01:00
|
|
|
if( SYMBOL_EDIT_FRAME* editFrame = getEditFrame<SYMBOL_EDIT_FRAME>() )
|
|
|
|
{
|
|
|
|
LIB_ID sel = editFrame->GetTreeLIBID();
|
|
|
|
return !sel.GetLibNickname().empty();
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2021-02-18 16:25:49 +00:00
|
|
|
};
|
2024-06-08 14:00:18 +01:00
|
|
|
|
2020-12-11 22:44:10 +00:00
|
|
|
auto symbolSelectedCondition =
|
2025-09-01 12:36:44 +01:00
|
|
|
[this]( const SELECTION& aSel )
|
2020-12-11 22:44:10 +00:00
|
|
|
{
|
2025-09-01 12:36:44 +01:00
|
|
|
if( SYMBOL_EDIT_FRAME* editFrame = getEditFrame<SYMBOL_EDIT_FRAME>() )
|
|
|
|
{
|
|
|
|
LIB_ID sel = editFrame->GetTargetLibId();
|
|
|
|
return !sel.GetLibNickname().empty() && !sel.GetLibItemName().empty();
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2020-12-11 22:44:10 +00:00
|
|
|
};
|
2024-06-08 14:00:18 +01:00
|
|
|
|
2025-09-02 23:29:22 +08:00
|
|
|
auto derivedSymbolSelectedCondition =
|
|
|
|
[this]( const SELECTION& aSel )
|
|
|
|
{
|
|
|
|
if( SYMBOL_EDIT_FRAME* editFrame = getEditFrame<SYMBOL_EDIT_FRAME>() )
|
|
|
|
{
|
|
|
|
LIB_ID sel = editFrame->GetTargetLibId();
|
|
|
|
|
|
|
|
if( sel.GetLibNickname().empty() || sel.GetLibItemName().empty() )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
LIB_SYMBOL_LIBRARY_MANAGER& libMgr = editFrame->GetLibManager();
|
|
|
|
const LIB_SYMBOL* sym = libMgr.GetSymbol( sel.GetLibItemName(), sel.GetLibNickname() );
|
|
|
|
|
|
|
|
return sym && sym->IsDerived();
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
|
2024-07-10 06:14:04 +00:00
|
|
|
auto multiSymbolSelectedCondition =
|
2025-09-01 12:36:44 +01:00
|
|
|
[this]( const SELECTION& aSel )
|
2022-09-08 22:15:44 -04:00
|
|
|
{
|
2025-09-01 12:36:44 +01:00
|
|
|
SYMBOL_EDIT_FRAME* editFrame = getEditFrame<SYMBOL_EDIT_FRAME>();
|
|
|
|
|
|
|
|
if( editFrame && editFrame->GetTreeSelectionCount() > 1 )
|
2024-07-10 06:14:04 +00:00
|
|
|
{
|
|
|
|
for( LIB_ID& sel : editFrame->GetSelectedLibIds() )
|
|
|
|
{
|
|
|
|
if( !sel.IsValid() )
|
|
|
|
return false;
|
|
|
|
}
|
2025-09-01 12:36:44 +01:00
|
|
|
|
2024-07-10 06:14:04 +00:00
|
|
|
return true;
|
|
|
|
}
|
2025-09-01 12:36:44 +01:00
|
|
|
|
2024-07-10 06:14:04 +00:00
|
|
|
return false;
|
2022-09-08 22:15:44 -04:00
|
|
|
};
|
2024-07-10 06:14:04 +00:00
|
|
|
/* not used, yet
|
|
|
|
auto multiLibrarySelectedCondition =
|
2025-09-01 12:36:44 +01:00
|
|
|
[this]( const SELECTION& aSel )
|
2024-07-10 06:14:04 +00:00
|
|
|
{
|
2025-09-01 12:36:44 +01:00
|
|
|
SYMBOL_EDIT_FRAME* editFrame = getEditFrame<SYMBOL_EDIT_FRAME>();
|
|
|
|
|
|
|
|
if( editFrame && editFrame->GetTreeSelectionCount() > 1 )
|
2024-07-10 06:14:04 +00:00
|
|
|
{
|
|
|
|
for( LIB_ID& sel : editFrame->GetSelectedLibIds() )
|
|
|
|
{
|
|
|
|
if( sel.IsValid() )
|
|
|
|
return false;
|
|
|
|
}
|
2025-09-01 12:36:44 +01:00
|
|
|
|
2024-07-10 06:14:04 +00:00
|
|
|
return true;
|
|
|
|
}
|
2025-09-01 12:36:44 +01:00
|
|
|
|
2024-07-10 06:14:04 +00:00
|
|
|
return false;
|
|
|
|
};
|
|
|
|
*/
|
|
|
|
auto canOpenExternally =
|
2025-09-01 12:36:44 +01:00
|
|
|
[this]( const SELECTION& aSel )
|
2024-02-29 19:01:59 +00:00
|
|
|
{
|
|
|
|
// The option is shown if the lib has no current edits
|
2025-09-01 12:36:44 +01:00
|
|
|
if( SYMBOL_EDIT_FRAME* editFrame = getEditFrame<SYMBOL_EDIT_FRAME>() )
|
|
|
|
{
|
|
|
|
LIB_SYMBOL_LIBRARY_MANAGER& libMgr = editFrame->GetLibManager();
|
|
|
|
wxString libName = editFrame->GetTargetLibId().GetLibNickname();
|
|
|
|
return !libMgr.IsLibraryModified( libName );
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2024-02-29 19:01:59 +00:00
|
|
|
};
|
2019-12-12 14:55:21 -05:00
|
|
|
|
2024-08-30 16:03:06 -07:00
|
|
|
|
2024-06-08 14:00:18 +01:00
|
|
|
// clang-format off
|
2025-03-12 14:41:25 +00:00
|
|
|
ctxMenu.AddItem( SCH_ACTIONS::newSymbol, libInferredCondition, 10 );
|
|
|
|
ctxMenu.AddItem( SCH_ACTIONS::deriveFromExistingSymbol, symbolSelectedCondition, 10 );
|
2019-12-12 14:55:21 -05:00
|
|
|
|
2024-06-08 14:00:18 +01:00
|
|
|
ctxMenu.AddSeparator( 10 );
|
|
|
|
ctxMenu.AddItem( ACTIONS::save, symbolSelectedCondition || libInferredCondition, 10 );
|
2025-03-12 14:41:25 +00:00
|
|
|
ctxMenu.AddItem( SCH_ACTIONS::saveLibraryAs, libSelectedCondition, 10 );
|
|
|
|
ctxMenu.AddItem( SCH_ACTIONS::saveSymbolAs, symbolSelectedCondition, 10 );
|
|
|
|
ctxMenu.AddItem( SCH_ACTIONS::saveSymbolCopyAs, symbolSelectedCondition, 10 );
|
2024-06-08 14:00:18 +01:00
|
|
|
ctxMenu.AddItem( ACTIONS::revert, symbolSelectedCondition || libInferredCondition, 10 );
|
2019-12-12 14:55:21 -05:00
|
|
|
|
2024-06-08 14:00:18 +01:00
|
|
|
ctxMenu.AddSeparator( 10 );
|
2025-03-12 14:41:25 +00:00
|
|
|
ctxMenu.AddItem( SCH_ACTIONS::cutSymbol, symbolSelectedCondition || multiSymbolSelectedCondition, 10 );
|
|
|
|
ctxMenu.AddItem( SCH_ACTIONS::copySymbol, symbolSelectedCondition || multiSymbolSelectedCondition, 10 );
|
|
|
|
ctxMenu.AddItem( SCH_ACTIONS::pasteSymbol, libInferredCondition, 10 );
|
|
|
|
ctxMenu.AddItem( SCH_ACTIONS::duplicateSymbol, symbolSelectedCondition, 10 );
|
|
|
|
ctxMenu.AddItem( SCH_ACTIONS::renameSymbol, symbolSelectedCondition, 10 );
|
|
|
|
ctxMenu.AddItem( SCH_ACTIONS::deleteSymbol, symbolSelectedCondition || multiSymbolSelectedCondition, 10 );
|
2019-12-12 14:55:21 -05:00
|
|
|
|
2025-09-02 23:29:22 +08:00
|
|
|
ctxMenu.AddSeparator( 20 );
|
|
|
|
ctxMenu.AddItem( SCH_ACTIONS::flattenSymbol, derivedSymbolSelectedCondition, 20 );
|
|
|
|
|
2024-06-08 14:00:18 +01:00
|
|
|
ctxMenu.AddSeparator( 100 );
|
2025-03-12 14:41:25 +00:00
|
|
|
ctxMenu.AddItem( SCH_ACTIONS::importSymbol, libInferredCondition, 100 );
|
|
|
|
ctxMenu.AddItem( SCH_ACTIONS::exportSymbol, symbolSelectedCondition );
|
2024-02-29 19:01:59 +00:00
|
|
|
|
2025-09-02 23:29:22 +08:00
|
|
|
|
2024-02-29 19:01:59 +00:00
|
|
|
if( ADVANCED_CFG::GetCfg().m_EnableLibWithText )
|
|
|
|
{
|
2024-06-08 14:00:18 +01:00
|
|
|
ctxMenu.AddSeparator( 200 );
|
2024-07-10 06:14:04 +00:00
|
|
|
ctxMenu.AddItem( ACTIONS::openWithTextEditor, canOpenExternally && ( symbolSelectedCondition || libSelectedCondition ), 200 );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( ADVANCED_CFG::GetCfg().m_EnableLibDir )
|
|
|
|
{
|
|
|
|
ctxMenu.AddSeparator( 200 );
|
|
|
|
ctxMenu.AddItem( ACTIONS::openDirectory, canOpenExternally && ( symbolSelectedCondition || libSelectedCondition ), 200 );
|
2024-02-29 19:01:59 +00:00
|
|
|
}
|
2024-06-08 14:00:18 +01:00
|
|
|
|
2025-09-06 00:05:27 +01:00
|
|
|
ctxMenu.AddItem( ACTIONS::showLibraryFieldsTable, libInferredCondition, 300 );
|
|
|
|
ctxMenu.AddItem( ACTIONS::showRelatedLibraryFieldsTable, symbolSelectedCondition, 300 );
|
2024-08-30 16:03:06 -07:00
|
|
|
|
2024-06-08 14:00:18 +01:00
|
|
|
libraryTreeTool->AddContextMenuItems( &ctxMenu );
|
2019-06-05 20:15:57 +01:00
|
|
|
}
|
2024-06-08 14:00:18 +01:00
|
|
|
// clang-format on
|
2019-12-12 14:55:21 -05:00
|
|
|
|
2019-06-05 20:15:57 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-12-12 03:13:52 +00:00
|
|
|
int SYMBOL_EDITOR_CONTROL::AddLibrary( const TOOL_EVENT& aEvent )
|
2019-06-02 19:58:09 +01:00
|
|
|
{
|
|
|
|
bool createNew = aEvent.IsAction( &ACTIONS::newLibrary );
|
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
if( m_frame->IsType( FRAME_SCH_SYMBOL_EDITOR ) )
|
|
|
|
static_cast<SYMBOL_EDIT_FRAME*>( m_frame )->AddLibraryFile( createNew );
|
2019-06-02 19:58:09 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-09-14 22:28:09 +00:00
|
|
|
int SYMBOL_EDITOR_CONTROL::DdAddLibrary( const TOOL_EVENT& aEvent )
|
|
|
|
{
|
|
|
|
wxString libFile = *aEvent.Parameter<wxString*>();
|
2024-06-08 14:00:18 +01:00
|
|
|
|
2022-09-14 22:28:09 +00:00
|
|
|
if( m_frame->IsType( FRAME_SCH_SYMBOL_EDITOR ) )
|
|
|
|
static_cast<SYMBOL_EDIT_FRAME*>( m_frame )->DdAddLibrary( libFile );
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-12-12 03:13:52 +00:00
|
|
|
int SYMBOL_EDITOR_CONTROL::EditSymbol( const TOOL_EVENT& aEvent )
|
2019-06-05 23:29:59 +01:00
|
|
|
{
|
2024-06-08 14:00:18 +01:00
|
|
|
if( !m_isSymbolEditor )
|
|
|
|
return 0;
|
2019-12-12 14:55:21 -05:00
|
|
|
|
2024-06-08 14:00:18 +01:00
|
|
|
SYMBOL_EDIT_FRAME* editFrame = getEditFrame<SYMBOL_EDIT_FRAME>();
|
|
|
|
int unit = 0;
|
|
|
|
LIB_ID partId = editFrame->GetTreeLIBID( &unit );
|
2019-06-05 23:29:59 +01:00
|
|
|
|
2024-06-08 14:00:18 +01:00
|
|
|
editFrame->LoadSymbol( partId.GetLibItemName(), partId.GetLibNickname(), unit );
|
2019-06-05 23:29:59 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-10-31 23:15:48 +08:00
|
|
|
int SYMBOL_EDITOR_CONTROL::EditLibrarySymbol( const TOOL_EVENT& aEvent )
|
|
|
|
{
|
|
|
|
SYMBOL_EDIT_FRAME* editFrame = getEditFrame<SYMBOL_EDIT_FRAME>();
|
|
|
|
const LIB_SYMBOL* symbol = editFrame->GetCurSymbol();
|
|
|
|
|
|
|
|
if( !symbol || !editFrame->IsSymbolFromSchematic() )
|
|
|
|
{
|
|
|
|
wxBell();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
const LIB_ID& libId = symbol->GetLibId();
|
|
|
|
|
|
|
|
if( editFrame->LoadSymbol( libId, editFrame->GetUnit(), editFrame->GetBodyStyle() ) )
|
|
|
|
{
|
|
|
|
if( !editFrame->IsLibraryTreeShown() )
|
|
|
|
editFrame->ToggleLibraryTree();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
const wxString libName = libId.GetLibNickname();
|
|
|
|
const wxString symbolName = libId.GetLibItemName();
|
|
|
|
|
|
|
|
DisplayError( editFrame,
|
|
|
|
wxString::Format( _( "Failed to load symbol %s from "
|
|
|
|
"library %s." ),
|
|
|
|
UnescapeString( symbolName ), UnescapeString( libName ) ) );
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-12-12 03:13:52 +00:00
|
|
|
int SYMBOL_EDITOR_CONTROL::AddSymbol( const TOOL_EVENT& aEvent )
|
2019-06-02 19:58:09 +01:00
|
|
|
{
|
2024-06-08 14:00:18 +01:00
|
|
|
if( !m_isSymbolEditor )
|
|
|
|
return 0;
|
2021-03-14 21:50:20 +00:00
|
|
|
|
2024-06-08 14:00:18 +01:00
|
|
|
SYMBOL_EDIT_FRAME* editFrame = getEditFrame<SYMBOL_EDIT_FRAME>();
|
|
|
|
LIB_ID target = editFrame->GetTargetLibId();
|
|
|
|
const wxString& libName = target.GetLibNickname();
|
|
|
|
wxString msg;
|
2021-03-18 11:04:44 +00:00
|
|
|
|
2024-06-08 14:00:18 +01:00
|
|
|
if( libName.IsEmpty() )
|
|
|
|
{
|
|
|
|
msg.Printf( _( "No symbol library selected." ) );
|
|
|
|
m_frame->ShowInfoBarError( msg );
|
|
|
|
return 0;
|
|
|
|
}
|
2021-03-14 21:50:20 +00:00
|
|
|
|
2025-06-27 22:39:19 -06:00
|
|
|
if( !editFrame->GetLibManager().LibraryExists( libName ) )
|
|
|
|
{
|
|
|
|
msg.Printf( _( "Symbol library '%s' not found." ), libName );
|
|
|
|
m_frame->ShowInfoBarError( msg );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2024-06-08 14:00:18 +01:00
|
|
|
if( editFrame->GetLibManager().IsLibraryReadOnly( libName ) )
|
|
|
|
{
|
|
|
|
msg.Printf( _( "Symbol library '%s' is not writable." ), libName );
|
|
|
|
m_frame->ShowInfoBarError( msg );
|
|
|
|
return 0;
|
2019-06-02 19:58:09 +01:00
|
|
|
}
|
|
|
|
|
2025-03-12 14:41:25 +00:00
|
|
|
if( aEvent.IsAction( &SCH_ACTIONS::newSymbol ) )
|
2024-06-08 14:00:18 +01:00
|
|
|
editFrame->CreateNewSymbol();
|
2025-03-12 14:41:25 +00:00
|
|
|
else if( aEvent.IsAction( &SCH_ACTIONS::deriveFromExistingSymbol ) )
|
2024-06-08 14:00:18 +01:00
|
|
|
editFrame->CreateNewSymbol( target.GetLibItemName() );
|
2025-03-12 14:41:25 +00:00
|
|
|
else if( aEvent.IsAction( &SCH_ACTIONS::importSymbol ) )
|
2024-06-08 14:00:18 +01:00
|
|
|
editFrame->ImportSymbol();
|
|
|
|
|
2019-06-02 19:58:09 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-12-12 03:13:52 +00:00
|
|
|
int SYMBOL_EDITOR_CONTROL::Save( const TOOL_EVENT& aEvt )
|
2019-05-27 00:00:27 +01:00
|
|
|
{
|
2024-06-08 14:00:18 +01:00
|
|
|
if( !m_isSymbolEditor )
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
SYMBOL_EDIT_FRAME* editFrame = getEditFrame<SYMBOL_EDIT_FRAME>();
|
|
|
|
|
2025-03-12 14:41:25 +00:00
|
|
|
if( aEvt.IsAction( &SCH_ACTIONS::save ) )
|
2024-06-08 14:00:18 +01:00
|
|
|
editFrame->Save();
|
2025-03-12 14:41:25 +00:00
|
|
|
else if( aEvt.IsAction( &SCH_ACTIONS::saveLibraryAs ) )
|
2024-06-08 14:00:18 +01:00
|
|
|
editFrame->SaveLibraryAs();
|
2025-03-12 14:41:25 +00:00
|
|
|
else if( aEvt.IsAction( &SCH_ACTIONS::saveSymbolAs ) )
|
2024-10-12 21:27:57 -06:00
|
|
|
editFrame->SaveSymbolCopyAs( true );
|
2025-03-12 14:41:25 +00:00
|
|
|
else if( aEvt.IsAction( &SCH_ACTIONS::saveSymbolCopyAs ) )
|
2024-10-12 21:27:57 -06:00
|
|
|
editFrame->SaveSymbolCopyAs( false );
|
2025-03-12 14:41:25 +00:00
|
|
|
else if( aEvt.IsAction( &SCH_ACTIONS::saveAll ) )
|
2024-06-08 14:00:18 +01:00
|
|
|
editFrame->SaveAll();
|
2019-06-01 20:48:01 +01:00
|
|
|
|
2019-05-27 00:00:27 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-12-12 03:13:52 +00:00
|
|
|
int SYMBOL_EDITOR_CONTROL::Revert( const TOOL_EVENT& aEvent )
|
2019-05-27 00:00:27 +01:00
|
|
|
{
|
2020-10-31 01:27:16 +00:00
|
|
|
if( m_frame->IsType( FRAME_SCH_SYMBOL_EDITOR ) )
|
|
|
|
static_cast<SYMBOL_EDIT_FRAME*>( m_frame )->Revert();
|
2019-06-01 20:48:01 +01:00
|
|
|
|
2019-05-27 00:00:27 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-07-10 06:14:04 +00:00
|
|
|
int SYMBOL_EDITOR_CONTROL::OpenDirectory( const TOOL_EVENT& aEvent )
|
|
|
|
{
|
|
|
|
if( !m_isSymbolEditor )
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
SYMBOL_EDIT_FRAME* editFrame = getEditFrame<SYMBOL_EDIT_FRAME>();
|
|
|
|
LIB_SYMBOL_LIBRARY_MANAGER& libMgr = editFrame->GetLibManager();
|
|
|
|
|
|
|
|
LIB_ID libId = editFrame->GetTreeLIBID();
|
|
|
|
|
|
|
|
wxString libName = libId.GetLibNickname();
|
|
|
|
wxString libItemName = libMgr.GetLibrary( libName )->GetFullURI( true );
|
|
|
|
|
|
|
|
wxFileName fileName( libItemName );
|
|
|
|
|
|
|
|
wxString filePath = wxEmptyString;
|
2025-08-14 11:32:18 +01:00
|
|
|
wxString explorerCommand;
|
2024-07-10 06:14:04 +00:00
|
|
|
|
2025-08-14 11:32:18 +01:00
|
|
|
if( COMMON_SETTINGS* cfg = Pgm().GetCommonSettings() )
|
|
|
|
explorerCommand = cfg->m_System.file_explorer;
|
2024-07-10 06:14:04 +00:00
|
|
|
|
2025-08-14 11:32:18 +01:00
|
|
|
if( explorerCommand.IsEmpty() )
|
2024-07-10 06:14:04 +00:00
|
|
|
{
|
|
|
|
filePath = fileName.GetFullPath().BeforeLast( wxFileName::GetPathSeparator() );
|
|
|
|
|
|
|
|
if( !filePath.IsEmpty() && wxDirExists( filePath ) )
|
|
|
|
LaunchExternal( filePath );
|
2025-08-14 11:32:18 +01:00
|
|
|
|
2024-07-10 06:14:04 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2025-08-14 11:32:18 +01:00
|
|
|
if( !explorerCommand.EndsWith( "%F" ) )
|
2024-07-10 06:14:04 +00:00
|
|
|
{
|
|
|
|
wxMessageBox( _( "Missing/malformed file explorer argument '%F' in common settings." ) );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
filePath = fileName.GetFullPath();
|
|
|
|
filePath.Replace( wxS( "\"" ), wxS( "_" ) );
|
|
|
|
|
|
|
|
wxString fileArg = '"' + filePath + '"';
|
|
|
|
|
2025-08-14 11:32:18 +01:00
|
|
|
explorerCommand.Replace( wxT( "%F" ), fileArg );
|
2024-07-10 06:14:04 +00:00
|
|
|
|
2025-08-14 11:32:18 +01:00
|
|
|
if( !explorerCommand.IsEmpty() )
|
|
|
|
wxExecute( explorerCommand );
|
2024-07-10 06:14:04 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-02-29 19:01:59 +00:00
|
|
|
int SYMBOL_EDITOR_CONTROL::OpenWithTextEditor( const TOOL_EVENT& aEvent )
|
|
|
|
{
|
2024-06-08 14:00:18 +01:00
|
|
|
if( !m_isSymbolEditor )
|
|
|
|
return 0;
|
2024-02-29 19:01:59 +00:00
|
|
|
|
2024-06-08 14:00:18 +01:00
|
|
|
SYMBOL_EDIT_FRAME* editFrame = getEditFrame<SYMBOL_EDIT_FRAME>();
|
|
|
|
LIB_SYMBOL_LIBRARY_MANAGER& libMgr = editFrame->GetLibManager();
|
|
|
|
wxString textEditorName = Pgm().GetTextEditor();
|
2024-02-29 19:01:59 +00:00
|
|
|
|
2024-06-08 14:00:18 +01:00
|
|
|
if( textEditorName.IsEmpty() )
|
|
|
|
{
|
|
|
|
wxMessageBox( _( "No text editor selected in KiCad. Please choose one." ) );
|
|
|
|
return 0;
|
|
|
|
}
|
2024-02-29 19:01:59 +00:00
|
|
|
|
2024-06-08 14:00:18 +01:00
|
|
|
LIB_ID libId = editFrame->GetTreeLIBID();
|
|
|
|
wxString libName = libId.GetLibNickname();
|
|
|
|
wxString tempFName = libMgr.GetLibrary( libName )->GetFullURI( true ).wc_str();
|
2024-02-29 19:01:59 +00:00
|
|
|
|
2024-06-08 14:00:18 +01:00
|
|
|
if( !tempFName.IsEmpty() )
|
|
|
|
ExecuteFile( textEditorName, tempFName, nullptr, false );
|
2024-02-29 19:01:59 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-12-12 03:13:52 +00:00
|
|
|
int SYMBOL_EDITOR_CONTROL::CutCopyDelete( const TOOL_EVENT& aEvt )
|
2019-06-05 23:29:59 +01:00
|
|
|
{
|
2024-06-08 14:00:18 +01:00
|
|
|
if( !m_isSymbolEditor )
|
|
|
|
return 0;
|
2021-03-14 21:50:20 +00:00
|
|
|
|
2024-06-08 14:00:18 +01:00
|
|
|
SYMBOL_EDIT_FRAME* editFrame = getEditFrame<SYMBOL_EDIT_FRAME>();
|
2022-09-08 22:15:44 -04:00
|
|
|
|
2025-03-12 14:41:25 +00:00
|
|
|
if( aEvt.IsAction( &SCH_ACTIONS::cutSymbol ) || aEvt.IsAction( &SCH_ACTIONS::copySymbol ) )
|
2024-06-08 14:00:18 +01:00
|
|
|
editFrame->CopySymbolToClipboard();
|
2022-09-08 22:15:44 -04:00
|
|
|
|
2025-03-12 14:41:25 +00:00
|
|
|
if( aEvt.IsAction( &SCH_ACTIONS::cutSymbol ) || aEvt.IsAction( &SCH_ACTIONS::deleteSymbol ) )
|
2024-06-08 14:00:18 +01:00
|
|
|
{
|
|
|
|
bool hasWritableLibs = false;
|
|
|
|
wxString msg;
|
2022-09-08 22:15:44 -04:00
|
|
|
|
2024-06-08 14:00:18 +01:00
|
|
|
for( LIB_ID& sel : editFrame->GetSelectedLibIds() )
|
|
|
|
{
|
|
|
|
const wxString& libName = sel.GetLibNickname();
|
2021-03-14 21:50:20 +00:00
|
|
|
|
2025-06-27 22:39:19 -06:00
|
|
|
if( !editFrame->GetLibManager().LibraryExists( libName ) )
|
|
|
|
msg.Printf( _( "Symbol library '%s' not found." ), libName );
|
|
|
|
else if( editFrame->GetLibManager().IsLibraryReadOnly( libName ) )
|
2024-06-08 14:00:18 +01:00
|
|
|
msg.Printf( _( "Symbol library '%s' is not writable." ), libName );
|
|
|
|
else
|
|
|
|
hasWritableLibs = true;
|
2021-03-14 21:50:20 +00:00
|
|
|
}
|
2019-06-05 23:29:59 +01:00
|
|
|
|
2024-06-08 14:00:18 +01:00
|
|
|
if( !msg.IsEmpty() )
|
2022-03-03 15:19:24 -08:00
|
|
|
m_frame->ShowInfoBarError( msg );
|
2021-03-14 21:50:20 +00:00
|
|
|
|
2024-06-08 14:00:18 +01:00
|
|
|
if( !hasWritableLibs )
|
2021-03-14 21:50:20 +00:00
|
|
|
return 0;
|
|
|
|
|
2024-06-08 14:00:18 +01:00
|
|
|
editFrame->DeleteSymbolFromLibrary();
|
2019-06-05 23:29:59 +01:00
|
|
|
}
|
2019-06-01 20:48:01 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-06-08 14:00:18 +01:00
|
|
|
int SYMBOL_EDITOR_CONTROL::DuplicateSymbol( const TOOL_EVENT& aEvent )
|
2023-09-05 22:07:51 +01:00
|
|
|
{
|
2024-06-08 14:00:18 +01:00
|
|
|
if( !m_isSymbolEditor )
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
SYMBOL_EDIT_FRAME* editFrame = getEditFrame<SYMBOL_EDIT_FRAME>();
|
|
|
|
LIB_ID sel = editFrame->GetTargetLibId();
|
|
|
|
// DuplicateSymbol() is called to duplicate a symbol, or to paste a previously
|
|
|
|
// saved symbol in clipboard
|
2025-03-12 14:41:25 +00:00
|
|
|
bool isPasteAction = aEvent.IsAction( &SCH_ACTIONS::pasteSymbol );
|
2024-06-08 14:00:18 +01:00
|
|
|
wxString msg;
|
|
|
|
|
|
|
|
if( !sel.IsValid() && !isPasteAction )
|
2023-09-05 22:07:51 +01:00
|
|
|
{
|
2024-06-08 14:00:18 +01:00
|
|
|
// When duplicating a symbol, a source symbol must exists.
|
|
|
|
msg.Printf( _( "No symbol selected" ) );
|
|
|
|
m_frame->ShowInfoBarError( msg );
|
|
|
|
return 0;
|
2023-09-05 22:07:51 +01:00
|
|
|
}
|
|
|
|
|
2024-06-08 14:00:18 +01:00
|
|
|
const wxString& libName = sel.GetLibNickname();
|
|
|
|
|
2025-06-27 22:39:19 -06:00
|
|
|
if( !editFrame->GetLibManager().LibraryExists( libName ) )
|
|
|
|
{
|
|
|
|
msg.Printf( _( "Symbol library '%s' not found." ), libName );
|
|
|
|
m_frame->ShowInfoBarError( msg );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2024-06-08 14:00:18 +01:00
|
|
|
if( editFrame->GetLibManager().IsLibraryReadOnly( libName ) )
|
2023-09-05 22:07:51 +01:00
|
|
|
{
|
2024-06-08 14:00:18 +01:00
|
|
|
msg.Printf( _( "Symbol library '%s' is not writable." ), libName );
|
|
|
|
m_frame->ShowInfoBarError( msg );
|
|
|
|
return 0;
|
2023-09-05 22:07:51 +01:00
|
|
|
}
|
|
|
|
|
2024-06-08 14:00:18 +01:00
|
|
|
editFrame->DuplicateSymbol( isPasteAction );
|
|
|
|
return 0;
|
|
|
|
}
|
2023-09-05 22:07:51 +01:00
|
|
|
|
|
|
|
|
2022-04-21 11:57:15 +01:00
|
|
|
int SYMBOL_EDITOR_CONTROL::RenameSymbol( const TOOL_EVENT& aEvent )
|
|
|
|
{
|
2024-06-08 14:00:18 +01:00
|
|
|
if( !m_isSymbolEditor )
|
|
|
|
return 0;
|
2022-04-21 11:57:15 +01:00
|
|
|
|
2024-06-08 14:00:18 +01:00
|
|
|
SYMBOL_EDIT_FRAME* editFrame = getEditFrame<SYMBOL_EDIT_FRAME>();
|
|
|
|
LIB_SYMBOL_LIBRARY_MANAGER& libMgr = editFrame->GetLibManager();
|
|
|
|
LIBRARY_EDITOR_CONTROL* libTool = m_toolMgr->GetTool<LIBRARY_EDITOR_CONTROL>();
|
2022-04-21 11:57:15 +01:00
|
|
|
|
2024-06-08 14:00:18 +01:00
|
|
|
LIB_ID libId = editFrame->GetTreeLIBID();
|
|
|
|
wxString libName = libId.GetLibNickname();
|
|
|
|
wxString oldName = libId.GetLibItemName();
|
|
|
|
wxString newName;
|
|
|
|
wxString msg;
|
2022-04-21 11:57:15 +01:00
|
|
|
|
2024-06-08 14:00:18 +01:00
|
|
|
if( !libMgr.LibraryExists( libName ) )
|
|
|
|
return 0;
|
2022-04-21 11:57:15 +01:00
|
|
|
|
2024-06-08 14:00:18 +01:00
|
|
|
if( !libTool->RenameLibrary( _( "Change Symbol Name" ), oldName,
|
|
|
|
[&]( const wxString& aNewName )
|
|
|
|
{
|
|
|
|
newName = EscapeString( aNewName, CTX_LIBID );
|
2022-04-21 11:57:15 +01:00
|
|
|
|
2024-06-08 14:00:18 +01:00
|
|
|
if( newName.IsEmpty() )
|
|
|
|
{
|
|
|
|
wxMessageBox( _( "Symbol must have a name." ) );
|
|
|
|
return false;
|
|
|
|
}
|
2022-04-21 11:57:15 +01:00
|
|
|
|
2025-01-22 19:16:39 +08:00
|
|
|
// If no change, accept it without prompting
|
2025-01-25 18:50:09 +00:00
|
|
|
if( newName != oldName && libMgr.SymbolNameInUse( newName, libName ) )
|
2024-06-08 14:00:18 +01:00
|
|
|
{
|
2025-01-25 18:50:09 +00:00
|
|
|
msg.Printf( _( "Symbol '%s' already exists in library '%s'." ),
|
|
|
|
UnescapeString( newName ),
|
|
|
|
libName );
|
2023-09-05 22:07:51 +01:00
|
|
|
|
2024-06-08 14:00:18 +01:00
|
|
|
KIDIALOG errorDlg( m_frame, msg, _( "Confirmation" ),
|
|
|
|
wxOK | wxCANCEL | wxICON_WARNING );
|
2025-01-25 18:50:09 +00:00
|
|
|
|
2024-06-08 14:00:18 +01:00
|
|
|
errorDlg.SetOKLabel( _( "Overwrite" ) );
|
2023-09-05 22:07:51 +01:00
|
|
|
|
2024-06-08 14:00:18 +01:00
|
|
|
return errorDlg.ShowModal() == wxID_OK;
|
|
|
|
}
|
2022-04-21 11:57:15 +01:00
|
|
|
|
2024-06-08 14:00:18 +01:00
|
|
|
return true;
|
|
|
|
} ) )
|
|
|
|
{
|
|
|
|
return 0; // cancelled by user
|
|
|
|
}
|
2022-04-21 11:57:15 +01:00
|
|
|
|
2025-01-22 19:16:39 +08:00
|
|
|
if( newName == oldName )
|
|
|
|
return 0;
|
|
|
|
|
2024-06-08 14:00:18 +01:00
|
|
|
LIB_SYMBOL* libSymbol = libMgr.GetBufferedSymbol( oldName, libName );
|
2023-09-13 15:26:29 +01:00
|
|
|
|
2024-06-08 14:00:18 +01:00
|
|
|
if( !libSymbol )
|
|
|
|
return 0;
|
2022-04-21 11:57:15 +01:00
|
|
|
|
2025-01-22 18:47:37 +08:00
|
|
|
// Renaming the current symbol
|
|
|
|
const bool isCurrentSymbol = editFrame->IsCurrentSymbol( libId );
|
|
|
|
bool overwritingCurrentSymbol = false;
|
|
|
|
|
|
|
|
if( libMgr.SymbolExists( newName, libName ) )
|
|
|
|
{
|
|
|
|
// Overwriting the current symbol also need to update the open symbol
|
|
|
|
LIB_SYMBOL* const overwrittenSymbol = libMgr.GetBufferedSymbol( newName, libName );
|
|
|
|
overwritingCurrentSymbol = editFrame->IsCurrentSymbol( overwrittenSymbol->GetLibId() );
|
|
|
|
libMgr.RemoveSymbol( newName, libName );
|
|
|
|
}
|
|
|
|
|
2024-06-08 14:00:18 +01:00
|
|
|
libSymbol->SetName( newName );
|
2022-04-21 11:57:15 +01:00
|
|
|
|
2025-02-08 13:45:57 +00:00
|
|
|
if( libSymbol->GetValueField().GetText() == oldName )
|
|
|
|
libSymbol->GetValueField().SetText( newName );
|
2022-04-21 11:57:15 +01:00
|
|
|
|
2024-06-08 14:00:18 +01:00
|
|
|
libMgr.UpdateSymbolAfterRename( libSymbol, newName, libName );
|
|
|
|
libMgr.SetSymbolModified( newName, libName );
|
2022-04-21 11:57:15 +01:00
|
|
|
|
2025-01-22 18:47:37 +08:00
|
|
|
if( overwritingCurrentSymbol )
|
|
|
|
{
|
|
|
|
// We overwrite the old current symbol with the renamed one, so show
|
|
|
|
// the renamed one now
|
|
|
|
editFrame->SetCurSymbol( new LIB_SYMBOL( *libSymbol ), false );
|
|
|
|
}
|
|
|
|
else if( isCurrentSymbol && editFrame->GetCurSymbol() )
|
2024-06-08 14:00:18 +01:00
|
|
|
{
|
2025-01-22 18:47:37 +08:00
|
|
|
// Renamed the current symbol - follow it
|
2024-06-08 14:00:18 +01:00
|
|
|
libSymbol = editFrame->GetCurSymbol();
|
2023-09-12 15:50:35 +01:00
|
|
|
|
2024-06-08 14:00:18 +01:00
|
|
|
libSymbol->SetName( newName );
|
2022-04-21 11:57:15 +01:00
|
|
|
|
2025-02-08 13:45:57 +00:00
|
|
|
if( libSymbol->GetValueField().GetText() == oldName )
|
|
|
|
libSymbol->GetValueField().SetText( newName );
|
2022-04-21 11:57:15 +01:00
|
|
|
|
2024-06-08 14:00:18 +01:00
|
|
|
editFrame->RebuildView();
|
|
|
|
editFrame->OnModify();
|
|
|
|
editFrame->UpdateTitle();
|
2022-04-21 11:57:15 +01:00
|
|
|
|
2024-06-08 14:00:18 +01:00
|
|
|
// N.B. The view needs to be rebuilt first as the Symbol Properties change may
|
|
|
|
// invalidate the view pointers by rebuilting the field table
|
|
|
|
editFrame->UpdateMsgPanel();
|
2022-04-21 11:57:15 +01:00
|
|
|
}
|
|
|
|
|
2024-06-08 14:00:18 +01:00
|
|
|
wxDataViewItem treeItem = libMgr.GetAdapter()->FindItem( libId );
|
|
|
|
editFrame->UpdateLibraryTree( treeItem, libSymbol );
|
|
|
|
editFrame->FocusOnLibId( LIB_ID( libName, newName ) );
|
2022-04-21 11:57:15 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-07-26 18:32:06 -04:00
|
|
|
int SYMBOL_EDITOR_CONTROL::ToggleProperties( const TOOL_EVENT& aEvent )
|
|
|
|
{
|
|
|
|
if( m_frame->IsType( FRAME_SCH_SYMBOL_EDITOR ) )
|
|
|
|
getEditFrame<SYMBOL_EDIT_FRAME>()->ToggleProperties();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-12-12 03:13:52 +00:00
|
|
|
int SYMBOL_EDITOR_CONTROL::ShowElectricalTypes( const TOOL_EVENT& aEvent )
|
2019-05-13 22:49:05 +01:00
|
|
|
{
|
2024-04-02 18:28:17 +01:00
|
|
|
SCH_RENDER_SETTINGS* renderSettings = m_frame->GetRenderSettings();
|
2020-05-23 00:11:04 +01:00
|
|
|
renderSettings->m_ShowPinsElectricalType = !renderSettings->m_ShowPinsElectricalType;
|
2019-05-14 20:21:10 +01:00
|
|
|
|
|
|
|
// Update canvas
|
|
|
|
m_frame->GetCanvas()->GetView()->UpdateAllItems( KIGFX::REPAINT );
|
|
|
|
m_frame->GetCanvas()->Refresh();
|
2019-05-13 22:49:05 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-09-06 17:28:44 +01:00
|
|
|
int SYMBOL_EDITOR_CONTROL::ShowPinNumbers( const TOOL_EVENT& aEvent )
|
|
|
|
{
|
2024-04-02 18:28:17 +01:00
|
|
|
SCH_RENDER_SETTINGS* renderSettings = m_frame->GetRenderSettings();
|
2022-09-06 17:28:44 +01:00
|
|
|
renderSettings->m_ShowPinNumbers = !renderSettings->m_ShowPinNumbers;
|
|
|
|
|
|
|
|
// Update canvas
|
|
|
|
m_frame->GetCanvas()->GetView()->UpdateAllItems( KIGFX::REPAINT );
|
|
|
|
m_frame->GetCanvas()->Refresh();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-12-12 03:13:52 +00:00
|
|
|
int SYMBOL_EDITOR_CONTROL::ToggleSyncedPinsMode( const TOOL_EVENT& aEvent )
|
2019-06-16 19:51:47 +01:00
|
|
|
{
|
2020-10-31 01:27:16 +00:00
|
|
|
if( !m_isSymbolEditor )
|
2019-06-16 19:51:47 +01:00
|
|
|
return 0;
|
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
SYMBOL_EDIT_FRAME* editFrame = getEditFrame<SYMBOL_EDIT_FRAME>();
|
2019-06-16 19:51:47 +01:00
|
|
|
editFrame->m_SyncPinEdit = !editFrame->m_SyncPinEdit;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-04-08 12:26:56 +01:00
|
|
|
int SYMBOL_EDITOR_CONTROL::ToggleHiddenPins( const TOOL_EVENT& aEvent )
|
2024-01-21 11:22:27 +01:00
|
|
|
{
|
2024-06-08 14:00:18 +01:00
|
|
|
if( !m_isSymbolEditor )
|
|
|
|
return 0;
|
|
|
|
|
2024-10-01 21:44:50 +01:00
|
|
|
SYMBOL_EDITOR_SETTINGS* cfg = m_frame->libeditconfig();
|
|
|
|
cfg->m_ShowHiddenPins = !cfg->m_ShowHiddenPins;
|
|
|
|
|
|
|
|
getEditFrame<SYMBOL_EDIT_FRAME>()->GetRenderSettings()->m_ShowHiddenPins =
|
|
|
|
cfg->m_ShowHiddenPins;
|
2024-01-21 11:22:27 +01:00
|
|
|
|
|
|
|
getView()->UpdateAllItems( KIGFX::REPAINT );
|
2024-10-01 21:44:50 +01:00
|
|
|
m_frame->GetCanvas()->Refresh();
|
2024-01-21 11:22:27 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-04-08 12:26:56 +01:00
|
|
|
int SYMBOL_EDITOR_CONTROL::ToggleHiddenFields( const TOOL_EVENT& aEvent )
|
2024-01-21 11:22:27 +01:00
|
|
|
{
|
2024-06-08 14:00:18 +01:00
|
|
|
if( !m_isSymbolEditor )
|
|
|
|
return 0;
|
|
|
|
|
2024-10-01 21:44:50 +01:00
|
|
|
SYMBOL_EDITOR_SETTINGS* cfg = m_frame->libeditconfig();
|
|
|
|
cfg->m_ShowHiddenFields = !cfg->m_ShowHiddenFields;
|
|
|
|
|
|
|
|
// TODO: Why is this needed in symbol edit and not in schematic edit?
|
|
|
|
getEditFrame<SYMBOL_EDIT_FRAME>()->GetRenderSettings()->m_ShowHiddenFields =
|
|
|
|
cfg->m_ShowHiddenFields;
|
2024-01-21 11:22:27 +01:00
|
|
|
|
|
|
|
getView()->UpdateAllItems( KIGFX::REPAINT );
|
2024-10-01 21:44:50 +01:00
|
|
|
m_frame->GetCanvas()->Refresh();
|
2024-01-21 11:22:27 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-10-09 21:27:58 -06:00
|
|
|
int SYMBOL_EDITOR_CONTROL::TogglePinAltIcons( const TOOL_EVENT& aEvent )
|
|
|
|
{
|
|
|
|
if( !m_isSymbolEditor )
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
SYMBOL_EDITOR_SETTINGS& cfg = *m_frame->libeditconfig();
|
|
|
|
cfg.m_ShowPinAltIcons = !cfg.m_ShowPinAltIcons;
|
|
|
|
|
|
|
|
m_frame->GetRenderSettings()->m_ShowPinAltIcons = cfg.m_ShowPinAltIcons;
|
|
|
|
|
|
|
|
getView()->UpdateAllItems( KIGFX::REPAINT );
|
|
|
|
m_frame->GetCanvas()->Refresh();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-12-12 03:13:52 +00:00
|
|
|
int SYMBOL_EDITOR_CONTROL::ExportView( const TOOL_EVENT& aEvent )
|
2019-06-16 17:07:15 +01:00
|
|
|
{
|
2020-10-31 01:27:16 +00:00
|
|
|
if( !m_isSymbolEditor )
|
2019-06-16 17:07:15 +01:00
|
|
|
return 0;
|
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
SYMBOL_EDIT_FRAME* editFrame = getEditFrame<SYMBOL_EDIT_FRAME>();
|
2021-06-15 08:31:28 -04:00
|
|
|
LIB_SYMBOL* symbol = editFrame->GetCurSymbol();
|
2019-06-16 17:07:15 +01:00
|
|
|
|
2021-06-10 14:51:46 -04:00
|
|
|
if( !symbol )
|
2019-06-16 17:07:15 +01:00
|
|
|
{
|
|
|
|
wxMessageBox( _( "No symbol to export" ) );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-06-10 14:51:46 -04:00
|
|
|
wxFileName fn( symbol->GetName() );
|
2019-06-16 17:07:15 +01:00
|
|
|
fn.SetExt( "png" );
|
|
|
|
|
|
|
|
wxString projectPath = wxPathOnly( m_frame->Prj().GetProjectFullName() );
|
|
|
|
|
2023-10-23 18:01:04 +01:00
|
|
|
wxFileDialog dlg( editFrame, _( "Export View as PNG" ), projectPath, fn.GetFullName(),
|
2023-12-27 21:10:01 -05:00
|
|
|
FILEEXT::PngFileWildcard(), wxFD_SAVE | wxFD_OVERWRITE_PROMPT );
|
2019-06-16 17:07:15 +01:00
|
|
|
|
|
|
|
if( dlg.ShowModal() == wxID_OK && !dlg.GetPath().IsEmpty() )
|
|
|
|
{
|
|
|
|
// calling wxYield is mandatory under Linux, after closing the file selector dialog
|
|
|
|
// to refresh the screen before creating the PNG or JPEG image from screen
|
|
|
|
wxYield();
|
|
|
|
|
2023-10-16 18:24:53 -04:00
|
|
|
if( !editFrame->SaveCanvasImageToFile( dlg.GetPath(), BITMAP_TYPE::PNG ) )
|
2019-06-16 17:07:15 +01:00
|
|
|
{
|
2021-06-29 00:44:07 +01:00
|
|
|
wxMessageBox( wxString::Format( _( "Can't save file '%s'." ), dlg.GetPath() ) );
|
2019-06-16 17:07:15 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2025-03-03 12:36:36 +00:00
|
|
|
int SYMBOL_EDITOR_CONTROL::ExportSymbol( const TOOL_EVENT& aEvent )
|
|
|
|
{
|
|
|
|
if( m_frame->IsType( FRAME_SCH_SYMBOL_EDITOR ) )
|
|
|
|
static_cast<SYMBOL_EDIT_FRAME*>( m_frame )->ExportSymbol();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-12-12 03:13:52 +00:00
|
|
|
int SYMBOL_EDITOR_CONTROL::ExportSymbolAsSVG( const TOOL_EVENT& aEvent )
|
2019-06-16 17:07:15 +01:00
|
|
|
{
|
2020-10-31 01:27:16 +00:00
|
|
|
if( !m_isSymbolEditor )
|
2019-06-16 17:07:15 +01:00
|
|
|
return 0;
|
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
SYMBOL_EDIT_FRAME* editFrame = getEditFrame<SYMBOL_EDIT_FRAME>();
|
2021-06-15 08:31:28 -04:00
|
|
|
LIB_SYMBOL* symbol = editFrame->GetCurSymbol();
|
2019-06-16 17:07:15 +01:00
|
|
|
|
2021-06-10 14:51:46 -04:00
|
|
|
if( !symbol )
|
2019-06-16 17:07:15 +01:00
|
|
|
{
|
|
|
|
wxMessageBox( _( "No symbol to export" ) );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-06-10 14:51:46 -04:00
|
|
|
wxFileName fn( symbol->GetName() );
|
2023-12-27 21:10:01 -05:00
|
|
|
fn.SetExt( FILEEXT::SVGFileExtension );
|
2019-06-16 17:07:15 +01:00
|
|
|
|
|
|
|
wxString pro_dir = wxPathOnly( m_frame->Prj().GetProjectFullName() );
|
|
|
|
|
2021-07-28 13:25:40 -04:00
|
|
|
wxString fullFileName = wxFileSelector( _( "SVG File Name" ), pro_dir, fn.GetFullName(),
|
2023-12-27 21:10:01 -05:00
|
|
|
FILEEXT::SVGFileExtension, FILEEXT::SVGFileWildcard(),
|
|
|
|
wxFD_SAVE,
|
2021-07-28 13:25:40 -04:00
|
|
|
m_frame );
|
2019-06-16 17:07:15 +01:00
|
|
|
|
|
|
|
if( !fullFileName.IsEmpty() )
|
|
|
|
{
|
|
|
|
PAGE_INFO pageSave = editFrame->GetScreen()->GetPageSettings();
|
|
|
|
PAGE_INFO pageTemp = pageSave;
|
|
|
|
|
2022-12-23 16:31:35 +01:00
|
|
|
BOX2I symbolBBox = symbol->GetUnitBoundingBox( editFrame->GetUnit(),
|
2024-01-26 16:16:13 +00:00
|
|
|
editFrame->GetBodyStyle(), false );
|
2019-06-16 17:07:15 +01:00
|
|
|
|
2022-12-23 16:31:35 +01:00
|
|
|
// Add a small margin (10% of size)to the plot bounding box
|
|
|
|
symbolBBox.Inflate( symbolBBox.GetSize().x * 0.1, symbolBBox.GetSize().y * 0.1 );
|
|
|
|
|
|
|
|
pageTemp.SetWidthMils( schIUScale.IUToMils( symbolBBox.GetSize().x ) );
|
|
|
|
pageTemp.SetHeightMils( schIUScale.IUToMils( symbolBBox.GetSize().y ) );
|
|
|
|
|
|
|
|
// Add an offet to plot the symbol centered on the page.
|
|
|
|
VECTOR2I plot_offset = symbolBBox.GetOrigin();
|
2019-06-16 17:07:15 +01:00
|
|
|
|
|
|
|
editFrame->GetScreen()->SetPageSettings( pageTemp );
|
2022-12-23 16:31:35 +01:00
|
|
|
editFrame->SVGPlotSymbol( fullFileName, -plot_offset );
|
2019-06-16 17:07:15 +01:00
|
|
|
editFrame->GetScreen()->SetPageSettings( pageSave );
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2025-09-02 23:29:22 +08:00
|
|
|
int SYMBOL_EDITOR_CONTROL::FlattenSymbol( const TOOL_EVENT& aEvent )
|
|
|
|
{
|
|
|
|
if( !m_isSymbolEditor )
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
SYMBOL_EDIT_FRAME* editFrame = getEditFrame<SYMBOL_EDIT_FRAME>();
|
|
|
|
LIB_SYMBOL_LIBRARY_MANAGER& libMgr = editFrame->GetLibManager();
|
|
|
|
LIB_ID symId = editFrame->GetTargetLibId();
|
|
|
|
|
|
|
|
if( !symId.IsValid() )
|
|
|
|
{
|
|
|
|
wxMessageBox( _( "No symbol to flatten" ) );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
const LIB_SYMBOL* symbol = libMgr.GetBufferedSymbol( symId.GetLibItemName(), symId.GetLibNickname() );
|
|
|
|
std::unique_ptr<LIB_SYMBOL> flatSymbol = symbol->Flatten();
|
|
|
|
wxCHECK_MSG( flatSymbol, 0, _( "Failed to flatten symbol" ) );
|
|
|
|
|
|
|
|
if( !libMgr.UpdateSymbol( flatSymbol.get(), symId.GetLibNickname() ) )
|
|
|
|
{
|
|
|
|
wxMessageBox( _( "Failed to update library with flattened symbol" ) );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
wxDataViewItem treeItem = libMgr.GetAdapter()->FindItem( symId );
|
|
|
|
editFrame->UpdateLibraryTree( treeItem, flatSymbol.get() );
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-12-12 03:13:52 +00:00
|
|
|
int SYMBOL_EDITOR_CONTROL::AddSymbolToSchematic( const TOOL_EVENT& aEvent )
|
2019-06-16 19:51:47 +01:00
|
|
|
{
|
2021-06-10 14:51:46 -04:00
|
|
|
LIB_SYMBOL* libSymbol = nullptr;
|
|
|
|
LIB_ID libId;
|
2024-01-26 16:16:13 +00:00
|
|
|
int unit, bodyStyle;
|
2019-06-16 19:51:47 +01:00
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
if( m_isSymbolEditor )
|
2019-06-16 19:51:47 +01:00
|
|
|
{
|
2020-10-31 01:27:16 +00:00
|
|
|
SYMBOL_EDIT_FRAME* editFrame = getEditFrame<SYMBOL_EDIT_FRAME>();
|
2019-06-16 19:51:47 +01:00
|
|
|
|
2021-06-15 08:31:28 -04:00
|
|
|
libSymbol = editFrame->GetCurSymbol();
|
2024-01-26 16:16:13 +00:00
|
|
|
unit = editFrame->GetUnit();
|
|
|
|
bodyStyle = editFrame->GetBodyStyle();
|
2019-06-16 19:51:47 +01:00
|
|
|
|
2021-06-10 14:51:46 -04:00
|
|
|
if( libSymbol )
|
|
|
|
libId = libSymbol->GetLibId();
|
2019-06-16 19:51:47 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-12-25 23:37:01 +00:00
|
|
|
SYMBOL_VIEWER_FRAME* viewerFrame = getEditFrame<SYMBOL_VIEWER_FRAME>();
|
2019-06-16 19:51:47 +01:00
|
|
|
|
2023-09-28 18:18:19 +01:00
|
|
|
libSymbol = viewerFrame->GetSelectedSymbol();
|
|
|
|
unit = viewerFrame->GetUnit();
|
2024-01-26 16:16:13 +00:00
|
|
|
bodyStyle = viewerFrame->GetBodyStyle();
|
2020-01-13 14:38:55 +00:00
|
|
|
|
2023-09-28 18:18:19 +01:00
|
|
|
if( libSymbol )
|
|
|
|
libId = libSymbol->GetLibId();
|
2019-06-16 19:51:47 +01:00
|
|
|
}
|
|
|
|
|
2021-06-10 14:51:46 -04:00
|
|
|
if( libSymbol )
|
2019-06-16 19:51:47 +01:00
|
|
|
{
|
|
|
|
SCH_EDIT_FRAME* schframe = (SCH_EDIT_FRAME*) m_frame->Kiway().Player( FRAME_SCH, false );
|
|
|
|
|
|
|
|
if( !schframe ) // happens when the schematic editor is not active (or closed)
|
|
|
|
{
|
|
|
|
DisplayErrorMessage( m_frame, _( "No schematic currently open." ) );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-07-12 14:44:53 -07:00
|
|
|
wxWindow* blocking_dialog = schframe->Kiway().GetBlockingDialog();
|
|
|
|
|
|
|
|
if( blocking_dialog )
|
2023-05-24 10:28:46 +01:00
|
|
|
{
|
|
|
|
blocking_dialog->Raise();
|
|
|
|
wxBell();
|
|
|
|
return 0;
|
|
|
|
}
|
2022-07-12 14:44:53 -07:00
|
|
|
|
2021-06-10 14:51:46 -04:00
|
|
|
SCH_SYMBOL* symbol = new SCH_SYMBOL( *libSymbol, libId, &schframe->GetCurrentSheet(),
|
2024-01-26 16:16:13 +00:00
|
|
|
unit, bodyStyle );
|
2019-06-16 19:51:47 +01:00
|
|
|
|
2021-03-18 11:46:07 +00:00
|
|
|
symbol->SetParent( schframe->GetScreen() );
|
2020-05-19 13:24:57 -04:00
|
|
|
|
2020-04-13 00:09:17 +01:00
|
|
|
if( schframe->eeconfig()->m_AutoplaceFields.enable )
|
2024-12-23 14:19:43 +00:00
|
|
|
{
|
|
|
|
// Not placed yet, so pass a nullptr screen reference
|
|
|
|
symbol->AutoplaceFields( nullptr, AUTOPLACE_AUTO );
|
|
|
|
}
|
2019-06-16 19:51:47 +01:00
|
|
|
|
|
|
|
schframe->Raise();
|
2025-03-12 14:41:25 +00:00
|
|
|
schframe->GetToolManager()->PostAction( SCH_ACTIONS::placeSymbol,
|
|
|
|
SCH_ACTIONS::PLACE_SYMBOL_PARAMS{ symbol, true } );
|
2019-06-16 19:51:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-10-01 16:05:04 +01:00
|
|
|
int SYMBOL_EDITOR_CONTROL::ChangeUnit( const TOOL_EVENT& aEvent )
|
|
|
|
{
|
|
|
|
if( !m_isSymbolEditor )
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
SYMBOL_EDIT_FRAME* editFrame = getEditFrame<SYMBOL_EDIT_FRAME>();
|
|
|
|
const int deltaUnit = aEvent.Parameter<int>();
|
|
|
|
|
|
|
|
const int nUnits = editFrame->GetCurSymbol()->GetUnitCount();
|
|
|
|
const int newUnit = ( ( editFrame->GetUnit() - 1 + deltaUnit + nUnits ) % nUnits ) + 1;
|
|
|
|
|
|
|
|
editFrame->SetUnit( newUnit );
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-08-30 16:03:06 -07:00
|
|
|
int SYMBOL_EDITOR_CONTROL::ShowLibraryTable( const TOOL_EVENT& aEvent )
|
|
|
|
{
|
2025-09-06 00:05:27 +01:00
|
|
|
DIALOG_LIB_FIELDS_TABLE::SCOPE scope = DIALOG_LIB_FIELDS_TABLE::SCOPE_LIBRARY;
|
2025-09-03 00:26:59 +08:00
|
|
|
|
2025-09-06 00:05:27 +01:00
|
|
|
if( aEvent.IsAction( &ACTIONS::showRelatedLibraryFieldsTable ) )
|
|
|
|
scope = DIALOG_LIB_FIELDS_TABLE::SCOPE_RELATED_SYMBOLS;
|
2024-08-30 16:03:06 -07:00
|
|
|
|
2025-09-06 00:05:27 +01:00
|
|
|
DIALOG_LIB_FIELDS_TABLE dlg( getEditFrame<SYMBOL_EDIT_FRAME>(), scope );
|
2025-09-02 18:28:23 +08:00
|
|
|
|
2024-08-30 16:03:06 -07:00
|
|
|
dlg.ShowModal();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-12-12 03:13:52 +00:00
|
|
|
void SYMBOL_EDITOR_CONTROL::setTransitions()
|
2019-05-13 22:49:05 +01:00
|
|
|
{
|
2024-10-01 16:05:04 +01:00
|
|
|
// clang-format off
|
2020-12-12 03:13:52 +00:00
|
|
|
Go( &SYMBOL_EDITOR_CONTROL::AddLibrary, ACTIONS::newLibrary.MakeEvent() );
|
|
|
|
Go( &SYMBOL_EDITOR_CONTROL::AddLibrary, ACTIONS::addLibrary.MakeEvent() );
|
2025-03-12 14:41:25 +00:00
|
|
|
Go( &SYMBOL_EDITOR_CONTROL::AddSymbol, SCH_ACTIONS::newSymbol.MakeEvent() );
|
|
|
|
Go( &SYMBOL_EDITOR_CONTROL::AddSymbol, SCH_ACTIONS::deriveFromExistingSymbol.MakeEvent() );
|
|
|
|
Go( &SYMBOL_EDITOR_CONTROL::AddSymbol, SCH_ACTIONS::importSymbol.MakeEvent() );
|
|
|
|
Go( &SYMBOL_EDITOR_CONTROL::EditSymbol, SCH_ACTIONS::editSymbol.MakeEvent() );
|
|
|
|
Go( &SYMBOL_EDITOR_CONTROL::EditLibrarySymbol, SCH_ACTIONS::editLibSymbolWithLibEdit.MakeEvent() );
|
2020-12-12 03:13:52 +00:00
|
|
|
|
2022-09-14 22:28:09 +00:00
|
|
|
Go( &SYMBOL_EDITOR_CONTROL::DdAddLibrary, ACTIONS::ddAddLibrary.MakeEvent() );
|
|
|
|
|
2020-12-12 03:13:52 +00:00
|
|
|
Go( &SYMBOL_EDITOR_CONTROL::Save, ACTIONS::save.MakeEvent() );
|
2025-03-12 14:41:25 +00:00
|
|
|
Go( &SYMBOL_EDITOR_CONTROL::Save, SCH_ACTIONS::saveLibraryAs.MakeEvent() );
|
|
|
|
Go( &SYMBOL_EDITOR_CONTROL::Save, SCH_ACTIONS::saveSymbolAs.MakeEvent() );
|
|
|
|
Go( &SYMBOL_EDITOR_CONTROL::Save, SCH_ACTIONS::saveSymbolCopyAs.MakeEvent() );
|
2020-12-12 03:13:52 +00:00
|
|
|
Go( &SYMBOL_EDITOR_CONTROL::Save, ACTIONS::saveAll.MakeEvent() );
|
|
|
|
Go( &SYMBOL_EDITOR_CONTROL::Revert, ACTIONS::revert.MakeEvent() );
|
|
|
|
|
2025-03-12 14:41:25 +00:00
|
|
|
Go( &SYMBOL_EDITOR_CONTROL::DuplicateSymbol, SCH_ACTIONS::duplicateSymbol.MakeEvent() );
|
|
|
|
Go( &SYMBOL_EDITOR_CONTROL::RenameSymbol, SCH_ACTIONS::renameSymbol.MakeEvent() );
|
|
|
|
Go( &SYMBOL_EDITOR_CONTROL::CutCopyDelete, SCH_ACTIONS::deleteSymbol.MakeEvent() );
|
|
|
|
Go( &SYMBOL_EDITOR_CONTROL::CutCopyDelete, SCH_ACTIONS::cutSymbol.MakeEvent() );
|
|
|
|
Go( &SYMBOL_EDITOR_CONTROL::CutCopyDelete, SCH_ACTIONS::copySymbol.MakeEvent() );
|
|
|
|
Go( &SYMBOL_EDITOR_CONTROL::DuplicateSymbol, SCH_ACTIONS::pasteSymbol.MakeEvent() );
|
|
|
|
Go( &SYMBOL_EDITOR_CONTROL::ExportSymbol, SCH_ACTIONS::exportSymbol.MakeEvent() );
|
2024-07-10 06:14:04 +00:00
|
|
|
|
2025-09-02 23:29:22 +08:00
|
|
|
Go( &SYMBOL_EDITOR_CONTROL::FlattenSymbol, SCH_ACTIONS::flattenSymbol.MakeEvent() );
|
|
|
|
|
2024-06-08 14:00:18 +01:00
|
|
|
Go( &SYMBOL_EDITOR_CONTROL::OpenWithTextEditor, ACTIONS::openWithTextEditor.MakeEvent() );
|
2024-07-10 06:14:04 +00:00
|
|
|
Go( &SYMBOL_EDITOR_CONTROL::OpenDirectory, ACTIONS::openDirectory.MakeEvent() );
|
|
|
|
|
2025-03-12 14:41:25 +00:00
|
|
|
Go( &SYMBOL_EDITOR_CONTROL::ExportView, SCH_ACTIONS::exportSymbolView.MakeEvent() );
|
|
|
|
Go( &SYMBOL_EDITOR_CONTROL::ExportSymbolAsSVG, SCH_ACTIONS::exportSymbolAsSVG.MakeEvent() );
|
|
|
|
Go( &SYMBOL_EDITOR_CONTROL::AddSymbolToSchematic, SCH_ACTIONS::addSymbolToSchematic.MakeEvent() );
|
2020-12-12 03:13:52 +00:00
|
|
|
|
2025-03-12 14:41:25 +00:00
|
|
|
Go( &SYMBOL_EDITOR_CONTROL::ShowElectricalTypes, SCH_ACTIONS::showElectricalTypes.MakeEvent() );
|
|
|
|
Go( &SYMBOL_EDITOR_CONTROL::ShowPinNumbers, SCH_ACTIONS::showPinNumbers.MakeEvent() );
|
|
|
|
Go( &SYMBOL_EDITOR_CONTROL::ToggleSyncedPinsMode, SCH_ACTIONS::toggleSyncedPinsMode.MakeEvent() );
|
2024-01-21 11:22:27 +01:00
|
|
|
|
2023-07-26 18:32:06 -04:00
|
|
|
Go( &SYMBOL_EDITOR_CONTROL::ToggleProperties, ACTIONS::showProperties.MakeEvent() );
|
2025-03-12 14:41:25 +00:00
|
|
|
Go( &SYMBOL_EDITOR_CONTROL::ToggleHiddenPins, SCH_ACTIONS::showHiddenPins.MakeEvent() );
|
|
|
|
Go( &SYMBOL_EDITOR_CONTROL::ToggleHiddenFields, SCH_ACTIONS::showHiddenFields.MakeEvent() );
|
|
|
|
Go( &SYMBOL_EDITOR_CONTROL::TogglePinAltIcons, SCH_ACTIONS::togglePinAltIcons.MakeEvent() );
|
2024-10-01 16:05:04 +01:00
|
|
|
|
2025-09-06 00:05:27 +01:00
|
|
|
Go( &SYMBOL_EDITOR_CONTROL::ShowLibraryTable, ACTIONS::showLibraryFieldsTable.MakeEvent() );
|
|
|
|
Go( &SYMBOL_EDITOR_CONTROL::ShowLibraryTable, ACTIONS::showRelatedLibraryFieldsTable.MakeEvent() );
|
2024-08-30 16:03:06 -07:00
|
|
|
|
2025-03-12 14:41:25 +00:00
|
|
|
Go( &SYMBOL_EDITOR_CONTROL::ChangeUnit, SCH_ACTIONS::previousUnit.MakeEvent() );
|
|
|
|
Go( &SYMBOL_EDITOR_CONTROL::ChangeUnit, SCH_ACTIONS::nextUnit.MakeEvent() );
|
2024-10-01 16:05:04 +01:00
|
|
|
// clang-format on
|
2019-05-13 22:49:05 +01:00
|
|
|
}
|