27#include <wx/choicdlg.h>
29#include <wx/textdlg.h>
44 wxString msg = wxString::Format(
_(
"Design block '%s' already exists in library '%s'." ),
48 if(
OKOrCancelDialog( aFrame,
_(
"Confirmation" ), msg,
_(
"Overwrite existing design block?" ),
_(
"Overwrite" ) )
60 wxString msg = wxString::Format(
_(
"Design block '%s' already has a schematic." ),
63 if(
OKOrCancelDialog( aFrame,
_(
"Confirmation" ), msg,
_(
"Overwrite existing schematic?" ),
_(
"Overwrite" ) )
83 std::vector<SCH_ITEM*> sheets;
93 wxFileName fn = wxFileNameFromPath( aSheetPath.
Last()->
GetName() );
103 blk.
GetFields()[field.GetCanonicalName()] = field.GetText();
114 if(
Prj().DesignBlockLibs()->DesignBlockExists( libName, newName ) && !
checkOverwriteDb(
this, libName, newName ) )
118 wxString tempFile = wxFileName::CreateTempFileName(
"design_block" );
122 DisplayErrorMessage(
this,
_(
"Error saving temporary schematic file to create design block." ) );
123 wxRemoveFile( tempFile );
129 bool success =
false;
142 wxRemoveFile( tempFile );
161 std::vector<SCH_ITEM*> sheets;
164 if( !sheets.empty() )
170 std::unique_ptr<DESIGN_BLOCK> blk;
200 blk->GetFields()[field.GetCanonicalName()] = field.GetText();
209 wxString tempFile = wxFileName::CreateTempFileName(
"design_block" );
212 DisplayErrorMessage(
this,
_(
"Error saving temporary schematic file to create design block." ) );
213 wxRemoveFile( tempFile );
217 blk->SetSchematicFile( tempFile );
219 bool success =
false;
232 wxRemoveFile( tempFile );
246 if( selection.
Empty() )
262 if( selection.
Size() == 1 )
290 wxFileName fn = wxFileNameFromPath(
GetScreen()->GetFileName() );
302 if(
Prj().DesignBlockLibs()->DesignBlockExists( libName, newName ) && !
checkOverwriteDb(
this, libName, newName ) )
314 group->RunOnChildren(
317 selection.
Add( aItem );
330 tempScreen->
Append( clonedGroup );
342 tempScreen->
Append( clonedSymbol );
361 wxString tempFile = wxFileName::CreateTempFileName(
"design_block" );
364 DisplayErrorMessage(
this,
_(
"Error saving temporary schematic file to create design block." ) );
365 wxRemoveFile( tempFile );
371 bool success =
false;
383 if( success && !
group )
395 for(
EDA_ITEM* edaItem : selection )
397 if( !edaItem->IsSCH_ITEM() )
418 commit.
Add( newGroup, screen );
419 commit.
Push(
_(
"Group Items" ) );
430 else if( success &&
group && !
group->HasDesignBlockLink() )
437 commit.
Push(
_(
"Set Group Design Block Link" ) );
441 wxRemoveFile( tempFile );
457 if( selection.
Empty() )
473 if( selection.
Size() == 1 )
492 if( selection.
Size() == 1 )
505 selection.
Add( aItem );
511 std::unique_ptr<DESIGN_BLOCK> blk;
539 if( !aItem->IsSCH_ITEM() )
552 copy->SetParentGroup(
nullptr );
568 wxString tempFile = wxFileName::CreateTempFileName(
"design_block" );
572 DisplayErrorMessage(
this,
_(
"Error saving temporary schematic file to create design block." ) );
573 wxRemoveFile( tempFile );
577 blk->SetSchematicFile( tempFile );
579 bool success =
false;
593 if( !
group->HasDesignBlockLink() )
598 group->SetDesignBlockLibId( aLibId );
600 commit.
Push(
_(
"Set Group Design Block Link" ) );
609 if( success && !
group )
621 for(
EDA_ITEM* edaItem : selection )
623 if( !edaItem->IsSCH_ITEM() )
644 commit.
Add( newGroup, screen );
645 commit.
Push(
_(
"Group Items" ) );
658 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.