47#include <wx/clipbrd.h>
48#include <wx/filedlg.h>
68 title += wxS(
" " ) +
_(
"[from schematic]" );
78 title += wxS(
" " ) +
_(
"[Read Only Library]" );
82 title =
_(
"[no symbol loaded]" );
85 title += wxT(
" \u2014 " ) +
_(
"Symbol Editor" );
92 wxString selectedLib = aLibrary;
94 if( selectedLib.empty() )
97 if( !selectedLib.empty() )
130 wxString msg = wxString::Format(
_(
"Symbol library '%s' is not writable." ),
132 wxString msg2 =
_(
"You must save to a different location." );
155 if( lib->SchLibType() == SCH_IO_MGR::SCH_DATABASE
156 || lib->SchLibType() == SCH_IO_MGR::SCH_CADSTAR_ARCHIVE
157 || lib->SchLibType() == SCH_IO_MGR::SCH_HTTP )
171 msg.Printf(
_(
"Error loading symbol %s from library '%s'." ),
237 msg.Printf(
_(
"Error loading symbol %s from library '%s'." ),
262 int aUnit,
int aBodyStyle )
264 bool rebuildMenuAndToolbar =
false;
266 if( !aEntry || aLibrary.empty() )
269 if( aEntry->
GetName().IsEmpty() )
271 wxLogWarning(
"Symbol in library '%s' has empty name field.", aLibrary );
287 rebuildMenuAndToolbar =
true;
291 wxCHECK( lib_symbol,
false );
293 m_unit = aUnit > 0 ? aUnit : 1;
303 if( rebuildMenuAndToolbar )
348 wxArrayString symbolNames;
361 wxString _inheritSymbolName;
362 wxString _infoMessage;
367 if( !aInheritFrom.IsEmpty() )
371 if( inheritFromSymbol )
373 _inheritSymbolName = aInheritFrom;
374 _infoMessage = wxString::Format(
_(
"Deriving from symbol '%s'." ),
375 _inheritSymbolName );
379 _inheritSymbolName = aInheritFrom;
384 [&]( wxString newName )
386 if( newName.IsEmpty() )
388 wxMessageBox( _(
"Symbol must have a name." ) );
394 msg = wxString::Format( _(
"Symbol '%s' already exists in library '%s'." ),
398 KIDIALOG errorDlg( this, msg, _(
"Confirmation" ),
399 wxOK | wxCANCEL | wxICON_WARNING );
400 errorDlg.SetOKLabel( _(
"Overwrite" ) );
402 return errorDlg.ShowModal() == wxID_OK;
408 dlg.SetMinSize( dlg.GetSize() );
410 if( dlg.ShowModal() == wxID_CANCEL )
413 wxString
name = dlg.GetName();
417 wxString parentSymbolName = dlg.GetParentSymbolName();
419 if( parentSymbolName.IsEmpty() )
427 if( dlg.GetPinNameInside() )
442 new_symbol.
LockUnits( !dlg.GetUnitsInterchangeable() );
446 if( dlg.GetUnitCount() < 2 )
467 wxCHECK( parentField, );
469 *field = *parentField;
487 field->
SetText( wxEmptyString );
516 if( libName.empty() )
522 wxString msg = wxString::Format(
_(
"Symbol library '%s' is not writable." ),
524 wxString msg2 =
_(
"You must save to a different location." );
545 if( !libName.IsEmpty() )
569 std::vector<LIB_SYMBOL_SPTR> chain( { aSymbol.
SharedPtr() } );
571 while( chain.back()->IsAlias() )
574 chain.push_back( parent );
592 const wxString& aNewSymbolName,
593 const wxString& aNewLibraryName )
598 if( aNewLibraryName != oldLibraryName )
599 return {
false,
false };
602 if( !aLibMgr.
SymbolExists( aNewSymbolName, aNewLibraryName ) )
603 return {
false,
false };
605 bool inAncestry =
false;
606 bool inDescendents =
false;
609 const std::vector<LIB_SYMBOL_SPTR> parentChainFromUs =
GetParentChain( aSymbol );
612 for(
size_t i = 1; i < parentChainFromUs.size(); ++i )
615 if( parentChainFromUs[i]->GetName() == aNewSymbolName )
625 const std::vector<LIB_SYMBOL_SPTR> parentChainFromTarget =
GetParentChain( *targetSymbol );
626 const wxString oldSymbolName = aSymbol.
GetName();
630 for(
size_t i = 1; i < parentChainFromTarget.size(); ++i )
632 if( parentChainFromTarget[i]->GetName() == oldSymbolName )
634 inDescendents =
true;
640 return { inAncestry, inDescendents };
653 const wxString& newSymbolName,
654 const wxString& newLibraryName )
656 std::vector<wxString> conflicts;
659 if( newLibraryName == oldLibraryName )
662 if( aLibMgr.
SymbolExists( newSymbolName, newLibraryName ) )
664 conflicts.push_back( newSymbolName );
670 const std::vector<LIB_SYMBOL_SPTR> parentChain =
GetParentChain( aSymbol );
672 for(
size_t i = 0; i < parentChain.size(); ++i )
677 if( aLibMgr.
SymbolExists( newSymbolName, newLibraryName ) )
679 conflicts.push_back( newSymbolName );
685 if( aLibMgr.
SymbolExists( chainSymbol->GetName(), newLibraryName ) )
687 conflicts.push_back( chainSymbol->GetName() );
718 bool aValueFollowsName ) :
723 bool DoSave(
LIB_SYMBOL& symbol,
const wxString& aNewSymName,
const wxString& aNewLibName )
725 std::vector<LIB_SYMBOL_SPTR> parentChain;
729 parentChain.push_back( symbol.
SharedPtr() );
733 std::vector<wxString> newNames;
736 for(
int i = (
int) parentChain.size() - 1; i >= 0; --i )
746 newName = aNewSymName;
751 newName = oldSymbol->GetName();
760 if( i == (
int) parentChain.size() - 1 )
771 wxASSERT( newParent );
775 newNames.push_back( newName );
783 wxString
resolveConflict(
const wxString& proposed,
const wxString& aNewLibName )
const
799 wxString newName = wxString::Format(
"%s_%d", proposed, suffix );
811 wxFAIL_MSG(
"Invalid conflict strategy" );
833 std::function<int(
const wxString& libName,
const wxString& symbolName )>;
845 wxArrayString headers;
846 std::vector<wxArrayString> itemsToDisplay;
848 headers.Add(
_(
"Nickname" ) );
849 headers.Add(
_(
"Description" ) );
851 for(
const wxString& nickname : libNicknames )
859 itemsToDisplay.push_back( item );
863 for(
const wxString& nickname : libNicknames )
869 item.Add( nickname );
871 itemsToDisplay.push_back( item );
875 initDialog( headers, itemsToDisplay, aLibraryPreselect );
880 wxBoxSizer* bNameSizer =
new wxBoxSizer( wxHORIZONTAL );
882 wxStaticText* label =
new wxStaticText(
this, wxID_ANY,
_(
"Name:" ) );
883 bNameSizer->Add( label, 0, wxALIGN_CENTER_VERTICAL|wxTOP|wxBOTTOM|wxLEFT, 5 );
890 m_ButtonsSizer->Prepend( newLibraryButton, 0, wxALIGN_CENTER_VERTICAL|wxLEFT|wxRIGHT, 10 );
892 GetSizer()->Prepend( bNameSizer, 0, wxEXPAND|wxTOP|wxLEFT|wxRIGHT, 5 );
895 [
this]( wxCommandEvent& )
909 GetSizer()->Fit(
this );
917 symbolName.Trim(
true );
918 symbolName.Trim(
false );
919 symbolName.Replace(
" ",
"_" );
928 if( ret == wxID_CANCEL )
962 const auto dialogValidatorFunc = [&](
const wxString& newLib,
const wxString& newName ) ->
int
964 if( newLib.IsEmpty() )
966 wxMessageBox(
_(
"A library must be specified." ) );
970 if( newName.IsEmpty() )
972 wxMessageBox(
_(
"Symbol must have a name." ) );
978 msg = wxString::Format(
_(
"Library '%s' is read-only. Choose a "
979 "different library to save the symbol '%s' to." ),
989 const auto& [inAncestry, inDescendents] =
994 msg = wxString::Format(
_(
"Symbol '%s' cannot replace another symbol '%s' that it "
996 symbolName, newName );
1003 msg = wxString::Format(
_(
"Symbol '%s' cannot replace another symbol '%s' that is "
1004 "a descendent of it." ),
1005 symbolName, newName );
1006 wxMessageBox( msg );
1010 const std::vector<wxString> conflicts =
1013 if( conflicts.size() == 1 && conflicts.front() == newName )
1016 msg = wxString::Format(
_(
"Symbol '%s' already exists in library '%s'."
1017 "Do you want to overwrite it?" ),
1020 KIDIALOG errorDlg(
this, msg,
_(
"Confirmation" ), wxOK | wxCANCEL | wxICON_WARNING );
1021 errorDlg.SetOKLabel(
_(
"Overwrite" ) );
1025 else if( !conflicts.empty() )
1031 msg = wxString::Format(
_(
"The following symbols in the inheritance chain of '%s' "
1032 "already exist in library '%s':\n" ),
1033 symbolName, newLib );
1035 for(
const wxString& conflict : conflicts )
1036 msg += wxString::Format(
" %s\n", conflict );
1038 msg +=
_(
"\nDo you want to overwrite all of them, or rename the new symbols?" );
1040 KIDIALOG errorDlg(
this, msg,
_(
"Confirmation" ),
1041 wxYES_NO | wxCANCEL | wxICON_WARNING );
1042 errorDlg.SetYesNoCancelLabels(
_(
"Overwrite All" ),
_(
"Rename All" ),
_(
"Cancel" ) );
1061 SAVE_AS_DIALOG dlg(
this, symbolName, libraryName, dialogValidatorFunc, strategy );
1089 libraryName = newLibrary.GetName();
1100 saver.
DoSave( *symbol, symbolName, libraryName );
1120 wxString msg = wxString::Format(
_(
"Symbol name '%s' already in use." ),
1152 if( toDelete.empty() )
1155 for(
LIB_ID& libId : toDelete )
1158 && !
IsOK(
this, wxString::Format(
_(
"The symbol '%s' has been modified.\n"
1159 "Do you want to remove it from the library?" ),
1160 libId.GetUniStringLibItemName() ) ) )
1170 _(
"The symbol %s is used to derive other symbols.\n"
1171 "Deleting this symbol will delete all of the symbols derived from it.\n\n"
1172 "Do you wish to delete this symbol and all of its derivatives?" ),
1173 libId.GetLibItemName().wx_str() );
1175 wxMessageDialog::ButtonLabel yesButtonLabel(
_(
"Delete Symbol" ) );
1176 wxMessageDialog::ButtonLabel noButtonLabel(
_(
"Keep Symbol" ) );
1178 wxMessageDialog dlg(
this, msg,
_(
"Warning" ),
1179 wxYES_NO | wxYES_DEFAULT | wxICON_QUESTION | wxCENTER );
1180 dlg.SetYesNoLabels( yesButtonLabel, noButtonLabel );
1182 if( dlg.ShowModal() == wxID_NO )
1198 std::vector<LIB_ID> symbols;
1205 for(
LIB_ID& libId : symbols )
1208 libId.GetLibNickname() );
1213 std::unique_ptr<LIB_SYMBOL> tmp = symbol->
Flatten();
1217 std::string prettyData = formatter.
GetString();
1222 auto clipboard = wxTheClipboard;
1223 wxClipboardLocker clipboardLock( clipboard );
1225 if( !clipboardLock || !clipboard->IsOpened() )
1228 auto data =
new wxTextDataObject( wxString( prettyData.c_str(), wxConvUTF8 ) );
1229 clipboard->SetData( data );
1243 std::vector<LIB_SYMBOL*> newSymbols;
1245 if( aFromClipboard )
1255 wxLogMessage( wxS(
"Can not paste: %s" ), e.
Problem() );
1260 newSymbols.emplace_back(
new LIB_SYMBOL( *srcSymbol ) );
1263 if( srcSymbol->IsAlias() )
1265 if( std::shared_ptr<LIB_SYMBOL> srcParent = srcSymbol->GetParent().lock() )
1266 newSymbols.back()->SetParent( srcParent.get() );
1270 if( newSymbols.empty() )
1294 wxString newName = aSymbol->
GetName();
1298 newName.Printf(
"%s_%d", aSymbol->
GetName(), i++ );
1313 wxString msg = wxString::Format(
_(
"Revert '%s' to last version saved?" ),
1314 symbolName.IsEmpty() ? libName : symbolName );
1319 bool reload_currentSymbol =
false;
1320 wxString curr_symbolName = symbolName;
1326 if( symbolName.IsEmpty() )
1331 if( reload_currentSymbol )
1342 if( reload_currentSymbol )
1345 if( symbolName.IsEmpty() )
1358 LoadSymbol( curr_symbolName, libName, unit );
1366 wxCHECK_RET(
m_libMgr,
"Library manager object not created." );
1391 DisplayError(
this, wxString::Format(
_(
"Symbol %s not found in library '%s'." ),
1413 SCH_IO_MGR::SCH_FILE_T
fileType = SCH_IO_MGR::SCH_FILE_T::SCH_KICAD;
1434 fn.SetName( aLibrary );
1439 wxFileDialog dlg(
this, wxString::Format(
_(
"Save Library '%s' As..." ), aLibrary ),
1440 default_path, fn.GetFullName(), wildcards,
1441 wxFD_SAVE | wxFD_OVERWRITE_PROMPT );
1444 dlg.SetCustomizeHook( saveAsHook );
1446 if( dlg.ShowModal() == wxID_CANCEL )
1453 if( fn.GetExt().IsEmpty() )
1463 if(
fileType == SCH_IO_MGR::SCH_FILE_UNKNOWN )
1479 msg.Printf(
_(
"Failed to save changes to symbol library file '%s'." ),
1495 bool resyncLibTree =
false;
1497 wxString forceRefresh;
1501 case SYMBOL_SAVEAS_TYPE::REPLACE_TABLE_ENTRY:
1503 forceRefresh = originalLibNickname;
1506 case SYMBOL_SAVEAS_TYPE::ADD_GLOBAL_TABLE_ENTRY:
1510 case SYMBOL_SAVEAS_TYPE::ADD_PROJECT_TABLE_ENTRY:
1527 msg.Printf(
_(
"Symbol library file '%s' saved." ), fn.GetFullPath() );
1539 bool applyToAll =
false;
1552 if( aRequireConfirmation && !applyToAll )
1554 msg.Printf(
_(
"Save changes to '%s' before closing?" ), libNickname );
1558 case wxID_YES: doSave =
true;
break;
1559 case wxID_NO: doSave =
false;
break;
1561 case wxID_CANCEL:
return false;
1571 msg.Printf(
_(
"Symbol library '%s' is not writable." ), libNickname );
1572 msg2 =
_(
"You must save to a different location." );
1574 if( dirtyCount == 1 )
1586 2000, wxICON_EXCLAMATION );
1626 msg = parent ? parent->GetName() :
_(
"Undefined!" );
1630 static wxChar UnitLetter[] = wxT(
"?ABCDEFGHIJKLMNOPQRSTUVWXYZ" );
1631 msg = UnitLetter[
m_unit];
1636 msg =
_(
"Alternate" );
1638 msg =
_(
"Standard" );
1645 msg =
_(
"Power Symbol" );
1647 msg =
_(
"Symbol" );
static TOOL_ACTION cancelInteractive
static TOOL_ACTION zoomFitScreen
void SetContentModified(bool aModified=true)
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, WX_INFOBAR::MESSAGE_TYPE aType=WX_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...
void ReCreateMenuBar()
Recreates 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.
virtual void SetParent(EDA_ITEM *aParent)
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)
virtual const wxString & GetText() const
Return the string associated with the text object.
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 UpdateAllItems(int aUpdateFlags)
Update all items in the view according to the given flags.
PROJECT & Prj() const
Return a reference to the PROJECT associated with this KIWAY.
virtual KIWAY_PLAYER * Player(FRAME_T aFrameType, bool doCreate=true, wxTopLevelWindow *aParent=nullptr)
Return the KIWAY_PLAYER* given a FRAME_T.
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.
wxString GetDescription() const override
const LIB_ID & GetLibId() const override
wxString GetKeyWords() const override
bool IsMulti() const override
bool IsPower() const override
void SetUnitCount(int aCount, bool aDuplicateDrawItems=true)
Set the units per symbol count.
bool UnitsLocked() const
Check whether symbol units are interchangeable.
SCH_FIELD & GetValueField() const
Return reference to the value field.
LIB_ID GetSourceLibId() const
bool HasAlternateBodyStyle() const override
Test if symbol has more than one body conversion type (DeMorgan).
SCH_FIELD * GetFieldById(int aId) const
Return pointer to the requested field.
SCH_FIELD & GetDatasheetField() const
Return reference to the datasheet field.
void LockUnits(bool aLockUnits)
Set interchangeable the property for symbol units.
void SetParent(LIB_SYMBOL *aParent=nullptr)
wxString GetName() const override
SCH_FIELD & GetReferenceField() const
Return reference to the reference designator field.
LIB_SYMBOL_SPTR SharedPtr() const
void SetHasAlternateBodyStyle(bool aHasAlternate, bool aDuplicatePins=true)
Set or clear the alternate body style (DeMorgan) for the symbol.
std::unique_ptr< LIB_SYMBOL > Flatten() const
Return a flattened symbol inheritance to the caller.
LIB_SYMBOL_REF & GetParent()
virtual void SetName(const wxString &aName)
const wxString GetDescription(const wxString &aNickname)
std::vector< wxString > GetLogicalLibs()
Return the logical library names, all of them that are pertinent to a look up done on this LIB_TABLE.
bool HasLibrary(const wxString &aNickname, bool aCheckEnabled=false) const
Test for the existence of aNickname in the library table.
wxString GetFullURI(const wxString &aLibNickname, bool aExpandEnvVars=true) const
Return the full URI of the library mapped to aLibNickname.
static const wxString GetPinningSymbol()
void RefreshLibTree()
Refreshes the tree (mainly to update highlighting and asterisking)
void CenterLibId(const LIB_ID &aLibId)
Ensure that an item is visible (preferably centered).
void SelectLibId(const LIB_ID &aLibId)
Select an item in the tree widget.
void ExpandLibId(const LIB_ID &aLibId)
Expand and item i the tree widget.
virtual COMMON_SETTINGS * GetCommonSettings() const
The backing store for a PROJECT, in JSON format.
static SYMBOL_LIB_TABLE * SchSymbolLibTable(PROJECT *aProject)
Accessor for project symbol library table.
static SEARCH_STACK * SchSearchS(PROJECT *aProject)
Accessor for Eeschema search stack.
Container for project specific data.
virtual PROJECT_FILE & GetProjectFile() const
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
wxTextCtrl * m_symbolNameCtrl
SymLibNameValidator m_validator
SYMBOL_SAVE_AS_HANDLER::CONFLICT_STRATEGY & m_conflictStrategy
SAVE_AS_DIALOG(SYMBOL_EDIT_FRAME *aParent, const wxString &aSymbolName, const wxString &aLibraryPreselect, SymLibNameValidator aValidator, SYMBOL_SAVE_AS_HANDLER::CONFLICT_STRATEGY &aConflictStrategy)
std::function< int(const wxString &libName, const wxString &symbolName)> SymLibNameValidator
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.
wxString SelectLibraryFromList()
Display a list of loaded libraries and allows the user to select a library.
void SetSymModificationTime(const wxDateTime &aTime)
Set the modification time of the symbol library table file.
void setSymWatcher(const LIB_ID *aSymbol)
Creates (or removes) a watcher on the specified 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.
Instances are attached to a symbol or sheet and provide a place for the symbol's value,...
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 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.
The symbol library editor main window.
bool m_isSymbolFromSchematic
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 addLibTableEntry(const wxString &aLibFile, TABLE_SCOPE aScope=GLOBAL_LIB_TABLE)
Add aLibFile to the symbol library table defined by aScope.
bool IsLibraryTreeShown() const override
wxString getTargetLib() const
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.
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
wxString GetCurLib() const
The nickname of the current library being edited and empty string if none.
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...
void RebuildSymbolUnitsList()
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 SetScreen(BASE_SCREEN *aScreen) override
void DuplicateSymbol(bool aFromClipboard)
Insert a duplicate symbol.
SCH_SCREEN * m_dummyScreen
< Helper screen used when no symbol is loaded
LIB_ID m_centerItemOnIdle
void saveSymbolCopyAs(bool aOpenCopy)
void SetCurSymbol(LIB_SYMBOL *aSymbol, bool aUpdateZoom)
Take ownership of aSymbol and notes that it is the one currently being edited.
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 ...
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.
void SelectActiveLibrary(const wxString &aLibrary=wxEmptyString)
Set the current active library to aLibrary.
int m_bodyStyle
Flag if the symbol being edited was loaded directly from a schematic.
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.
wxString SetCurLib(const wxString &aLibNickname)
Set the current library nickname and returns the old library nickname.
void UpdateTitle()
Update the main window title bar with the current library name and read only status of the library.
void ReCreateHToolbar() override
SYMBOL_TREE_PANE * m_treePane
bool LoadOneLibrarySymbolAux(LIB_SYMBOL *aLibEntry, const wxString &aLibrary, int aUnit, int aBodyStyle)
Create a copy of aLibEntry into memory.
bool LoadSymbolFromCurrentLib(const wxString &aAliasName, int aUnit=0, int aBodyStyle=0)
Load a symbol from the current active library, optionally setting the selected unit and convert.
bool saveCurrentSymbol()
Store the currently modified symbol in the library manager buffer.
void CopySymbolToClipboard()
void SaveSymbolCopyAs(bool aOpenCopy)
Save the currently selected symbol to a new name and/or location.
wxString AddLibraryFile(bool aCreateNew)
Create or add an existing library to the symbol library table.
void ensureUniqueName(LIB_SYMBOL *aSymbol, const wxString &aLibrary)
void OnModify() override
Must be called after a schematic change in order to set the "modify" flag of the current symbol.
void SetShowDeMorgan(bool show)
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 ...
SYMBOL_SAVEAS_TYPE GetOption() const
LIB_SYMBOL * GetBufferedSymbol(const wxString &aAlias, const wxString &aLibrary)
Return the symbol copy from the buffer.
bool UpdateSymbolAfterRename(LIB_SYMBOL *aSymbol, const wxString &oldAlias, const wxString &aLibrary)
Update the symbol buffer with a new version of the symbol when the name has changed.
bool IsLibraryReadOnly(const wxString &aLibrary) const
Return true if the library is stored in a read-only file.
bool ClearSymbolModified(const wxString &aAlias, const wxString &aLibrary) const
Clear the modified flag for a symbol.
bool LibraryExists(const wxString &aLibrary, bool aCheckEnabled=false) const
Return true if library exists.
bool ClearLibraryModified(const wxString &aLibrary) const
Clear the modified flag for all symbols in a library.
LIB_SYMBOL * GetAlias(const wxString &aAlias, 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...
SCH_SCREEN * GetScreen(const wxString &aAlias, const wxString &aLibrary)
Return the screen used to edit a specific symbol.
bool IsLibraryModified(const wxString &aLibrary) const
Return true if library has unsaved modifications.
wxArrayString GetLibraryNames() const
Return the array of library names.
bool SymbolExists(const wxString &aAlias, const wxString &aLibrary) const
Return true if symbol with a specific alias exists in library (either original one or buffered).
bool RemoveSymbol(const wxString &aName, const wxString &aLibrary)
Remove the symbol from the symbol buffer.
bool IsSymbolModified(const wxString &aAlias, const wxString &aLibrary) const
Return true if symbol has unsaved modifications.
bool RevertLibrary(const wxString &aLibrary)
Revert unsaved changes for a symbolicular library.
void GetSymbolNames(const wxString &aLibName, wxArrayString &aSymbolNames, SYMBOL_NAME_FILTER aFilter=SYMBOL_NAME_FILTER::ALL)
bool RevertAll()
Revert all pending changes.
LIB_ID RevertSymbol(const wxString &aAlias, const wxString &aLibrary)
Revert unsaved changes for a symbolicular symbol.
SYMBOL_LIB_TABLE_ROW * GetLibrary(const wxString &aLibrary) const
Find a single library within the (aggregate) library table.
bool UpdateSymbol(LIB_SYMBOL *aSymbol, const wxString &aLibrary)
Update the symbol buffer with a new version of the symbol.
bool SaveLibrary(const wxString &aLibrary, const wxString &aFileName, SCH_IO_MGR::SCH_FILE_T aFileType=SCH_IO_MGR::SCH_FILE_T::SCH_LEGACY)
Save library to a file, including unsaved changes.
bool HasDerivedSymbols(const wxString &aSymbolName, const wxString &aLibraryName)
Check if symbol aSymbolName in library aLibraryName is a root symbol that has derived symbols.
Hold a record identifying a symbol library accessed by the appropriate symbol library SCH_IO object i...
LIB_SYMBOL * LoadSymbol(const wxString &aNickname, const wxString &aName)
Load a LIB_SYMBOL having aName from the library given by aNickname.
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)
LIB_TREE * GetLibTree() const
virtual void SetShowPinNumbers(bool aShow)
Set or clear the pin number visibility flag.
int GetPinNameOffset() const
virtual void SetShowPinNames(bool aShow)
Set or clear the pin name visibility flag.
void SetExcludedFromBOM(bool aExcludeFromBOM)
Set or clear the exclude from schematic bill of materials flag.
void SetPinNameOffset(int aOffset)
Set the offset in mils of the pin name text from the pin symbol.
void SetExcludedFromBoard(bool aExcludeFromBoard)
Set or clear exclude from board netlist flag.
void ShowMessageFor(const wxString &aMessage, int aTime, int aFlags=wxICON_INFORMATION, MESSAGE_TYPE aType=WX_INFOBAR::MESSAGE_TYPE::GENERIC)
Show the infobar with the provided message and icon for a specific period of time.
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.
void DisplayError(wxWindow *aParent, const wxString &aText, int aDisplayTime)
Display an error or warning message box with aMessage.
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.
This file is part of the common library.
static const std::string KiCadSymbolLibFileExtension
static wxString KiCadSymbolLibFileWildcard()
This file is part of the common library.
std::shared_ptr< LIB_SYMBOL > LIB_SYMBOL_SPTR
shared pointer to LIB_SYMBOL
@ ALL
All except INITIAL_ADD.
bool contains(const _Container &__container, _Value __value)
Returns true if the container contains the given value.
void Refresh()
Update the board display after modifying it by a python script (note: it is automatically called by a...
PGM_BASE & Pgm()
The global Program "get" accessor.
void Format(OUTPUTFORMATTER *out, int aNestLevel, int aCtl, const CPTREE &aTree)
Output a PTREE into s-expression format via an OUTPUTFORMATTER derivative.
KIWAY Kiway(KFCTL_STANDALONE)
MODEL3D_FORMAT_TYPE fileType(const char *aFileName)
wxString UnescapeString(const wxString &aSource)
std::vector< wxString > pinned_symbol_libs
static std::vector< LIB_SYMBOL_SPTR > GetParentChain(const LIB_SYMBOL &aSymbol)
Get a list of all the symbols in the parental chain of a symbol, with the "leaf" symbol at the start ...
static std::vector< wxString > CheckForParentalChainConflicts(LIB_SYMBOL_LIBRARY_MANAGER &aLibMgr, LIB_SYMBOL &aSymbol, 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::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.
Definition for symbol library class.
@ DATASHEET_FIELD
name of datasheet
@ FOOTPRINT_FIELD
Field Name Module PCB, i.e. "16DIP300".
@ VALUE_FIELD
Field Value of part, i.e. "3.3K".
@ MANDATORY_FIELDS
The first 5 are mandatory, and must be instantiated in SCH_COMPONENT and LIB_PART constructors.
@ REFERENCE_FIELD
Field Reference of part, i.e. "IC21".
Definition of file extensions used in Kicad.