43using namespace std::placeholders;
47 m_toolMgr( aTool->GetManager() ),
48 m_isBoardEditor( false ),
49 m_isFootprintEditor( false )
60 m_toolMgr( aFrame->GetToolManager() ),
69 m_isBoardEditor( false ),
70 m_isFootprintEditor( false )
82 m_isBoardEditor( aIsBoardEditor ),
83 m_isFootprintEditor( false )
102 group->RunOnChildren(
105 Stage( child, aChangeType );
152 if( zone->GetIsRuleArea() )
155 if( ( zone->GetLayerSet() & layers ).any()
156 && zone->GetBoundingBox().Intersects( bbox ) )
174 bool itemsDeselected =
false;
175 bool selectedModified =
false;
178 bool solderMaskDirty =
false;
179 bool autofillZones =
false;
180 std::vector<BOARD_ITEM*> staleTeardropPadsAndVias;
181 std::set<PCB_TRACK*> staleTeardropTracks;
187 undoList.SetDescription( aMessage );
190 std::shared_ptr<CONNECTIVITY_DATA> connectivity = board->
GetConnectivity();
194 std::vector<BOARD_ITEM*> bulkAddedItems;
195 std::vector<BOARD_ITEM*> bulkRemovedItems;
196 std::vector<BOARD_ITEM*> itemsChanged;
202 autofillZones =
true;
205 zone->CacheBoundingBox();
210 if( !ent.m_item || !ent.m_item->IsBOARD_ITEM() )
220 solderMaskDirty =
true;
228 staleTeardropPadsAndVias.push_back(
pad );
232 staleTeardropPadsAndVias.push_back( boardItem );
238 staleTeardropTracks.insert( track );
240 std::vector<PAD*> connectedPads;
241 std::vector<PCB_VIA*> connectedVias;
243 connectivity->GetConnectedPadsAndVias( track, &connectedPads, &connectedVias );
245 for(
PAD*
pad : connectedPads )
246 staleTeardropPadsAndVias.push_back(
pad );
249 staleTeardropPadsAndVias.push_back(
via );
255 selectedModified =
true;
259 if( !staleTeardropPadsAndVias.empty() || !staleTeardropTracks.empty() )
260 teardropMgr.
RemoveTeardrops( *
this, &staleTeardropPadsAndVias, &staleTeardropTracks );
264 if( !ent.m_item || !ent.m_item->IsBOARD_ITEM() )
268 int changeType = ent.m_type &
CHT_TYPE;
269 int changeFlags = ent.m_type &
CHT_FLAGS;
281 undoList.PushItem(
ITEM_PICKER(
nullptr, boardItem, UNDO_REDO::NEWITEM ) );
288 wxCHECK2_MSG( parentFP,
continue,
"Commit thinks this is footprint editor, but "
289 "there is no first footprint!" );
290 parentFP->
Add( boardItem );
294 parentFP->Add( boardItem );
298 board->
Add( boardItem, ADD_MODE::BULK_INSERT );
299 bulkAddedItems.push_back( boardItem );
304 addedGroup =
static_cast<PCB_GROUP*
>( boardItem );
310 view->
Add( boardItem );
320 undoList.PushItem(
ITEM_PICKER(
nullptr, boardItem, UNDO_REDO::DELETED ) );
327 itemsDeselected =
true;
334 ent.m_parent = parentFP->
m_Uuid;
339 switch( boardItem->
Type() )
342 static_cast<PCB_FIELD*
>( boardItem )->SetVisible(
false );
366 view->
Remove( boardItem );
372 parentFP->
Remove( boardItem );
376 board->
Remove( boardItem, REMOVE_MODE::BULK );
377 bulkRemovedItems.push_back( boardItem );
385 board->
Remove( boardItem, REMOVE_MODE::BULK );
386 bulkRemovedItems.push_back( boardItem );
405 ITEM_PICKER itemWrapper(
nullptr, boardItem, UNDO_REDO::UNGROUP );
407 undoList.PushItem( itemWrapper );
410 group->RemoveItem( boardItem );
418 addedGroup->
AddItem( boardItem );
421 undoList.PushItem(
ITEM_PICKER(
nullptr, boardItem, UNDO_REDO::REGROUP ) );
430 if( ent.m_copy && ent.m_copy->IsBOARD_ITEM() )
431 boardItemCopy =
static_cast<BOARD_ITEM*
>( ent.m_copy );
435 ITEM_PICKER itemWrapper(
nullptr, boardItem, UNDO_REDO::CHANGED );
436 wxASSERT( boardItemCopy );
437 itemWrapper.
SetLink( boardItemCopy );
438 undoList.PushItem( itemWrapper );
444 connectivity->MarkItemNetAsDirty( boardItemCopy );
446 connectivity->Update( boardItem );
456 view->
Update( boardItem );
458 itemsChanged.push_back( boardItem );
486 connectivity->ClearRatsnest();
487 connectivity->ClearLocalRatsnest();
491 connectivity->RecalculateRatsnest(
this );
493 connectivity->ClearLocalRatsnest();
501 if( solderMaskDirty )
507 if( !staleTeardropPadsAndVias.empty() || !staleTeardropTracks.empty() )
509 teardropMgr.
UpdateTeardrops( *
this, &staleTeardropPadsAndVias, &staleTeardropTracks );
512 connectivity->RecalculateRatsnest(
this );
516 for(
size_t i = num_changes; i <
m_changes.size(); ++i )
528 wxCHECK2( boardItem,
continue );
533 itemWrapper.
SetLink( boardItemCopy );
534 undoList.PushItem( itemWrapper );
544 view->
Add( boardItem );
546 view->
Remove( boardItem );
548 view->
Update( boardItem );
553 if( bulkAddedItems.size() > 0 || bulkRemovedItems.size() > 0 || itemsChanged.size() > 0 )
569 if( itemsDeselected )
575 if( selectedModified )
587 if( !itemsDeselected && !autofillZones && !selectedModified )
589 std::vector<MSG_PANEL_ITEM> msg_list;
616 static_cast<BOARD_ITEM*
>( clone )->SetParentGroup(
nullptr );
629 std::shared_ptr<CONNECTIVITY_DATA> connectivity = board->
GetConnectivity();
633 std::vector<BOARD_ITEM*> bulkAddedItems;
634 std::vector<BOARD_ITEM*> bulkRemovedItems;
635 std::vector<BOARD_ITEM*> itemsChanged;
656 parentGroup->RemoveItem( boardItem );
662 view->
Remove( boardItem );
663 connectivity->Remove( boardItem );
667 parentFP->Remove( boardItem );
671 board->
Remove( boardItem, REMOVE_MODE::BULK );
672 bulkRemovedItems.push_back( boardItem );
682 view->
Add( boardItem );
683 connectivity->Add( boardItem );
691 static_cast<FOOTPRINT*
>( parent )->
Add( boardItem, ADD_MODE::INSERT );
695 board->
Add( boardItem, ADD_MODE::INSERT );
696 bulkAddedItems.push_back( boardItem );
704 view->
Remove( boardItem );
705 connectivity->Remove( boardItem );
713 group->RunOnChildren(
720 view->
Add( boardItem );
721 connectivity->Add( boardItem );
722 itemsChanged.push_back( boardItem );
736 if( bulkAddedItems.size() > 0 || bulkRemovedItems.size() > 0 || itemsChanged.size() > 0 )
741 connectivity->RecalculateRatsnest();
#define SKIP_CONNECTIVITY
Handles how to draw a screen (a board, a schematic ...)
void dirtyIntersectingZones(BOARD_ITEM *item, int aChangeType)
virtual void Push(const wxString &aMessage=wxEmptyString, int aCommitFlags=0) override
Revert the commit by restoring the modified items state.
COMMIT & Stage(EDA_ITEM *aItem, CHANGE_TYPE aChangeType, BASE_SCREEN *aScreen=nullptr) override
EDA_ITEM * parentObject(EDA_ITEM *aItem) const override
virtual void Revert() override
static EDA_ITEM * MakeImage(EDA_ITEM *aItem)
EDA_ITEM * makeImage(EDA_ITEM *aItem) const override
BOARD_COMMIT(EDA_DRAW_FRAME *aFrame)
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
void SetParentGroup(PCB_GROUP *aGroup)
void SwapItemData(BOARD_ITEM *aImage)
Swap data between aItem and aImage.
PCB_GROUP * GetParentGroup() const
virtual bool IsOnLayer(PCB_LAYER_ID aLayer) const
Test to see if this object is on the given layer.
FOOTPRINT * GetParentFootprint() const
virtual LSET GetLayerSet() const
Return a std::bitset of all layers on which the item physically resides.
virtual void RunOnDescendants(const std::function< void(BOARD_ITEM *)> &aFunction, int aDepth=0) const
Invoke a function on all descendants.
virtual void RunOnChildren(const std::function< void(BOARD_ITEM *)> &aFunction) const
Invoke a function on all children.
Information pertinent to a Pcbnew printed circuit board.
void Add(BOARD_ITEM *aItem, ADD_MODE aMode=ADD_MODE::INSERT, bool aSkipConnectivity=false) override
Removes an item from the container.
BOARD_ITEM * GetItem(const KIID &aID) const
const ZONES & Zones() const
void OnItemsCompositeUpdate(std::vector< BOARD_ITEM * > &aAddedItems, std::vector< BOARD_ITEM * > &aRemovedItems, std::vector< BOARD_ITEM * > &aChangedItems)
Notify the board and its listeners that items on the board have been modified in a composite operatio...
FOOTPRINT * GetFirstFootprint() const
Get the first footprint on the board or nullptr.
void IncrementTimeStamp()
void OnRatsnestChanged()
Notify the board and its listeners that the ratsnest has been recomputed.
void GetMsgPanelInfo(EDA_DRAW_FRAME *aFrame, std::vector< MSG_PANEL_ITEM > &aList) override
Populate aList of MSG_PANEL_ITEM objects with it's internal state for display purposes.
void UpdateRatsnestExclusions()
Update the visibility flags on the current unconnected ratsnest lines.
void Remove(BOARD_ITEM *aBoardItem, REMOVE_MODE aMode=REMOVE_MODE::NORMAL) override
Removes an item from the container.
std::shared_ptr< CONNECTIVITY_DATA > GetConnectivity() const
Return a list of missing connections between components/tracks.
Represent a set of changes (additions, deletions or modifications) of a data model (e....
virtual COMMIT & Stage(EDA_ITEM *aItem, CHANGE_TYPE aChangeType, BASE_SCREEN *aScreen=nullptr)
bool Empty() const
Returns status of an item.
COMMIT & Add(EDA_ITEM *aItem, BASE_SCREEN *aScreen=nullptr)
Notify observers that aItem has been added.
int GetStatus(EDA_ITEM *aItem, BASE_SCREEN *aScreen=nullptr)
std::vector< COMMIT_LINE > m_changes
bool IsType(FRAME_T aType) const
The base class for create windows for drawing purpose.
void SetMsgPanel(const std::vector< MSG_PANEL_ITEM > &aList)
Clear the message panel and populates it with the contents of aList.
A base class for most all the KiCad significant classes used in schematics and boards.
virtual void ClearEditFlags()
virtual const BOX2I GetBoundingBox() const
Return the orthogonal bounding box of this object for display purposes.
void SetFlags(EDA_ITEM_FLAGS aMask)
KICAD_T Type() const
Returns the type of object.
virtual EDA_ITEM * Clone() const
Create a duplicate of this item with linked list members set to NULL.
virtual wxString GetClass() const =0
Return the class name.
EDA_ITEM_FLAGS GetFlags() 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 SetGroupId(KIID aId)
void SetLink(EDA_ITEM *aItem)
bool IsBOARD_ITEM() const
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.
virtual void Update(const VIEW_ITEM *aItem, int aUpdateFlags) const
For dynamic VIEWs, inform the associated VIEW that the graphical representation of this item has chan...
LSET is a set of PCB_LAYER_IDs.
static LSET AllCuMask(int aCuLayerCount=MAX_CU_LAYERS)
Return a mask holding the requested number of Cu PCB_LAYER_IDs.
static LSET PhysicalLayersMask()
Return a mask holding all layers which are physically realized.
DISPLAY_OPTIONS m_Display
static TOOL_ACTION zoneFillDirty
Base PCB main window class for Pcbnew, Gerbview, and CvPcb footprint viewer.
PCBNEW_SETTINGS * GetPcbNewSettings() const
void OnModify() override
Must be called after a change in order to set the "modify" flag and update other data structures and ...
virtual void SaveCopyInUndoList(EDA_ITEM *aItemToCopy, UNDO_REDO aTypeCommand)
Create a new entry in undo list of commands.
PCB_DRAW_PANEL_GAL * GetCanvas() const override
Return a pointer to GAL-based canvas of given EDA draw frame.
virtual void Update3DView(bool aMarkDirty, bool aRefresh, const wxString *aTitle=nullptr)
Update the 3D view, if the viewer is opened by this frame.
virtual void AppendCopyToUndoList(const PICKED_ITEMS_LIST &aItemsList, UNDO_REDO aTypeCommand)
As SaveCopyInUndoList, but appends the changes to the last undo item on the stack.
void RedrawRatsnest()
Return the bounding box of the view that should be used if model is not valid.
A set of BOARD_ITEMs (i.e., without duplicates).
static bool IsGroupableType(KICAD_T aType)
Check if the proposed type can be added to a group.
virtual bool RemoveItem(BOARD_ITEM *aItem)
Remove item from group.
virtual bool AddItem(BOARD_ITEM *aItem)
Add item to group.
A holder to handle information on schematic or board items.
TEARDROP_MANAGER manage and build teardrop areas A teardrop area is a polygonal area (a copper ZONE) ...
void UpdateTeardrops(BOARD_COMMIT &aCommit, const std::vector< BOARD_ITEM * > *dirtyPadsAndVias, const std::set< PCB_TRACK * > *dirtyTracks, bool aForceFullUpdate=false)
Update teardrops on a list of items.
void RemoveTeardrops(BOARD_COMMIT &aCommit, const std::vector< BOARD_ITEM * > *dirtyPadsAndVias, const std::set< PCB_TRACK * > *dirtyTracks)
Remove teardrops connected to any dirty pads, vias or tracks.
Handle a list of polygons defining a copper zone.
CHANGE_TYPE
Types of changes.
@ CHT_DONE
Flag to indicate the change is already applied.
#define STRUCT_DELETED
flag indication structures to be erased
#define UR_TRANSIENT
indicates the item is owned by the undo/redo stack
This file contains miscellaneous commonly used macros and functions.
#define UNIMPLEMENTED_FOR(type)
Class to handle a set of BOARD_ITEMs.
EDA_ITEM * m_copy
Optional copy of the item.
CHANGE_TYPE m_type
Modification type.
KIID m_parent
Parent item (primarily for undo of deleted items)
EDA_ITEM * m_item
Main item that is added/deleted/modified.
@ PCB_SHAPE_T
class PCB_SHAPE, a segment not on copper layers
@ PCB_DIM_ORTHOGONAL_T
class PCB_DIM_ORTHOGONAL, a linear dimension constrained to x/y
@ PCB_DIM_LEADER_T
class PCB_DIM_LEADER, a leader dimension (graphic item)
@ PCB_GENERATOR_T
class PCB_GENERATOR, generator on a layer
@ PCB_VIA_T
class PCB_VIA, a via (like a track segment on a copper layer)
@ PCB_DIM_CENTER_T
class PCB_DIM_CENTER, a center point marking (graphic item)
@ PCB_GROUP_T
class PCB_GROUP, a set of BOARD_ITEMs
@ PCB_TEXTBOX_T
class PCB_TEXTBOX, wrapped text on a layer
@ PCB_ZONE_T
class ZONE, a copper pour area
@ PCB_TEXT_T
class PCB_TEXT, text on a layer
@ PCB_REFERENCE_IMAGE_T
class PCB_REFERENCE_IMAGE, bitmap on a layer
@ PCB_FIELD_T
class PCB_FIELD, text associated with a footprint property
@ PCB_MARKER_T
class PCB_MARKER, a marker used to show something
@ PCB_TARGET_T
class PCB_TARGET, a target (graphic item)
@ PCB_FOOTPRINT_T
class FOOTPRINT, a footprint
@ PCB_DIM_ALIGNED_T
class PCB_DIM_ALIGNED, a linear dimension (graphic item)
@ PCB_PAD_T
class PAD, a pad in a footprint
@ PCB_ARC_T
class PCB_ARC, an arc track segment on a copper layer
@ PCB_TABLE_T
class PCB_TABLE, table of PCB_TABLECELLs
@ PCB_NETINFO_T
class NETINFO_ITEM, a description of a net
@ PCB_TRACE_T
class PCB_TRACK, a track segment (segment on a copper layer)
@ PCB_DIM_RADIAL_T
class PCB_DIM_RADIAL, a radius or diameter dimension
UNDO_REDO
Undo Redo considerations: Basically we have 3 cases New item Deleted item Modified item there is also...