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() );
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" );
125 DisplayErrorMessage(
this,
_(
"Error saving temporary schematic file to create design block." ) );
126 wxRemoveFile( tempFile );
132 bool success =
false;
145 wxRemoveFile( tempFile );
164 std::vector<SCH_ITEM*> sheets;
167 if( !sheets.empty() )
173 std::unique_ptr<DESIGN_BLOCK> blk;
196 blk->GetFields()[field.GetCanonicalName()] = field.GetText();
205 wxString tempFile = wxFileName::CreateTempFileName(
"design_block" );
208 DisplayErrorMessage(
this,
_(
"Error saving temporary schematic file to create design block." ) );
209 wxRemoveFile( tempFile );
213 blk->SetSchematicFile( tempFile );
215 bool success =
false;
228 wxRemoveFile( tempFile );
242 if( selection.
Empty() )
258 if( selection.
Size() == 1 )
286 wxFileName fn = wxFileNameFromPath(
GetScreen()->GetFileName() );
298 if(
Prj().DesignBlockLibs()->DesignBlockExists( libName, newName ) && !
checkOverwriteDb(
this, libName, newName ) )
310 group->RunOnChildren(
313 selection.
Add( aItem );
326 tempScreen->
Append( clonedGroup );
347 wxString tempFile = wxFileName::CreateTempFileName(
"design_block" );
350 DisplayErrorMessage(
this,
_(
"Error saving temporary schematic file to create design block." ) );
351 wxRemoveFile( tempFile );
357 bool success =
false;
370 wxRemoveFile( tempFile );
386 if( selection.
Empty() )
402 if( selection.
Size() == 1 )
421 if( selection.
Size() == 1 )
434 selection.
Add( aItem );
440 std::unique_ptr<DESIGN_BLOCK> blk;
461 if( !aItem->IsSCH_ITEM() )
474 copy->SetParentGroup(
nullptr );
490 wxString tempFile = wxFileName::CreateTempFileName(
"design_block" );
494 DisplayErrorMessage(
this,
_(
"Error saving temporary schematic file to create design block." ) );
495 wxRemoveFile( tempFile );
499 blk->SetSchematicFile( tempFile );
501 bool success =
false;
515 if( !
group->HasDesignBlockLink() )
520 group->SetDesignBlockLibId( aLibId );
522 commit.
Push(
"Set Group Design Block Link" );
532 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.
SAVE_T SaveDesignBlock(const wxString &aNickname, const DESIGN_BLOCK *aDesignBlock, bool aOverwrite=true)
Write aDesignBlock to an existing library given by aNickname.
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_LIBRARY_ADAPTER * 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.
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.