37#include <unordered_set>
73 if( aSel.GetSize() == 1 )
87 return aSel.GetSize() == 1 && aSel.Front()->Type() ==
SCH_SYMBOL_T;
93 if( aSel.GetSize() == 1 )
107 if( aSel.GetSize() == 1 )
121 if( aSel.GetSize() == 1 )
125 if(
pin &&
pin->GetLibPin() )
126 return !
pin->GetLibPin()->GetAlternates().empty();
144 return aSel.GetSize() > 1 && aSel.OnlyContains( {
SCH_SYMBOL_T } );
150 return aSel.GetSize() >= 1 && aSel.OnlyContains( {
SCH_PIN_T } );
195 if( !
pin || !frame || !
pin->Connection() )
204 m_oldA = sig->GetTerminalPinA();
205 m_oldB = sig->GetTerminalPinB();
212 itemA->Enable(
false );
215 itemB->Enable(
false );
263 wxLogTrace(
"KICAD_NET_CHAIN_MENU",
"[NetChainMenu] update() invoked" );
270 wxLogTrace(
"KICAD_NET_CHAIN_MENU",
"[NetChainMenu] defer: toolMgr not yet available" );
279 wxLogTrace(
"KICAD_NET_CHAIN_MENU",
"[NetChainMenu] abort: selTool=%p baseFrame=%p", (
void*) selTool,
289 wxLogTrace(
"KICAD_NET_CHAIN_MENU",
"[NetChainMenu] abort: empty selection" );
293 wxLogTrace(
"KICAD_NET_CHAIN_MENU",
"[NetChainMenu] selection size=%u", sel.
GetSize() );
298 wxLogTrace(
"KICAD_NET_CHAIN_MENU",
"[NetChainMenu] abort: no connection graph" );
305 wxLogTrace(
"KICAD_NET_CHAIN_MENU",
"[NetChainMenu] added createNetChain" );
309 auto pinFrom = [&](
int idx ) ->
SCH_PIN*
311 if( idx >= (
int) sel.
GetSize() )
317 bool singlePin = sel.
GetSize() == 1 && pinFrom( 0 ) && pinFrom( 0 )->Connection();
318 bool inSignal =
false;
319 bool canName =
false;
320 bool canRemove =
false;
323 for(
size_t i = 0; i < sel.
GetSize(); ++i )
328 wxLogTrace(
"KICAD_NET_CHAIN_MENU",
"[NetChainMenu] sel[%zu]: not a pin or no connection", i );
334 wxLogTrace(
"KICAD_NET_CHAIN_MENU",
"[NetChainMenu] sel[%zu]: pin uuid=%s net=%s committedSignal=%d", i,
345 wxLogTrace(
"KICAD_NET_CHAIN_MENU",
"[NetChainMenu] flags: singlePin=%d inSignal=%d canName=%d canRemove=%d", singlePin, inSignal, canName, canRemove );
351 wxLogTrace(
"KICAD_NET_CHAIN_MENU",
"[NetChainMenu] added highlightNetChain" );
358 wxLogTrace(
"KICAD_NET_CHAIN_MENU",
"[NetChainMenu] added removeFromNetChain" );
362 if( singlePin && inSignal )
365 wxLogTrace(
"KICAD_NET_CHAIN_MENU",
"[NetChainMenu] added replaceTerminalPin submenu" );
372 wxLogTrace(
"KICAD_NET_CHAIN_MENU",
"[NetChainMenu] added nameNetChain" );
379 wxLogTrace(
"KICAD_NET_CHAIN_MENU",
"[NetChainMenu] createNetChainBetweenPins attempted added=%d", added );
393 if( isConnectedPin || isConnectedWireOrBus )
396 wxLogTrace(
"KICAD_NET_CHAIN_MENU",
"[NetChainMenu] added createNetChain for single connected item" );
405 wxMenuItem* placeholder = Append( wxID_ANY,
_(
"(No net chain actions)" ) );
406 placeholder->Enable(
false );
429 wxString label = wxString::Format(
_(
"Create Net Chain between %s:%s and %s:%s" ),
441 for(
EDA_ITEM* item : aSel.Items() )
445 if( schItem->IsLocked() )
456 for(
EDA_ITEM* item : aSel.Items() )
460 if( !schItem->IsLocked() )
471 for(
int i = 0; aAllowedActions[i]; ++i )
473 if( aEvent->
IsAction( aAllowedActions[i] ) )
482#define HITTEST_THRESHOLD_PIXELS 5
569 if( symbolEditorFrame )
584 auto expandableSelection =
592 auto schEditSheetPageNumberCondition =
602 auto schEditCondition =
608 auto belowRootSheetCondition =
632 auto groupEnterCondition =
635 auto inGroupCondition =
641 auto multipleUnitsSelection = [](
const SELECTION& aSel )
650 m_frame->eeconfig()->m_Input.allow_unconstrained_pin_swaps;
654 auto& menu =
m_menu->GetMenu();
661 return aSel.GetSize() >= 1 && aSel.OnlyContains( {
SCH_PIN_T } );
668 if( aSel.GetSize() != 1 )
678 if( !schItem->
IsType( { SCH_ITEM_LOCATE_WIRE_T, SCH_ITEM_LOCATE_BUS_T } ) )
689 return aSel.GetSize() >= 1 && aSel.OnlyContains( {
SCH_SYMBOL_T } );
692 std::shared_ptr<NET_CHAIN_MENU> netChainMenu = std::make_shared<NET_CHAIN_MENU>();
693 netChainMenu->SetTool(
this );
694 m_menu->RegisterSubMenu( netChainMenu );
709 menu.AddSeparator( 100 );
713 menu.AddSeparator( 100 );
720 menu.AddSeparator( 200 );
738 menu.AddSeparator( 400 );
741 menu.AddMenu( netChainMenu.get(), ( pinSelection || wireOrBusInSignal || symbolSelection ) &&
SCH_CONDITIONS::Idle, 400 );
743 menu.AddSeparator( 1000 );
779 if( symbolEditFrame )
806 auto pinOrientation =
816 return pin->GetOrientation();
821 return dummy.GetOrientation();
845 bool selCancelled =
false;
846 bool displayWireCursor =
false;
847 bool displayBusCursor =
false;
848 bool displayLineCursor =
false;
849 KIID rolloverItemId = lastRolloverItemId;
853 evt->Modifier(
MD_ALT ) );
859 if( !
m_frame->ToolStackIsEmpty() )
893 schframe->ClearFocus();
900 size_t preFilterCount = collector.
GetCount();
902 narrowSelection( collector, evt->Position(),
false,
false, &rejected );
909 bool allCellsFromSameTable =
true;
921 allCellsFromSameTable =
false;
941 VECTOR2D bottomRight( std::max( start.
x,
end.x ), std::max( start.
y,
end.y ) );
964 else if( collector[0]->HasHoveredHypertext() )
966 collector[ 0 ]->DoHypertextAction(
m_frame, evt->Position() );
969 else if( collector[0]->IsBrightened() )
975 schframe->SelectNetNavigatorItem( &itemData );
982 if( collector.
GetCount() == 0 && preFilterCount > 0 )
985 frame->HighlightSelectionFilter( rejected );
1000 SelectPoint( evt->Position(), { SCH_LOCATE_ANY_T },
nullptr, &selCancelled );
1009 .Contains( evt->Position() ) )
1013 if(
CollectHits( collector, evt->Position(), { SCH_LOCATE_ANY_T } ) )
1017 SelectPoint( evt->Position(), { SCH_LOCATE_ANY_T },
nullptr, &selCancelled );
1025 else if( evt->IsDblClick(
BUT_LEFT ) )
1031 schframe->ClearFocus();
1050 if( evt->Modifier(
MD_CTRL ) )
1062 evt->SetPassEvent();
1069 schframe->ClearFocus();
1080 else if(
CollectHits( collector, evt->DragOrigin(), { SCH_TABLECELL_T } )
1081 && !collector[0]->GetParent()->IsSelected()
1082 && ( collector[0]->GetParent()->GetParentGroup() ==
nullptr
1083 || collector[0]->GetParent()->GetParentGroup() ==
m_enteredGroup ) )
1146 else if( evt->IsMouseDown(
BUT_AUX1 ) )
1150 else if( evt->IsMouseDown(
BUT_AUX2 ) )
1166 const int delta = evt->Parameter<
int>();
1209 wxString alt = *evt->Parameter<wxString*>();
1233 newItems.push_back( nc );
1236 if( !commit.
Empty() )
1238 commit.
Push( wxS(
"No Connect Pins" ) );
1257 switch( pinOrientation( item ) )
1278 newItems.push_back( wire );
1281 if( !commit.
Empty() )
1299 commit.
Push( wxS(
"Wire Pins" ) );
1319 labelText =
pin->GetShownName();
1321 if( labelText.IsEmpty() )
1323 labelText.Printf(
"%s_%s",
1324 pin->GetParentSymbol()->GetRef( &sheetPath ),
1330 labelText = sheetPin->
GetShownText( &sheetPath,
false );
1337 switch( *evt->GetCommandId() )
1340 label =
new SCH_LABEL( item->GetPosition(), labelText );
1343 label =
new SCH_HIERLABEL( item->GetPosition(), labelText );
1352 switch( pinOrientation( item ) )
1373 pinType =
pin->GetType();
1409 newItems.push_back( label );
1412 if( !commit.
Empty() )
1414 commit.
Push( wxS(
"Label Pins" ) );
1426 wxString* net =
new wxString( *evt->Parameter<wxString*>() );
1430 else if( evt->IsCancelInteractive() )
1440 schframe->ClearFocus();
1446 else if( evt->FirstResponder() ==
this && evt->GetCommandId() == (
int) WXK_ESCAPE )
1456 if(
editor &&
m_frame->eeconfig()->m_Input.esc_clears_net_highlight )
1457 editor->ClearHighlight( *evt );
1464 schframe->ClearFocus();
1466 else if( evt->IsMotion() && !
m_isSymbolEditor && evt->FirstResponder() ==
this )
1485 displayBusCursor =
true;
1487 displayWireCursor =
true;
1489 displayLineCursor =
true;
1491 else if( collector[0]->HasHypertext() && !collector[0]->IsSelected() )
1493 rolloverItemId = collector[0]->m_Uuid;
1500 evt->SetPassEvent();
1503 if( lastRolloverItemId !=
niluuid && lastRolloverItemId != rolloverItemId )
1512 m_frame->GetCanvas()->GetView()->Update( item );
1517 if( rolloverItemId !=
niluuid )
1519 rolloverItem =
static_cast<SCH_ITEM*
>(
m_frame->ResolveItem( rolloverItemId ) );
1526 m_frame->GetCanvas()->GetView()->Update( rolloverItem );
1529 lastRolloverItemId = rolloverItemId;
1531 if(
m_frame->ToolStackIsEmpty() )
1533 if( displayWireCursor )
1537 else if( displayBusCursor )
1541 else if( displayLineCursor )
1551 && evt->HasPosition()
1576 wxT(
"EnterGroup called when selection is not a single group" ) );
1636 if(
m_frame->eeconfig()->m_Drawing.auto_start_wires
1669 if( possibleConnection.
IsBus() )
1677 if( !
pin || !
pin->IsPointClickableAnchor( pos ) )
1680 if( !
pin->IsVisible()
1681 && !(
m_frame->eeconfig()->m_Appearance.show_hidden_pins
1682 ||
m_frame->GetRenderSettings()->m_ShowHiddenPins ) )
1688 newEvt->SetMousePosition( pos );
1689 newEvt->SetHasPosition(
true );
1690 newEvt->SetForceImmediate(
true );
1703 wxMouseState keyboardState = wxGetMouseState();
1706 keyboardState.AltDown() );
1721 wxMouseState keyboardState = wxGetMouseState();
1724 keyboardState.AltDown() );
1745 const std::vector<KICAD_T>& aScanTypes )
1748 int gridThreshold =
KiROUND(
getView()->GetGAL()->GetGridSize().EuclideanNorm() / 2.0 );
1749 aCollector.
m_Threshold = std::max( pixelThreshold, gridThreshold );
1769 int originalCount = aCollector.
GetCount();
1771 for(
int ii = 0; ii < originalCount; ++ii )
1773 if( aCollector[ii]->Type() ==
SCH_PIN_T )
1777 if( !aCollector.
HasItem(
pin->GetParentSymbol() ) )
1778 aCollector.
Append(
pin->GetParentSymbol() );
1789 bool aCheckLocked,
bool aSelectedOnly,
1794 for(
int i = collector.
GetCount() - 1; i >= 0; --i )
1796 if( symbolEditorFrame )
1803 if( !
static_cast<SCH_FIELD*
>( item )->IsVisible()
1812 if( !
static_cast<SCH_PIN*
>( item )->IsVisible()
1827 if( aCheckLocked && collector[i]->IsLocked() )
1841 if( aSelectedOnly && !collector[i]->IsSelected() )
1857 EDA_ITEM** aItem,
bool* aSelectionCancelledFlag,
bool aAdd,
1858 bool aSubtract,
bool aExclusiveOr )
1876 if( aSelectionCancelledFlag )
1877 *aSelectionCancelledFlag =
true;
1883 if( !aAdd && !aSubtract && !aExclusiveOr )
1891 bool foundEnteredGroup =
false;
1896 foundEnteredGroup =
true;
1901 if( !foundEnteredGroup )
1908 bool anySubtracted =
false;
1912 for(
int i = 0; i < aCollector.
GetCount(); ++i )
1915 bool isLine = aCollector[i]->Type() ==
SCH_LINE_T;
1931 || ( aExclusiveOr && aCollector[i]->IsSelected()
1932 && ( !isLine || ( isLine && aCollector[i]->HasFlag( flags ) ) ) ) )
1934 aCollector[i]->ClearFlags( flags );
1944 anySubtracted =
true;
1949 aCollector[i]->SetFlags( flags );
1956 if( addedCount == 1 )
1960 if( aItem && aCollector.
GetCount() == 1 )
1961 *aItem = aCollector[0];
1965 else if( addedCount > 1 )
1970 else if( anySubtracted )
1976 m_frame->GetCanvas()->ForceRefresh();
1982 const std::vector<KICAD_T>& aScanTypes,
1983 EDA_ITEM** aItem,
bool* aSelectionCancelledFlag,
1984 bool aCheckLocked,
bool aAdd,
bool aSubtract,
1989 if( !
CollectHits( collector, aWhere, aScanTypes ) )
1992 size_t preFilterCount = collector.
GetCount();
1994 rejected.
SetAll(
false );
1995 narrowSelection( collector, aWhere, aCheckLocked, aSubtract, &rejected );
1997 if( collector.
GetCount() == 0 && preFilterCount > 0 )
2000 frame->HighlightSelectionFilter( rejected );
2002 if( !aAdd && !aSubtract && !aExclusiveOr &&
m_selection.GetSize() > 0 )
2011 return selectPoint( collector, aWhere, aItem, aSelectionCancelledFlag, aAdd, aSubtract,
2022 std::vector<EDA_ITEM*> sheetPins;
2028 view->
Query( selectionBox,
2036 collection.
Append( item );
2050 sheetPins.emplace_back(
pin );
2071 m_frame->GetCanvas()->ForceRefresh();
2081 std::vector<KIGFX::VIEW::LAYER_ITEM_PAIR> selectedItems;
2087 view->
Query( selectionBox, selectedItems );
2114 m_frame->GetCanvas()->ForceRefresh();
2122 std::set<EDA_ITEM*> exactHits;
2124 for(
int i = collector.
GetCount() - 1; i >= 0; --i )
2137 if( item->
HitTest( aPos, pixelThreshold ) )
2138 exactHits.insert( item );
2147 if(
m_frame->GetRenderSettings()->m_ShowPinsElectricalType )
2150 if( item->
HitTest( aPos, 0 ) )
2151 exactHits.insert( item );
2157 if( exactHits.size() > 0 && exactHits.size() < (
unsigned) collector.
GetCount() )
2159 for(
int i = collector.
GetCount() - 1; i >= 0; --i )
2163 if( !exactHits.contains( item ) )
2169 SEG poss( aPos, aPos );
2171 int closestDist = INT_MAX / 4;
2175 BOX2I bbox = item->GetBoundingBox();
2176 int dist = INT_MAX / 4;
2181 bool dominating =
false;
2183 if( exactHits.contains( item ) )
2221 text->GetEffectiveTextShape(
false )->Collide( poss, INT_MAX / 4, &dist );
2227 shapes->Collide( poss, INT_MAX / 4, &dist );
2241 rect.
Collide( poss, closestDist, &dist );
2259 if( dist == closestDist )
2261 if( item->GetParent() == closest )
2264 else if( dist < closestDist )
2280 for(
int i = collector.
GetCount() - 1; i >= 0; --i )
2284 if( item == closest )
2287 if( !item->
HitTest( tightBox,
true ) )
2295 bool aPromoteCellSelections,
2296 bool aPromoteGroups )
2298 bool anyUnselected =
false;
2299 bool anySelected =
false;
2312 bool isMoving =
false;
2314 for(
int i = (
int)
m_selection.GetSize() - 1; i >= 0; --i )
2317 isMoving |=
static_cast<SCH_ITEM*
>( item )->IsMoving();
2319 if( !item->
IsType( aScanTypes ) )
2322 anyUnselected =
true;
2330 if( aPromoteGroups )
2332 for(
int i = (
int)
m_selection.GetSize() - 1; i >= 0; --i )
2336 std::set<EDA_ITEM*> selectedChildren;
2342 if( aChild->
IsType( aScanTypes ) )
2343 selectedChildren.insert( aChild );
2347 anyUnselected =
true;
2350 for(
EDA_ITEM* child : selectedChildren )
2352 if( !child->IsSelected() )
2364 if( aPromoteCellSelections )
2366 std::set<EDA_ITEM*> parents;
2368 for(
int i = (
int)
m_selection.GetSize() - 1; i >= 0; --i )
2376 anyUnselected =
true;
2382 if( !parent->IsSelected() )
2405 std::set<EDA_ITEM*> rejected;
2410 rejected.insert( item );
2414 aCollector.
Remove( item );
2425 if( schItem->IsLocked() && !
m_filter.lockedItems )
2434 switch( aItem->
Type() )
2452 aRejected->
pins =
true;
2462 aRejected->
wires =
true;
2470 switch(
static_cast<SCH_LINE*
>( aItem )->GetLayer() )
2477 aRejected->
wires =
true;
2513 aRejected->
text =
true;
2525 aRejected->
labels =
true;
2535 aRejected->
images =
true;
2615 bool cancelled =
false;
2631 isGreedy = !isGreedy;
2636 if( evt->IsCancelInteractive() || evt->IsActivate() )
2649 area.
SetEnd( evt->Position() );
2666 evt->SetPassEvent(
false );
2688 bool cancelled =
false;
2704 bool isClockwise = shapeArea > 0 ? true :
false;
2706 if(
getView()->IsMirroredX() && shapeArea != 0 )
2707 isClockwise = !isClockwise;
2720 if( evt->IsCancelInteractive() || evt->IsActivate() )
2729 points.
Append( evt->Position() );
2731 else if( evt->IsDblClick(
BUT_LEFT )
2770 area.
SetMode( selectionMode );
2797 std::vector<KIGFX::VIEW::LAYER_ITEM_PAIR> candidates;
2799 view->
Query( selectionRect, candidates );
2801 std::set<SCH_ITEM*> uniqueCandidates;
2803 for(
const auto& [viewItem, layer] : candidates )
2805 if( viewItem->IsSCH_ITEM() )
2806 uniqueCandidates.insert(
static_cast<SCH_ITEM*
>( viewItem ) );
2815 if( boxMode ? selectionRect.
Intersects(
pin->GetBoundingBox() )
2817 uniqueCandidates.insert(
pin );
2824 if( boxMode ? selectionRect.
Intersects(
pin->GetBoundingBox() )
2826 uniqueCandidates.insert(
pin );
2831 if( field.IsVisible()
2832 && ( boxMode ? selectionRect.
Intersects( field.GetBoundingBox() )
2835 uniqueCandidates.insert( &field );
2843 std::set<EDA_ITEM*> group_items;
2852 std::unordered_set<EDA_ITEM*>& newset =
group->GetItems();
2855 [&](
const BOX2I& aBox )
2857 return boxMode ? selectionRect.
Contains( aBox )
2861 if( containedMode && boxContained(
group->GetBoundingBox() ) && newset.size() )
2863 for(
EDA_ITEM* group_item : newset )
2865 if( !group_item->IsSCH_ITEM() )
2869 collector.
Append( group_item );
2873 for(
EDA_ITEM* group_item : newset )
2874 group_items.emplace( group_item );
2880 return boxMode ? aItem->HitTest( selectionRect, containedMode )
2881 : aItem->HitTest( aArea.
GetPoly(), containedMode );
2884 for(
SCH_ITEM* item : uniqueCandidates )
2887 && ( !containedMode || !group_items.count( item ) ) )
2890 pinsCollector.
Append( item );
2892 collector.
Append( item );
2901 collector = pinsCollector;
2906 std::sort( collector.
begin(), collector.
end(),
2909 VECTOR2I aPos = a->GetPosition();
2910 VECTOR2I bPos = b->GetPosition();
2912 if( aPos.y == bPos.y )
2913 return aPos.x < bPos.x;
2915 return aPos.y < bPos.y;
2918 bool anyAdded =
false;
2919 bool anySubtracted =
false;
2924 if( aSubtractive || ( aExclusiveOr && aItem->
IsSelected() ) )
2934 anySubtracted =
true;
2937 if( flags && !anySubtracted )
2948 std::vector<EDA_ITEM*> flaggedItems;
2950 auto shapeContains =
2953 return boxMode ? selectionRect.
Contains( aPoint )
2962 flaggedItems.push_back( item );
2964 if(
m_frame->GetRenderSettings()->m_ShowPinsElectricalType )
2973 hits = line->
HitTest( selectionRect,
false );
2977 if( ( !containedMode && hits )
2982 else if( containedMode )
2992 selectItem( item, flags );
2995 selectItem( item, flags );
3000 for(
EDA_ITEM* item : pinsCollector )
3002 if(
m_frame->GetRenderSettings()->m_ShowPinsElectricalType )
3019 selectItem( item, 0 );
3025 for(
EDA_ITEM* item : flaggedItems )
3032 else if( anySubtracted )
3039 std::unordered_set<EDA_ITEM*> toAdd;
3043 for(
int j = 0; j < aCollector.
GetCount(); j++ )
3045 if( aCollector[j]->GetParent() )
3048 if( aCollector[j]->GetParentSymbol() )
3054 for(
int j = 0; j < aCollector.
GetCount(); j++ )
3059 const std::vector<KICAD_T>& scanTypes = aCollector.
GetScanTypes();
3063 for(
int j = 0; j < aCollector.
GetCount(); )
3075 aCollector.
Remove( item );
3084 if(
top->AsEdaItem() != item )
3086 toAdd.insert(
top->AsEdaItem() );
3089 aCollector.
Remove( item );
3098 aCollector.
Remove( item );
3107 if( !aCollector.
HasItem( item ) )
3108 aCollector.
Append( item );
3118 std::vector<EDA_ITEM*> toRemove;
3124 bool lockedDescendant =
false;
3126 schItem->RunOnChildren(
3130 lockedDescendant =
true;
3134 if( schItem->IsLocked() || lockedDescendant )
3135 toRemove.push_back( item );
3157 if( cell->IsSelected() )
3169 auto wasSelected = [](
EDA_ITEM* aItem )
3176 bool doSelect =
false;
3178 if( cell->HitTest( selectionRect,
false ) )
3183 doSelect = !wasSelected( cell );
3187 else if( wasSelected( cell ) )
3192 if( doSelect && !cell->IsSelected() )
3194 else if( !doSelect && cell->IsSelected() )
3201 bool cancelled =
false;
3208 if( evt->IsCancelInteractive() || evt->IsActivate() )
3216 SelectCellsBetween( evt->DragOrigin(), evt->Position() - evt->DragOrigin(), aTable );
3218 else if( evt->IsMouseUp(
BUT_LEFT ) )
3222 bool anyAdded =
false;
3223 bool anySubtracted =
false;
3230 anySubtracted =
true;
3246 evt->SetPassEvent();
3270 int gridThreshold =
KiROUND(
getView()->GetGAL()->GetGridSize().EuclideanNorm() );
3271 int thresholdMax = std::max( pixelThreshold, gridThreshold );
3273 for(
int threshold : { 0, thresholdMax/4, thresholdMax/2, thresholdMax } )
3282 return collector.
GetCount() ? collector[ 0 ] :
nullptr;
3311 std::vector<SCH_ITEM*> startItems;
3312 std::set<SCH_ITEM*> added;
3314 for(
auto item : aItems )
3316 if( !item->IsSCH_ITEM() )
3326 startItems.push_back(
pin );
3331 startItems.push_back( schItem );
3335 if( startItems.empty() )
3340 std::unordered_set<SCH_SYMBOL*> startSymbols;
3347 startSymbols.insert( parent );
3353 std::set<VECTOR2I> pinPositions;
3360 pinPositions.insert(
pin->GetPosition() );
3364 auto isStopPoint = [&](
const VECTOR2I& aPoint ) ->
bool
3369 if( pinPositions.count( aPoint ) )
3380 switch( it->Type() )
3388 if( it->IsConnected( aPoint ) )
3403 auto shouldPullInSymbol = [&]()
3408 std::deque<SCH_ITEM*> queue;
3409 std::unordered_set<SCH_ITEM*> visited;
3411 auto enqueue = [&](
SCH_ITEM* aItem )
3416 if( visited.insert( aItem ).second )
3417 queue.push_back( aItem );
3423 while( !queue.empty() )
3432 if( shouldPullInSymbol() && symbol &&
Selectable( symbol )
3435 added.insert( symbol );
3440 std::vector<VECTOR2I> openPoints;
3446 if( !isStopPoint( pt ) )
3447 openPoints.push_back( pt );
3463 added.insert( symbol );
3472 bool sharesOpenPoint =
false;
3474 for(
const VECTOR2I& pt : openPoints )
3476 if( neighbor->IsConnected( pt ) )
3478 sharesOpenPoint =
true;
3483 if( !sharesOpenPoint )
3487 enqueue( neighbor );
3493 added.insert( item );
3502 std::set<SCH_ITEM*> added;
3504 for(
auto item : aItems )
3506 if( !item->IsSCH_ITEM() )
3511 std::set<SCH_ITEM*> conns =
m_frame->GetScreen()->MarkConnections( schItem, schItem->
IsConnectable() );
3519 added.insert( connItem );
3542 if( !selItem->IsSCH_ITEM() )
3548 graphicalSelection.
Add( item );
3550 graphicalSelection.
Add( item );
3552 connectableSelection.
Add( item );
3557 std::unordered_set<const SCH_ITEM*> originalConnectableSet;
3560 originalConnectableSet.insert(
static_cast<const SCH_ITEM*
>( selItem ) );
3564 std::set<SCH_ITEM*> graphAdded;
3565 std::set<SCH_ITEM*> graphicalAdded;
3567 if( !connectableSelection.
Empty() )
3575 bool grew = std::any_of( graphAdded.begin(), graphAdded.end(),
3578 return !originalConnectableSet.count( c );
3586 if( !graphicalSelection.
Empty() )
3591 if( graphAdded.empty() && !connectableSelection.
Empty() )
3596 combinedSelection.
Add( selItem );
3598 graphicalSelection = combinedSelection;
3603 auto smartAddToSel = [&](
EDA_ITEM* aItem )
3612 for(
auto item : graphAdded )
3613 smartAddToSel( item );
3615 for(
auto item : graphicalAdded )
3616 smartAddToSel( item );
3618 for(
auto item : originalSelection )
3619 smartAddToSel( item );
3638 std::set<std::pair<SCH_TABLE*, int>> columns;
3646 columns.insert( std::make_pair(
table, cell->GetColumn() ) );
3650 for(
auto& [
table, col ] : columns )
3652 for(
int row = 0; row <
table->GetRowCount(); ++row )
3673 std::set<std::pair<SCH_TABLE*, int>> rows;
3681 rows.insert( std::make_pair(
table, cell->GetRow() ) );
3685 for(
auto& [
table, row ] : rows )
3687 for(
int col = 0; col <
table->GetColCount(); ++col )
3708 std::set<SCH_TABLE*> tables;
3714 tables.insert(
static_cast<SCH_TABLE*
>( cell->GetParent() ) );
3721 if( !
table->IsSelected() )
3764 double compRatio = bbSize.
y / currTextHeight;
3765 double compRatioBent = 1.0;
3771 std::vector<std::pair<double, double>> lut{ { 1.25, 16 },
3780 std::vector<std::pair<double, double>>::iterator it;
3783 compRatioBent = lut.back().second;
3787 if( compRatio >= lut.front().first )
3789 for( it = lut.begin(); it < lut.end() - 1; ++it )
3791 if( it->first <= compRatio &&
next( it )->first >= compRatio )
3793 double diffx = compRatio - it->first;
3794 double diffn =
next( it )->first - it->first;
3796 compRatioBent = it->second + (
next( it )->second - it->second ) * diffx / diffn;
3803 compRatioBent = lut.front().second;
3812 screenSize.
x = std::max( 10.0, screenSize.
x );
3813 screenSize.
y = std::max( 10.0, screenSize.
y );
3814 double ratio = std::max( -1.0, fabs( bbSize.
y / screenSize.
y ) );
3817 double kicadRatio = std::max( fabs( bbSize.
x / screenSize.
x ),
3818 fabs( bbSize.
y / screenSize.
y ) );
3823 if( bbSize.
x > screenSize.
x * ratio * compRatioBent )
3827 compRatioBent = 1.0;
3828 wxLogTrace(
"CROSS_PROBE_SCALE",
3829 "Part TOO WIDE for screen. Using normal KiCad zoom ratio: %1.5f", ratio );
3834 ratio *= compRatioBent;
3836 bool alwaysZoom =
false;
3839 if( ( ratio < 0.5 || ratio > 1.0 ) || alwaysZoom )
3845 SCH_ITEM* focusItem,
const std::vector<SCH_ITEM*>& items )
3852 double targetZoom = 0.0;
3854 bool targetZoomValid =
false;
3855 bool changedSheet =
false;
3857 if( targetSheetPath )
3863 targetZoom = screen->m_LastZoomLevel;
3864 targetCenter = screen->m_ScrollCenter;
3865 targetZoomValid = screen->IsZoomInitialized();
3871 changedSheet =
true;
3875 if( changedSheet && targetZoomValid && !
m_frame->eeconfig()->m_CrossProbing.zoom_to_fit )
3889 if(
m_frame->GetScreen()->CheckIfOnDrawList( item )
3890 || ( parent &&
m_frame->GetScreen()->CheckIfOnDrawList( parent ) ) )
3900 if(
m_frame->eeconfig()->m_CrossProbing.center_on_items )
3902 if(
m_frame->eeconfig()->m_CrossProbing.zoom_to_fit )
3921 bool enteredGroupFound =
false;
3929 if( item.IsSelected() )
3937 enteredGroupFound =
true;
3951 if( item->IsSelected() )
3957 item->RunOnChildren(
3971 enteredGroupFound =
true;
3983 if( !enteredGroupFound )
3995 bool checkVisibilityOnly )
const
4006 switch( aItem->
Type() )
4014 if(
pin->GetUnit() &&
pin->GetUnit() != symEditFrame->
GetUnit() )
4021 if( !
pin->IsVisible() && !
m_frame->GetShowAllPins() )
4032 if(
pin->IsPointClickableAnchor(
grid.ResolveSnap( *aPos, pinGrid ).position ) )
4043 if( !
m_frame->eeconfig()->m_Appearance.show_directive_labels )
4051 if( !
m_frame->eeconfig()->m_Appearance.show_directive_labels
4159 aGroup->
Add( aItem );
4169 sch_item->RunOnChildren(
4220 sch_item->RunOnChildren(
4234 aGroup->
Remove( aChild );
4248 const unsigned GRIP_MARGIN = 20;
4254 BOX2I itemBox = item->ViewBBox();
constexpr EDA_IU_SCALE schIUScale
constexpr BOX2I KiROUND(const BOX2D &aBoxD)
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 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 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 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.
constexpr const Vec & GetPosition() const
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 const Vec GetCenter() const
constexpr size_type GetHeight() const
constexpr bool Contains(const Vec &aPoint) const
constexpr const SizeVec & GetSize() const
constexpr bool Intersects(const BOX2< Vec > &aRect) const
An abstract class that will find and hold all the objects according to an inspection done by the Insp...
const std::vector< KICAD_T > & GetScanTypes() const
void Transfer(int aIndex)
Move the item at aIndex (first position is 0) to the backup 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 & Added(EDA_ITEM *aItem, BASE_SCREEN *aScreen=nullptr)
Notify observers that aItem has been added.
COMMIT & Add(EDA_ITEM *aItem, BASE_SCREEN *aScreen=nullptr)
Add a new item to the model.
Calculate the connectivity of a schematic and generates netlists.
SCH_NETCHAIN * GetNetChainForNet(const wxString &aNet)
SCH_NETCHAIN * FindPotentialNetChainBetweenPins(SCH_PIN *aPinA, SCH_PIN *aPinB)
Locate a potential net chain that contains both pins (by subgraph net membership).
bool IsHorizontal() const
The base frame for deriving all KiCad main window classes.
bool IsType(FRAME_T aType) const
void FocusOnLocation(const VECTOR2I &aPos, bool aAllowScroll=true)
Useful to focus on a particular location, in find functions.
A set of EDA_ITEMs (i.e., without duplicates).
A base class for most all the KiCad significant classes used in schematics and boards.
virtual VECTOR2I GetPosition() const
void SetIsRollover(bool aIsRollover, const VECTOR2I &aMousePos)
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.
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
void XorFlags(EDA_ITEM_FLAGS aMask)
EDA_ITEM_FLAGS GetFlags() const
virtual bool IsFilledForHitTesting() const
virtual std::vector< SHAPE * > MakeEffectiveShapesForHitTesting() const
A mix-in class (via multiple inheritance) that handles texts such as labels, parts,...
virtual bool IsVisible() const
virtual EDA_ANGLE GetTextAngle() 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.
GRID_HELPER_GRIDS GetItemGrid(const EDA_ITEM *aItem) const override
Get the coarsest grid that applies to an item.
SNAP_RESULT ResolveSnap(const VECTOR2I &aOrigin, GRID_HELPER_GRIDS aGrid, SCH_ITEM *aSkip)
EE_TYPE Overlapping(const BOX2I &aRect) const
EE_TYPE OfType(KICAD_T aType) const
static const TOOL_EVENT DisambiguatePoint
Used for hotkey feedback.
static const TOOL_EVENT ClearedEvent
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 PointSelectedEvent
static const TOOL_EVENT SelectedItemsMoved
Used to inform tools that the selection should temporarily be non-editable.
static const TOOL_EVENT UnselectedEvent
virtual RENDER_SETTINGS * GetSettings()=0
Return a pointer to current settings that are going to be used when drawing items.
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.
void SetHighlight(bool aEnabled, int aNetcode=-1, bool aMulti=false)
Turns on/off highlighting.
An interface for classes handling user events controlling the view behavior such as zooming,...
virtual void CaptureCursor(bool aEnabled)
Force the cursor to stay within the drawing panel area.
virtual void ForceCursorPosition(bool aEnabled, const VECTOR2D &aPosition=VECTOR2D(0, 0))
Place the cursor immediately at a given point.
virtual void WarpMouseCursor(const VECTOR2D &aPosition, bool aWorldCoordinates=false, bool aWarpView=false)=0
If enabled (.
virtual void SetCrossHairCursorPosition(const VECTOR2D &aPosition, bool aWarpView=true)=0
Move the graphic crosshair cursor to the requested position expressed in world coordinates.
VECTOR2D GetCursorPosition() const
Return the current cursor position in world coordinates.
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.
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.
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...
bool IsMirroredX() const
Return true if view is flipped across the X axis.
std::pair< VIEW_ITEM *, int > LAYER_ITEM_PAIR
void Hide(VIEW_ITEM *aItem, bool aHide=true, bool aHideOverlay=false)
Temporarily hide the item in the view (e.g.
PAINTER * GetPainter() const
Return the painter object used by the view for drawing #VIEW_ITEMS.
void SetCenter(const VECTOR2D &aCenter)
Set the center point of the VIEW (i.e.
void SetVisible(VIEW_ITEM *aItem, bool aIsVisible=true)
Set the item visibility.
wxString AsString() const
Define a library symbol object.
bool IsPower() const override
bool IsMultiBodyStyle() const override
LIB_ITEMS_CONTAINER & GetDrawItems()
Return a reference to the draw item list.
int GetUnitCount() const override
Tree view item data for the net navigator.
CONNECTION_GRAPH * ConnectionGraph() const
SCH_SHEET_PATH & CurrentSheet() const
static TOOL_ACTION placeClassLabel
static TOOL_ACTION placeSheetPin
static TOOL_ACTION createNetChain
static TOOL_ACTION placeNextSymbolUnit
static TOOL_ACTION swapPins
static TOOL_ACTION saveToLinkedDesignBlock
static TOOL_ACTION clearHighlight
static TOOL_ACTION placeGlobalLabel
static TOOL_ACTION pinTable
static TOOL_ACTION navigateBack
static TOOL_ACTION properties
static TOOL_ACTION leaveSheet
static TOOL_ACTION breakWire
static TOOL_ACTION removeFromNetChain
static TOOL_ACTION findNetInInspector
static TOOL_ACTION autoplaceAllSheetPins
static TOOL_ACTION drawLines
static TOOL_ACTION placeHierLabel
static TOOL_ACTION selectConnection
If current selection is a wire or bus, expand to entire connection.
static TOOL_ACTION placeLabel
static TOOL_ACTION nextNetItem
static TOOL_ACTION drawWire
static TOOL_ACTION highlightNetChain
static TOOL_ACTION placeJunction
static TOOL_ACTION previousNetItem
static TOOL_ACTION swapUnitLabels
static TOOL_ACTION navigateForward
static TOOL_ACTION placeLinkedDesignBlock
static TOOL_ACTION selectNode
Select the junction, wire or bus segment under the cursor.
static TOOL_ACTION unfoldBus
static TOOL_ACTION drawBus
static TOOL_ACTION symbolProperties
static TOOL_ACTION changeSheet
static TOOL_ACTION assignNetclass
static TOOL_ACTION swapPinLabels
static TOOL_ACTION enterSheet
static TOOL_ACTION replaceTerminalPin
static TOOL_ACTION createNetChainBetweenPins
static TOOL_ACTION editPageNumber
static TOOL_ACTION selectOnPCB
static TOOL_ACTION syncSheetPins
static TOOL_ACTION nameNetChain
A shim class between EDA_DRAW_FRAME and several derived classes: SYMBOL_EDIT_FRAME,...
Class for a wire to bus entry.
SCH_ITEM * m_connected_bus_item
Pointer to the bus item (usually a bus wire) connected to this bus-wire entry, if it is connected to ...
void Collect(SCH_SCREEN *aScreen, const std::vector< KICAD_T > &aScanTypes, const VECTOR2I &aPos, int aUnit=0, int aBodyStyle=0)
Scan a EDA_ITEM using this class's Inspector method which does the collection.
bool m_ShowPinElectricalTypes
static const std::vector< KICAD_T > MovableItems
virtual void Push(const wxString &aMessage=wxT("A commit"), int aCommitFlags=0) override
Execute the changes.
virtual void Revert() override
Revert the commit by restoring the modified items state.
static SELECTION_CONDITION SingleMultiFunctionPin
static SELECTION_CONDITION SingleSymbol
static SELECTION_CONDITION MultipleSymbolsOrPower
static SELECTION_CONDITION HasLockedItems
static SELECTION_CONDITION AllPinsOrSheetPins
static SELECTION_CONDITION SingleSymbolOrPower
static SELECTION_CONDITION HasUnlockedItems
static SELECTION_CONDITION SingleNonExcludedMarker
static SELECTION_CONDITION SingleMultiUnitSymbol
static SELECTION_CONDITION SingleMultiBodyStyleSymbol
static SELECTION_CONDITION AllPins
Each graphical item can have a SCH_CONNECTION describing its logical connection (to a bus or net).
void ConfigureFromLabel(const wxString &aLabel)
Configures the connection given a label.
wxString Name(bool aIgnoreSheet=false) const
Handle actions specific to the schematic editor.
Schematic editor (Eeschema) main window.
void FocusOnItem(EDA_ITEM *aItem, bool aAllowScroll=true) override
Focus on a particular canvas item.
SCH_SCREEN * GetScreen() const override
Return a pointer to a BASE_SCREEN or one of its derivatives.
SCH_SHEET_PATH & GetCurrentSheet() const
SCHEMATIC & Schematic() const
const SCH_ITEM * SelectNextPrevNetNavigatorItem(bool aNext)
const wxString & GetHighlightedConnection() const
wxGenericTreeCtrl * GetNetNavigator()
const BOX2I GetBoundingBox() const override
Return the orthogonal bounding box of this object for display purposes.
A set of SCH_ITEMs (i.e., without duplicates).
static bool WithinScope(SCH_ITEM *aItem, SCH_GROUP *aScope, bool isSymbolEditor)
static EDA_GROUP * TopLevelGroup(SCH_ITEM *aItem, EDA_GROUP *aScope, bool isSymbolEditor)
Base class for any item which can be embedded within the SCHEMATIC container class,...
virtual bool IsConnectable() const
virtual bool HasHoveredHypertext() const
Indicates that a hypertext link is currently active.
const SYMBOL * GetParentSymbol() const
SCHEMATIC * Schematic() const
Search the item hierarchy to find a SCHEMATIC.
virtual bool IsPointClickableAnchor(const VECTOR2I &aPos) const
bool IsLocked() const override
const std::vector< SCH_ITEM * > & ConnectedItems(const SCH_SHEET_PATH &aPath)
Retrieve the set of items connected to this item on the given sheet.
SCH_CONNECTION * Connection(const SCH_SHEET_PATH *aSheet=nullptr) const
Retrieve the connection associated with this object in the given sheet.
bool IsType(const std::vector< KICAD_T > &aScanTypes) const override
Check whether the item is one of the listed types.
wxString GetShownText(const SCH_SHEET_PATH *aPath, bool aAllowExtraText, int aDepth=0) const override
void SetShape(LABEL_FLAG_SHAPE aShape)
LABEL_SHAPE GetLabelShape() const
virtual void SetSpinStyle(SPIN_STYLE aSpinStyle)
Segment description base class to describe items which have 2 end points (track, wire,...
bool HitTest(const VECTOR2I &aPosition, int aAccuracy=0) const override
Test if aPosition is inside or on the boundary of this item.
bool IsStartDangling() const
VECTOR2I GetEndPoint() const
VECTOR2I GetStartPoint() const
SEG GetSeg() const
Get the geometric aspect of the wire as a SEG.
bool IsEndDangling() const
bool IsBus() const
Return true if the line is a bus.
bool IsGraphicLine() const
Return if the line is a graphic (non electrical line)
void SetEndPoint(const VECTOR2I &aPosition)
A net chain is a collection of nets that are connected together through passive components.
const wxString & GetNumber() const
Tool that displays edit points allowing to modify items by dragging the points.
bool HasPoint()
Indicate the cursor is over an edit point.
bool IsDirectiveLabelOnlyArea() const
Return true when the rule area exists only as a container for attached directive labels.
bool IsExplicitJunction(const VECTOR2I &aPosition) const
Indicate that a junction dot is necessary at the given location.
EE_RTREE & Items()
Get the full RTree, usually for iterating.
bool IsJunction(const VECTOR2I &aPosition) const
Test if a junction is required for the items at aPosition on the screen.
VECTOR2I GetCenter() const
Handle access to a stack of flattened SCH_SHEET objects by way of a path for creating a flattened sch...
SCH_SHEET * Last() const
Return a pointer to the last SCH_SHEET of the list.
Define a sheet pin (label) used in sheets to create hierarchical schematics.
SHEET_SIDE GetSide() const
Sheet symbol placed in a schematic, and is the entry point for a sub schematic.
std::vector< SCH_SHEET_PIN * > & GetPins()
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 GetFields(std::vector< SCH_FIELD * > &aVector, bool aVisibleOnly) const override
Populate a std::vector with SCH_FIELDs, sorted in ordinal order.
SCH_PIN * GetPin(const wxString &number) const
Find a symbol pin by number.
int GetOrientation() const override
Get the display symbol orientation.
std::unique_ptr< LIB_SYMBOL > & GetLibSymbolRef()
BOX2I GetBodyBoundingBox() const override
Return a bounding box for the symbol body but not the pins or fields.
std::vector< SCH_TABLECELL * > GetCells() const
int Distance(const SEG &aSeg) const
Compute minimum Euclidean distance to segment aSeg.
static SELECTION_CONDITION HasTypes(std::vector< KICAD_T > aTypes)
Create a functor that tests if among the selected items there is at least one of a given types.
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 Empty(const SELECTION &aSelection)
Test if there are no 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 bool Idle(const SELECTION &aSelection)
Test if there no items selected or being edited.
static SELECTION_CONDITION LessThan(int aNumber)
Create a functor that tests if the number of selected items is smaller 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.
const std::deque< EDA_ITEM * > GetItems() const
VECTOR2I GetReferencePoint() const
virtual void Remove(EDA_ITEM *aItem)
virtual unsigned int GetSize() const override
Return the number of stored items.
bool OnlyContains(std::vector< KICAD_T > aList) const
Checks if all items in the selection have a type in aList.
bool Empty() const
Checks if there is anything selected.
bool HasReferencePoint() const
Represent a polyline containing arcs as well as line segments: A chain of connected line and/or arc s...
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.
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 PointInside(const VECTOR2I &aPt, int aAccuracy=0, bool aUseBBoxCache=false) const override
Check if point aP lies inside a closed shape.
bool Collide(const SHAPE *aShape, int aClearance, VECTOR2I *aMTV) const override
Check if the boundary of shape (this) lies closer to the shape aShape than aClearance,...
The symbol library editor main window.
bool GetShowInvisibleFields()
bool IsSymbolAlias() const
Return true if aLibId is an alias for the editor screen symbol.
bool GetShowInvisiblePins()
Symbol library viewer main window.
A base class for LIB_SYMBOL and SCH_SYMBOL.
virtual const wxString GetRef(const SCH_SHEET_PATH *aSheet, bool aIncludeUnit=false) const =0
const TRANSFORM & GetTransform() const
double Distance(const VECTOR2< extended_type > &aVector) const
Compute the distance between two vectors.
#define DEFAULT_TEXT_SIZE
Ratio of the font height to the baseline of the text above the wire.
static constexpr EDA_ANGLE ANGLE_VERTICAL
static constexpr EDA_ANGLE ANGLE_HORIZONTAL
#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 SELECTION_CANDIDATE
indicates an item is a candidate for selection
#define ENTERED
indicates a group has been entered
#define ENDPOINT
ends. (Used to support dragging.)
std::uint32_t EDA_ITEM_FLAGS
#define IS_MOVING
Item being moved.
#define SHOW_ELEC_TYPE
Show pin electrical type.
#define STARTPOINT
When a line is selected, these flags indicate which.
@ ID_POPUP_SCH_PIN_TRICKS_START
@ ID_POPUP_SCH_PIN_TRICKS_HIER_LABEL
@ ID_POPUP_SCH_PIN_TRICKS_WIRE
@ ID_POPUP_SCH_PLACE_UNIT_END
@ ID_POPUP_SCH_ALT_PIN_FUNCTION
@ ID_POPUP_SCH_UNFOLD_BUS_END
@ ID_POPUP_SCH_SELECT_UNIT
@ ID_POPUP_SCH_SELECT_BODY_STYLE
@ ID_POPUP_SCH_PIN_TRICKS_NET_LABEL
@ ID_POPUP_SCH_SELECT_BODY_STYLE_END
@ ID_POPUP_SCH_PIN_TRICKS_NO_CONNECT
@ ID_POPUP_SCH_UNFOLD_BUS
@ ID_POPUP_SCH_SELECT_UNIT_END
@ ID_POPUP_SCH_ALT_PIN_FUNCTION_END
@ ID_POPUP_SCH_PLACE_UNIT
@ ID_POPUP_SCH_PIN_TRICKS_GLOBAL_LABEL
@ ID_POPUP_SCH_PIN_TRICKS_END
a few functions useful in geometry calculations.
bool BoxHitTest(const VECTOR2I &aHitPoint, const BOX2I &aHittee, int aAccuracy)
Perform a point-to-box hit test.
@ REPAINT
Item needs to be redrawn.
bool contains(const _Container &__container, _Value __value)
Returns true if the container contains the given value.
ELECTRICAL_PINTYPE
The symbol library pin object electrical types used in ERC tests.
@ PT_INPUT
usual pin input: must be connected
@ PT_TRISTATE
tri state bus pin
@ PT_BIDI
input or output (like port for a microprocessor)
@ PT_UNSPECIFIED
unknown electrical properties: creates always a warning when connected
@ PT_PASSIVE
pin for passive symbols: must be connected, and can be connected to any pin.
@ PIN_UP
The pin extends upwards from the connection point: Probably on the bottom side of the symbol.
@ PIN_RIGHT
The pin extends rightwards from the connection point.
@ PIN_LEFT
The pin extends leftwards from the connection point: Probably on the right side of the symbol.
@ PIN_DOWN
The pin extends downwards from the connection: Probably on the top side of the symbol.
#define HITTEST_THRESHOLD_PIXELS
Class to handle a set of SCH_ITEMs.
std::vector< EDA_ITEM * > EDA_ITEMS
std::function< bool(const SELECTION &)> SELECTION_CONDITION
Functor type that checks a specific condition for selected items.
std::vector< FAB_LAYER_COLOR > dummy
bool text
Text and fields.
bool symbols
Allow selecting symbols and sheet symbols.
bool labels
Net and bus labels.
bool pins
Symbol and sheet pins.
bool graphics
Graphic lines, shapes, polygons.
bool lockedItems
Allow selecting locked items.
bool images
Bitmap/vector images.
bool otherItems
Anything not fitting one of the above categories.
bool ruleAreas
Rule areas.
bool wires
Net and bus wires and junctions.
KIBIS top(path, &reporter)
@ NOT_USED
the 3d code uses this value
@ SCH_ITEM_LOCATE_GRAPHIC_LINE_T
@ SCH_SYMBOL_LOCATE_POWER_T
VECTOR2< int32_t > VECTOR2I
VECTOR2< double > VECTOR2D