31#include <wx/choicdlg.h>
33#include <wx/textdlg.h>
47 wxString msg = wxString::Format(
_(
"Design block '%s' already exists in library '%s'." ),
51 if(
OKOrCancelDialog( aFrame,
_(
"Confirmation" ), msg,
_(
"Overwrite existing design block?" ),
_(
"Overwrite" ) )
63 wxString msg = wxString::Format(
_(
"Design block '%s' already has a schematic." ),
66 if(
OKOrCancelDialog( aFrame,
_(
"Confirmation" ), msg,
_(
"Overwrite existing schematic?" ),
_(
"Overwrite" ) )
86 std::vector<SCH_ITEM*> sheets;
96 wxFileName fn = wxFileNameFromPath( aSheetPath.
Last()->
GetName() );
103 if( field.GetId() == FIELD_T::SHEET_NAME || field.GetId() == FIELD_T::SHEET_FILENAME )
106 blk.
GetFields()[field.GetCanonicalName()] = field.GetText();
117 if(
Prj().DesignBlockLibs()->DesignBlockExists( libName, newName ) && !
checkOverwriteDb(
this, libName, newName ) )
121 wxString tempFile = wxFileName::CreateTempFileName(
"design_block" );
124 DisplayErrorMessage(
this,
_(
"Error saving temporary schematic file to create design block." ) );
125 wxRemoveFile( tempFile );
131 bool success =
false;
143 wxRemoveFile( tempFile );
162 std::vector<SCH_ITEM*> sheets;
165 if( !sheets.empty() )
171 std::unique_ptr<DESIGN_BLOCK> blk;
191 if( field.GetId() == FIELD_T::SHEET_NAME || field.GetId() == FIELD_T::SHEET_FILENAME )
194 blk->GetFields()[field.GetCanonicalName()] = field.GetText();
203 wxString tempFile = wxFileName::CreateTempFileName(
"design_block" );
206 DisplayErrorMessage(
this,
_(
"Error saving temporary schematic file to create design block." ) );
207 wxRemoveFile( tempFile );
211 blk->SetSchematicFile( tempFile );
213 bool success =
false;
226 wxRemoveFile( tempFile );
240 if( selection.
Empty() )
256 if( selection.
Size() == 1 )
273 wxFileName fn = wxFileNameFromPath(
GetScreen()->GetFileName() );
285 if(
Prj().DesignBlockLibs()->DesignBlockExists( libName, newName ) && !
checkOverwriteDb(
this, libName, newName ) )
303 wxString tempFile = wxFileName::CreateTempFileName(
"design_block" );
306 DisplayErrorMessage(
this,
_(
"Error saving temporary schematic file to create design block." ) );
307 wxRemoveFile( tempFile );
313 bool success =
false;
325 wxRemoveFile( tempFile );
341 if( selection.
Empty() )
357 if( selection.
Size() == 1 )
376 if( selection.
Size() == 1 )
389 selection.
Add( aItem );
391 RECURSE_MODE::NO_RECURSE );
395 std::unique_ptr<DESIGN_BLOCK> blk;
416 if( !aItem->IsSCH_ITEM() )
429 copy->SetParentGroup(
nullptr );
436 innerGroup->
RunOnChildren( cloneAndAdd, RECURSE_MODE::RECURSE );
445 wxString tempFile = wxFileName::CreateTempFileName(
"design_block" );
449 DisplayErrorMessage(
this,
_(
"Error saving temporary schematic file to create design block." ) );
450 wxRemoveFile( tempFile );
454 blk->SetSchematicFile( tempFile );
456 bool success =
false;
470 if( !
group->HasDesignBlockLink() )
475 group->SetDesignBlockLibId( aLibId );
477 commit.
Push(
"Set Group Design Block Link" );
487 wxRemoveFile( tempFile );
COMMIT & Modify(EDA_ITEM *aItem, BASE_SCREEN *aScreen=nullptr, RECURSE_MODE aRecurse=RECURSE_MODE::NO_RECURSE)
Modify a given item in the model.
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 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.
KICAD_T Type() const
Returns the type of 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()
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.
virtual void Push(const wxString &aMessage=wxT("A commit"), int aCommitFlags=0) override
Execute the changes.
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)
A set of SCH_ITEMs (i.e., without duplicates).
void RunOnChildren(const std::function< void(SCH_ITEM *)> &aFunction, RECURSE_MODE aMode) override
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.
virtual void Add(EDA_ITEM *aItem)
virtual void Remove(EDA_ITEM *aItem)
virtual void Clear() override
Remove all the stored items from the group.
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)
Class to handle a set of SCH_ITEMs.
Definition of file extensions used in Kicad.