kicad/eeschema/symbol_editor/symbol_edit_frame.h

561 lines
18 KiB
C
Raw Normal View History

/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2014 Jean-Pierre Charras, jp.charras at wanadoo.fr
* Copyright (C) 2008 Wayne Stambaugh <stambaughw@gmail.com>
* Copyright (C) 2004-2021 KiCad Developers, see AUTHORS.txt for contributors.
2017-11-12 17:55:20 +00:00
* Copyright (C) 2017 CERN
* @author Maciej Suminski <maciej.suminski@cern.ch>
*
* 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
*/
2020-10-31 01:27:16 +00:00
#ifndef SYMBOL_EDIT_FRAME_H
#define SYMBOL_EDIT_FRAME_H
#include <sch_base_frame.h>
#include <sch_screen.h>
#include <lib_item.h>
#include <ee_collectors.h>
#include <core/optional.h>
class SCH_EDIT_FRAME;
2017-11-12 17:55:20 +00:00
class SYMBOL_LIB_TABLE;
2021-06-10 18:51:46 +00:00
class LIB_SYMBOL;
class LIB_FIELD;
2021-08-06 19:54:26 +00:00
class DIALOG_LIB_TEXT_PROPERTIES;
class SYMBOL_TREE_PANE;
class LIB_TREE_NODE;
class LIB_ID;
2020-10-31 01:27:16 +00:00
class SYMBOL_LIBRARY_MANAGER;
class SYMBOL_EDITOR_SETTINGS;
/**
* The symbol library editor main window.
*/
2020-10-31 01:27:16 +00:00
class SYMBOL_EDIT_FRAME : public SCH_BASE_FRAME
{
public:
2020-10-31 01:27:16 +00:00
SYMBOL_EDIT_FRAME( KIWAY* aKiway, wxWindow* aParent );
2020-10-31 01:27:16 +00:00
~SYMBOL_EDIT_FRAME() override;
/**
2020-12-27 16:46:12 +00:00
* Switch currently used canvas ( Cairo / OpenGL).
*/
void SwitchCanvas( EDA_DRAW_PANEL_GAL::GAL_TYPE aCanvasType ) override;
/**
* Get if any symbols or libraries have been modified but not saved.
*
* @return true if the any changes have not been saved
*/
bool IsContentModified() const override;
/**
* Check if any pending libraries have been modified.
*
2019-06-16 18:51:47 +00:00
* This only checks for modified libraries. If a new symbol was created and modified
* and no libraries have been modified, the return value will be false.
*
* @return True if there are any pending library modifications.
*/
bool HasLibModifications() const;
2020-12-27 16:46:12 +00:00
/**
* The nickname of the current library being edited and empty string if none.
*/
2017-11-12 17:55:20 +00:00
wxString GetCurLib() const;
2020-12-27 16:46:12 +00:00
/**
* Set the current library nickname and returns the old library nickname.
*/
wxString SetCurLib( const wxString& aLibNickname );
LIB_TREE_NODE* GetCurrentTreeNode() const;
/**
* Return the LIB_ID of the library or symbol selected in the symbol tree.
*/
LIB_ID GetTreeLIBID( int* aUnit = nullptr ) const;
/**
* Return the current symbol being edited or NULL if none selected.
*
2021-06-10 18:51:46 +00:00
* This is a LIB_SYMBOL that I own, it is at best a copy of one in a library.
*/
LIB_SYMBOL* GetCurSymbol() const { return m_symbol; }
/**
2021-06-10 18:51:46 +00:00
* Take ownership of aSymbol and notes that it is the one currently being edited.
*/
void SetCurSymbol( LIB_SYMBOL* aSymbol, bool aUpdateZoom );
2020-10-31 01:27:16 +00:00
SYMBOL_LIBRARY_MANAGER& GetLibManager();
SELECTION& GetCurrentSelection() override;
2016-09-24 18:53:15 +00:00
void ReCreateMenuBar() override;
2019-06-16 18:51:47 +00:00
// See comments for m_SyncPinEdit.
bool SynchronizePins();
2017-11-12 17:55:20 +00:00
/**
2020-12-27 16:46:12 +00:00
* Create or add an existing library to the symbol library table.
2017-11-12 17:55:20 +00:00
*/
bool AddLibraryFile( bool aCreateNew );
2017-11-12 17:55:20 +00:00
/**
* Create a new symbol in the selected library.
2017-11-12 17:55:20 +00:00
*/
void CreateNewSymbol();
2017-11-12 17:55:20 +00:00
void ImportSymbol();
void ExportSymbol();
2017-10-31 11:13:20 +00:00
2017-11-12 17:55:20 +00:00
/**
* Save the selected symbol or library.
*/
void Save();
/**
* Save the currently selected symbol to a new name and/or location.
2017-11-12 17:55:20 +00:00
*/
void SaveSymbolAs();
/**
* Save the currently selected library to a new file.
*/
void SaveLibraryAs();
/**
* Save all modified symbols and libraries.
*/
void SaveAll();
2017-11-12 17:55:20 +00:00
/**
* Revert unsaved changes in a symbol, restoring to the last saved state.
2017-11-12 17:55:20 +00:00
*/
void Revert( bool aConfirm = true );
void RevertAll();
void DeleteSymbolFromLibrary();
void CopySymbolToClipboard();
void LoadSymbol( const wxString& aLibrary, const wxString& aSymbol, int Unit );
2017-11-12 17:55:20 +00:00
/**
* Insert a duplicate symbol.
2020-12-27 16:46:12 +00:00
*
* If \a aFromClipboard is true then action is a paste.
2017-11-12 17:55:20 +00:00
*/
void DuplicateSymbol( bool aFromClipboard );
2019-05-08 18:56:03 +00:00
void OnSelectUnit( wxCommandEvent& event );
2021-03-18 11:46:07 +00:00
void OnToggleSymbolTree( wxCommandEvent& event );
2017-10-31 11:13:20 +00:00
2021-03-18 11:46:07 +00:00
bool IsSymbolTreeShown();
void FreezeLibraryTree();
void ThawLibraryTree();
void OnUpdateUnitNumber( wxUpdateUIEvent& event );
void UpdateAfterSymbolProperties( wxString* aOldName = nullptr );
void RebuildSymbolUnitsList();
bool canCloseWindow( wxCloseEvent& aCloseEvent ) override;
void doCloseWindow() override;
void OnExitKiCad( wxCommandEvent& event );
2016-09-24 18:53:15 +00:00
void ReCreateHToolbar() override;
void ReCreateVToolbar() override;
void ReCreateOptToolbar() override;
void LoadSettings( APP_SETTINGS_BASE* aCfg ) override;
void SaveSettings( APP_SETTINGS_BASE* aCfg ) override;
SYMBOL_EDITOR_SETTINGS* GetSettings() const
{
return m_settings;
}
APP_SETTINGS_BASE* config() const override;
COLOR_SETTINGS* GetColorSettings() const override;
/**
* Trigger the wxCloseEvent, which is handled by the function given to EVT_CLOSE() macro:
* <p>
2020-10-31 01:27:16 +00:00
* EVT_CLOSE( SYMBOL_EDIT_FRAME::OnCloseWindow )
* </p>
*/
void CloseWindow( wxCommandEvent& event )
{
// Generate a wxCloseEvent
Close( false );
}
2010-11-12 15:17:10 +00:00
/**
* Must be called after a schematic change in order to set the "modify" flag of the
2019-05-08 18:56:03 +00:00
* current symbol.
*/
2019-05-08 18:56:03 +00:00
void OnModify() override;
2019-06-01 19:48:01 +00:00
int GetUnit() const { return m_unit; }
void SetUnit( int aUnit ) { m_unit = aUnit; }
2019-06-01 19:48:01 +00:00
int GetConvert() const { return m_convert; }
void SetConvert( int aConvert ) { m_convert = aConvert; }
2019-06-01 19:48:01 +00:00
bool GetShowDeMorgan() const { return m_showDeMorgan; }
void SetShowDeMorgan( bool show ) { m_showDeMorgan = show; }
void ClearMsgPanel() override
{
UpdateSymbolMsgPanelInfo();
}
bool IsSymbolFromSchematic() const { return m_isSymbolFromSchematic; }
bool IsSymbolFromLegacyLibrary() const;
/**
* Display the documentation of the selected symbol.
*/
void UpdateSymbolMsgPanelInfo();
// General editing
2015-01-27 11:01:58 +00:00
/**
* Create a copy of the current symbol, and save it in the undo list.
*
* Because a symbol in library editor does not have a lot of primitives, the full data is
* duplicated. It is not worth to try to optimize this save function.
2015-01-27 11:01:58 +00:00
*/
2020-10-31 01:27:16 +00:00
void SaveCopyInUndoList( EDA_ITEM* aItem, UNDO_REDO aUndoType = UNDO_REDO::LIBEDIT,
bool aAppend = false );
void GetSymbolFromUndoList();
void GetSymbolFromRedoList();
void RollbackSymbolFromUndo();
2019-05-08 18:56:03 +00:00
/**
* Free the undo or redo list from \a aList element.
*
* - Wrappers are deleted.
* - data pointed by wrappers are deleted if not in use in schematic
* i.e. when they are copy of a schematic item or they are no more in use (DELETED)
*
2020-07-13 13:50:35 +00:00
* @param whichList = the UNDO_REDO_CONTAINER to clear
* @param aItemCount = the count of items to remove. < 0 for all items
* items are removed from the beginning of the list.
* So this function can be called to remove old commands
*/
2020-07-13 13:50:35 +00:00
void ClearUndoORRedoList( UNDO_REDO_LIST whichList, int aItemCount = -1 ) override;
/**
2020-12-27 16:46:12 +00:00
* Select the currently active library and loads the symbol from \a aLibId.
*
* @param aLibId is the #LIB_ID of the symbol to select.
* @param aUnit the unit to show
* @param aConvert the DeMorgan variant to show
* @return true if the symbol defined by \a aLibId was loaded.
*/
2021-03-19 20:27:30 +00:00
bool LoadSymbol( const LIB_ID& aLibId, int aUnit, int aConvert );
/**
2020-12-27 16:46:12 +00:00
* Print a page.
*/
2020-12-20 18:18:54 +00:00
void PrintPage( const RENDER_SETTINGS* aSettings ) override;
2010-11-12 15:17:10 +00:00
/**
2020-12-27 16:46:12 +00:00
* Create the SVG print file for the current edited symbol.
*/
void SVGPlotSymbol( const wxString& aFullFileName );
2010-03-28 14:46:49 +00:00
/**
* Synchronize the library manager to the symbol library table, and then the symbol tree
* to the library manager. Optionally displays a progress dialog.
*/
void SyncLibraries( bool aShowProgress, const wxString& aForceRefresh = wxEmptyString );
/**
2020-12-27 16:46:12 +00:00
* Filter, sort, and redisplay the library tree.
*
* Does NOT synchronize it with libraries in disk.
*/
void RegenerateLibraryTree();
/**
* Redisplay the library tree. Used after changing modified states, descriptions, etc.
*/
void RefreshLibraryTree();
/**
2020-12-27 16:46:12 +00:00
* Allow the symbol editor to install its preferences panel into the preferences dialog.
*/
2019-06-09 21:57:23 +00:00
void InstallPreferences( PAGED_DIALOG* aParent, PANEL_HOTKEYS_EDITOR* aHotkeysPanel ) override;
/**
* Called after the preferences dialog is run.
*/
void CommonSettingsChanged( bool aEnvVarsChanged, bool aTextVarsChanged ) override;
void ShowChangedLanguage() override;
void SetScreen( BASE_SCREEN* aScreen ) override;
const BOX2I GetDocumentExtents( bool aIncludeAllVisible = true ) const override;
void RebuildView();
/**
* Rebuild the GAL and redraw the screen. Call when something went wrong.
*/
void HardRedraw() override;
void KiwayMailIn( KIWAY_EXPRESS& mail ) override;
/**
* Load a symbol from the schematic to edit in place.
*
* @param aSymbol the symbol to edit.
*/
2021-06-10 14:10:55 +00:00
void LoadSymbolFromSchematic( SCH_SYMBOL* aSymbol );
/**
* Test if a symbol is loaded and can be edited.
*
* The following conditions are required for a symbol to be editable:
* - The symbol must selected from either a library or the schematic.
* - The symbol must not be from a legacy library.
*
* Note that many things are not editable in a non-root symbol (ie: an alias), but others
* are so this routine no longer returns false for an alias.
*/
bool IsSymbolEditable() const;
bool IsSymbolAlias() const;
///< Restore the empty editor screen, without any symbol or library selected.
void emptyScreen();
///< Return either the symbol selected in the symbol tree, if context menu is active or the
///< currently modified symbol.
LIB_ID GetTargetLibId() const;
2020-12-27 16:46:12 +00:00
protected:
void setupUIConditions() override;
2017-11-13 21:12:49 +00:00
private:
2020-12-27 16:46:12 +00:00
// Set up the tool framework
void setupTools();
void saveSymbolAs();
2020-12-27 16:46:12 +00:00
/**
* Save the changes to the current library.
*
* A backup file of the current library is saved with the .bak extension before the
* changes made to the library are saved.
*
* @param aLibrary is the library name.
* @param aNewFile Ask for a new file name to save the library.
* @return True if the library was successfully saved.
*/
bool saveLibrary( const wxString& aLibrary, bool aNewFile );
/**
* Update the main window title bar with the current library name and read only status
* of the library.
*/
void updateTitle();
/**
* Set the current active library to \a aLibrary.
*
* @param aLibrary the nickname of the library in the symbol library table. If empty,
* display list of available libraries to select from.
*/
void SelectActiveLibrary( const wxString& aLibrary = wxEmptyString );
/**
* Display a list of loaded libraries in the symbol library and allows the user to select
* a library.
*
* This list is sorted, with the library cache always at end of the list
*
* @return the library nickname used in the symbol library table.
*/
wxString SelectLibraryFromList();
/**
* Load a symbol from the current active library, optionally setting the selected unit
* and convert.
*
* @param aAliasName The symbol alias name to load from the current library.
* @param aUnit Unit to be selected
* @param aConvert Convert to be selected
* @return true if the symbol loaded correctly.
*/
bool LoadSymbolFromCurrentLib( const wxString& aAliasName, int aUnit = 0, int aConvert = 0 );
/**
* Create a copy of \a aLibEntry into memory.
*
2021-06-10 18:51:46 +00:00
* @param aLibEntry A pointer to the LIB_SYMBOL object to an already loaded symbol.
2020-12-27 16:46:12 +00:00
* @param aLibrary the path to the library file that \a aLibEntry was loaded from. This is
* for error messaging purposes only.
* @param aUnit the initial unit to show.
* @param aConvert the initial DeMorgan variant to show.
* @return True if a copy of \a aLibEntry was successfully copied.
*/
bool LoadOneLibrarySymbolAux( LIB_SYMBOL* aLibEntry, const wxString& aLibrary, int aUnit,
int aConvert );
2020-12-27 16:46:12 +00:00
/**
* Display a dialog asking the user to select a symbol library table.
*
* @param aOptional if set the Cancel button will be relabelled "Skip".
* @return Pointer to the selected symbol library table or nullptr if canceled.
*/
SYMBOL_LIB_TABLE* selectSymLibTable( bool aOptional = false );
2020-12-27 16:46:12 +00:00
///< Create a backup copy of a file with requested extension.
bool backupFile( const wxFileName& aOriginalFile, const wxString& aBackupExt );
///< Return currently edited symbol.
LIB_SYMBOL* getTargetSymbol() const;
2017-11-12 17:55:20 +00:00
2020-12-27 16:46:12 +00:00
///< Return either the library selected in the symbol tree, if context menu is active or
///< the library that is currently modified.
2017-11-13 21:12:49 +00:00
wxString getTargetLib() const;
/*
2020-12-27 16:46:12 +00:00
* Return true when the operation has succeeded (all requested libraries have been saved
* or none was selected and confirmed by OK).
2020-12-27 16:46:12 +00:00
*
* @param aRequireConfirmation when true, the user must be asked to confirm.
*/
bool saveAllLibraries( bool aRequireConfirmation );
///< Save the current symbol.
bool saveCurrentSymbol();
2018-08-11 20:46:03 +00:00
///< Store the currently modified symbol in the library manager buffer.
void storeCurrentSymbol();
2017-11-12 17:55:20 +00:00
///< Return true if \a aLibId is an alias for the editor screen symbol.
bool isCurrentSymbol( const LIB_ID& aLibId ) const;
2017-11-12 17:55:20 +00:00
2021-06-10 18:51:46 +00:00
///< Rename LIB_SYMBOL aliases to avoid conflicts before adding a symbol to a library.
void ensureUniqueName( LIB_SYMBOL* aSymbol, const wxString& aLibrary );
enum TABLE_SCOPE
{
GLOBAL_LIB_TABLE,
PROJECT_LIB_TABLE
};
/**
* Add \a aLibFile to the symbol library table defined by \a aScope.
*
* @note The library defined by \a aLibFile must be a KiCad (s-expression) library.
*
* @param aLibFile is the full path and file name of the symbol library to add to the table.
* @param aScope defines if \a aLibFile is added to the global or project library table.
* @return true if successful or false if a failure occurs.
*/
bool addLibTableEntry( const wxString& aLibFile, TABLE_SCOPE aScope = GLOBAL_LIB_TABLE );
/**
* Replace the file path of the symbol library table entry \a aLibNickname with \a aLibFile.
*
* @note The library defined by \a aLibFile must be a KiCad (s-expression) library.
*
* @param aLibNickmane is the nickname of an existing library table entry.
* @param aLibFile is the full path and file name of the symbol library to replace in the
* table.
* @return true if successful or false if a failure occurs.
*/
bool replaceLibTableEntry( const wxString& aLibNickname, const wxString& aLibFile );
DECLARE_EVENT_TABLE()
2020-12-27 16:46:12 +00:00
public:
/**
* Set to true to synchronize pins at the same position when editing symbols with multiple
* units or multiple body styles. Deleting or moving pins will affect all pins at the same
* location.
* When units are interchangeable, synchronizing editing of pins is usually the best way,
* because if units are interchangeable, it implies that all similar pins are at the same
* location.
* When units are not interchangeable, do not synchronize editing of pins, because each symbol
2020-12-27 16:46:12 +00:00
* is specific, and there are no (or few) similar pins between units.
*
* Setting this to false allows editing each pin per symbol or body style regardless other
* pins at the same location. This requires the user to open each symbol or body style to make
2020-12-27 16:46:12 +00:00
* changes to the other pins at the same location.
*
* To know if others pins must be coupled when editing a pin, use SynchronizePins() instead
* of m_syncPinEdit, because SynchronizePins() is more reliable (takes in account the fact
* units are interchangeable, there are more than one unit).
*
* @todo Determine why this member variable is public when all the rest are private and
* either make it private or document why it needs to be public.
*/
bool m_SyncPinEdit;
private:
///< Helper screen used when no symbol is loaded
2020-12-27 16:46:12 +00:00
SCH_SCREEN* m_dummyScreen;
LIB_SYMBOL* m_symbol; // a symbol I own, it is not in any library, but a
2020-12-27 16:46:12 +00:00
// copy could be.
wxComboBox* m_unitSelectBox; // a ComboBox to select a unit to edit (if the
// symbol has multiple units)
2021-06-10 14:10:55 +00:00
SYMBOL_TREE_PANE* m_treePane; // symbol search tree widget
2020-12-27 16:46:12 +00:00
SYMBOL_LIBRARY_MANAGER* m_libMgr; // manager taking care of temporary modifications
SYMBOL_EDITOR_SETTINGS* m_settings; // Handle to the settings
// The unit number to edit and show
int m_unit;
// Show the normal shape ( m_convert <= 1 ) or the converted shape ( m_convert > 1 )
int m_convert;
///< Flag if the symbol being edited was loaded directly from a schematic.
bool m_isSymbolFromSchematic;
/**
* The reference of the symbol.
*
* @note This is only valid when the current symbol was loaded from the schematic.
*/
wxString m_reference;
// True to force DeMorgan/normal tools selection enabled.
// They are enabled when the loaded symbol has graphic items for converted shape
// But under some circumstances (New symbol created) these tools must left enabled
static bool m_showDeMorgan;
};
2020-10-31 01:27:16 +00:00
#endif // SYMBOL_EDIT_FRAME_H