27using namespace std::placeholders;
162 if( oldA && oldA->
m_Uuid == newId )
163 itemA->Enable(
false );
165 if( oldB && oldB->
m_Uuid == newId )
166 itemB->Enable(
false );
272 std::shared_ptr<SELECT_MENU> selectMenu = std::make_shared<SELECT_MENU>();
273 selectMenu->SetTool(
this );
274 m_menu->RegisterSubMenu( selectMenu );
276 std::shared_ptr<NET_CHAINS_MENU> netChainsMenu = std::make_shared<NET_CHAINS_MENU>();
277 netChainsMenu->SetTool(
this );
278 m_menu->RegisterSubMenu( netChainsMenu );
282 auto& menu =
m_menu->GetMenu();
284 auto activeToolCondition =
299 auto groupEnterCondition =
302 auto applyDesignBlockLayoutCondition = [](
const SELECTION& aSel )
315 auto inGroupCondition =
326 if( aSel.GetSize() != 1 )
336 menu.AddMenu( netChainsMenu.get(), netItemSelection );
337 menu.AddSeparator( 1000 );
348 menu.AddSeparator( haveHighlight, 1 );
354 menu.AddSeparator( 1 );
398 wxMouseState keyboardState = wxGetMouseState();
400 setModifiersState( keyboardState.ShiftDown(), keyboardState.ControlDown(), keyboardState.AltDown() );
423 trackDragAction = cfg->m_TrackDragAction;
437 else if( evt->IsMouseDown(
BUT_LEFT ) )
462 if( constraintTool->SelectConstraintAt( evt->Position() ) )
468 constraintTool->ClearConstraintSelection();
501 bool selectionCancelled =
false;
505 selectPoint( evt->Position(),
false, &selectionCancelled );
510 m_frame->GetCanvas()->ForceRefresh();
512 if( !selectionCancelled )
526 if( !item->IsBOARD_ITEM() )
528 allSameParent =
false;
536 allSameParent =
false;
544 else if( sharedParent != gen )
546 allSameParent =
false;
551 if( allSameParent && sharedParent )
560 else if( evt->IsDblClick(
BUT_LEFT ) )
609 const int delta = evt->Parameter<
int>();
660 wxASSERT_MSG(
false, wxT(
"Unknown selection mode" ) );
667 auto zoneFilledAreaFilter =
670 int accuracy = aCollector.GetGuide()->Accuracy();
671 std::set<EDA_ITEM*> remove;
677 ZONE* zone =
static_cast<ZONE*
>( item );
682 remove.insert( zone );
688 aCollector.Remove( item );
694 if( evt->HasPosition() )
697 &&
selectPoint( evt->DragOrigin(),
false,
nullptr, zoneFilledAreaFilter ) )
715 bool routable = ( segs >= 1 || arcs >= 1 || vias == 1 )
716 && ( segs + arcs + vias ==
m_selection.GetSize() );
726 if( !item->IsBOARD_ITEM() )
766 else if( evt->IsCancel() )
781 else if( evt->FirstResponder() ==
this && evt->GetCommandId() == (
int) WXK_ESCAPE )
793 if( controller &&
m_frame->GetPcbNewSettings()->m_ESCClearsNetHighlight )
796 catch(
const std::runtime_error& e )
798 wxCHECK_MSG(
false, 0, e.what() );
809 if(
m_frame->ToolStackIsEmpty() )
815 && evt->HasPosition()
839 wxT(
"EnterGroup called when selection is not a single group" ) );
908 enum DISPOSITION { BEFORE = 1, AFTER,
BOTH };
910 std::map<EDA_ITEM*, DISPOSITION> itemDispositions;
919 itemDispositions[ item ] = BEFORE;
922 aClientFilter(
VECTOR2I(), collector,
this );
928 m_frame->GetCanvas()->ForceRefresh();
935 if( itemDispositions.count( item ) )
936 itemDispositions[ item ] =
BOTH;
938 itemDispositions[ item ] = AFTER;
946 for( std::pair<EDA_ITEM* const, DISPOSITION> itemDisposition : itemDispositions )
948 EDA_ITEM* item = itemDisposition.first;
949 DISPOSITION disposition = itemDisposition.second;
951 if( disposition == BEFORE )
955 for( std::pair<EDA_ITEM* const, DISPOSITION> itemDisposition : itemDispositions )
957 EDA_ITEM* item = itemDisposition.first;
958 DISPOSITION disposition = itemDisposition.second;
962 if( disposition == AFTER || disposition ==
BOTH )
966 m_frame->GetCanvas()->ForceRefresh();
1012 rejected.
SetAll(
false );
1022 if( !
collectAtPoint( aWhere, collector, options, aClientFilter ) )
1030 editFrame->HighlightSelectionFilter( rejected );
1049 if( aSelectionCancelledFlag )
1050 *aSelectionCancelledFlag =
true;
1057 bool anySubtracted =
false;
1064 anySubtracted =
true;
1070 for(
int i = 0; i < collector.
GetCount(); ++i )
1075 anySubtracted =
true;
1085 if( addedCount == 1 )
1090 else if( addedCount > 1 )
1095 else if( anySubtracted )
1132 for(
int i = 0; aAllowedActions[i]; ++i )
1134 if( aEvent->
IsAction( aAllowedActions[i] ) )
1147 if( cell->IsSelected() )
1158 BOX2I selectionRect( aStart, aEnd );
1164 return ( aItem->GetFlags() &
CANDIDATE ) > 0;
1169 bool doSelect =
false;
1171 if( cell->HitTest( selectionRect,
false ) )
1176 doSelect = !wasSelected( cell );
1180 else if( wasSelected( cell ) )
1185 if( doSelect && !cell->IsSelected() )
1187 else if( !doSelect && cell->IsSelected() )
1235 std::set<EDA_ITEM*> previousSelection;
1238 previousSelection.insert( item );
1250 VECTOR2D topLeft( std::min( start.
x,
end.x ), std::min( start.
y,
end.y ) );
1251 VECTOR2D bottomRight( std::max( start.
x,
end.x ), std::max( start.
y,
end.y ) );
1255 bool anyAdded =
false;
1256 bool anySubtracted =
false;
1260 bool wasInPrevious = previousSelection.count( cell ) > 0;
1262 if( cell->IsSelected() && !wasInPrevious )
1264 else if( wasInPrevious && !cell->IsSelected() )
1265 anySubtracted =
true;
1316 if( !cell || cell->
GetParent() != selectedTable )
1328 if( clickedCell->
GetParent() != selectedTable )
1351 bool cancelled =
false;
1357 bool haveAnchorStart =
false;
1364 haveAnchorStart =
true;
1376 return ( aItem->GetFlags() &
CANDIDATE ) > 0;
1381 if( evt->IsCancelInteractive() || evt->IsActivate() )
1390 VECTOR2D start = haveAnchorStart ? anchorStart :
VECTOR2D( evt->DragOrigin() );
1395 else if( evt->IsMouseUp(
BUT_LEFT ) )
1399 bool anyAdded =
false;
1400 bool anySubtracted =
false;
1404 if( cell->IsSelected() && !wasSelected( cell ) )
1406 else if( wasSelected( cell ) && !cell->IsSelected() )
1407 anySubtracted =
true;
1445 bool cancelled =
false;
1458 if( &aTool !=
this )
1467 if(
view->IsMirroredX() )
1468 greedySelection = !greedySelection;
1473 if( evt->IsCancelInteractive() || evt->IsActivate() )
1492 area.
SetEnd( evt->Position() );
1498 view->SetVisible( &area,
true );
1499 view->Update( &area );
1511 view->SetVisible( &area,
false );
1525 view->Remove( &area );
1557 bool cancelled =
false;
1575 bool isClockwise = shapeArea > 0 ? true :
false;
1577 if(
getView()->IsMirroredX() && shapeArea != 0 )
1578 isClockwise = !isClockwise;
1582 if( evt->IsCancelInteractive() || evt->IsActivate() )
1585 evt->SetPassEvent(
false );
1592 points.
Append( evt->Position() );
1594 else if( evt->IsDblClick(
BUT_LEFT )
1600 evt->SetPassEvent(
false );
1636 area.
SetMode( selectionMode );
1668 for(
int i = aCollector.
GetCount() - 1; i >= 0; --i )
1670 if( !
Selectable( aCollector[i] ) || ( aOptions.
m_OnDrag && aCollector[i]->IsLocked() ) )
1681 aClientFilter( aWhere, aCollector,
this );
1688 for(
int i = aCollector.
GetCount() - 1; i >= 0; --i )
1690 if( !aCollector[i]->IsSelected() )
1702 catch(
const std::exception& exc )
1704 wxLogWarning( wxS(
"Exception '%s' occurred attempting to guess selection candidates." ),
1723 std::vector<BOARD_ITEM*> items;
1725 for(
int i = 0; i < collector.
GetCount(); ++i )
1726 items.push_back( collector[i] );
1742 std::vector<KIGFX::VIEW::LAYER_ITEM_PAIR> candidates;
1744 view->Query( selectionBox, candidates );
1748 std::set<EDA_ITEM*> group_items;
1756 std::unordered_set<EDA_ITEM*>& newset =
group->GetItems();
1759 [&](
const BOX2I& aBox )
1761 return boxMode ? selectionBox.
Contains( aBox )
1767 if( containedMode && boxContained(
group->GetBoundingBox() ) && newset.size() )
1769 for(
EDA_ITEM* group_item : newset )
1771 if( !group_item->IsBOARD_ITEM() )
1775 collector.
Append( *newset.begin() );
1779 for(
EDA_ITEM* group_item : newset )
1780 group_items.emplace( group_item );
1786 return boxMode ? aItem->HitTest( selectionBox, containedMode )
1787 : aItem->HitTest( aArea.
GetPoly(), containedMode );
1790 for(
const auto& [item, layer] : candidates )
1792 if( !item->IsBOARD_ITEM() )
1797 if(
Selectable( boardItem ) && hitTest( boardItem )
1798 && ( !containedMode || !group_items.count( boardItem ) ) )
1801 padsCollector.
Append( boardItem );
1803 collector.
Append( boardItem );
1815 collector = padsCollector;
1822 std::sort( collector.
begin(), collector.
end(),
1825 VECTOR2I aPos = a->GetPosition();
1826 VECTOR2I bPos = b->GetPosition();
1828 if( aPos.y == bPos.y )
1829 return aPos.x < bPos.x;
1831 return aPos.y < bPos.y;
1834 std::vector<BOARD_ITEM*> items;
1838 if( i->IsBOARD_ITEM() )
1839 items.push_back(
static_cast<BOARD_ITEM*
>( i ) );
1849 bool anyAdded =
false;
1850 bool anySubtracted =
false;
1854 if( aSubtractive || ( aExclusiveOr && item->IsSelected() ) )
1857 anySubtracted =
true;
1871 else if( anySubtracted )
1878 wxMouseState keyboardState = wxGetMouseState();
1880 setModifiersState( keyboardState.ShiftDown(), keyboardState.ControlDown(), keyboardState.AltDown() );
1924 collection.
Append( item );
1937 m_frame->GetCanvas()->ForceRefresh();
1965 m_frame->GetCanvas()->ForceRefresh();
1975 std::set<int> representedNets;
1977 for(
int i = aCollector.
GetCount() - 1; i >= 0; i-- )
1983 else if ( representedNets.count( item->
GetNetCode() ) )
1986 representedNets.insert( item->
GetNetCode() );
1993 std::deque<EDA_ITEM*> selectedItems =
m_selection.GetItems();
1996 std::vector<BOARD_CONNECTED_ITEM*> toUnroute;
1997 std::set<EDA_ITEM*> toDelete;
1999 for(
EDA_ITEM* item : selectedItems )
2004 toUnroute.push_back(
pad );
2008 toDelete.insert( item );
2024 std::set<int> selectedNets;
2027 if( item->GetNetCode() > 0 )
2028 selectedNets.insert( item->GetNetCode() );
2030 std::set<VECTOR2I> endpointSet;
2036 endpointSet.insert( track->GetStart() );
2037 endpointSet.insert( track->GetEnd() );
2041 endpointSet.insert( item->GetPosition() );
2045 endpointSet.insert( item->GetPosition() );
2049 bool expanded =
true;
2057 if( toDelete.count( gen ) )
2061 std::map<VECTOR2I, int> epCount;
2063 for(
BOARD_ITEM* child : gen->GetBoardItems() )
2067 if( track && selectedNets.count( track->
GetNetCode() ) )
2070 epCount[track->
GetEnd()]++;
2075 bool connected =
false;
2077 for(
auto& [pt, count] : epCount )
2079 if( count == 1 && endpointSet.count( pt ) )
2088 toDelete.insert( gen );
2102 endpointSet.insert( track->GetStart() );
2103 endpointSet.insert( track->GetEnd() );
2126 std::set<BOARD_ITEM*> removed;
2130 if( !item->IsBOARD_ITEM() )
2136 toDelete.insert( bi );
2139 removed.insert( bi );
2145 for(
BOARD_ITEM* child : gen->GetBoardItems() )
2147 if( removed.count( child ) )
2149 toDelete.insert( gen );
2157 if( !item->IsBOARD_ITEM() )
2165 if( removed.find( aItem ) == removed.end() )
2168 removed.insert( aItem );
2173 if( removed.find( boardItem ) == removed.end() )
2174 commit.
Remove( boardItem );
2178 commit.
Push(
_(
"Unroute Selected" ) );
2183 for(
EDA_ITEM* item : selectedItems )
2195 std::deque<EDA_ITEM*> selectedItems =
m_selection.GetItems();
2198 std::vector<BOARD_CONNECTED_ITEM*> toUnroute;
2200 std::set<EDA_ITEM*> toDelete;
2202 for(
EDA_ITEM* item : selectedItems )
2213 if( !toDelete.count( gen ) )
2215 toDelete.insert( gen );
2219 toDelete.insert( generatedItem );
2229 toDelete.insert( item );
2234 toDelete.insert( item );
2238 toDelete.insert( generatedItem );
2249 std::deque<EDA_ITEM*> toSelectAfter;
2253 if( !item->IsBOARD_ITEM() )
2256 if( toDelete.find( item ) == toDelete.end() )
2257 toSelectAfter.push_back( item );
2261 std::set<BOARD_ITEM*> removed;
2265 if( !item->IsBOARD_ITEM() )
2275 if( removed.insert( aItem ).second )
2280 if( removed.insert( boardItem ).second )
2281 commit.
Remove( boardItem );
2285 if( removed.insert( boardItem ).second )
2286 commit.
Remove( boardItem );
2290 commit.
Push(
_(
"Unroute Segment" ) );
2295 for(
EDA_ITEM* item : toSelectAfter )
2297 if( !toDelete.count( item ) )
2310 unsigned initialCount = 0;
2322 if( initialCount == 0 )
2325 std::vector<PCB_SHAPE*> startShapes;
2330 startShapes.push_back(
static_cast<PCB_SHAPE*
>( item ) );
2334 if( !startShapes.empty() )
2340 m_frame->SetStatusText(
_(
"Select/Expand Connection..." ) );
2344 std::deque<EDA_ITEM*> selectedItems =
m_selection.GetItems();
2346 for(
EDA_ITEM* item : selectedItems )
2347 item->ClearTempFlags();
2349 std::vector<BOARD_CONNECTED_ITEM*> startItems;
2351 for(
EDA_ITEM* item : selectedItems )
2358 startItems.push_back(
pad );
2376 if(
m_selection.GetItems().size() > initialCount )
2380 m_frame->SetStatusText( wxEmptyString );
2393 double refreshIntervalMs = 500;
2394 int lastSelectionSize = (int)
m_selection.GetSize();
2404 std::set<PAD*> startPadSet;
2405 std::vector<BOARD_CONNECTED_ITEM*> cleanupItems;
2411 startPadSet.insert(
static_cast<PAD*
>( startItem ) );
2414 if( startItem->IsType( { PCB_TRACE_T, PCB_ARC_T, PCB_VIA_T } ) )
2423 std::map<VECTOR2I, std::vector<PCB_TRACK*>> trackMap;
2424 std::map<VECTOR2I, std::vector<PCB_VIA*>> viaMap;
2425 std::map<VECTOR2I, PAD*> padMap;
2426 std::map<VECTOR2I, std::vector<PCB_SHAPE*>> shapeMap;
2427 std::vector<std::pair<VECTOR2I, LSET>> activePts;
2437 switch( item->Type() )
2443 trackMap[track->
GetStart()].push_back( track );
2444 trackMap[track->
GetEnd()].push_back( track );
2454 viaMap[
via->GetStart()].push_back(
via );
2461 padMap[
pad->GetPosition()] =
pad;
2470 shapeMap[point].push_back( shape );
2481 switch( startItem->Type() )
2494 activePts.push_back( { startItem->GetPosition(), startItem->GetLayerSet() } );
2498 activePts.push_back( { startItem->GetPosition(), startItem->GetLayerSet() } );
2506 activePts.push_back( { point, startItem->GetLayerSet() } );
2519 while( expand && failSafe++ < 100000 )
2523 for(
int i = (
int) activePts.size() - 1; i >= 0; --i )
2531 auto better = [&](
PCB_VIA* aCandidate )
2537 auto settled = [&]()
2543 auto exactIt = viaMap.find( pt );
2545 if( exactIt != viaMap.end() )
2549 if( (
via->GetLayerSet() & layerSetCu ).any() && better(
via ) )
2560 for(
auto& [pos, vias] : viaMap )
2564 if( !(
via->GetLayerSet() & layerSetCu ).any() || !better(
via ) )
2569 int radius =
via->GetWidth( layer ) / 2;
2570 int64_t radiusSq =
static_cast<int64_t
>(
radius ) *
radius;
2572 if( ( pt - pos ).SquaredEuclideanNorm() <= radiusSq )
2590 auto padIt = padMap.find( pt );
2592 bool gotVia = hitVia !=
nullptr;
2593 bool gotPad = padIt != padMap.end() && ( padIt->second->GetLayerSet() & layerSetCu ).any();
2594 bool gotNonStartPad = gotPad && ( startPadSet.find( padIt->second ) == startPadSet.end() );
2598 activePts.erase( activePts.begin() + i );
2604 activePts.erase( activePts.begin() + i );
2610 size_t pt_count = 0;
2614 if( track->GetStart() != track->GetEnd() && layerSetCu.
Contains( track->GetLayer() ) )
2618 if( pt_count > 2 || gotVia || gotNonStartPad )
2620 activePts.erase( activePts.begin() + i );
2626 if( gotNonStartPad )
2628 activePts.erase( activePts.begin() + i );
2635 PAD*
pad = padIt->second;
2640 cleanupItems.push_back(
pad );
2642 activePts.push_back( {
pad->GetPosition(),
pad->GetLayerSet() } );
2649 if( !layerSetCu.
Contains( track->GetLayer() ) )
2655 if( !track->IsSelected() && inScope( track ) )
2661 cleanupItems.push_back( track );
2663 if( track->GetStart() == pt )
2664 activePts.push_back( { track->GetEnd(), track->GetLayerSet() } );
2666 activePts.push_back( { track->GetStart(), track->GetLayerSet() } );
2675 if( !layerSetCu.
Contains( shape->GetLayer() ) )
2681 if( !shape->IsSelected() && inScope( shape ) )
2687 cleanupItems.push_back( shape );
2689 for(
const VECTOR2I& newPoint : shape->GetConnectionPoints() )
2691 if( newPoint == pt )
2694 activePts.push_back( { newPoint, shape->GetLayerSet() } );
2704 if( !hitVia->
IsSelected() && inScope( hitVia ) )
2710 cleanupItems.push_back( hitVia );
2717 maxRadius = std::max( maxRadius, hitVia->
GetWidth( layer ) / 2 );
2719 int64_t maxRadiusSq =
static_cast<int64_t
>( maxRadius ) * maxRadius;
2721 for(
auto& [trkPt, tracks] : trackMap )
2723 if( ( trkPt - viaPos ).SquaredEuclideanNorm() > maxRadiusSq )
2727 bool inside =
false;
2736 int r = hitVia->
GetWidth( trkLayer ) / 2;
2737 int64_t rSq =
static_cast<int64_t
>( r ) * r;
2739 if( ( trkPt - viaPos ).SquaredEuclideanNorm() <= rSq )
2747 activePts.push_back( { trkPt, hitVia->
GetLayerSet() } );
2751 activePts.push_back( { viaPos, hitVia->
GetLayerSet() } );
2758 activePts.erase( activePts.begin() + i );
2762 if( refreshTimer.
msecs() >= refreshIntervalMs )
2766 m_frame->GetCanvas()->ForceRefresh();
2770 refreshTimer.
Start();
2775 std::set<EDA_ITEM*> toDeselect;
2776 std::set<EDA_ITEM*> toSelect;
2782 if( !item->IsBOARD_ITEM() )
2795 toDeselect.insert( item );
2840 std::stack<PCB_SHAPE*> toSearch;
2841 std::set<PCB_SHAPE*> toCleanup;
2843 for(
PCB_SHAPE* startItem : aStartItems )
2844 toSearch.push( startItem );
2857 toSearch.push(
static_cast<PCB_SHAPE*
>( item ) );
2861 while( !toSearch.empty() )
2870 toCleanup.insert( shape );
2879 searchPoint( shape->
GetEnd() );
2890 std::vector<PAD*> pads;
2897 pads.push_back(
pad );
2901 pads.push_back(
static_cast<PAD*
>( item ) );
2910 for(
const CN_EDGE& edge : conn->GetRatsnestForPad(
pad ) )
2912 wxCHECK2( edge.GetSourceNode() && !edge.GetSourceNode()->Dirty(),
continue );
2913 wxCHECK2( edge.GetTargetNode() && !edge.GetTargetNode()->Dirty(),
continue );
2918 if( sourceParent ==
pad )
2921 select(
static_cast<PAD*
>( targetParent )->GetParent() );
2923 else if( targetParent ==
pad )
2926 select(
static_cast<PAD*
>( sourceParent )->GetParent() );
2938 std::vector<BOARD_CONNECTED_ITEM*> sourceItems;
2939 std::vector<FOOTPRINT*> nearestFootprints;
2946 sourceItems.push_back(
pad );
2950 sourceItems.push_back( connItem );
2955 std::shared_ptr<CN_CONNECTIVITY_ALGO> connAlgo = conn->GetConnectivityAlgo();
2959 RN_NET* net = conn->GetRatsnestForNet( sourceItem->GetNetCode() );
2962 if( !net || net->
GetEdges().empty() || !connAlgo->ItemExists( sourceItem ) )
2965 std::vector<std::shared_ptr<CN_CLUSTER>> sourceClusters;
2967 for(
CN_ITEM* cnItem : connAlgo->ItemEntry( sourceItem ).GetItems() )
2969 for(
const std::shared_ptr<CN_ANCHOR>&
anchor : cnItem->Anchors() )
2971 if(
anchor->GetCluster() )
2972 sourceClusters.push_back(
anchor->GetCluster() );
2976 if( sourceClusters.empty() )
2979 auto isSourceAnchor =
2980 [&](
const std::shared_ptr<const CN_ANCHOR>& aAnchor )
2982 if( aAnchor->Parent() == sourceItem )
2985 return std::find( sourceClusters.begin(), sourceClusters.end(),
2986 aAnchor->GetCluster() ) != sourceClusters.end();
2989 double currentDistance = DBL_MAX;
2995 const std::shared_ptr<const CN_ANCHOR>& source = edge.GetSourceNode();
2996 const std::shared_ptr<const CN_ANCHOR>& target = edge.GetTargetNode();
2998 wxCHECK2( source && !source->Dirty() && target && !target->Dirty(),
continue );
3000 if( source->Parent()->GetParentFootprint() == target->Parent()->GetParentFootprint() )
3005 bool sourceMatches = isSourceAnchor( source );
3006 bool targetMatches = isSourceAnchor( target );
3008 if( sourceMatches == targetMatches )
3011 const CN_ANCHOR* other = sourceMatches ? target.get() : source.get();
3017 if( edge.GetLength() < currentDistance )
3019 currentDistance = edge.GetLength();
3024 if( nearest !=
nullptr )
3025 nearestFootprints.push_back( nearest );
3028 if( nearestFootprints.empty() )
3033 for(
FOOTPRINT* footprint : nearestFootprints )
3046 for(
BOARD_ITEM* item : conn->GetNetItems( aNetCode, { PCB_TRACE_T,
3120 const wxString& chainName = netInfo->
GetNetChain();
3122 if( chainName.IsEmpty() )
3131 if( candidate && candidate->GetNetChain() == chainName )
3147 std::vector<BOARD_ITEM*> footprints;
3152 if( footprint ==
nullptr )
3155 wxString footprint_path = footprint->GetPath().AsString().BeforeLast(
'/' );
3157 if( footprint_path.IsEmpty() )
3158 footprint_path +=
'/';
3160 if( footprint_path == aSheetPath )
3161 footprints.push_back( footprint );
3177 std::list<int> netcodeList;
3178 std::vector<BOARD_CONNECTED_ITEM*> padList;
3182 switch( item->Type() )
3188 if(
pad->IsConnected() )
3190 netcodeList.push_back(
pad->GetNetCode() );
3191 padList.push_back(
pad );
3202 if(
pad->IsConnected() )
3204 netcodeList.push_back(
pad->GetNetCode() );
3205 padList.push_back(
pad );
3217 std::sort( padList.begin(), padList.end() );
3221 netcodeList.unique();
3227 std::vector<int> removeCodeList;
3230 for(
int netCode : netcodeList )
3234 if( !std::binary_search( padList.begin(), padList.end(),
pad ) )
3238 removeCodeList.push_back( netCode );
3244 for(
int removeCode : removeCodeList )
3245 netcodeList.remove( removeCode );
3247 std::unordered_set<BOARD_ITEM*> localConnectionList;
3249 for(
int netCode : netcodeList )
3251 for(
BOARD_ITEM* item : conn->GetNetItems( netCode, { PCB_TRACE_T,
3256 localConnectionList.insert( item );
3260 for(
BOARD_ITEM* item : localConnectionList )
3267 std::vector<BOARD_ITEM*>* items = aEvent.
Parameter<std::vector<BOARD_ITEM*>*>();
3278 std::vector<BOARD_ITEM*>* items = aEvent.
Parameter<std::vector<BOARD_ITEM*>*>();
3296 if( item->IsMoving() )
3313 if(
m_frame->GetPcbNewSettings()->m_CrossProbing.center_on_items )
3315 if(
m_frame->GetPcbNewSettings()->m_CrossProbing.zoom_to_fit )
3324 m_frame->GetCanvas()->ForceRefresh();
3334 wxString sheetPath = *aEvent.
Parameter<wxString*>();
3360 if( !footprint || footprint->
GetPath().empty() )
3366 wxString sheetPath = footprint->
GetPath().
AsString().BeforeLast(
'/' );
3368 if( sheetPath.IsEmpty() )
3389 screenSize.
x = std::max( 10.0, screenSize.
x );
3390 screenSize.
y = std::max( 10.0, screenSize.
y );
3395 double scale =
view->GetScale() / std::max( fabs( vsize.
x / screenSize.
x ),
3396 fabs( vsize.
y / screenSize.
y ) );
3402 m_frame->GetCanvas()->ForceRefresh();
3418#ifdef DEFAULT_PCBNEW_CODE
3420 auto screenSize =
view->ToWorld( GetCanvas()->GetClientSize(),
false );
3423 screenSize.x = std::max( 10.0, fabs( screenSize.x ) );
3424 screenSize.y = std::max( 10.0, screenSize.y );
3425 double ratio = std::max( fabs( bbSize.x / screenSize.x ), fabs( bbSize.y / screenSize.y ) );
3428 if( crossProbingSettings.zoom_to_fit && ( ratio < 0.5 || ratio > 1.0 ) )
3429 view->SetScale(
view->GetScale() / ratio );
3432#ifndef DEFAULT_PCBNEW_CODE
3449 double compRatio = bbSize.y / currTextHeight;
3452 double compRatioBent = 1.0;
3463 screenSize.
x = std::max( 10.0, fabs( screenSize.
x ) );
3464 screenSize.
y = std::max( 10.0, screenSize.
y );
3465 double ratio = std::max( -1.0, fabs( bbSize.y / screenSize.
y ) );
3468 double kicadRatio = std::max( fabs( bbSize.x / screenSize.
x ),
3469 fabs( bbSize.y / screenSize.
y ) );
3477 std::vector<std::pair<double, double>> lut {
3490 std::vector<std::pair<double, double>>::iterator it;
3492 compRatioBent = lut.back().second;
3494 if( compRatio >= lut.front().first )
3500 for( it = lut.begin(); it < lut.end() - 1; it++ )
3502 if( it->first <= compRatio &&
next( it )->first >= compRatio )
3504 double diffx = compRatio - it->first;
3505 double diffn =
next( it )->first - it->first;
3507 compRatioBent = it->second + (
next( it )->second - it->second ) * diffx / diffn;
3514 compRatioBent = lut.front().second;
3522 if( bbSize.x > screenSize.
x * ratio * compRatioBent )
3526 compRatioBent = 1.0;
3527 wxLogTrace(
"CROSS_PROBE_SCALE",
"Part TOO WIDE for screen. Using normal KiCad zoom ratio: %1.5f", ratio );
3532 ratio *= compRatioBent;
3534 bool alwaysZoom =
false;
3537 if( ( ratio < 0.5 || ratio > 1.0 ) || alwaysZoom )
3538 view->SetScale(
view->GetScale() / ratio );
3545 bool cleared =
false;
3557 switch( aItem->
Type() )
3561 int netCode =
static_cast<NETINFO_ITEM*
>( aItem )->GetNetCode();
3580 double marginFactor = 2;
3589 double scaleX = screenSize.
x /
static_cast<double>( aItem->
GetBoundingBox().GetWidth() );
3590 double scaleY = screenSize.
y /
static_cast<double>( aItem->
GetBoundingBox().GetHeight() );
3592 scaleX /= marginFactor;
3593 scaleY /= marginFactor;
3595 double scale = scaleX > scaleY ? scaleY : scaleX;
3614 m_frame->GetCanvas()->ForceRefresh();
3626 switch( aItem.
Type() )
3686 if( cmd != wxID_OK )
3697 if( !i->IsBOARD_ITEM() )
3719 std::set<BOARD_ITEM*> rejected;
3723 if( !i->IsBOARD_ITEM() )
3729 rejected.insert( item );
3733 aCollector.
Remove( item );
3798 aRejected->
pads =
true;
3810 aRejected->
tracks =
true;
3821 aRejected->
vias =
true;
3830 ZONE* zone =
static_cast<ZONE*
>( aItem );
3840 aRejected->
zones =
true;
3849 if( zone ==
m_frame->GetBoard()->m_SolderMaskBridges )
3880 aRejected->
text =
true;
3917 aRejected->
points =
true;
3988 if( cell->HitTest( aPosition, 0 ) )
4004 if( cell->GetRow() == clicked->
GetRow() )
4022 bool enteredGroupFound =
false;
4025 [&](
EDA_ITEM* item,
void* testData )
4043 enteredGroupFound =
true;
4057 if( !enteredGroupFound )
4070 auto visibleLayers =
4078 set.
set( layer,
view()->IsLayerVisible( layer ) );
4100 bool onActiveLayer =
false;
4102 for(
int layer : activeLayers )
4105 if( layer < PCB_LAYER_ID_COUNT && aItem->IsOnLayer(
ToLAYER_ID( layer ) ) )
4107 onActiveLayer =
true;
4130 && footprint->
Pads().empty()
4131 && footprint->
Zones().empty() )
4148 for(
const ZONE* zone : footprint->
Zones() )
4185 const ZONE* zone =
nullptr;
4187 const PAD*
pad =
nullptr;
4200 switch( aItem->
Type() )
4206 zone =
static_cast<const ZONE*
>( aItem );
4224 if( !layerVisible( aItem->
GetLayer() ) )
4236 if( !( visibleLayers() &
via->GetLayerSet() ).any() )
4242 field =
static_cast<const PCB_FIELD*
>( aItem );
4258 if( !layerVisible(
text->GetLayer() ) )
4269 if(
text->GetText() == wxT(
"${REFERENCE}" ) )
4271 else if(
text->GetText() == wxT(
"${VALUE}" ) )
4274 if( !
view()->IsLayerVisible( controlLayer ) )
4288 if( !layerVisible( aItem->
GetLayer() ) )
4297 if( !layerVisible( aItem->
GetLayer() ) )
4303 if( !layerVisible( aItem->
GetLayer() ) )
4311 if( !layerVisible( aItem->
GetLayer() ) )
4319 if( !layerVisible( aItem->
GetLayer() ) )
4332 if( !layerVisible( aItem->
GetLayer() ) )
4341 pad =
static_cast<const PAD*
>( aItem );
4352 if( !(
pad->GetLayerSet() & visibleLayers() ).
any() )
4359 marker =
static_cast<const PCB_MARKER*
>( aItem );
4367 if( !layerVisible( aItem->
GetLayer() ) )
4428 aGroup->
Add( aItem );
4497 const unsigned GRIP_MARGIN = 20;
4503 if( !item->IsBOARD_ITEM() )
4506 BOX2I itemBox = item->ViewBBox();
4511 if( item->HitTest( aPoint, margin ) )
4518 group->RunOnChildren(
4521 if( aItem->
HitTest( aPoint, margin ) )
4541 SEG loc( aWhere, aWhere );
4543 switch( aItem->
Type() )
4551 if(
text->GetEffectiveTextShape()->Collide( loc, aMaxDistance, &
distance ) )
4573 shape->Collide( loc, aMaxDistance, &
distance );
4594 ZONE* zone =
static_cast<ZONE*
>( aItem );
4616 catch(
const std::exception& e )
4618 wxFAIL_MSG( wxString::Format( wxT(
"Clipper exception occurred: %s" ), e.what() ) );
4648 int actual = aMaxDistance;
4650 if( poly->Outline().Collide( loc, aMaxDistance, &
actual ) )
4666 static_cast<PAD*
>( aItem )->Padstack().ForEachUniqueLayer(
4669 int layerDistance = INT_MAX;
4695 wxCHECK( settings, );
4698 LSET visibleLayers =
m_frame->GetBoard()->GetVisibleLayers();
4699 LSET enabledLayers =
m_frame->GetBoard()->GetEnabledLayers();
4702 wxCHECK( !enabledLayerStack.empty(), );
4704 auto isZoneFillKeepout =
4709 const ZONE* zone =
static_cast<const ZONE*
>( aItem );
4718 std::vector<LAYER_OPACITY_ITEM> opacityStackup;
4720 for(
int i = 0; i < aCollector.
GetCount(); i++ )
4724 LSET itemLayers = item->
GetLayerSet() & enabledLayers & visibleLayers;
4725 LSEQ itemLayerSeq = itemLayers.
Seq( enabledLayerStack );
4738 opacityItem.
m_Item = item;
4740 if( isZoneFillKeepout( item ) )
4743 opacityStackup.emplace_back( opacityItem );
4747 std::sort( opacityStackup.begin(), opacityStackup.end(),
4750 int retv = enabledLayerStack.TestLayers( aLhs.m_Layer, aRhs.m_Layer );
4755 return aLhs.m_Opacity > aRhs.m_Opacity;
4758 std::set<const BOARD_ITEM*> visibleItems;
4759 std::set<const BOARD_ITEM*> itemsToRemove;
4761 double currentStackupOpacity = 0.0;
4768 currentStackupOpacity = opacityItem.m_Opacity;
4769 lastVisibleLayer = opacityItem.m_Layer;
4770 visibleItems.emplace( opacityItem.m_Item );
4780 wxCHECK( item,
false );
4783 if( visibleItems.count( item ) )
4789 && visibleItems.count( item->
GetParent() ) )
4796 if( isZoneFillKeepout( item ) )
4803 if( opacityItem.m_Layer == enabledLayerStack[0] )
4805 visibleItems.emplace( opacityItem.m_Item );
4809 double itemVisibility = opacityItem.m_Opacity * ( 1.0 - currentStackupOpacity );
4811 if( ( itemVisibility <= minAlphaLimit ) && !ignoreItem() )
4812 itemsToRemove.emplace( opacityItem.m_Item );
4814 visibleItems.emplace( opacityItem.m_Item );
4817 if( opacityItem.m_Layer != lastVisibleLayer )
4819 currentStackupOpacity += opacityItem.m_Opacity * ( 1.0 - currentStackupOpacity );
4820 currentStackupOpacity = std::min( currentStackupOpacity, 1.0 );
4821 lastVisibleLayer = opacityItem.m_Layer;
4825 for(
const BOARD_ITEM* itemToRemove : itemsToRemove )
4827 wxCHECK( aCollector.
GetCount() > 1, );
4828 aCollector.
Remove( itemToRemove );
4851 static std::vector<KICAD_T> singleLayerSilkTypes = {
PCB_FIELD_T,
4863 std::set<BOARD_ITEM*> preferred;
4864 std::set<BOARD_ITEM*> rejected;
4871 for(
int i = aCollector.
GetCount() - 1; i >= 0; --i )
4876 if( aCollector[i]->GetLayer() == activeLayer )
4877 preferred.insert( aCollector[i] );
4878 else if( aCollector.
GetCount() > 1 )
4884 for(
int i = aCollector.
GetCount() - 1; i >= 0; --i )
4886 const BOARD_ITEM* parent = aCollector[i]->GetParent();
4897 if( silkLayers[activeLayer] )
4899 for(
int i = 0; i < aCollector.
GetCount(); ++i )
4903 if( item->
IsType( singleLayerSilkTypes ) && silkLayers[ item->
GetLayer() ] )
4904 preferred.insert( item );
4909 else if( courtyardLayers[activeLayer] && settings->
GetHighContrast() )
4911 for(
int i = 0; i < aCollector.
GetCount(); ++i )
4916 preferred.insert( item );
4920 if( preferred.size() > 0 )
4925 aCollector.
Append( item );
4927 if( preferred.size() == 1 )
4932 constexpr int MAX_SLOP = 5;
4936 int minSlop = INT_MAX;
4938 std::map<BOARD_ITEM*, int> itemsBySloppiness;
4940 for(
int i = 0; i < aCollector.
GetCount(); ++i )
4945 itemsBySloppiness[ item ] = itemSlop;
4947 if( itemSlop < minSlop )
4952 if( minSlop < INT_MAX )
4954 for( std::pair<BOARD_ITEM*, int> pair : itemsBySloppiness )
4956 if( pair.second > minSlop + singlePixel )
4963 constexpr double sizeRatio = 1.5;
4965 std::vector<std::pair<BOARD_ITEM*, double>> itemsByArea;
4967 for(
int i = 0; i < aCollector.
GetCount(); ++i )
4976 area = (double)
SEG::Square( singlePixel ) * MAX_SLOP;
4995 catch(
const std::exception& e )
4997 wxFAIL_MSG( wxString::Format( wxT(
"Clipper exception occurred: %s" ), e.what() ) );
5001 itemsByArea.emplace_back( item, area );
5004 std::sort( itemsByArea.begin(), itemsByArea.end(),
5005 [](
const std::pair<BOARD_ITEM*, double>& lhs,
5006 const std::pair<BOARD_ITEM*, double>& rhs ) ->
bool
5008 return lhs.second < rhs.second;
5011 bool rejecting =
false;
5013 for(
int i = 1; i < (int) itemsByArea.size(); ++i )
5015 if( itemsByArea[i].second > itemsByArea[i-1].second * sizeRatio )
5019 rejected.insert( itemsByArea[i].first );
5024 constexpr double maxCoverRatio = 0.70;
5026 for(
int i = 0; i < aCollector.
GetCount(); ++i )
5030 if( footprint->CoverageRatio( aCollector ) > maxCoverRatio )
5031 rejected.erase( footprint );
5036 if( (
unsigned) aCollector.
GetCount() > rejected.size() )
5048 bool haveItemOnActive =
false;
5051 for(
int i = 0; i < aCollector.
GetCount(); ++i )
5053 if( !aCollector[i]->IsOnLayer( activeLayer ) )
5054 rejected.insert( aCollector[i] );
5056 haveItemOnActive =
true;
5059 if( haveItemOnActive )
5072 m_frame->ShowInfoBarWarning(
_(
"Selection contains locked items. "
5073 "Enable 'Override locks' to operate on them." ),
5083 bool lockedDescendant =
false;
5089 lockedDescendant =
true;
5093 return lockedDescendant;
5115 for(
int i = (
int) aCollector.
GetCount() - 1; i >= 0; --i )
5121 aCollector.
Remove( item );
5131 std::unordered_set<EDA_ITEM*> toAdd;
5135 for(
int j = 0; j < aCollector.
GetCount(); j++ )
5137 if( aCollector[j]->GetParent() )
5138 aCollector[j]->GetParent()->ClearFlags(
CANDIDATE );
5140 if( aCollector[j]->GetParentFootprint() )
5141 aCollector[j]->GetParentFootprint()->ClearFlags(
CANDIDATE );
5146 for(
int j = 0; j < aCollector.
GetCount(); j++ )
5150 for(
int j = 0; j < aCollector.
GetCount(); )
5162 aCollector.
Remove( item );
5179 selectableParent = gen;
5183 if( !selectableParent )
5187 if(
top->AsEdaItem() != item )
5189 toAdd.insert(
top->AsEdaItem() );
5192 aCollector.
Remove( item );
5199 for(
int k = aCollector.
GetCount() - 1; k >= 0; --k )
5201 if( aCollector[k] == selectableParent )
5217 aCollector.
Remove( item );
5226 if( !aCollector.
HasItem( item ) )
5227 aCollector.
Append( item );
5234 std::set<BOARD_ITEM*> to_add;
5237 for(
int i = (
int) aCollector.
GetCount() - 1; i >= 0; --i )
5246 aCollector.
Remove( item );
5251 aCollector.
Append( item );
5256 bool aForcePromotion )
const
5258 std::set<BOARD_ITEM*> to_add;
5261 for(
int i = aCollector.
GetCount() - 1; i >= 0; --i )
5266 && ( !
frame()->GetPcbNewSettings()->m_AllowFreePads || aForcePromotion ) )
5271 aCollector.
Remove( item );
5276 aCollector.
Append( item );
5283 for(
int i = aCollector.
GetCount() - 1; i >= 0; --i )
5288 aCollector.
Remove( item );
5300 bool need_direct_hit =
false;
5308 need_direct_hit =
true;
5316 else if( item->IsBOARD_ITEM() )
5317 fp =
static_cast<BOARD_ITEM*
>( item )->GetParentFootprint();
5323 single_fp =
nullptr;
5326 else if( !single_fp )
5332 else if( single_fp != fp )
5334 single_fp =
nullptr;
5340 auto visibleLayers =
5348 set.
set( layer,
view()->IsLayerVisible( layer ) );
5358 LSET layers = visibleLayers();
5366 for(
int layer : activeLayers )
5369 layers.
set( layer );
5374 for(
int i = aCollector.
GetCount() - 1; i >= 0; --i )
5390 aCollector.
Remove( item );
5392 bool has_hit =
false;
5406 aCollector.
Remove( item );
5411 else if( single_fp )
5413 if( fp == single_fp )
5416 else if( need_direct_hit )
5430 aCollector.
Remove( item );
5447 std::set<std::pair<PCB_TABLE*, int>> columns;
5455 columns.insert( std::make_pair(
table, cell->GetColumn() ) );
5459 for(
auto& [
table, col ] : columns )
5461 for(
int row = 0; row <
table->GetRowCount(); ++row )
5482 std::set<std::pair<PCB_TABLE*, int>> rows;
5490 rows.insert( std::make_pair(
table, cell->GetRow() ) );
5494 for(
auto& [
table, row ] : rows )
5496 for(
int col = 0; col <
table->GetColCount(); ++col )
5517 std::set<PCB_TABLE*> tables;
5523 tables.insert(
static_cast<PCB_TABLE*
>( cell->GetParent() ) );
5530 if( !
table->IsSelected() )
std::function< void(const VECTOR2I &, GENERAL_COLLECTOR &, PCB_SELECTION_TOOL *)> CLIENT_SELECTION_FILTER
constexpr EDA_IU_SCALE pcbIUScale
constexpr BOX2I BOX2ISafe(const BOX2D &aInput)
constexpr BOX2I KiROUND(const BOX2D &aBoxD)
static TOOL_ACTION cancelInteractive
static TOOL_ACTION unselectAll
static TOOL_ACTION selectItem
Select an item (specified as the event parameter).
static TOOL_ACTION cursorLeft
static TOOL_ACTION zoomOutCenter
static TOOL_ACTION unselectItem
static TOOL_ACTION zoomIn
static TOOL_ACTION cursorLeftFast
static TOOL_ACTION selectionCursor
Select a single item under the cursor position.
static TOOL_ACTION selectSetLasso
static TOOL_ACTION selectSetRect
Set lasso selection mode.
static TOOL_ACTION groupEnter
static TOOL_ACTION selectColumns
static TOOL_ACTION cursorDown
static TOOL_ACTION zoomOut
static TOOL_ACTION cursorRightFast
static TOOL_ACTION deleteLastPoint
static TOOL_ACTION zoomCenter
static TOOL_ACTION panDown
static TOOL_ACTION cursorDblClick
static TOOL_ACTION selectionActivate
Activation of the selection tool.
static TOOL_ACTION cursorDownFast
static TOOL_ACTION selectionMenu
Run a selection menu to select from a list of items.
static TOOL_ACTION reselectItem
static TOOL_ACTION selectRows
static TOOL_ACTION cursorUpFast
static TOOL_ACTION panLeft
static TOOL_ACTION updateMenu
static TOOL_ACTION doDelete
static TOOL_ACTION selectionTool
static TOOL_ACTION cursorClick
static TOOL_ACTION zoomFitScreen
static TOOL_ACTION increment
static TOOL_ACTION selectionClear
Clear the current selection.
static TOOL_ACTION zoomFitObjects
static TOOL_ACTION zoomInCenter
static TOOL_ACTION panRight
static TOOL_ACTION selectTable
static TOOL_ACTION cursorUp
Cursor control with keyboard.
static TOOL_ACTION groupLeave
static TOOL_ACTION finishInteractive
static TOOL_ACTION cursorRight
static TOOL_ACTION selectAll
static TOOL_ACTION unselectItems
static TOOL_ACTION selectItems
Select a list of items (specified as the event parameter)
static const ADVANCED_CFG & GetCfg()
Get the singleton instance's config, which is shared by all consumers.
BASE_SET & reset(size_t pos)
BASE_SET & set(size_t pos)
virtual void Push(const wxString &aMessage=wxEmptyString, int aCommitFlags=0) override
Execute the changes.
A base class derived from BOARD_ITEM for items that can be connected and have a net,...
static bool ClassOf(const EDA_ITEM *aItem)
Returns information if the object is derived from BOARD_CONNECTED_ITEM.
NETINFO_ITEM * GetNet() const
Return #NET_INFO object for a given item.
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
virtual bool IsConnected() const
Returns information if the object is derived from BOARD_CONNECTED_ITEM.
bool IsLocked() const override
virtual PCB_LAYER_ID GetLayer() const
Return the primary layer this item is on.
virtual VECTOR2I GetCenter() const
This defaults to the center of the bounding box if not overridden.
FOOTPRINT * GetParentFootprint() const
virtual LSET GetLayerSet() const
Return a std::bitset of all layers on which the item physically resides.
virtual void RunOnChildren(const std::function< void(BOARD_ITEM *)> &aFunction, RECURSE_MODE aMode) const
Invoke a function on all children.
BOARD_ITEM_CONTAINER * GetParent() const
virtual bool IsOnCopperLayer() const
virtual std::shared_ptr< SHAPE > GetEffectiveShape(PCB_LAYER_ID aLayer=UNDEFINED_LAYER, FLASHING aFlash=FLASHING::DEFAULT, DRC_CONSTRAINT_T aUsage=NULL_CONSTRAINT) const
Some pad shapes can be complex (rounded/chamfered rectangle), even without considering custom shapes.
Information pertinent to a Pcbnew printed circuit board.
INSPECT_RESULT Visit(INSPECTOR inspector, void *testData, const std::vector< KICAD_T > &scanTypes) override
May be re-implemented for each derived class in order to handle all the types given by its member dat...
bool IsElementVisible(GAL_LAYER_ID aLayer) const
Test whether a given element category is visible.
const LSET & GetVisibleLayers() const
A proxy function that calls the correspondent function in m_BoardSettings.
FOOTPRINT * GetFirstFootprint() const
Get the first footprint on the board or nullptr.
bool IsLayerVisible(PCB_LAYER_ID aLayer) const
A proxy function that calls the correspondent function in m_BoardSettings tests whether a given layer...
std::shared_ptr< CONNECTIVITY_DATA > GetConnectivity() const
Return a list of missing connections between components/tracks.
constexpr void SetMaximum()
constexpr BOX2< Vec > & Inflate(coord_type dx, coord_type dy)
Inflates the rectangle horizontally by dx and vertically by dy.
constexpr BOX2< Vec > & Normalize()
Ensure that the height and width are positive.
constexpr size_type GetWidth() const
constexpr Vec Centre() const
constexpr size_type GetHeight() const
constexpr bool Contains(const Vec &aPoint) const
constexpr const Vec & GetOrigin() const
constexpr const SizeVec & GetSize() const
CN_ANCHOR represents a physical location that can be connected: a pad or a track/arc/via endpoint.
BOARD_CONNECTED_ITEM * Parent() const
CN_EDGE represents a point-to-point connection, whether realized or unrealized (ie: tracks etc.
CN_ITEM represents a BOARD_CONNETED_ITEM in the connectivity system (ie: a pad, track/arc/via,...
virtual double OnePixelInIU() const =0
void Transfer(int aIndex)
Move the item at aIndex (first position is 0) to the backup list.
void Empty()
Clear the list.
int GetCount() const
Return the number of objects in the list.
bool HasItem(const EDA_ITEM *aItem) const
Tests if aItem has already been collected.
void Remove(int aIndex)
Remove the item at aIndex (first position is 0).
void Append(EDA_ITEM *item)
Add an item to the end of the list.
COMMIT & Remove(EDA_ITEM *aItem, BASE_SCREEN *aScreen=nullptr)
Remove a new item from the model.
A set of EDA_ITEMs (i.e., without duplicates).
std::unordered_set< EDA_ITEM * > & GetItems()
bool HasDesignBlockLink() const
virtual EDA_ITEM * AsEdaItem()=0
A base class for most all the KiCad significant classes used in schematics and boards.
virtual VECTOR2I GetPosition() const
virtual const BOX2I GetBoundingBox() const
Return the orthogonal bounding box of this object for display purposes.
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.
virtual bool HitTest(const VECTOR2I &aPosition, int aAccuracy=0) const
Test if aPosition is inside or on the boundary of this item.
EDA_ITEM * GetParent() const
bool HasFlag(EDA_ITEM_FLAGS aFlag) const
EDA_ITEM_FLAGS GetFlags() const
const VECTOR2I & GetEnd() const
Return the ending point of the graphic.
const VECTOR2I & GetStart() const
Return the starting point of the graphic.
virtual std::vector< SHAPE * > MakeEffectiveShapesForHitTesting() const
virtual bool IsVisible() const
std::shared_ptr< SHAPE_COMPOUND > GetEffectiveTextShape(bool aTriangulate=true, const BOX2I &aBBox=BOX2I(), const EDA_ANGLE &aAngle=ANGLE_0) const
build a list of segments (SHAPE_SEGMENT) to describe a text shape.
static const TOOL_EVENT DisambiguatePoint
Used for hotkey feedback.
static const TOOL_EVENT ClearedEvent
static const TOOL_EVENT InhibitSelectionEditing
static const TOOL_EVENT SelectedEvent
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 UninhibitSelectionEditing
Used to inform tool that it should display the disambiguation menu.
static const TOOL_EVENT PointSelectedEvent
static const TOOL_EVENT SelectedItemsMoved
Used to inform tools that the selection should temporarily be non-editable.
static const TOOL_EVENT UnselectedEvent
A general implementation of a COLLECTORS_GUIDE.
void SetIgnoreBlindBuriedVias(bool ignore)
void SetIgnoreTracks(bool ignore)
void SetIgnoreFootprintsOnFront(bool ignore)
void SetIgnoreFPTextOnFront(bool ignore)
void SetIgnoreMicroVias(bool ignore)
void SetIgnoreZoneFills(bool ignore)
void SetIgnorePadsOnBack(bool ignore)
void SetIgnoreFPTextOnBack(bool ignore)
void SetLayerVisibleBits(const LSET &aLayerBits)
void SetIgnoreThroughVias(bool ignore)
void SetIgnoreThroughHolePads(bool ignore)
void SetIgnoreFPReferences(bool ignore)
void SetIgnoreFPValues(bool ignore)
void SetIgnorePadsOnFront(bool ignore)
void SetIgnoreFootprintsOnBack(bool ignore)
Used when the right click button is pressed, or when the select tool is in effect.
void SetGuide(const COLLECTORS_GUIDE *aGuide)
Record which COLLECTORS_GUIDE to use.
const COLLECTORS_GUIDE * GetGuide() const
static const std::vector< KICAD_T > AllBoardItems
A scan list for all editable board items.
void Collect(BOARD_ITEM *aItem, const std::vector< KICAD_T > &aScanList, const VECTOR2I &aRefPos, const COLLECTORS_GUIDE &aGuide)
Scan a BOARD_ITEM using this class's Inspector method, which does the collection.
static const std::vector< KICAD_T > FootprintItems
A scan list for primary footprint items.
A color representation with 4 components: red, green, blue, alpha.
virtual RENDER_SETTINGS * GetSettings()=0
Return a pointer to current settings that are going to be used when drawing items.
virtual void Update(const VIEW_ITEM *aItem, int aUpdateFlags) const override
For dynamic VIEWs, inform the associated VIEW that the graphical representation of this item has chan...
virtual void Add(VIEW_ITEM *aItem, int aDrawPriority=-1) override
Add a VIEW_ITEM to the view.
virtual void Remove(VIEW_ITEM *aItem) override
Remove a VIEW_ITEM from the view.
Represent a selection area (currently a rectangle) in a VIEW, drawn corner-to-corner between two poin...
VECTOR2I GetOrigin() const
void SetMode(SELECTION_MODE aMode)
void SetSubtractive(bool aSubtractive)
SELECTION_MODE GetMode() const
void SetAdditive(bool aAdditive)
void SetPoly(SHAPE_LINE_CHAIN &aPoly)
void SetOrigin(const VECTOR2I &aOrigin)
const BOX2I ViewBBox() const override
Set the origin of the rectangle (the fixed corner)
SHAPE_LINE_CHAIN & GetPoly()
void SetExclusiveOr(bool aExclusiveOr)
void SetEnd(const VECTOR2I &aEnd)
Set the current end of the rectangle (the corner that moves with the cursor.
Container for all the knowledge about how graphical objects are drawn on any output surface/device.
const std::set< int > & GetHighlightNetCodes() const
Return the netcode of currently highlighted net.
const std::set< int > GetHighContrastLayers() const
Returns the set of currently high-contrast layers.
virtual COLOR4D GetColor(const VIEW_ITEM *aItem, int aLayer) const =0
Returns the color that should be used to draw the specific VIEW_ITEM on the specific layer using curr...
bool GetHighContrast() const
void SetHighlight(bool aEnabled, int aNetcode=-1, bool aMulti=false)
Turns on/off highlighting.
virtual void SetCursorPosition(const VECTOR2D &aPosition, bool aWarpView=true, bool aTriggeredByArrows=false, long aArrowCommand=0)=0
Move cursor to the requested position expressed in world coordinates.
virtual void SetAutoPan(bool aEnabled)
Turn on/off auto panning (this feature is used when there is a tool active (eg.
An abstract base class for deriving all objects that can be added to a VIEW.
bool IsBOARD_ITEM() const
Hold a (potentially large) number of VIEW_ITEMs and renders them on a graphics device provided by the...
BOX2D GetViewport() const
Return the current viewport visible area rectangle.
virtual void SetScale(double aScale, VECTOR2D aAnchor={ 0, 0 })
Set the scaling factor, zooming around a given anchor point.
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.
void UpdateAllLayersColor()
Apply the new coloring scheme to all layers.
int Query(const BOX2I &aRect, std::vector< LAYER_ITEM_PAIR > &aResult) const
Find all visible items that touch or are within the rectangle aRect.
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...
void Hide(VIEW_ITEM *aItem, bool aHide=true, bool aHideOverlay=false)
Temporarily hide the item in the view (e.g.
bool IsLayerVisible(int aLayer) const
Return information about visibility of a particular layer.
PAINTER * GetPainter() const
Return the painter object used by the view for drawing #VIEW_ITEMS.
void MarkTargetDirty(int aTarget)
Set or clear target 'dirty' flag.
void SetVisible(VIEW_ITEM *aItem, bool aIsVisible=true)
Set the item visibility.
wxString AsString() const
LSEQ is a sequence (and therefore also a set) of PCB_LAYER_IDs.
LSET is a set of PCB_LAYER_IDs.
static const LSET & AllCuMask()
return AllCuMask( MAX_CU_LAYERS );
LSEQ CuStack() const
Return a sequence of copper layers in starting from the front/top and extending to the back/bottom.
LSEQ Seq(const LSEQ &aSequence) const
Return an LSEQ from the union of this LSET and a desired sequence.
LSEQ SeqStackupTop2Bottom(PCB_LAYER_ID aSelectedLayer=UNDEFINED_LAYER) const
Generate a sequence of layers that represent a top to bottom stack of this set of layers.
static const LSET & AllLayersMask()
static const LSET & PhysicalLayersMask()
Return a mask holding all layers which are physically realized.
bool Contains(PCB_LAYER_ID aLayer) const
See if the layer set contains a PCB layer.
const VECTOR2I & GetPos() const
void ShapeToPolygon(SHAPE_LINE_CHAIN &aPolygon, int aScale=-1) const
Return the shape polygon in internal units in a SHAPE_LINE_CHAIN the coordinates are relatives to the...
Handle the data for a net.
const wxString & GetNetChain() const
PAD * GetTerminalPad(int aIndex) const
static TOOL_ACTION drag45Degree
static TOOL_ACTION selectNetChain
Select all connections belonging to every net in the current item's net chain.
static TOOL_ACTION unrouteSelected
Removes all tracks from the selected items to the first pad.
static TOOL_ACTION saveToLinkedDesignBlock
static TOOL_ACTION grabUnconnected
Select and move nearest unconnected footprint from ratsnest of selection.
static TOOL_ACTION filterSelection
Filter the items in the current selection (invokes dialog)
static TOOL_ACTION setTerminalPad
static TOOL_ACTION highlightNet
static TOOL_ACTION hideLocalRatsnest
static TOOL_ACTION properties
Activation of the edit tool.
static TOOL_ACTION highlightNetChain
static TOOL_ACTION selectOnSheetFromEeschema
Select all components on sheet from Eeschema crossprobing.
static TOOL_ACTION selectConnection
Select tracks between junctions or expands an existing selection to pads or the entire connection.
static TOOL_ACTION applyDesignBlockLayout
static TOOL_ACTION dragFreeAngle
static TOOL_ACTION clearHighlight
static TOOL_ACTION selectUnconnected
Select unconnected footprints from ratsnest of selection.
static TOOL_ACTION unrouteSegment
Removes track segment from the selected item to the next segment.
static TOOL_ACTION moveIndividually
move items one-by-one
static TOOL_ACTION syncSelection
Sets selection to specified items, zooms to fit, if enabled.
static TOOL_ACTION selectSameSheet
Select all components on the same sheet as the selected footprint.
static TOOL_ACTION selectNet
Select all connections belonging to a single net.
static TOOL_ACTION move
move or drag an item
static TOOL_ACTION syncSelectionWithNets
Sets selection to specified items with connected nets, zooms to fit, if enabled.
static TOOL_ACTION deselectNet
Remove all connections belonging to a single net from the active selection.
static TOOL_ACTION placeLinkedDesignBlock
static TOOL_ACTION selectOnSchematic
Select symbols/pins on schematic corresponding to selected footprints/pads.
Common, abstract interface for edit frames.
Base PCB main window class for Pcbnew, Gerbview, and CvPcb footprint viewer.
const PCB_DISPLAY_OPTIONS & GetDisplayOptions() const
Display options control the way tracks, vias, outlines and other things are shown (for instance solid...
double m_TrackOpacity
Opacity override for all tracks.
double m_FilledShapeOpacity
Opacity override for graphic shapes.
double m_ZoneOpacity
Opacity override for filled zone areas.
double m_ImageOpacity
Opacity override for user images.
double m_PadOpacity
Opacity override for SMD pads and PTHs.
double m_ViaOpacity
Opacity override for all types of via.
ZONE_DISPLAY_MODE m_ZoneDisplayMode
virtual KIGFX::PCB_VIEW * GetView() const override
Return a pointer to the #VIEW instance used in the panel.
A drill chart placed on the board, kept in step with the holes.
bool IsDataRow(int aRow) const
True for a row that reports a drill group, false for the title, heading and totals.
The main frame for Pcbnew.
virtual ACTION_MENU * GetChildContextMenu(TOOL_INTERACTIVE *aTool) const
Get a context menu when interacting with a generator child.
virtual bool ChildrenAreIndividuallySelectable() const
A set of BOARD_ITEMs (i.e., without duplicates).
static bool WithinScope(BOARD_ITEM *aItem, PCB_GROUP *aScope, bool isFootprintEditor)
static EDA_GROUP * TopLevelGroup(BOARD_ITEM *aItem, EDA_GROUP *aScope, bool isFootprintEditor)
std::unordered_set< BOARD_ITEM * > GetBoardItems() const
Tool that displays edit points allowing to modify items by dragging the points.
bool HasPoint()
Indicate the cursor is over an edit point.
A PCB_POINT is a 0-dimensional point that is used to mark a position on a PCB, or more usually a foot...
VECTOR2I GetCenter() const override
This defaults to the center of the bounding box if not overridden.
virtual LSET GetLayerSet() const override
Return a std::bitset of all layers on which the item physically resides.
std::vector< VECTOR2I > GetConnectionPoints() const
std::vector< PCB_TABLECELL * > GetCells() const
virtual LSET GetLayerSet() const override
Return a std::bitset of all layers on which the item physically resides.
const VECTOR2I & GetStart() const
const VECTOR2I & GetEnd() const
VECTOR2I GetPosition() const override
int GetWidth() const override
virtual LSET GetLayerSet() const override
Return a std::bitset of all layers on which the item physically resides.
A small class to help profiling.
void Start()
Start or restart the counter.
double msecs(bool aSinceLast=false)
Describe ratsnest for a single net.
const std::vector< CN_EDGE > & GetEdges() const
static SEG::ecoord Square(int a)
static SELECTION_CONDITION HasType(KICAD_T aType)
Create a functor that tests if among the selected items there is at least one of a given type.
static bool NotEmpty(const SELECTION &aSelection)
Test if there are any items selected.
static SELECTION_CONDITION MoreThan(int aNumber)
Create a functor that tests if the number of selected items is greater than the value given as parame...
static SELECTION_CONDITION Count(int aNumber)
Create a functor that tests if the number of selected items is equal to the value given as parameter.
static SELECTION_CONDITION OnlyTypes(std::vector< KICAD_T > aTypes)
Create a functor that tests if the selected items are only of given types.
virtual void Add(EDA_ITEM *aItem)
A null aItem is ignored; the selection never holds null members.
virtual void Remove(EDA_ITEM *aItem)
void ClearReferencePoint()
bool Empty() const
Checks if there is anything selected.
Represent a polyline containing arcs as well as line segments: A chain of connected line and/or arc s...
void Move(const VECTOR2I &aVector) override
void GenerateBBoxCache() const
void SetClosed(bool aClosed)
Mark the line chain as closed (i.e.
int PointCount() const
Return the number of points (vertices) in this line chain.
virtual bool Collide(const VECTOR2I &aP, int aClearance=0, int *aActual=nullptr, VECTOR2I *aLocation=nullptr) const override
Check if point aP lies closer to us than aClearance.
double Area(bool aAbsolute=true) const
Return the area of this chain.
virtual size_t GetPointCount() const override
void Append(int aX, int aY, bool aAllowDuplication=false)
Append a new point at the end of the line chain.
const VECTOR2I & CLastPoint() const
Return the last point in the line chain.
void Remove(int aStartIndex, int aEndIndex)
Remove the range of points [start_index, end_index] from the line chain.
bool Collide(const SHAPE *aShape, int aClearance=0, int *aActual=nullptr, VECTOR2I *aLocation=nullptr) const override
Check if the boundary of shape (this) lies closer to the shape aShape than aClearance,...
virtual bool Collide(const VECTOR2I &aP, int aClearance=0, int *aActual=nullptr, VECTOR2I *aLocation=nullptr) const
Check if the boundary of shape (this) lies closer to the point aP than aClearance,...
Handle a list of polygons defining a copper zone.
bool GetIsRuleArea() const
Accessors to parameters used in Rule Area zones:
bool HitTestForCorner(const VECTOR2I &refPos, int aAccuracy, SHAPE_POLY_SET::VERTEX_INDEX *aCornerHit=nullptr) const
Test if the given VECTOR2I is near a corner.
bool HitTestForEdge(const VECTOR2I &refPos, int aAccuracy, SHAPE_POLY_SET::VERTEX_INDEX *aCornerHit=nullptr) const
Test if the given VECTOR2I is near a segment defined by 2 corners.
bool IsTeardropArea() const
virtual LSET GetLayerSet() const override
Return a std::bitset of all layers on which the item physically resides.
bool GetDoNotAllowZoneFills() const
A type-safe container of any type.
#define IGNORE_NETS
Function GetConnectedItems() Returns a list of items connected to a source item aItem.
#define DEFAULT_TEXT_SIZE
Ratio of the font height to the baseline of the text above the wire.
static bool empty(const wxTextEntryBase *aCtrl)
std::function< INSPECT_RESULT(EDA_ITEM *aItem, void *aTestData) > INSPECTOR_FUNC
Used to inspect and possibly collect the (search) results of iterating over a list or tree of KICAD_T...
#define BRIGHTENED
item is drawn with a bright contour
#define IS_NEW
New item, just created.
#define SELECTED
Item was manually selected by the user.
#define ENTERED
indicates a group has been entered
#define SKIP_STRUCT
flag indicating that the structure should be ignored
#define CANDIDATE
flag indicating that the structure is connected
#define IS_MOVING
Item being moved.
a few functions useful in geometry calculations.
double m_PcbSelectionVisibilityRatio
Board object selection visibility limit.
@ LAYER_POINTS
PCB reference/manual snap points visibility.
@ LAYER_FOOTPRINTS_FR
Show footprints on front.
@ LAYER_DRAW_BITMAPS
Draw images.
@ LAYER_FP_REFERENCES
Show footprints references (when texts are visible).
@ LAYER_DRC_EXCLUSION
Layer for DRC markers which have been individually excluded.
@ LAYER_ZONES
Control for copper zone opacity/visibility (color ignored).
@ LAYER_PADS
Meta control for all pads opacity/visibility (color ignored).
@ LAYER_FOOTPRINTS_BK
Show footprints on back.
@ LAYER_FP_VALUES
Show footprints values (when texts are visible).
@ LAYER_SUBGRIDS
Routing/placement subgrids (PCB_GRID_ITEM) visibility and color.
@ LAYER_VIAS
Meta control for all vias opacity/visibility.
PCB_LAYER_ID
A quick note on layer IDs:
PCB_LAYER_ID ToLAYER_ID(int aLayer)
This file contains miscellaneous commonly used macros and functions.
#define KI_FALLTHROUGH
The KI_FALLTHROUGH macro is to be used when switch statement cases should purposely fallthrough from ...
bool BoxHitTest(const VECTOR2I &aHitPoint, const BOX2I &aHittee, int aAccuracy)
Perform a point-to-box hit test.
@ REPAINT
Item needs to be redrawn.
@ TARGET_OVERLAY
Items that may change while the view stays the same (noncached)
@ NPTH
like PAD_PTH, but not plated mechanical use only, no connection allowed
@ PTH
Plated through hole pad.
Class to handle a set of BOARD_ITEMs.
Class that computes missing connections on a PCB.
static float distance(const SFVEC2UI &a, const SFVEC2UI &b)
std::function< bool(const SELECTION &)> SELECTION_CONDITION
Functor type that checks a specific condition for selected items.
Struct that will be set with the result of the user choices in the dialog.
bool includeLockedFootprints
bool includeItemsOnTechLayers
bool includeBoardOutlineLayer
const BOARD_ITEM * m_Item
This file contains data structures that are saved in the project file or project local settings file ...
bool otherItems
Anything not fitting one of the above categories.
bool vias
Vias (all types>
bool gridItems
Grid Items.
bool keepouts
Keepout zones.
bool graphics
Graphic lines, shapes, polygons.
bool footprints
Allow selecting entire footprints.
bool text
Text (free or attached to a footprint)
bool lockedItems
Allow selecting locked items.
bool tracks
Copper tracks.
bool dimensions
Dimension items.
KIBIS top(path, &reporter)
wxLogTrace helper definitions.
KICAD_T
The set of class identification values stored in EDA_ITEM::m_structType.
@ PCB_CONSTRAINT_T
a geometric constraint between board items
@ 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_DRILL_MAP_T
class PCB_DRILL_MAP, drill symbols drawn at the holes
@ 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
@ NOT_USED
the 3d code uses this value
@ PCB_MARKER_T
class PCB_MARKER, a marker used to show something
@ PCB_BARCODE_T
class PCB_BARCODE, a barcode (graphic item)
@ PCB_TARGET_T
class PCB_TARGET, a target (graphic item)
@ PCB_TABLECELL_T
class PCB_TABLECELL, PCB_TEXTBOX for use in tables
@ PCB_FOOTPRINT_T
class FOOTPRINT, a footprint
@ PCB_GRID_ITEM_T
a subgrid placed on a board
@ 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_POINT_T
class PCB_POINT, a 0-dimensional point
@ 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
@ PCB_DRILL_CHART_T
class PCB_DRILL_CHART, a live drill chart derived from PCB_TABLE
Casted dyn_cast(From aObject)
A lightweight dynamic downcast.
VECTOR2< int32_t > VECTOR2I
VECTOR2< double > VECTOR2D
VECTOR2D ToVECTOR2D(const wxPoint &aPoint)