31#include <wx/choicdlg.h>
33#include <wx/textdlg.h>
48 wxString msg = wxString::Format(
_(
"Design block '%s' already exists in library '%s'." ),
52 if(
OKOrCancelDialog( aFrame,
_(
"Confirmation" ), msg,
_(
"Overwrite existing design block?" ),
_(
"Overwrite" ) )
64 wxString msg = wxString::Format(
_(
"Design block '%s' already has a schematic." ),
67 if(
OKOrCancelDialog( aFrame,
_(
"Confirmation" ), msg,
_(
"Overwrite existing schematic?" ),
_(
"Overwrite" ) )
87 std::vector<SCH_ITEM*> sheets;
97 wxFileName fn = wxFileNameFromPath( aSheetPath.
Last()->
GetName() );
107 blk.
GetFields()[field.GetCanonicalName()] = field.GetText();
118 if(
Prj().DesignBlockLibs()->DesignBlockExists( libName, newName ) && !
checkOverwriteDb(
this, libName, newName ) )
122 wxString tempFile = wxFileName::CreateTempFileName(
"design_block" );
126 DisplayErrorMessage(
this,
_(
"Error saving temporary schematic file to create design block." ) );
127 wxRemoveFile( tempFile );
133 bool success =
false;
146 wxRemoveFile( tempFile );
165 std::vector<SCH_ITEM*> sheets;
168 if( !sheets.empty() )
174 std::unique_ptr<DESIGN_BLOCK> blk;
197 blk->GetFields()[field.GetCanonicalName()] = field.GetText();
206 wxString tempFile = wxFileName::CreateTempFileName(
"design_block" );
209 DisplayErrorMessage(
this,
_(
"Error saving temporary schematic file to create design block." ) );
210 wxRemoveFile( tempFile );
214 blk->SetSchematicFile( tempFile );
216 bool success =
false;
229 wxRemoveFile( tempFile );
243 if( selection.
Empty() )
259 if( selection.
Size() == 1 )
287 wxFileName fn = wxFileNameFromPath(
GetScreen()->GetFileName() );
299 if(
Prj().DesignBlockLibs()->DesignBlockExists( libName, newName ) && !
checkOverwriteDb(
this, libName, newName ) )
311 group->RunOnChildren(
314 selection.
Add( aItem );
327 tempScreen->
Append( clonedGroup );
339 tempScreen->
Append( clonedSymbol );
358 wxString tempFile = wxFileName::CreateTempFileName(
"design_block" );
361 DisplayErrorMessage(
this,
_(
"Error saving temporary schematic file to create design block." ) );
362 wxRemoveFile( tempFile );
368 bool success =
false;
380 if( success && !
group )
392 for(
EDA_ITEM* edaItem : selection )
394 if( !edaItem->IsSCH_ITEM() )
415 commit.
Add( newGroup, screen );
416 commit.
Push(
_(
"Group Items" ) );
426 else if( success &&
group && !
group->HasDesignBlockLink() )
433 commit.
Push(
_(
"Set Group Design Block Link" ) );
437 wxRemoveFile( tempFile );
453 if( selection.
Empty() )
469 if( selection.
Size() == 1 )
488 if( selection.
Size() == 1 )
501 selection.
Add( aItem );
507 std::unique_ptr<DESIGN_BLOCK> blk;
528 if( !aItem->IsSCH_ITEM() )
541 copy->SetParentGroup(
nullptr );
557 wxString tempFile = wxFileName::CreateTempFileName(
"design_block" );
561 DisplayErrorMessage(
this,
_(
"Error saving temporary schematic file to create design block." ) );
562 wxRemoveFile( tempFile );
566 blk->SetSchematicFile( tempFile );
568 bool success =
false;
582 if( !
group->HasDesignBlockLink() )
587 group->SetDesignBlockLibId( aLibId );
589 commit.
Push(
_(
"Set Group Design Block Link" ) );
598 if( success && !
group )
610 for(
EDA_ITEM* edaItem : selection )
612 if( !edaItem->IsSCH_ITEM() )
633 commit.
Add( newGroup, screen );
634 commit.
Push(
_(
"Group Items" ) );
646 wxRemoveFile( tempFile );
static TOOL_ACTION selectItem
Select an item (specified as the event parameter).
static TOOL_ACTION selectionClear
Clear the current selection.
COMMIT & Modify(EDA_ITEM *aItem, BASE_SCREEN *aScreen=nullptr, RECURSE_MODE aRecurse=RECURSE_MODE::NO_RECURSE)
Modify a given item in the model.
COMMIT & Add(EDA_ITEM *aItem, BASE_SCREEN *aScreen=nullptr)
Add a new item to 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 set of EDA_ITEMs (i.e., without duplicates).
void SetDesignBlockLibId(const LIB_ID &aLibId)
void AddItem(EDA_ITEM *aItem)
Add item to group.
void SetName(const wxString &aName)
A base class for most all the KiCad significant classes used in schematics and boards.
virtual EDA_GROUP * GetParentGroup() const
KICAD_T Type() const
Returns the type of object.
virtual void SetParent(EDA_ITEM *aParent)
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.
SCH_SCREEN * GetScreen() const override
Return a pointer to a BASE_SCREEN or one of its derivatives.
bool UpdateDesignBlockFromSelection(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 UpdateDesignBlockFromSheet(const LIB_ID &aLibId, 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
EDA_ITEM * AsEdaItem() override
Base class for any item which can be embedded within the SCHEMATIC container class,...
const SYMBOL * GetParentSymbol() const
bool IsGroupableType() const
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.