43#include <wx/clipbrd.h>
44#include <wx/filedlg.h>
58 SetTitle(
_(
"Symbol Editor" ) );
86 if(
m_libMgr->IsLibraryReadOnly( libName ) )
88 wxString msg = wxString::Format(
_(
"Symbol library '%s' is not writable." ),
90 wxString msg2 =
_(
"You must save to a different location." );
118 if( type == SCH_IO_MGR::SCH_DATABASE
119 || type == SCH_IO_MGR::SCH_CADSTAR_ARCHIVE
120 || type == SCH_IO_MGR::SCH_HTTP )
133 msg.Printf(
_(
"Error loading symbol %s from library '%s'." ),
165 m_treePane->GetLibTree()->SelectLibId( libId );
166 m_treePane->GetLibTree()->ExpandLibId( libId );
199 msg.Printf(
_(
"Error loading symbol %s from library '%s'." ),
222 bool rebuildMenuAndToolbar =
false;
224 if( !aEntry || aLibrary.empty() )
227 if( aEntry->
GetName().IsEmpty() )
229 wxLogWarning(
"Symbol in library '%s' has empty name field.", aLibrary );
238 rebuildMenuAndToolbar =
true;
241 wxCHECK( lib_symbol,
false );
243 m_unit = aUnit > 0 ? aUnit : 1;
247 bool wasCreated =
false;
251 wxCHECK( ctx,
false );
253 if( rebuildMenuAndToolbar )
297 if( !
m_libMgr->LibraryExists( lib ) )
299 lib =
SelectLibrary(
_(
"New Symbol" ),
_(
"Create symbol in library:" ) );
301 if( !
m_libMgr->LibraryExists( lib ) )
306 [&]( wxString newName ) ->
bool
308 if( newName.IsEmpty() )
310 wxMessageBox(
_(
"Symbol must have a name." ) );
314 if( !lib.empty() &&
m_libMgr->SymbolNameInUse( newName, lib ) )
318 msg.Printf(
_(
"Symbol '%s' already exists in library '%s'." ),
322 KIDIALOG errorDlg(
this, msg,
_(
"Confirmation" ),
323 wxOK | wxCANCEL | wxICON_WARNING );
325 errorDlg.SetOKLabel(
_(
"Overwrite" ) );
333 wxArrayString symbolNamesInLib;
334 m_libMgr->GetSymbolNames( lib, symbolNamesInLib );
338 dlg.SetMinSize( dlg.GetSize() );
363 m_libMgr->CreateNewSymbol( lib, props );
376 if( libName.empty() )
380 else if(
m_libMgr->IsLibraryReadOnly( libName ) )
382 wxString msg = wxString::Format(
_(
"Symbol library '%s' is not writable." ),
384 wxString msg2 =
_(
"You must save to a different location." );
403 if( !libName.IsEmpty() )
430 std::vector<std::shared_ptr<LIB_SYMBOL>>
chain;
431 std::shared_ptr<LIB_SYMBOL> sym = aSymbol.
SharedPtr();
434 chain.push_back( sym );
436 while( sym->IsDerived() )
438 std::shared_ptr<LIB_SYMBOL> parent = sym->GetParent().lock();
445 chain.push_back( parent );
464 const wxString& aNewSymbolName,
465 const wxString& aNewLibraryName )
470 if( aNewLibraryName != oldLibraryName )
471 return {
false,
false };
475 return {
false,
false };
477 bool inAncestry =
false;
478 bool inDescendents =
false;
481 const std::vector<std::shared_ptr<LIB_SYMBOL>> parentChainFromUs =
GetParentChain( aSymbol,
true );
484 for(
size_t i = 1; i < parentChainFromUs.size(); ++i )
487 if( parentChainFromUs[i]->GetName() == aNewSymbolName )
497 const std::vector<std::shared_ptr<LIB_SYMBOL>> parentChainFromTarget =
GetParentChain( *targetSymbol,
true );
498 const wxString oldSymbolName = aSymbol.
GetName();
502 for(
size_t i = 1; i < parentChainFromTarget.size(); ++i )
504 if( parentChainFromTarget[i]->GetName() == oldSymbolName )
506 inDescendents =
true;
512 return { inAncestry, inDescendents };
526 const wxString& newSymbolName,
527 const wxString& newLibraryName )
529 std::vector<wxString> conflicts;
532 if( newLibraryName == oldLibraryName || aFlattenSymbol )
537 conflicts.push_back( newSymbolName );
542 const std::vector<std::shared_ptr<LIB_SYMBOL>> parentChain =
GetParentChain( aSymbol,
true );
544 for(
size_t i = 0; i < parentChain.size(); ++i )
550 conflicts.push_back( newSymbolName );
554 std::shared_ptr<LIB_SYMBOL> chainSymbol = parentChain[i];
556 if( aLibMgr.
SymbolNameInUse( chainSymbol->GetName(), newLibraryName ) )
557 conflicts.push_back( chainSymbol->GetName() );
593 bool DoSave(
LIB_SYMBOL& symbol,
const wxString& aNewSymName,
const wxString& aNewLibName,
bool aFlattenSymbol )
595 std::unique_ptr<LIB_SYMBOL> flattenedSymbol;
596 std::vector<std::shared_ptr<LIB_SYMBOL>> parentChain;
604 flattenedSymbol = symbol.
Flatten();
605 wxCHECK( flattenedSymbol,
false );
607 parentChain.push_back( flattenedSymbol->SharedPtr() );
613 parentChain.push_back( symbol.
SharedPtr() );
621 std::vector<wxString> newNames;
624 for(
int i = (
int) parentChain.size() - 1; i >= 0; --i )
626 std::shared_ptr<LIB_SYMBOL>& oldSymbol = parentChain[i];
633 newName = aNewSymName;
638 newName = oldSymbol->GetName();
647 if( i == (
int) parentChain.size() - 1 )
658 wxASSERT( newParent );
667 newNames.push_back( newName );
668 m_libMgr.UpdateSymbol( &new_symbol, aNewLibName );
675 wxString
resolveConflict(
const wxString& proposed,
const wxString& aNewLibName )
const
691 wxString newName = wxString::Format(
"%s_%d", proposed, suffix );
693 if( !
m_libMgr.SymbolNameInUse( newName, aNewLibName ) )
703 wxFAIL_MSG(
"Invalid conflict strategy" );
737 const std::vector<wxString>& aParentSymbolNames ) :
742 wxArrayString headers;
743 std::vector<wxArrayString> itemsToDisplay;
745 if( aParentSymbolNames.size() )
749 const wxString aParentNames = AccumulateDescriptions( aParentSymbolNames );
751 wxString::Format(
"Flatten/remove symbol inheritance (current parent symbols: %s)", aParentNames ),
752 &m_params.m_FlattenSymbol );
761 wxBoxSizer* bNameSizer =
new wxBoxSizer( wxHORIZONTAL );
763 wxStaticText* label =
new wxStaticText(
this, wxID_ANY,
_(
"Name:" ) );
764 bNameSizer->Add( label, 0, wxALIGN_CENTER_VERTICAL|wxTOP|wxBOTTOM|wxLEFT, 5 );
771 m_ButtonsSizer->Prepend( newLibraryButton, 0, wxALIGN_CENTER_VERTICAL|wxLEFT|wxRIGHT, 10 );
773 GetSizer()->Prepend( bNameSizer, 0, wxEXPAND|wxTOP|wxLEFT|wxRIGHT, 5 );
776 [
this]( wxCommandEvent& )
790 GetSizer()->Fit(
this );
799 symbolName.Trim(
true );
800 symbolName.Trim(
false );
801 symbolName.Replace(
" ",
"_" );
822 if( ret == wxID_CANCEL )
853 bool flattenSymbol =
false;
857 const auto dialogValidatorFunc =
858 [&](
const wxString& newLib,
const wxString& newName ) ->
int
860 if( newLib.IsEmpty() )
862 wxMessageBox(
_(
"A library must be specified." ) );
866 if( newName.IsEmpty() )
868 wxMessageBox(
_(
"Symbol must have a name." ) );
872 if(
m_libMgr->IsLibraryReadOnly( newLib ) )
874 msg = wxString::Format(
_(
"Library '%s' is read-only. Choose a "
875 "different library to save the symbol '%s' to." ),
891 msg = wxString::Format(
_(
"Symbol '%s' cannot replace another symbol '%s' "
892 "that it descends from" ),
901 msg = wxString::Format(
_(
"Symbol '%s' cannot replace another symbol '%s' "
902 "that is a descendent of it." ),
909 const std::vector<wxString> conflicts =
912 if( conflicts.size() == 1 && conflicts.front() == newName )
915 msg = wxString::Format(
_(
"Symbol '%s' already exists in library '%s'. "
916 "Do you want to overwrite it?" ),
920 KIDIALOG errorDlg(
this, msg,
_(
"Confirmation" ), wxOK | wxCANCEL | wxICON_WARNING );
921 errorDlg.SetOKLabel(
_(
"Overwrite" ) );
925 else if( !conflicts.empty() )
931 msg = wxString::Format(
_(
"The following symbols in the inheritance chain of "
932 "'%s' already exist in library '%s':\n" ),
936 for(
const wxString& conflict : conflicts )
937 msg += wxString::Format(
" %s\n", conflict );
939 msg +=
_(
"\nDo you want to overwrite all of them, or rename the new symbols?" );
941 KIDIALOG errorDlg(
this, msg,
_(
"Confirmation" ), wxYES_NO | wxCANCEL | wxICON_WARNING );
942 errorDlg.SetYesNoCancelLabels(
_(
"Overwrite All" ),
_(
"Rename All" ),
_(
"Cancel" ) );
948 default:
return wxID_CANCEL;
957 std::vector<wxString> parentSymbolNames;
961 std::vector<std::shared_ptr<LIB_SYMBOL>> parentChain =
GetParentChain( *symbol,
false );
963 for(
const auto& parent : parentChain )
964 parentSymbolNames.push_back( parent->GetName() );
996 params.m_LibraryName = newLibrary.GetName();
1009 saver.
DoSave( *symbol, params.m_SymbolName, params.m_LibraryName, params.m_FlattenSymbol );
1014 LoadSymbol( params.m_SymbolName, params.m_LibraryName, 1 );
1031 fn.SetName( symbol->
GetName().Lower() );
1034 wxFileDialog dlg(
this,
_(
"Export Symbol" ),
m_mruPath, fn.GetFullName(),
1039 if( dlg.ShowModal() == wxID_CANCEL )
1049 wxString libraryName;
1050 std::unique_ptr<LIB_SYMBOL> flattenedSymbol = symbol->
Flatten();
1052 for(
const wxString& candidate :
m_libMgr->GetLibraryNames() )
1056 if( *uri == fn.GetFullPath() )
1057 libraryName = candidate;
1061 if( !libraryName.IsEmpty() )
1065 if(
m_libMgr->IsLibraryReadOnly( libraryName ) )
1067 msg = wxString::Format(
_(
"Library '%s' is read-only." ), libraryName );
1074 msg = wxString::Format(
_(
"Symbol '%s' already exists in library '%s'." ),
1075 symbol->
GetName(), libraryName );
1077 KIDIALOG errorDlg(
this, msg,
_(
"Confirmation" ), wxOK | wxCANCEL | wxICON_WARNING );
1078 errorDlg.SetOKLabel(
_(
"Overwrite" ) );
1081 if( errorDlg.
ShowModal() == wxID_CANCEL )
1085 saver.
DoSave( *flattenedSymbol, symbol->
GetName(), libraryName,
false );
1094 if( pluginType == SCH_IO_MGR::SCH_FILE_UNKNOWN )
1095 pluginType = SCH_IO_MGR::SCH_KICAD;
1099 if( fn.FileExists() )
1103 old_symbol = pi->LoadSymbol( fn.GetFullPath(), symbol->
GetName() );
1107 msg.Printf(
_(
"Error occurred attempting to load symbol library file '%s'." ),
1115 msg.Printf(
_(
"Symbol %s already exists in library '%s'." ),
1119 KIDIALOG errorDlg(
this, msg,
_(
"Confirmation" ), wxOK | wxCANCEL | wxICON_WARNING );
1120 errorDlg.SetOKLabel(
_(
"Overwrite" ) );
1123 if( errorDlg.
ShowModal() == wxID_CANCEL )
1128 if( !fn.IsDirWritable() )
1130 msg.Printf(
_(
"Insufficient permissions to save library '%s'." ), fn.GetFullPath() );
1137 if( !fn.FileExists() )
1138 pi->CreateLibrary( fn.GetFullPath() );
1143 pi->SaveSymbol( fn.GetFullPath(), flattenedSymbol.release() );
1147 msg.Printf(
_(
"Failed to create symbol library file '%s'." ), fn.GetFullPath() );
1149 msg.Printf(
_(
"Error creating symbol library '%s'." ), fn.GetFullName() );
1150 SetStatusText( msg );
1156 msg.Printf(
_(
"Symbol %s saved to library '%s'." ),
1159 SetStatusText( msg );
1167 wxString lib =
m_symbol->GetLibNickname();
1169 if( !lib.IsEmpty() && aOldName && *aOldName !=
m_symbol->GetName() )
1174 wxString msg = wxString::Format(
_(
"Symbol name '%s' already in use." ),
1191 if( treeItem.IsOk() )
1212 if( toDelete.empty() )
1215 for(
LIB_ID& libId : toDelete )
1217 if(
m_libMgr->IsSymbolModified( libId.GetLibItemName(), libId.GetLibNickname() )
1218 && !
IsOK(
this, wxString::Format(
_(
"The symbol '%s' has been modified.\n"
1219 "Do you want to remove it from the library?" ),
1220 libId.GetUniStringLibItemName() ) ) )
1225 wxArrayString derived;
1227 if(
m_libMgr->GetDerivedSymbolNames( libId.GetLibItemName(), libId.GetLibNickname(), derived ) > 0 )
1229 wxString msg =
_(
"Deleting a base symbol will delete all symbols derived from it.\n\n" );
1231 msg += libId.GetLibItemName().wx_str() +
_(
" (base)\n" );
1233 for(
const wxString&
name : derived )
1234 msg +=
name + wxT(
"\n" );
1237 dlg.SetExtendedMessage( wxT(
" " ) );
1238 dlg.SetYesNoLabels(
_(
"Delete All Listed Symbols" ),
_(
"Cancel" ) );
1240 if( dlg.ShowModal() == wxID_NO )
1250 for(
const wxString& derivedName : derived )
1257 if( symbol->GetLibId() == libId )
1265 m_libMgr->RemoveSymbol( libId.GetLibItemName(), libId.GetLibNickname() );
1274 std::vector<LIB_ID> symbols;
1281 for(
LIB_ID& libId : symbols )
1284 libId.GetLibNickname() );
1289 std::unique_ptr<LIB_SYMBOL> tmp = symbol->
Flatten();
1293 std::string prettyData = formatter.
GetString();
1298 auto clipboard = wxTheClipboard;
1299 wxClipboardLocker clipboardLock( clipboard );
1301 if( !clipboardLock || !clipboard->IsOpened() )
1304 auto data =
new wxTextDataObject( wxString( prettyData.c_str(), wxConvUTF8 ) );
1305 clipboard->SetData( data );
1316 if( !
m_libMgr->LibraryExists( lib ) )
1319 std::vector<LIB_SYMBOL*> newSymbols;
1321 if( aFromClipboard )
1331 wxLogMessage( wxS(
"Can not paste: %s" ), e.
Problem() );
1336 newSymbols.emplace_back(
new LIB_SYMBOL( *srcSymbol ) );
1339 if( srcSymbol->IsDerived() )
1341 if( std::shared_ptr<LIB_SYMBOL> srcParent = srcSymbol->GetParent().lock() )
1342 newSymbols.back()->SetParent( srcParent.get() );
1346 if( newSymbols.empty() )
1352 m_libMgr->UpdateSymbol( symbol, lib );
1358 m_treePane->GetLibTree()->SelectLibId(
LIB_ID( lib, newSymbols[0]->GetName() ) );
1370 wxString newName = aSymbol->
GetName();
1373 while(
m_libMgr->SymbolNameInUse( newName, aLibrary ) )
1374 newName.Printf(
"%s_%d", aSymbol->
GetName(), i++ );
1389 wxString msg = wxString::Format(
_(
"Revert '%s' to last version saved?" ),
1390 symbolName.IsEmpty() ? libName : symbolName );
1395 bool reload_currentSymbol =
false;
1396 wxString curr_symbolName = symbolName;
1402 if( symbolName.IsEmpty() )
1407 if( reload_currentSymbol )
1418 if( reload_currentSymbol )
1421 if( symbolName.IsEmpty() )
1423 m_libMgr->RevertLibrary( libName );
1429 m_treePane->GetLibTree()->SelectLibId( libId );
1433 if( reload_currentSymbol &&
m_libMgr->SymbolExists( curr_symbolName, libName ) )
1434 LoadSymbol( curr_symbolName, libName, unit );
1442 wxCHECK_RET(
m_libMgr,
"Library manager object not created." );
1467 DisplayError(
this, wxString::Format(
_(
"Symbol %s not found in library '%s'." ),
1488 SCH_IO_MGR::SCH_FILE_T
fileType = SCH_IO_MGR::SCH_FILE_T::SCH_KICAD;
1495 if( !aNewFile && ( aLibrary.empty() || !adapter->
HasLibrary( aLibrary ) ) )
1511 fn.SetName( aLibrary );
1516 wxFileDialog dlg(
this, wxString::Format(
_(
"Save Library '%s' As..." ), aLibrary ), default_path,
1517 fn.GetFullName(), wildcards, wxFD_SAVE | wxFD_OVERWRITE_PROMPT );
1520 dlg.SetCustomizeHook( saveAsHook );
1524 if( dlg.ShowModal() == wxID_CANCEL )
1531 if( fn.GetExt().IsEmpty() )
1538 std::optional<LIBRARY_TABLE_ROW*> optRow = adapter->
GetRow( aLibrary );
1539 wxCHECK( optRow,
false );
1544 if(
fileType == SCH_IO_MGR::SCH_FILE_UNKNOWN )
1549 if( !aNewFile &&
m_libMgr->IsLibraryReadOnly( aLibrary ) )
1560 msg.Printf(
_(
"Failed to save changes to symbol library file '%s'." ),
1568 m_libMgr->ClearLibraryModified( aLibrary );
1575 if( fn.DirExists() )
1581 else if( fn.FileExists() )
1590 bool resyncLibTree =
false;
1592 wxString forceRefresh;
1598 forceRefresh = originalLibNickname;
1622 msg.Printf(
_(
"Symbol library file '%s' saved." ), fn.GetFullPath() );
1634 bool applyToAll =
false;
1637 for(
const wxString& libNickname :
m_libMgr->GetLibraryNames() )
1639 if(
m_libMgr->IsLibraryModified( libNickname ) )
1643 for(
const wxString& libNickname :
m_libMgr->GetLibraryNames() )
1645 if(
m_libMgr->IsLibraryModified( libNickname ) )
1647 if( aRequireConfirmation && !applyToAll )
1649 msg.Printf(
_(
"Save changes to '%s' before closing?" ), libNickname );
1653 case wxID_YES: doSave =
true;
break;
1654 case wxID_NO: doSave =
false;
break;
1656 case wxID_CANCEL:
return false;
1664 if(
m_libMgr->IsLibraryReadOnly( libNickname ) )
1666 msg.Printf(
_(
"Symbol library '%s' is not writable." ), libNickname );
1667 msg2 =
_(
"You must save to a different location." );
1669 if( dirtyCount == 1 )
1680 m_infoBar->ShowMessageFor( msg + wxS(
" " ) + msg2,
1681 2000, wxICON_EXCLAMATION );
1712 wxString msg =
m_symbol->GetName();
1718 std::shared_ptr<LIB_SYMBOL> parent =
m_symbol->GetParent().lock();
1720 msg = parent ? parent->GetName() :
_(
"Undefined!" );
1725 msg =
_(
"Power Symbol" );
1726 else if(
m_symbol->IsLocalPower() )
1727 msg =
_(
"Power Symbol (Local)" );
1729 msg =
_(
"Symbol" );
static TOOL_ACTION cancelInteractive
static TOOL_ACTION zoomFitScreen
void SetContentModified(bool aModified=true)
wxString GetParentSymbolName() const
bool GetIncludeOnBoard() const
wxString GetName() const override
bool GetUnitsInterchangeable()
bool GetTransferUserFields()
bool GetKeepContentUserFields()
bool GetAlternateBodyStyle()
bool GetIncludeInBom() const
void SetInitialFocus(wxWindow *aWindow)
Sets the window (usually a wxTextCtrl) that should be focused when the dialog is shown.
void SetupStandardButtons(std::map< int, wxString > aLabels={})
virtual void ClearUndoRedoList()
Clear the undo and redo list using ClearUndoORRedoList()
void ShowInfoBarError(const wxString &aErrorMsg, bool aShowCloseButton=false, INFOBAR_MESSAGE_TYPE aType=INFOBAR_MESSAGE_TYPE::GENERIC)
Show the WX_INFOBAR displayed on the top of the canvas with a message and an error icon on the left o...
virtual void RecreateToolbars()
void ReCreateMenuBar()
Recreate the menu bar.
WX_INFOBAR * GetInfoBar()
virtual void ClearMsgPanel()
Clear all messages from the message panel.
void AppendMsgPanel(const wxString &aTextUpper, const wxString &aTextLower, int aPadding=6)
Append a message to the message panel.
wxBoxSizer * m_ButtonsSizer
void SetOKLabel(const wxString &aLabel)
void initDialog(const wxArrayString &aItemHeaders, const std::vector< wxArrayString > &aItemList, const wxString &aPreselectText)
wxString GetTextSelection(int aColumn=0)
Return the selected text from aColumn in the wxListCtrl in the dialog.
void SetListLabel(const wxString &aLabel)
void GetExtraCheckboxValues()
Fills in the value pointers from the checkboxes after the dialog has run.
EDA_LIST_DIALOG(wxWindow *aParent, const wxString &aTitle, const wxArrayString &aItemHeaders, const std::vector< wxArrayString > &aItemList, const wxString &aPreselectText=wxEmptyString, bool aSortList=true)
Hold an error message and may be used when throwing exceptions containing meaningful error messages.
virtual const wxString What() const
A composite of Problem() and Where()
virtual const wxString Problem() const
what was the problem?
Helper class to create more flexible dialogs, including 'do not show again' checkbox handling.
void DoNotShowCheckbox(wxString file, int line)
Shows the 'do not show again' checkbox.
void UpdateAllItems(int aUpdateFlags)
Update all items in the view according to the given flags.
virtual KIWAY_PLAYER * Player(FRAME_T aFrameType, bool doCreate=true, wxTopLevelWindow *aParent=nullptr)
Return the KIWAY_PLAYER* given a FRAME_T.
bool HasLibrary(const wxString &aNickname, bool aCheckEnabled=false) const
Test for the existence of aNickname in the library tables.
std::optional< LIBRARY_TABLE_ROW * > GetRow(const wxString &aNickname, LIBRARY_TABLE_SCOPE aScope=LIBRARY_TABLE_SCOPE::BOTH) const
Like LIBRARY_MANAGER::GetRow but filtered to the LIBRARY_TABLE_TYPE of this adapter.
std::optional< wxString > GetFullURI(LIBRARY_TABLE_TYPE aType, const wxString &aNickname, bool aSubstituted=false)
Return the full location specifying URI for the LIB, either in original UI form or in environment var...
std::optional< LIBRARY_TABLE_ROW * > GetRow(LIBRARY_TABLE_TYPE aType, const wxString &aNickname, LIBRARY_TABLE_SCOPE aScope=LIBRARY_TABLE_SCOPE::BOTH)
const wxString & Type() const
A logical library item identifier and consists of various portions much like a URI.
bool IsValid() const
Check if this LID_ID is valid.
wxString GetUniStringLibId() const
const wxString GetUniStringLibItemName() const
Get strings for display messages in dialogs.
const wxString GetUniStringLibNickname() const
const UTF8 & GetLibItemName() const
const UTF8 & GetLibNickname() const
Return the logical library name portion of a LIB_ID.
Symbol library management helper that is specific to the symbol library editor frame.
Define a library symbol object.
const LIB_ID & GetLibId() const override
bool UnitsLocked() const
Check whether symbol units are interchangeable.
LIB_ID GetSourceLibId() const
void SetParent(LIB_SYMBOL *aParent=nullptr)
wxString GetName() const override
SCH_FIELD & GetValueField()
Return reference to the value field.
std::shared_ptr< LIB_SYMBOL > SharedPtr() const
http://www.boost.org/doc/libs/1_55_0/libs/smart_ptr/sp_techniques.html#weak_without_shared.
bool IsMultiUnit() const override
std::unique_ptr< LIB_SYMBOL > Flatten() const
Return a flattened symbol inheritance to the caller.
void SetParentName(const wxString &aParentName)
virtual void SetName(const wxString &aName)
virtual LIBRARY_MANAGER & GetLibraryManager() const
static SYMBOL_LIBRARY_ADAPTER * SymbolLibAdapter(PROJECT *aProject)
Accessor for project symbol library manager adapter.
static SEARCH_STACK * SchSearchS(PROJECT *aProject)
Accessor for Eeschema search stack.
Container for project specific data.
virtual void SetRString(RSTRING_T aStringId, const wxString &aString)
Store a "retained string", which is any session and project specific string identified in enum RSTRIN...
virtual const wxString & GetRString(RSTRING_T aStringId)
Return a "retained string", which is any session and project specific string identified in enum RSTRI...
bool TransferDataFromWindow() override
std::function< int(const wxString &libName, const wxString &symbolName)> SymLibNameValidator
bool TransferDataToWindow() override
SymLibNameValidator m_validator
SAVE_SYMBOL_AS_DIALOG(SYMBOL_EDIT_FRAME *aParent, PARAMS &aParams, SymLibNameValidator aValidator, const std::vector< wxString > &aParentSymbolNames)
wxString getSymbolName() const
wxTextCtrl * m_symbolNameCtrl
SCH_SCREEN * GetScreen() const override
Return a pointer to a BASE_SCREEN or one of its derivatives.
SCH_DRAW_PANEL * GetCanvas() const override
Return a pointer to GAL-based canvas of given EDA draw frame.
void GetLibraryItemsForListDialog(wxArrayString &aHeaders, std::vector< wxArrayString > &aItemsToDisplay)
wxString SelectLibrary(const wxString &aDialogTitle, const wxString &aListLabel, const std::vector< std::pair< wxString, bool * > > &aExtraCheckboxes={})
Display a list of loaded libraries and allows the user to select a library.
void setSymWatcher(const LIB_ID *aSymbol)
Creates (or removes) a watcher on the specified symbol library.
void SetSymModificationTime(long long aTimestamp)
Set the modification timestamp of the watched symbol library.
KIGFX::SCH_VIEW * GetView() const override
Return a pointer to the #VIEW instance used in the panel.
Schematic editor (Eeschema) main window.
void SaveSymbolToSchematic(const LIB_SYMBOL &aSymbol, const KIID &aSchematicSymbolUUID)
Update a schematic symbol from a LIB_SYMBOL.
virtual const wxString & GetText() const override
Return the string associated with the text object.
void SetText(const wxString &aText) override
static void FormatLibSymbol(LIB_SYMBOL *aPart, OUTPUTFORMATTER &aFormatter)
static std::vector< LIB_SYMBOL * > ParseLibSymbols(std::string &aSymbolText, std::string aSource, int aFileVersion=SEXPR_SCHEMATIC_FILE_VERSION)
static SCH_FILE_T EnumFromStr(const wxString &aFileType)
Return the #SCH_FILE_T from the corresponding plugin type name: "kicad", "legacy",...
static SCH_FILE_T GuessPluginTypeFromLibPath(const wxString &aLibPath, int aCtl=0)
Return a plugin type given a symbol library using the file extension of aLibPath.
Look for files in a number of paths.
const wxString LastVisitedPath(const wxString &aSubPathToSearch=wxEmptyString)
A quirky function inherited from old code that seems to serve particular needs in the UI.
One open symbol tab owning a working LIB_SYMBOL and screen lent to the frame while active.
The symbol library editor main window.
void ClearMsgPanel() override
Clear all messages from the message panel.
void UpdateAfterSymbolProperties(wxString *aOldName=nullptr)
void SaveAll()
Save all modified symbols and libraries.
void DeleteSymbolFromLibrary()
bool IsLibraryTreeShown() const override
void RenameSymbolTab(const LIB_ID &aOldId, const LIB_ID &aNewId)
Update the open tab for aOldId, if any, to the renamed symbol aNewId so its label and key track the r...
wxString getTargetLib() const
bool LoadSymbolFromLib(const wxString &aLibName, const wxString &aSymbolName, int aUnit=0, int aBodyStyle=0)
Load a symbol from a library, optionally setting the selected unit and body style.
bool IsCurrentSymbol(const LIB_ID &aLibId) const
Restore the empty editor screen, without any symbol or library selected.
bool backupFile(const wxFileName &aOriginalFile, const wxString &aBackupExt)
Return currently edited symbol.
EDITOR_TABS_PANEL * m_tabsPanel
void RebuildSymbolUnitAndBodyStyleLists()
int GetTreeLIBIDs(std::vector< LIB_ID > &aSelection) const
LIB_ID GetTreeLIBID(int *aUnit=nullptr) const
Return the LIB_ID of the library or symbol selected in the symbol tree.
LIB_SYMBOL_LIBRARY_MANAGER * m_libMgr
void Save()
Save the selected symbol or library.
void LoadSymbol(const wxString &aLibrary, const wxString &aSymbol, int Unit)
bool m_SyncPinEdit
Set to true to synchronize pins at the same position when editing symbols with multiple units or mult...
bool addLibTableEntry(const wxString &aLibFile, LIBRARY_TABLE_SCOPE aScope=LIBRARY_TABLE_SCOPE::GLOBAL)
Add aLibFile to the symbol library table defined by aScope.
bool LoadOneLibrarySymbol(LIB_SYMBOL *aLibEntry, const wxString &aLibrary, int aUnit, int aBodyStyle)
Create a copy of aLibEntry into memory.
void Revert(bool aConfirm=true)
Revert unsaved changes in a symbol, restoring to the last saved state.
void centerItemIdleHandler(wxIdleEvent &aEvent)
bool replaceLibTableEntry(const wxString &aLibNickname, const wxString &aLibFile)
Replace the file path of the symbol library table entry aLibNickname with aLibFile.
bool IsSymbolFromSchematic() const
void DuplicateSymbol(bool aFromClipboard)
Insert a duplicate symbol.
LIB_ID m_centerItemOnIdle
void saveSymbolCopyAs(bool aOpenCopy)
KIID m_schematicSymbolUUID
RefDes of the symbol (only valid if symbol was loaded from schematic)
std::vector< LIB_ID > GetSelectedLibIds() const
void SyncLibraries(bool aShowProgress, bool aPreloadCancelled=false, const wxString &aForceRefresh=wxEmptyString)
Synchronize the library manager to the symbol library table, and then the symbol tree to the library ...
SYMBOL_EDITOR_TAB_CONTEXT * findOrCreateSymbolTab(const wxString &aLib, const wxString &aName, int aUnit, int aBodyStyle, bool aAsPreview, bool *aWasCreated=nullptr)
Open aName from aLib in a tab, creating it when absent, and return the activated context.
LIB_SYMBOL * GetCurSymbol() const
Return the current symbol being edited or NULL if none selected.
void UpdateSymbolMsgPanelInfo()
Display the documentation of the selected symbol.
LIB_ID GetTargetLibId() const override
Return either the symbol selected in the symbol tree (if context menu is active) or the symbol on the...
bool saveLibrary(const wxString &aLibrary, bool aNewFile)
Save the changes to the current library.
bool saveAllLibraries(bool aRequireConfirmation)
Save the current symbol.
void UpdateMsgPanel() override
Redraw the message panel.
void CreateNewSymbol(const wxString &newName=wxEmptyString)
Create a new symbol in the selected library.
void UpdateTitle()
Update the main window title bar with the current library name and read only status of the library.
SYMBOL_TREE_PANE * m_treePane
void SetDrawSpecificUnit(bool aSpecific)
void closeSymbolTab(const LIB_ID &aLibId)
Close the open tab for aLibId, if any, without prompting and leaving the other tabs open.
bool saveCurrentSymbol()
Rename LIB_SYMBOL aliases to avoid conflicts before adding a symbol to a library.
void CopySymbolToClipboard()
void SaveSymbolCopyAs(bool aOpenCopy)
Save the currently selected symbol to a new name and/or location.
void clearSymbolTabsModifiedForLibrary(const wxString &aLibrary)
Clear the unsaved-edits flag on every tab in a saved library so its dirty indicator clears.
wxString AddLibraryFile(bool aCreateNew)
Create or add an existing library to the symbol library table.
void ensureUniqueName(LIB_SYMBOL *aSymbol, const wxString &aLibrary)
void UpdateLibraryTree(const wxDataViewItem &aTreeItem, LIB_SYMBOL *aSymbol)
Update a symbol node in the library tree.
void OnModify() override
Must be called after a schematic change in order to set the "modify" flag of the current symbol.
void SaveLibraryAs()
Save the currently selected library to a new file.
bool IsContentModified() const override
Get if any symbols or libraries have been modified but not saved.
LIB_SYMBOL * getTargetSymbol() const
Return either the library selected in the symbol tree, if context menu is active or the library that ...
An interface to the global shared library manager that is schematic-specific and linked to one projec...
LIB_SYMBOL * LoadSymbol(const wxString &aNickname, const wxString &aName)
Load a LIB_SYMBOL having aName from the library given by aNickname.
bool SymbolNameInUse(const wxString &aName, const wxString &aLibrary)
Return true if the symbol name is already in use in the specified library.
LIB_SYMBOL * GetSymbol(const wxString &aSymbolName, const wxString &aLibrary) const
Return either an alias of a working LIB_SYMBOL copy, or alias of the original symbol if there is no w...
SYMBOL_SAVEAS_TYPE GetOption() const
This is a class that handles state involved in saving a symbol copy as a new symbol.
CONFLICT_STRATEGY m_strategy
wxString resolveConflict(const wxString &proposed, const wxString &aNewLibName) const
SYMBOL_SAVE_AS_HANDLER(LIB_SYMBOL_LIBRARY_MANAGER &aLibMgr, CONFLICT_STRATEGY aStrategy, bool aValueFollowsName)
LIB_SYMBOL_LIBRARY_MANAGER & m_libMgr
bool DoSave(LIB_SYMBOL &symbol, const wxString &aNewSymName, const wxString &aNewLibName, bool aFlattenSymbol)
void Dismiss() override
Dismisses the infobar and updates the containing layout and AUI manager (if one is provided).
std::string GetClipboardUTF8()
Return the information currently stored in the system clipboard.
int OKOrCancelDialog(wxWindow *aParent, const wxString &aWarning, const wxString &aMessage, const wxString &aDetailedMessage, const wxString &aOKLabel, const wxString &aCancelLabel, bool *aApplyToAll)
Display a warning dialog with aMessage and returns the user response.
bool IsOK(wxWindow *aParent, const wxString &aMessage)
Display a yes/no dialog with aMessage and returns the user response.
bool HandleUnsavedChanges(wxWindow *aParent, const wxString &aMessage, const std::function< bool()> &aSaveFunction)
Display a dialog with Save, Cancel and Discard Changes buttons.
void DisplayErrorMessage(wxWindow *aParent, const wxString &aText, const wxString &aExtraInfo)
Display an error message with aMessage.
int UnsavedChangesDialog(wxWindow *parent, const wxString &aMessage, bool *aApplyToAll)
A specialized version of HandleUnsavedChanges which handles an apply-to-all checkbox.
bool ConfirmRevertDialog(wxWindow *parent, const wxString &aMessage)
Display a confirmation dialog for a revert action.
void DisplayError(wxWindow *aParent, const wxString &aText)
Display an error or warning message box with aMessage.
This file is part of the common library.
#define KICAD_MESSAGE_DIALOG
static const std::string KiCadSymbolLibFileExtension
static wxString KiCadSymbolLibFileWildcard()
std::unique_ptr< T > IO_RELEASER
Helper to hold and release an IO_BASE object when exceptions are thrown.
@ ALL
All except INITIAL_ADD.
PGM_BASE & Pgm()
The global program "get" accessor.
KIWAY Kiway(KFCTL_STANDALONE)
MODEL3D_FORMAT_TYPE fileType(const char *aFileName)
wxString UnescapeString(const wxString &aSource)
wxString EscapeString(const wxString &aSource, ESCAPE_CONTEXT aContext)
The Escape/Unescape routines use HTML-entity-reference-style encoding to handle characters which are:...
wxString parentSymbolName
bool keepContentUserFields
bool unitsInterchangeable
SYMBOL_SAVE_AS_HANDLER::CONFLICT_STRATEGY m_ConflictStrategy
static std::vector< wxString > CheckForParentalChainConflicts(LIB_SYMBOL_LIBRARY_MANAGER &aLibMgr, LIB_SYMBOL &aSymbol, bool aFlattenSymbol, const wxString &newSymbolName, const wxString &newLibraryName)
Get a list of all the symbols in the parental chain of a symbol that have conflicts when transposed t...
static std::vector< std::shared_ptr< LIB_SYMBOL > > GetParentChain(const LIB_SYMBOL &aSymbol, bool aIncludeLeaf=true)
Get a list of all the symbols in the parental chain of a symbol, with the "leaf" symbol at the start ...
static std::pair< bool, bool > CheckSavingIntoOwnInheritance(LIB_SYMBOL_LIBRARY_MANAGER &aLibMgr, LIB_SYMBOL &aSymbol, const wxString &aNewSymbolName, const wxString &aNewLibraryName)
Check if a planned overwrite would put a symbol into it's own inheritance chain.
@ ADD_PROJECT_TABLE_ENTRY
nlohmann::json_schema::json_validator validator
const SHAPE_LINE_CHAIN chain
Definition of file extensions used in Kicad.