30#include <wx/choicdlg.h>
32#include <wx/textdlg.h>
42#include <nlohmann/json.hpp>
46 wxString msg = wxString::Format(
_(
"Design block '%s' already exists in library '%s'." ), newName.GetData(),
49 if(
OKOrCancelDialog( aFrame,
_(
"Confirmation" ), msg,
_(
"Overwrite existing design block?" ),
_(
"Overwrite" ) )
64 if(
OKOrCancelDialog( aFrame,
_(
"Confirmation" ), msg,
_(
"Overwrite existing schematic?" ),
_(
"Overwrite" ) )
84 std::vector<SCH_ITEM*> sheets;
94 wxFileName fn = wxFileNameFromPath( aSheetPath.
Last()->
GetName() );
99 std::vector<SCH_FIELD>& shFields = aSheetPath.
Last()->
GetFields();
100 nlohmann::ordered_map<wxString, wxString> dbFields;
104 if( f.GetId() == FIELD_T::SHEET_NAME || f.GetId() == FIELD_T::SHEET_FILENAME )
107 dbFields[f.GetCanonicalName()] = f.GetText();
120 if(
Prj().DesignBlockLibs()->DesignBlockExists( libName, newName ) && !
checkOverwriteDb(
this, libName, newName ) )
126 wxString tempFile = wxFileName::CreateTempFileName(
"design_block" );
129 DisplayErrorMessage(
this,
_(
"Error saving temporary schematic file to create design block." ) );
130 wxRemoveFile( tempFile );
136 bool success =
false;
148 wxRemoveFile( tempFile );
167 std::vector<SCH_ITEM*> sheets;
170 if( !sheets.empty() )
196 std::vector<SCH_FIELD>& shFields = aSheetPath.
Last()->
GetFields();
197 nlohmann::ordered_map<wxString, wxString> dbFields = blk->
GetFields();
201 if( f.GetId() == FIELD_T::SHEET_NAME || f.GetId() == FIELD_T::SHEET_FILENAME )
204 dbFields[f.GetCanonicalName()] = f.GetText();
215 wxString tempFile = wxFileName::CreateTempFileName(
"design_block" );
218 DisplayErrorMessage(
this,
_(
"Error saving temporary schematic file to create design block." ) );
219 wxRemoveFile( tempFile );
225 bool success =
false;
238 wxRemoveFile( tempFile );
252 if( selection.
Empty() )
268 if( selection.
Size() == 1 )
283 wxFileName fn = wxFileNameFromPath(
GetScreen()->GetFileName() );
295 if(
Prj().DesignBlockLibs()->DesignBlockExists( libName, newName ) && !
checkOverwriteDb(
this, libName, newName ) )
315 wxString tempFile = wxFileName::CreateTempFileName(
"design_block" );
318 DisplayErrorMessage(
this,
_(
"Error saving temporary schematic file to create design block." ) );
319 wxRemoveFile( tempFile );
325 bool success =
false;
337 wxRemoveFile( tempFile );
353 if( selection.
Empty() )
369 if( selection.
Size() == 1 )
415 wxString tempFile = wxFileName::CreateTempFileName(
"design_block" );
418 DisplayErrorMessage(
this,
_(
"Error saving temporary schematic file to create design block." ) );
419 wxRemoveFile( tempFile );
425 bool success =
false;
438 wxRemoveFile( tempFile );
DESIGN_BLOCK * DesignBlockLoad(const wxString &aNickname, const wxString &aDesignBlockName, bool aKeepUUID=false)
Load a design block having aDesignBlockName from the library given by aNickname.
SAVE_T DesignBlockSave(const wxString &aNickname, const DESIGN_BLOCK *aDesignBlock, bool aOverwrite=true)
Write aDesignBlock to an existing library given by aNickname.
void SelectLibId(const LIB_ID &aLibId)
LIB_ID GetSelectedLibId(int *aUnit=nullptr) const
void SetSchematicFile(const wxString &aFile)
void SetLibId(const LIB_ID &aName)
const wxString & GetSchematicFile() const
void SetFields(nlohmann::ordered_map< wxString, wxString > &aFields)
const LIB_ID & GetLibId() const
const nlohmann::ordered_map< wxString, wxString > & GetFields() const
A base class for most all the KiCad significant classes used in schematics and boards.
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()
A logical library item identifier and consists of various portions much like a URI.
const wxString GetUniStringLibItemName() const
Get strings for display messages in dialogs.
const UTF8 & GetLibItemName() const
const UTF8 & GetLibNickname() const
Return the logical library name portion of a LIB_ID.
virtual DESIGN_BLOCK_LIB_TABLE * DesignBlockLibs()
Return the table of design block libraries.
bool SaveSheetToDesignBlock(const LIB_ID &aLibId, SCH_SHEET_PATH &aSheetPath)
SCH_SCREEN * GetScreen() const override
Return a pointer to a BASE_SCREEN or one of its derivatives.
bool SaveSelectionToDesignBlock(const LIB_ID &aLibId)
SCHEMATIC * m_schematic
The currently loaded schematic.
SCH_SHEET_PATH & GetCurrentSheet() const
bool saveSchematicFile(SCH_SHEET *aSheet, const wxString &aSavePath)
Save aSheet to a schematic file.
SCH_DESIGN_BLOCK_PANE * m_designBlocksPane
bool SaveSheetAsDesignBlock(const wxString &aLibraryName, SCH_SHEET_PATH &aSheetPath)
bool SaveSelectionAsDesignBlock(const wxString &aLibraryName)
Base class for any item which can be embedded within the SCHEMATIC container class,...
void Append(SCH_ITEM *aItem, bool aUpdateLibSymbol=true)
void GetSheets(std::vector< SCH_ITEM * > *aItems) const
Similar to Items().OfType( SCH_SHEET_T ), but return the sheets in a deterministic order (L-R,...
Handle access to a stack of flattened SCH_SHEET objects by way of a path for creating a flattened sch...
SCH_SCREEN * LastScreen()
SCH_SHEET * Last() const
Return a pointer to the last SCH_SHEET of the list.
void push_back(SCH_SHEET *aSheet)
Forwarded method from std::vector.
Sheet symbol placed in a schematic, and is the entry point for a sub schematic.
std::vector< SCH_FIELD > & GetFields()
Return a reference to the vector holding the sheet's fields.
void SetScreen(SCH_SCREEN *aScreen)
Set the SCH_SCREEN associated with this sheet to aScreen.
bool HasType(KICAD_T aType) const
Checks if there is at least one item of requested kind.
int Size() const
Returns the number of selected parts.
bool Empty() const
Checks if there is anything selected.
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.
void DisplayErrorMessage(wxWindow *aParent, const wxString &aText, const wxString &aExtraInfo)
Display an error message with aMessage.
void DisplayError(wxWindow *aParent, const wxString &aText)
Display an error or warning message box with aMessage.
This file is part of the common library.
Helper functions to substitute paths with environmental variables.
This file is part of the common library.
bool checkOverwriteDb(wxWindow *aFrame, wxString &libname, wxString &newName)
bool checkOverwriteDbSchematic(wxWindow *aFrame, const LIB_ID &aLibId)
Definition of file extensions used in Kicad.