42using namespace std::placeholders;
46 m_toolMgr( aTool->GetManager() ),
47 m_isBoardEditor( false )
55 m_toolMgr( aFrame->GetToolManager() ),
63 m_isBoardEditor( false )
77 wxCHECK( aItem, *
this );
83 static_cast<PCB_GROUP*
>( aItem )->RunOnChildren(
119 static_cast<PCB_GROUP*
>( item )->RunOnChildren(
140 if( zone->GetIsRuleArea() )
143 if( ( zone->GetLayerSet() & layers ).any()
144 && zone->GetBoundingBox().Intersects( bbox ) )
163 bool itemsDeselected =
false;
164 bool selectedModified =
false;
167 bool solderMaskDirty =
false;
168 bool autofillZones =
false;
169 std::vector<BOARD_ITEM*> staleTeardropPadsAndVias;
170 std::set<PCB_TRACK*> staleTeardropTracks;
178 std::shared_ptr<CONNECTIVITY_DATA> connectivity = board->
GetConnectivity();
182 std::vector<BOARD_ITEM*> bulkAddedItems;
183 std::vector<BOARD_ITEM*> bulkRemovedItems;
184 std::vector<BOARD_ITEM*> itemsChanged;
190 autofillZones =
true;
193 zone->CacheBoundingBox();
205 solderMaskDirty =
true;
213 staleTeardropPadsAndVias.push_back(
pad );
217 staleTeardropPadsAndVias.push_back( boardItem );
223 staleTeardropTracks.insert( track );
225 std::vector<PAD*> connectedPads;
226 std::vector<PCB_VIA*> connectedVias;
228 connectivity->GetConnectedPadsAndVias( track, &connectedPads, &connectedVias );
230 for(
PAD*
pad : connectedPads )
231 staleTeardropPadsAndVias.push_back(
pad );
234 staleTeardropPadsAndVias.push_back(
via );
240 selectedModified =
true;
244 if( !staleTeardropPadsAndVias.empty() || !staleTeardropTracks.empty() )
245 teardropMgr.
RemoveTeardrops( *
this, &staleTeardropPadsAndVias, &staleTeardropTracks );
249 int changeType = ent.m_type &
CHT_TYPE;
250 int changeFlags = ent.m_type &
CHT_FLAGS;
253 wxASSERT( ent.m_item );
254 wxCHECK2( boardItem,
continue );
266 undoList.PushItem(
ITEM_PICKER(
nullptr, boardItem, UNDO_REDO::NEWITEM ) );
272 parentFP->Add( boardItem );
276 board->
Add( boardItem, ADD_MODE::BULK_INSERT );
277 bulkAddedItems.push_back( boardItem );
285 view->
Add( boardItem );
295 undoList.PushItem(
ITEM_PICKER(
nullptr, boardItem, UNDO_REDO::DELETED ) );
302 itemsDeselected =
true;
309 ent.m_parent = parentFP->
m_Uuid;
314 switch( boardItem->
Type() )
335 view->
Remove( boardItem );
341 parentFP->
Remove( boardItem );
345 board->
Remove( boardItem, REMOVE_MODE::BULK );
346 bulkRemovedItems.push_back( boardItem );
354 view->
Remove( boardItem );
360 parentFP->
Remove( boardItem );
364 board->
Remove( boardItem, REMOVE_MODE::BULK );
365 bulkRemovedItems.push_back( boardItem );
373 board->
Remove( boardItem, REMOVE_MODE::BULK );
374 bulkRemovedItems.push_back( boardItem );
391 ITEM_PICKER itemWrapper(
nullptr, boardItem, UNDO_REDO::CHANGED );
392 wxASSERT( boardItemCopy );
393 itemWrapper.
SetLink( boardItemCopy );
394 undoList.PushItem( itemWrapper );
400 connectivity->MarkItemNetAsDirty( boardItemCopy );
402 connectivity->Update( boardItem );
412 view->
Update( boardItem );
414 itemsChanged.push_back( boardItem );
431 if( bulkAddedItems.size() > 0 )
434 if( bulkRemovedItems.size() > 0 )
437 if( itemsChanged.size() > 0 )
446 connectivity->ClearRatsnest();
447 connectivity->ClearLocalRatsnest();
451 connectivity->RecalculateRatsnest(
this );
453 connectivity->ClearLocalRatsnest();
461 if( solderMaskDirty )
467 if( !staleTeardropPadsAndVias.empty() || !staleTeardropTracks.empty() )
468 teardropMgr.
UpdateTeardrops( *
this, &staleTeardropPadsAndVias, &staleTeardropTracks );
471 for(
size_t i = num_changes; i <
m_changes.size(); ++i )
477 wxCHECK2( boardItem,
continue );
482 itemWrapper.
SetLink( boardItemCopy );
483 undoList.PushItem( itemWrapper );
493 view->
Add( boardItem );
495 view->
Remove( boardItem );
497 view->
Update( boardItem );
515 if( itemsDeselected )
521 if( selectedModified )
553 board_item->SetParentGroup(
nullptr );
564 std::shared_ptr<CONNECTIVITY_DATA> connectivity = board->
GetConnectivity();
568 std::vector<BOARD_ITEM*> bulkAddedItems;
569 std::vector<BOARD_ITEM*> bulkRemovedItems;
570 std::vector<BOARD_ITEM*> itemsChanged;
579 wxCHECK2( boardItem,
continue );
587 view->
Remove( boardItem );
588 connectivity->Remove( boardItem );
592 parentFP->Remove( boardItem );
596 board->
Remove( boardItem, REMOVE_MODE::BULK );
597 bulkRemovedItems.push_back( boardItem );
606 view->
Add( boardItem );
607 connectivity->Add( boardItem );
611 parentFP->Add( boardItem, ADD_MODE::INSERT );
615 board->
Add( boardItem, ADD_MODE::INSERT );
616 bulkAddedItems.push_back( boardItem );
623 view->
Remove( boardItem );
624 connectivity->Remove( boardItem );
627 wxASSERT( boardItemCopy );
640 view->
Add( boardItem );
641 connectivity->Add( boardItem );
643 itemsChanged.push_back( boardItem );
657 if( bulkAddedItems.size() > 0 )
660 if( bulkRemovedItems.size() > 0 )
663 if( itemsChanged.size() > 0 )
668 connectivity->RecalculateRatsnest();
#define SKIP_CONNECTIVITY
Handles how to draw a screen (a board, a schematic ...)
void dirtyIntersectingZones(BOARD_ITEM *item, int aChangeType)
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
virtual void Push(const wxString &aMessage=wxT("A commit"), int aCommitFlags=0) override
Revert the commit by restoring the modified items state.
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.
Information pertinent to a Pcbnew printed circuit board.
void OnItemChanged(BOARD_ITEM *aItem)
Notify the board and its listeners that an item on the board has been modified in some way.
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
void IncrementTimeStamp()
void FinalizeBulkRemove(std::vector< BOARD_ITEM * > &aRemovedItems)
Must be used if Remove() is used using a BULK_x REMOVE_MODE to generate a change event for listeners.
void OnRatsnestChanged()
Notify the board and its listeners that the ratsnest has been recomputed.
void FinalizeBulkAdd(std::vector< BOARD_ITEM * > &aNewItems)
Must be used if Add() is used using a BULK_x ADD_MODE to generate a change event for listeners.
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.
void OnItemsChanged(std::vector< BOARD_ITEM * > &aItems)
Notify the board and its listeners that an item on the board has been modified in some way.
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.
std::vector< COMMIT_LINE > m_changes
The base class for create windows for drawing purpose.
A base class for most all the KiCad significant classes used in schematics and boards.
virtual const BOX2I GetBoundingBox() const
Return the orthogonal bounding box of this object for display purposes.
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 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.
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.
bool RemoveItem(BOARD_ITEM *aItem)
Remove item from group.
bool AddItem(BOARD_ITEM *aItem)
Add item to group.
A holder to handle information on schematic or board items.
void SetDescription(const wxString &aDescription)
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
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_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_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_BITMAP_T
class PCB_BITMAP, bitmap on a layer
@ 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_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...