72 wxCHECK( aItem, *
this );
79 Stage( member, aChangeType, aScreen, aRecurse );
103 Stage( item, aChangeType, aScreen );
135 view->Update( symbol );
140 view->Update( aChild );
151 frame->PushSymbolToUndoList( aMessage,
copy );
181 bool itemsDeselected =
false;
182 bool selectedModified =
false;
183 bool dirtyConnectivity =
false;
184 bool refreshConnectivity =
false;
185 bool refreshHierarchy =
false;
199 std::vector<SCH_ITEM*> bulkAddedItems;
200 std::vector<SCH_ITEM*> bulkRemovedItems;
201 std::vector<SCH_ITEM*> itemsChanged;
202 std::vector<std::unique_ptr<SCH_ITEM>> cleanupRemovedItems;
204 auto notifyModel = [&]()
210 if( !bulkAddedItems.empty() )
214 if( !bulkRemovedItems.empty() )
218 if( !itemsChanged.empty() )
222 if( refreshHierarchy )
225 bulkAddedItems.clear();
226 bulkRemovedItems.clear();
227 itemsChanged.clear();
230 auto updateConnectivityFlag =
233 if( schItem->IsConnectable() || ( schItem->Type() ==
SCH_RULE_AREA_T ) )
235 dirtyConnectivity =
true;
248 if( enteredGroup && frame )
269 auto stageRemovedGroups = [&]()
272 std::vector<std::pair<EDA_GROUP*, BASE_SCREEN*>> removedItemGroups;
277 int changeType = entry.m_type &
CHT_TYPE;
279 wxCHECK2( schItem,
continue );
282 removedItemGroups.emplace_back( schItem->
GetParentGroup(), entry.m_screen );
285 for(
const auto& [
group, screen] : removedItemGroups )
288 stageRemovedGroups();
289 bool cleanupPending =
true;
290 std::set<SCH_SCREEN*> touchedScreens;
292 for(
size_t index = 0; ; )
296 if( !cleanupPending || !dirtyConnectivity || ( aCommitFlags &
SKIP_CONNECTIVITY ) || !schematic )
299 cleanupPending =
false;
307 stageRemovedGroups();
318 wxCHECK2( schItem,
continue );
319 wxCHECK2( screen,
continue );
321 touchedScreens.insert( screen );
328 selectedModified =
true;
333 [&selectedModified](
SCH_ITEM* aChild )
336 selectedModified =
true;
348 updateConnectivityFlag( schItem );
356 screen->
Append( schItem );
358 if( view && screen == currentScreen )
359 view->
Add( schItem );
362 if( frame && screen == currentScreen )
365 screen->
Update( schItem );
367 bulkAddedItems.push_back( schItem );
370 refreshHierarchy =
true;
377 updateConnectivityFlag( schItem );
392 itemsDeselected =
true;
397 static_cast<SCH_FIELD*
>( schItem )->SetVisible(
false );
402 cleanupRemovedItems.emplace_back( schItem );
405 group->RemoveItem( schItem );
409 screen->
Remove( schItem );
411 if( view && screen == currentScreen )
415 if( frame && screen == currentScreen )
418 screen->
Update( schItem );
421 refreshHierarchy =
true;
423 bulkRemovedItems.push_back( schItem );
438 updateConnectivityFlag( schItem );
443 refreshConnectivity =
true;
462 if( *itemCopy == *schItem )
481 wxCHECK2( modifiedSheet && originalSheet,
continue );
484 refreshHierarchy =
true;
487 if( frame && screen == currentScreen )
490 screen->
Update( schItem );
492 itemsChanged.push_back( schItem );
527 screen->SetContentModified();
533 cleanupRemovedItems.clear();
535 if( ( dirtyConnectivity || refreshConnectivity ) && !( aCommitFlags &
SKIP_CONNECTIVITY ) )
537 wxLogTrace( wxS(
"CONN_PROFILE" ),
538 wxS(
"SCH_COMMIT::pushSchEdit() connectivity refresh, cleanup=%d." ),
539 static_cast<int>( connectivityCleanUp ) );
545 nullptr,
nullptr,
nullptr,
nullptr,
true );
549 if( refreshHierarchy && frame )
555 if( itemsDeselected )
558 if( selectedModified )
579 if( frame && frame->GetCanvas() )
580 frame->GetCanvas()->Refresh();
594 if( parent && parent->
IsType( { SCH_SYMBOL_T, SCH_TABLE_T, SCH_SHEET_T, SCH_LABEL_LOCATE_ANY_T } ) )
607 std::vector<KIID> selected;
612 if( item.IsSelected() )
613 selected.push_back( item.m_Uuid );
628 return aItem->
Clone();
672 std::vector<SCH_ITEM*> bulkAddedItems;
673 std::vector<SCH_ITEM*> bulkRemovedItems;
674 std::vector<SCH_ITEM*> itemsChanged;
678 int changeType = ent.m_type &
CHT_TYPE;
679 int changeFlags = ent.m_type &
CHT_FLAGS;
684 wxCHECK2( item && screen,
continue );
699 bulkRemovedItems.push_back( item );
714 bulkAddedItems.push_back( item );
719 wxCHECK2(
copy,
break );
788 ent.m_copy =
nullptr;
793 if( bulkAddedItems.size() > 0 )
796 if( bulkRemovedItems.size() > 0 )
799 if( itemsChanged.size() > 0 )
819 if( entry.m_item && entry.m_item->IsSCH_ITEM() && entry.m_item->m_Uuid == aID )
Handles how to draw a screen (a board, a schematic ...)
COMMIT & Modify(EDA_ITEM *aItem, BASE_SCREEN *aScreen=nullptr, RECURSE_MODE aRecurse=RECURSE_MODE::NO_RECURSE)
Modify a given item in the model.
COMMIT_LINE * findEntry(EDA_ITEM *aItem, BASE_SCREEN *aScreen=nullptr)
Search for an entry describing change for a particular item.
std::vector< COMMIT_LINE > m_entries
COMMIT & Removed(EDA_ITEM *aItem, BASE_SCREEN *aScreen=nullptr)
void clear()
Should be called in Push() & Revert() methods.
virtual COMMIT & Stage(EDA_ITEM *aItem, CHANGE_TYPE aChangeType, BASE_SCREEN *aScreen=nullptr, RECURSE_MODE aRecurse=RECURSE_MODE::NO_RECURSE)
Add a change of the item aItem of type aChangeType to the change list.
Calculate the connectivity of a schematic and generate netlists.
void RemoveItem(SCH_ITEM *aItem)
bool IsType(FRAME_T aType) const
The base class for create windows for drawing purpose.
A set of EDA_ITEMs (i.e., without duplicates).
void AddItem(EDA_ITEM *aItem)
Add item to group.
A base class for most all the KiCad significant classes used in schematics and boards.
void SetFlags(EDA_ITEM_FLAGS aMask)
virtual EDA_GROUP * GetParentGroup() const
KICAD_T Type() const
Returns the type of object.
void ClearFlags(EDA_ITEM_FLAGS aMask=EDA_ITEM_ALL_FLAGS)
virtual bool IsType(const std::vector< KICAD_T > &aScanTypes) const
Check whether the item is one of the listed types.
EDA_ITEM * GetParent() const
virtual EDA_ITEM * Clone() const
Create a duplicate of this item with linked list members set to NULL.
bool HasFlag(EDA_ITEM_FLAGS aFlag) const
static const TOOL_EVENT SelectedItemsModified
Selected items were moved, this can be very high frequency on the canvas, use with care.
static const TOOL_EVENT UnselectedEvent
void SetLink(EDA_ITEM *aItem)
Hold a (potentially large) number of VIEW_ITEMs and renders them on a graphics device provided by the...
virtual void Add(VIEW_ITEM *aItem, int aDrawPriority=-1)
Add a VIEW_ITEM to the view.
virtual void Remove(VIEW_ITEM *aItem)
Remove a VIEW_ITEM from the view.
Define a library symbol object.
LIB_ITEMS_CONTAINER & GetDrawItems()
Return a reference to the draw item list.
void RunOnChildren(const std::function< void(SCH_ITEM *)> &aFunction, RECURSE_MODE aMode) override
A holder to handle information on schematic or board items.
void PushItem(const ITEM_PICKER &aItem)
Push aItem to the top of the list.
void SetDescription(const wxString &aDescription)
unsigned GetCount() const
Holds all the data relating to one schematic.
void OnItemsAdded(std::vector< SCH_ITEM * > &aNewItems)
Must be used if Add() is used using a BULK_x ADD_MODE to generate a change event for listeners.
void OnItemsRemoved(std::vector< SCH_ITEM * > &aRemovedItems)
Must be used if Remove() is used using a BULK_x REMOVE_MODE to generate a change event for listeners.
SCH_SHEET_LIST Hierarchy() const
Return the full schematic flattened hierarchical sheet list.
void CleanUpConnections(SCH_COMMIT *aCommit, SCH_CLEANUP_FLAGS aCleanupFlags, const std::set< SCH_SCREEN * > &aLocalScreens={})
Prepare source geometry and intersheet references before rebuilding connectivity.
CONNECTION_GRAPH * ConnectionGraph() const
void RecalculateConnections(SCH_COMMIT *aCommit, SCH_CLEANUP_FLAGS aCleanupFlags, TOOL_MANAGER *aToolManager, PROGRESS_REPORTER *aProgressReporter=nullptr, KIGFX::SCH_VIEW *aSchView=nullptr, std::function< void(SCH_ITEM *)> *aChangedItemHandler=nullptr, PICKED_ITEMS_LIST *aLastChangeList=nullptr, bool aCleanupDone=false)
Generate the connection data for the entire schematic hierarchy.
void OnItemsChanged(std::vector< SCH_ITEM * > &aItems)
Notify the schematic and its listeners that an item on the schematic has been modified in some way.
A shim class between EDA_DRAW_FRAME and several derived classes: SYMBOL_EDIT_FRAME,...
COMMIT & Stage(EDA_ITEM *aItem, CHANGE_TYPE aChangeType, BASE_SCREEN *aScreen=nullptr, RECURSE_MODE aRecurse=RECURSE_MODE::NO_RECURSE) override
Add a change of the item aItem of type aChangeType to the change list.
virtual void Push(const wxString &aMessage=wxT("A commit"), int aCommitFlags=0) override
Execute the changes.
EDA_ITEM * undoLevelItem(EDA_ITEM *aItem) const override
virtual void Revert() override
Revert the commit by restoring the modified items state.
virtual EDA_ITEM * ResolveItem(KIID &aID) override
Search for an item in this commit that matches the provided KIID.
void RemovedForCleanup(SCH_ITEM *aItem, SCH_SCREEN *aScreen)
Retain the pre-edit state of an item already removed from its screen by cleanup.
SCH_COMMIT(TOOL_MANAGER *aToolMgr)
void pushLibEdit(const wxString &aMessage, int aCommitFlags)
EDA_ITEM * makeImage(EDA_ITEM *aItem) const override
void pushSchEdit(const wxString &aMessage, int aCommitFlags)
Schematic editor (Eeschema) main window.
void RecalculateConnections(SCH_COMMIT *aCommit, SCH_CLEANUP_FLAGS aCleanupFlags, PROGRESS_REPORTER *aProgressReporter=nullptr, bool aCleanupDone=false)
Generate the connection data for the entire schematic hierarchy.
SCH_SCREEN * GetScreen() const override
Return a pointer to a BASE_SCREEN or one of its derivatives.
void SaveCopyInUndoList(SCH_SCREEN *aScreen, SCH_ITEM *aItemToCopy, UNDO_REDO aTypeCommand, bool aAppend)
Create a copy of the current schematic item, and put it in the undo list.
SCH_SHEET_PATH & GetCurrentSheet() const
void UpdateHierarchyNavigator(bool aRefreshNetNavigator=true, bool aClear=false)
Update the hierarchy navigation tree and history.
void UpdateItem(EDA_ITEM *aItem, bool isAddOrDelete=false, bool aUpdateRtree=false) override
Mark an item for refresh.
void UpdateHopOveredWires(SCH_ITEM *aItem)
virtual const wxString & GetText() const override
Return the string associated with the text object.
A set of SCH_ITEMs (i.e., without duplicates).
Base class for any item which can be embedded within the SCHEMATIC container class,...
virtual bool IsConnectable() const
virtual void RunOnChildren(const std::function< void(SCH_ITEM *)> &aFunction, RECURSE_MODE aMode)
SCHEMATIC * Schematic() const
Search the item hierarchy to find a SCHEMATIC.
void SetConnectivityDirty(bool aDirty=true)
bool IsConnectivityDirty() const
virtual bool HasConnectivityChanges(const SCH_ITEM *aItem, const SCH_SHEET_PATH *aInstance=nullptr) const
Check if aItem has connectivity changes against this object.
bool IsGroupableType() const
void SwapItemData(SCH_ITEM *aImage)
Swap data between aItem and aImage.
void Append(SCH_ITEM *aItem, bool aUpdateLibSymbol=true)
bool Remove(SCH_ITEM *aItem, bool aUpdateLibSymbol=true)
Remove aItem from the schematic associated with this screen.
void Update(SCH_ITEM *aItem, bool aUpdateLibSymbol=true)
Update aItem's bounding box in the tree.
bool CheckIfOnDrawList(const SCH_ITEM *aItem) const
A container for handling SCH_SHEET_PATH objects in a flattened hierarchy.
Handle access to a stack of flattened SCH_SHEET objects by way of a path for creating a flattened sch...
Sheet symbol placed in a schematic, and is the entry point for a sub schematic.
bool HasHierarchyChanges(const SCH_SHEET &aOther) const
std::vector< const SCH_PIN * > GetPins(const SCH_SHEET_PATH *aSheet) const
Retrieve a list of the SCH_PINs for the given sheet path.
void UpdatePins()
Updates the cache of SCH_PIN objects for each pin.
void SetRef(const SCH_SHEET_PATH *aSheet, const wxString &aReference)
Set the reference for the given sheet path for this symbol.
The symbol library editor main window.
void SetCurSymbol(LIB_SYMBOL *aSymbol, bool aUpdateZoom)
Take ownership of aSymbol and notes that it is the one currently being edited.
LIB_SYMBOL * GetCurSymbol() const
Return the current symbol being edited or NULL if none selected.
CHANGE_TYPE
Types of changes.
@ CHT_DONE
Flag to indicate the change is already applied.
#define SELECTED
Item was manually selected by the user.
#define SELECTED_BY_DRAG
Item was algorithmically selected as a dragged item.
#define EDA_ITEM_ALL_FLAGS
#define STRUCT_DELETED
flag indication structures to be erased
#define ENDPOINT
ends. (Used to support dragging.)
#define STARTPOINT
When a line is selected, these flags indicate which.
@ FRAME_SCH_SYMBOL_EDITOR
This file contains miscellaneous commonly used macros and functions.
bool contains(const _Container &__container, _Value __value)
Returns true if the container contains the given value.
#define SKIP_CONNECTIVITY
#define DELETE_REMOVED_ITEMS
Class to handle a set of SCH_ITEMs.
EDA_ITEM * m_copy
Optional copy of the item.
CHANGE_TYPE m_type
Modification type.
EDA_ITEM * m_item
Main item that is added/deleted/modified.
@ REFERENCE
Field Reference of part, i.e. "IC21".