23#include <wx/filedlg.h>
24#include <wx/hyperlink.h>
32using namespace std::placeholders;
114 .Name(
"pcbnew.InteractiveRouter.PlaceVia" )
116 .DefaultHotkey(
'V' )
117 .LegacyHotkeyName(
"Add Through Via" )
118 .FriendlyName(
_(
"Place Through Via" ) )
119 .Tooltip(
_(
"Adds a through-hole via at the end of currently routed track." ) )
125 .Name(
"pcbnew.InteractiveRouter.PlaceBlindVia" )
128 .LegacyHotkeyName(
"Add Blind/Buried Via" )
129 .FriendlyName(
_(
"Place Blind/Buried Via" ) )
130 .Tooltip(
_(
"Adds a blind or buried via at the end of currently routed track.") )
136 .Name(
"pcbnew.InteractiveRouter.PlaceMicroVia" )
138 .DefaultHotkey(
MD_CTRL +
'V' )
139 .LegacyHotkeyName(
"Add MicroVia" )
140 .FriendlyName(
_(
"Place Microvia" ) )
141 .Tooltip(
_(
"Adds a microvia at the end of currently routed track." ) )
147 .Name(
"pcbnew.InteractiveRouter.SelLayerAndPlaceVia" )
149 .DefaultHotkey(
'<' )
150 .LegacyHotkeyName(
"Select Layer and Add Through Via" )
151 .FriendlyName(
_(
"Select Layer and Place Through Via..." ) )
152 .Tooltip(
_(
"Select a layer, then add a through-hole via at the end of currently routed track." ) )
158 .Name(
"pcbnew.InteractiveRouter.SelLayerAndPlaceBlindVia" )
160 .DefaultHotkey(
MD_ALT +
'<' )
161 .LegacyHotkeyName(
"Select Layer and Add Blind/Buried Via" )
162 .FriendlyName(
_(
"Select Layer and Place Blind/Buried Via..." ) )
163 .Tooltip(
_(
"Select a layer, then add a blind or buried via at the end of currently routed track." ) )
169 .Name(
"pcbnew.InteractiveRouter.SelLayerAndPlaceMicroVia" )
171 .FriendlyName(
_(
"Select Layer and Place Micro Via..." ) )
172 .Tooltip(
_(
"Select a layer, then add a micro via at the end of currently routed track." ) )
178 .Name(
"pcbnew.InteractiveRouter.CustomTrackViaSize" )
180 .DefaultHotkey(
'Q' )
181 .LegacyHotkeyName(
"Custom Track/Via Size" )
182 .FriendlyName(
_(
"Custom Track/Via Size..." ) )
183 .Tooltip(
_(
"Shows a dialog for changing the track width and via size." ) )
187 .Name(
"pcbnew.InteractiveRouter.SwitchPosture" )
189 .DefaultHotkey(
'/' )
190 .LegacyHotkeyName(
"Switch Track Posture" )
191 .FriendlyName(
_(
"Switch Track Posture" ) )
192 .Tooltip(
_(
"Switches posture of the currently routed track." ) )
196 .Name(
"pcbnew.InteractiveRouter.SwitchRounding" )
198 .DefaultHotkey(
MD_CTRL +
'/' )
199 .FriendlyName(
_(
"Track Corner Mode" ) )
200 .Tooltip(
_(
"Switches between sharp/rounded and 45°/90° corners when routing tracks." ) )
204#define _(s) wxGetTranslation((s))
211 m_inRouterTool( false )
223 SetIcon( BITMAPS::width_track_via );
224 SetTitle(
_(
"Select Track/Via Width" ) );
243 _(
"Route using the width of the starting track." ), wxITEM_CHECK );
248 _(
"Use track and via sizes from the net class" ), wxITEM_CHECK );
253 _(
"Specify custom track and via sizes" ), wxITEM_CHECK );
264 msg =
_(
"Track netclass width" );
269 Append( menuIdx, msg, wxEmptyString, wxITEM_CHECK );
280 msg =
_(
"Via netclass values" );
283 if(
via.m_Drill > 0 )
285 msg.Printf(
_(
"Via %s, hole %s" ),
291 msg.Printf(
_(
"Via %s" ),
297 Append( menuIdx, msg, wxEmptyString, wxITEM_CHECK );
305 int id = aEvent.GetId();
356 SetIcon( BITMAPS::width_track_via );
357 SetTitle(
_(
"Select Differential Pair Dimensions" ) );
373 _(
"Use differential pair dimensions from the net class" ), wxITEM_CHECK );
378 _(
"Specify custom differential pair dimensions" ), wxITEM_CHECK );
391 if( diffPair.
m_Gap <= 0 )
395 msg.Printf(
_(
"Width %s" ),
400 msg.Printf(
_(
"Width %s, via gap %s" ),
409 msg.Printf(
_(
"Width %s, gap %s" ),
415 msg.Printf(
_(
"Width %s, gap %s, via gap %s" ),
423 Append( menuIdx, msg, wxEmptyString, wxITEM_CHECK );
431 int id = aEvent.GetId();
476 auto& menu =
m_menu->GetMenu();
477 menu.SetTitle(
_(
"Interactive Router" ) );
495 auto notRoutingCond =
506 if( currentNets.empty() || currentNets[0] == nullptr )
515 return ratsnest && !ratsnest->
GetEdges().empty();
519 menu.AddSeparator( 1 );
522 menu.AddSeparator( haveHighlight, 2 );
581 static size_t lastLoggerSize = 0;
585 if( !logger || logger->GetEvents().size() == 0
586 || logger->GetEvents().size() == lastLoggerSize )
591 wxFileDialog dlg(
frame(),
_(
"Save router log" ), mruPath,
"pns.log",
593 wxFD_OVERWRITE_PROMPT | wxFD_SAVE );
595 if( dlg.ShowModal() != wxID_OK )
597 lastLoggerSize = logger->GetEvents().size();
601 wxFileName fname_log( dlg.GetPath() );
602 mruPath = fname_log.GetPath();
604 wxFileName fname_dump( fname_log );
605 fname_dump.SetExt(
"dump" );
607 wxFileName fname_settings( fname_log );
608 fname_settings.SetExt(
"settings" );
610 FILE* settings_f = wxFopen( fname_settings.GetAbsolutePath(),
"wb" );
612 fprintf( settings_f,
"%s\n", settingsStr.c_str() );
613 fclose( settings_f );
627 std::vector<PNS::ITEM*> added, removed, heads;
630 std::set<KIID> removedKIIDs;
632 for(
auto item : removed )
634 wxASSERT_MSG( item->Parent() !=
nullptr,
"removed an item with no parent uuid?" );
637 removedKIIDs.insert( item->Parent()->m_Uuid );
640 FILE* log_f = wxFopen( fname_log.GetAbsolutePath(),
"wb" );
642 added, removedKIIDs, heads,
643 logger->GetEvents() );
648 fname_log.GetAbsolutePath() ) );
652 fprintf( log_f,
"%s\n", logString.c_str().AsChar() );
711 if( currentLayer != activeLayer )
734 std::shared_ptr<DRC_ENGINE>& drcEngine = bds.
m_DRCEngine;
763 if( !constraint.
IsNull() )
791 dummyTrackB.
SetLayer( targetLayer );
799 if( !constraint.
IsNull() )
812 if( !constraint.
IsNull() )
838 wxASSERT_MSG(
false, wxT(
"Unhandled via type" ) );
862 frame()->SetActiveLayer(
899 size_t target_idx = 0;
902 for(
size_t i = 0; i < layers.size(); i++ )
904 if( layers[i] == lastTargetLayer )
911 target_idx = ( idx + 1 ) % layers.size();
914 for(
size_t i = 0; i < layers.size() - 1; i++ )
918 targetLayer = layers[target_idx];
923 if( target_idx >= layers.size() )
941 size_t target_idx = 0;
944 for(
size_t i = 0; i < layers.size(); i++ )
946 if( layers[i] == lastTargetLayer )
953 target_idx = ( idx > 0 ) ? ( idx - 1 ) : ( layers.size() - 1 );
955 for(
size_t i = 0; i < layers.size() - 1; i++ )
959 targetLayer = layers[target_idx];
966 target_idx = layers.size() - 1;
988 if( !enabledLayers.test( targetLayer ) )
996 if( targetLayer == currentLayer )
1016 VIATYPE viaType = VIATYPE::THROUGH;
1017 bool selectLayer =
false;
1022 const int actViaFlags = aEvent.
Parameter<
int>();
1023 selectLayer = actViaFlags & VIA_ACTION_FLAGS::SELECT_LAYER;
1037 endPoint =
frame()->GetCanvas()->ClientToScreen( endPoint );
1042 if( viaType != VIATYPE::THROUGH )
1043 not_allowed_ly.
set( currentLayer );
1045 targetLayer =
frame()->SelectOneLayer(
static_cast<PCB_LAYER_ID>( currentLayer ),
1046 not_allowed_ly, endPoint );
1055 if( viaType != VIATYPE::THROUGH )
1057 if( currentLayer == targetLayer )
1067 if( viaType == VIATYPE::BLIND_BURIED
1068 && ( ( targetLayer ==
B_Cu && currentLayer ==
F_Cu )
1069 || ( targetLayer ==
F_Cu && currentLayer ==
B_Cu ) ) )
1071 viaType = VIATYPE::THROUGH;
1077 if( viaType == VIATYPE::THROUGH )
1080 currentLayer = pairTop;
1081 targetLayer = pairBottom;
1085 if( currentLayer == pairTop || currentLayer == pairBottom )
1089 currentLayer = pairTop;
1090 targetLayer = pairBottom;
1096 targetLayer = pairTop;
1100 if( currentLayer == targetLayer )
1128 if( !constraint.
IsNull() )
1134 if( !constraint.
IsNull() )
1183 if( !
getView()->IsLayerVisible( pcbLayer ) )
1193 frame()->GetBoard()->GetDesignSettings().m_TempOverrideTrackWidth =
false;
1226 m_router->ClearViewDecorations();
1237 frame()->UndoRedoBlock(
true );
1252 frame()->GetCanvas()->SetCurrentCursor( KICURSOR::ARROW );
1255 frame()->UndoRedoBlock(
false );
1272 frame()->GetCanvas()->SetCurrentCursor( KICURSOR::PENCIL );
1275 auto syncRouterAndFrameLayer =
1284 if( !
getView()->IsLayerVisible( pcbLayer ) )
1301 if( evt->IsCancelInteractive() )
1309 if( evt->IsMotion() )
1321 evt->SetMousePosition( last.value() );
1329 bool* autoRouted = evt->Parameter<
bool*>();
1336 if( autoRouted !=
nullptr )
1345 if( autoRouted !=
nullptr )
1347 *autoRouted =
false;
1361 syncRouterAndFrameLayer();
1382 bool forceFinish = evt->Modifier(
MD_SHIFT );
1383 bool forceCommit =
false;
1388 if( needLayerSwitch )
1398 syncRouterAndFrameLayer();
1419 frame()->GetCanvas()->SetCurrentCursor( KICURSOR::ARROW );
1431 bool forceFinish =
true;
1432 bool forceCommit =
false;
1437 else if( evt->IsCancelInteractive() || evt->IsActivate()
1443 if( evt->IsActivate() && !evt->IsMoveTool() )
1448 else if( evt->IsUndoRedo() )
1466 evt->SetPassEvent();
1483 if( settingsDlg.
ShowModal() == wxID_OK )
1583 frame->PushTool( aEvent );
1588 frame->GetCanvas()->SetCurrentCursor( KICURSOR::PENCIL );
1599 std::vector<BOARD_CONNECTED_ITEM*> itemList;
1606 itemList.push_back(
pad );
1614 std::shared_ptr<CONNECTIVITY_DATA> connectivity =
frame->GetBoard()->GetConnectivity();
1617 bool groupStart =
true;
1624 RN_NET* net = connectivity->GetRatsnestForNet( item->GetNetCode() );
1629 std::vector<std::shared_ptr<const CN_ANCHOR>> anchors;
1633 std::shared_ptr<const CN_ANCHOR> target = edge.GetTargetNode();
1634 std::shared_ptr<const CN_ANCHOR> source = edge.GetSourceNode();
1636 if( !source || source->Dirty() || !target || target->Dirty() )
1639 if( source->Parent() == item )
1640 anchors.push_back( source );
1641 else if( target->Parent() == item )
1642 anchors.push_back( target );
1646 for( std::shared_ptr<const CN_ANCHOR>
anchor : anchors )
1655 if(
frame->GetActiveLayer() != originalLayer )
1656 frame->SetActiveLayer( originalLayer );
1664 bool autoRouted =
false;
1690 frame->PopTool( aEvent );
1717 frame->PushTool( aEvent );
1722 frame->GetCanvas()->SetCurrentCursor( KICURSOR::PENCIL );
1741 if( !evt->IsDrag() )
1744 if( evt->IsCancelInteractive() )
1746 frame->PopTool( aEvent );
1749 else if( evt->IsActivate() )
1751 if( evt->IsMoveTool() || evt->IsEditorTool() )
1758 frame->PopTool( aEvent );
1770 else if( evt->IsMotion() )
1788 evt->SetPassEvent(
false );
1796 if( evt->HasPosition() )
1809 else if( evt->IsKeyPressed() )
1814 evt->SetPassEvent();
1822 evt->SetPassEvent();
1827 frame->PopTool( aEvent );
1851 KIDIALOG dlg(
frame(),
_(
"The selected item is locked." ),
_(
"Confirmation" ),
1852 wxOK | wxCANCEL | wxICON_WARNING );
1853 dlg.SetOKLabel(
_(
"Drag Anyway" ) );
1889 frame()->UndoRedoBlock(
true );
1895 if( evt->IsMotion() )
1904 if( dragger->GetForceMarkObstaclesMode( &dragStatus ) )
1911 hint.Printf(
_(
"(%s to commit anyway.)" ),
1915 statusItem->
SetMessage(
_(
"Track violates DRC." ) );
1923 else if( evt->IsClick(
BUT_LEFT ) )
1925 bool forceFinish =
false;
1926 bool forceCommit = evt->Modifier(
MD_CTRL );
1935 else if( evt->IsCancelInteractive() || evt->IsActivate() )
1940 if( evt->IsActivate() && !evt->IsMoveTool() )
1945 else if( evt->IsUndoRedo() )
1973 evt->SetPassEvent();
1978 evt->SetPassEvent();
1993 frame()->UndoRedoBlock(
false );
2020 if( vias + traces == 0 )
2034 for(
int i = 0; !reference && i < aCollector.
GetCount(); i++ )
2035 reference =
dynamic_cast<PCB_TRACK*
>( aCollector[i] );
2049 refPoint = reference->
GetEnd();
2053 for(
int i = 0; i < aCollector.
GetCount(); i++ )
2057 if( neighbor && neighbor != reference )
2062 if( neighbor->
GetStart() != refPoint && neighbor->
GetEnd() != refPoint )
2069 aCollector.
Append( reference );
2100 std::copy( aOriginalSelection.
Items().begin(), aOriginalSelection.
Items().end(), std::back_inserter( selItems ) );
2132 std::set<FOOTPRINT*> footprints;
2135 footprints.insert(
static_cast<FOOTPRINT*
>( item ) );
2154 bool wasLocked =
false;
2164 frame()->PushTool( aEvent );
2172 bool showCourtyardConflicts =
frame()->GetPcbNewSettings()->m_ShowCourtyardCollisions;
2178 std::vector<BOARD_ITEM*> dynamicItems;
2179 std::unique_ptr<CONNECTIVITY_DATA> dynamicData =
nullptr;
2181 std::vector<PNS::ITEM*> leaderSegments;
2182 bool singleFootprintDrag =
false;
2184 if( !footprints.empty() )
2186 if( footprints.size() == 1 )
2187 singleFootprintDrag =
true;
2189 if( showCourtyardConflicts )
2199 itemsToDrag.
Add( solid );
2203 if( connectivityData->GetRatsnestForPad(
pad ).size() > 0 )
2204 dynamicItems.push_back(
pad );
2211 itemsToDrag.
Add( solid );
2217 || shape->GetLayer() ==
Margin
2221 itemsToDrag.
Add( solid );
2225 if( showCourtyardConflicts )
2229 dynamicData = std::make_unique<CONNECTIVITY_DATA>(
board()->GetConnectivity(),
2230 dynamicItems,
true );
2231 connectivityData->BlockRatsnestItems( dynamicItems );
2235 for (
const EDA_ITEM* bitem : selectedItems )
2244 itemsToDrag.
Add( pitem );
2256 std::set<PNS::NET_HANDLE> highlightNetcodes;
2258 if( itemsToDrag.
Count() >= 1 )
2264 if( pitem->Shape( layer )->Collide( p0, 0 ) )
2270 highlightNetcodes.insert( pitem->Net() );
2274 if( highlightNetcodes.size() )
2278 if( !footprints.empty() && singleFootprintDrag )
2304 int dragMode = aEvent.
Parameter<
int> ();
2313 if( !footprints.empty() )
2314 connectivityData->ClearLocalRatsnest();
2321 frame()->PopTool( aEvent );
2329 frame()->UndoRedoBlock(
true );
2337 frame()->GetCanvas()->SetCurrentCursor( KICURSOR::ARROW );
2350 bool hasMouseMoved =
false;
2351 bool hasMultidragCancelled =
false;
2357 if( evt->IsCancelInteractive() )
2362 hasMultidragCancelled =
true;
2366 else if( evt->IsMotion() || evt->IsDrag(
BUT_LEFT ) )
2368 hasMouseMoved =
true;
2374 if( !footprints.empty() )
2383 previewItem =
static_cast<BOARD_ITEM*
>( drawing->Clone() );
2384 previewItem->
Move( offset );
2393 &&
pad->GetDrillSize().x == 0 )
2396 previewItem->
Move( offset );
2409 previewItem->
Move( offset );
2414 previewItem->
Move( offset );
2418 if( showCourtyardConflicts )
2422 if( showCourtyardConflicts )
2424 courtyardClearanceDRC.
Run();
2432 dynamicData->Move( offset - lastOffset );
2433 lastOffset = offset;
2434 connectivityData->ComputeLocalRatsnest( dynamicItems, dynamicData.get(), offset );
2441 if( dragger->GetForceMarkObstaclesMode( &dragStatus ) )
2446 hint.Printf(
_(
"(%s to commit anyway.)" ),
2450 statusItem->
SetMessage(
_(
"Track violates DRC." ) );
2458 else if( hasMouseMoved && ( evt->IsMouseUp(
BUT_LEFT ) || evt->IsClick(
BUT_LEFT ) ) )
2460 bool forceFinish =
false;
2461 bool forceCommit = evt->Modifier(
MD_CTRL );
2469 else if( evt->IsUndoRedo() )
2497 evt->SetPassEvent();
2502 evt->SetPassEvent();
2508 if( !footprints.empty() )
2525 connectivityData->ClearLocalRatsnest();
2535 if( itemsToDrag.
Size() && hasMultidragCancelled )
2539 else if( leaderSegments.size() )
2541 std::vector<EDA_ITEM*> newItems;
2543 for(
auto lseg : leaderSegments )
2544 newItems.push_back( lseg->Parent() );
2552 frame()->UndoRedoBlock(
false );
2553 frame()->PopTool( aEvent );
2605 KIDIALOG dlg(
frame(),
_(
"The selected item is locked." ),
_(
"Confirmation" ),
2606 wxOK | wxCANCEL | wxICON_WARNING );
2607 dlg.SetOKLabel(
_(
"Break Track" ) );
2614 frame()->UndoRedoBlock(
true );
2620 frame()->UndoRedoBlock(
false );
2667 std::vector<MSG_PANEL_ITEM> items;
2675 wxString description;
2681 wxASSERT( nets.size() >= 2 );
2688 description = wxString::Format(
_(
"Routing Diff Pair: %s" ),
2695 if( *netclassA == *netclassB )
2701 secondary = wxString::Format(
_(
"Resolved Netclass: %s" ),
2704 else if( !nets.empty() && nets[0] )
2708 description = wxString::Format(
_(
"Routing Track: %s" ),
2711 secondary = wxString::Format(
2712 _(
"Resolved Netclass: %s" ),
2717 description =
_(
"Routing Track" );
2718 secondary =
_(
"(no net)" );
2721 items.emplace_back( description, secondary );
2723 wxString cornerMode;
2727 cornerMode =
_(
"Free-angle" );
2741 items.emplace_back(
_(
"Corner Style" ), cornerMode );
2751 items.emplace_back(
_(
"Mode" ), mode );
2753#define FORMAT_VALUE( x ) frame()->MessageTextFromValue( x )
2757 items.emplace_back( wxString::Format(
_(
"Track Width: %s" ),
2759 wxString::Format(
_(
"(from %s)" ),
2762 items.emplace_back( wxString::Format(
_(
"Min Clearance: %s" ),
2764 wxString::Format(
_(
"(from %s)" ),
2767 items.emplace_back( wxString::Format(
_(
"Diff Pair Gap: %s" ),
2769 wxString::Format(
_(
"(from %s)" ),
2773 wxASSERT( traces.
Count() == 2 );
2778 items.emplace_back( wxString::Format(
_(
"DP Max Uncoupled-length: %s" ),
2780 wxString::Format(
_(
"(from %s)" ),
2786 items.emplace_back( wxString::Format(
_(
"Track Width: %s" ),
2788 wxString::Format(
_(
"(from %s)" ),
2791 items.emplace_back( wxString::Format(
_(
"Min Clearance: %s" ),
2793 wxString::Format(
_(
"(from %s)" ),
2799 frame()->SetMsgPanel( items );
@ switch_corner_rounding_shape
constexpr BOX2I BOX2ISafe(const BOX2D &aInput)
static TOOL_ACTION cancelInteractive
static TOOL_ACTION pasteSpecial
static TOOL_ACTION doDelete
static TOOL_ACTION finishInteractive
static const ADVANCED_CFG & GetCfg()
Get the singleton instance's config, which is shared by all consumers.
void SetLayerVisible(int aLayer, bool isVisible)
BASE_SET & set(size_t pos)
A base class derived from BOARD_ITEM for items that can be connected and have a net,...
void SetNet(NETINFO_ITEM *aNetInfo)
Set a NET_INFO object for the item.
Container for design settings for a BOARD object.
void UseCustomTrackViaSize(bool aEnabled)
Enables/disables custom track/via size settings.
void SetCustomDiffPairWidth(int aWidth)
Sets custom track width for differential pairs (i.e.
void SetDiffPairIndex(unsigned aIndex)
int GetCurrentViaSize() const
std::shared_ptr< DRC_ENGINE > m_DRCEngine
bool m_UseConnectedTrackWidth
std::vector< DIFF_PAIR_DIMENSION > m_DiffPairDimensionsList
bool m_TempOverrideTrackWidth
void SetCustomDiffPairGap(int aGap)
Sets custom gap for differential pairs (i.e.
void SetTrackWidthIndex(unsigned aIndex)
Set the current track width list index to aIndex.
void SetViaSizeIndex(unsigned aIndex)
Set the current via size list index to aIndex.
unsigned GetTrackWidthIndex() const
bool UseNetClassVia() const
Return true if netclass values should be used to obtain appropriate via size.
unsigned GetViaSizeIndex() const
bool UseNetClassTrack() const
Return true if netclass values should be used to obtain appropriate track width.
bool UseNetClassDiffPair() const
Return true if netclass values should be used to obtain appropriate diff pair dimensions.
int GetCopperLayerCount() const
void UseCustomDiffPairDimensions(bool aEnabled)
Enables/disables custom differential pair dimensions.
std::vector< int > m_TrackWidthList
unsigned GetDiffPairIndex() const
int GetCurrentViaDrill() const
std::vector< VIA_DIMENSION > m_ViasDimensionsList
void SetCustomDiffPairViaGap(int aGap)
Sets custom via gap for differential pairs (i.e.
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
virtual void SetLocked(bool aLocked)
virtual void Move(const VECTOR2I &aMoveVector)
Move this object.
virtual void SetLayer(PCB_LAYER_ID aLayer)
Set the layer this item is on.
virtual const BOARD * GetBoard() const
Return the BOARD in which this BOARD_ITEM resides, or NULL if none.
virtual bool IsLocked() const
Information pertinent to a Pcbnew printed circuit board.
bool IsLayerVisible(PCB_LAYER_ID aLayer) const
A proxy function that calls the correspondent function in m_BoardSettings tests whether a given layer...
PROJECT * GetProject() const
BOARD_DESIGN_SETTINGS & GetDesignSettings() const
std::shared_ptr< CONNECTIVITY_DATA > GetConnectivity() const
Return a list of missing connections between components/tracks.
CN_EDGE represents a point-to-point connection, whether realized or unrealized (ie: tracks etc.
void Empty()
Clear the list.
int GetCount() const
Return the number of objects in the list.
int CountType(KICAD_T aType)
Count the number of items matching aType.
void Append(EDA_ITEM *item)
Add an item to the end of the list.
Implementing DIALOG_TRACK_VIA_SIZE_BASE.
@ ROUNDED_90
H/V with filleted corners.
@ MITERED_90
H/V only (90-degree corners)
@ ROUNDED_45
H/V/45 with filleted corners.
@ MITERED_45
H/V/45 with mitered corners (default)
virtual bool Run() override
Run this provider against the given PCB with configured options (if any).
std::vector< FOOTPRINT * > m_FpInMove
void ClearConflicts(KIGFX::VIEW *aView)
void UpdateConflicts(KIGFX::VIEW *aView, bool aHighlightMoved)
void ShowInfoBarError(const wxString &aErrorMsg, bool aShowCloseButton=false, WX_INFOBAR::MESSAGE_TYPE aType=WX_INFOBAR::MESSAGE_TYPE::GENERIC)
Show the WX_INFOBAR displayed on the top of the canvas with a message and an error icon on the left o...
virtual void Refresh(bool aEraseBackground=true, const wxRect *aRect=nullptr) override
A base class for most all the KiCad significant classes used in schematics and boards.
void SetFlags(EDA_ITEM_FLAGS aMask)
KICAD_T Type() const
Returns the type of object.
virtual bool IsType(const std::vector< KICAD_T > &aScanTypes) const
Check whether the item is one of the listed types.
Used when the right click button is pressed, or when the select tool is in effect.
static const std::vector< KICAD_T > DraggableItems
A scan list for items that can be dragged.
void SetUseGrid(bool aSnapToGrid)
void SetAuxAxes(bool aEnable, const VECTOR2I &aOrigin=VECTOR2I(0, 0))
const std::string FormatAsString()
Helper class to create more flexible dialogs, including 'do not show again' checkbox handling.
void DoNotShowCheckbox(wxString file, int line)
Shows the 'do not show again' checkbox.
Abstract interface for drawing on a 2D-surface.
BOX2D GetVisibleWorldExtents() const
bool GetGridSnapping() const
virtual RENDER_SETTINGS * GetSettings()=0
Return a pointer to current settings that are going to be used when drawing items.
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.
An interface for classes handling user events controlling the view behavior such as zooming,...
virtual void ForceCursorPosition(bool aEnabled, const VECTOR2D &aPosition=VECTOR2D(0, 0))
Place the cursor immediately at a given point.
virtual void ShowCursor(bool aEnabled)
Enable or disables display of cursor.
virtual void WarpMouseCursor(const VECTOR2D &aPosition, bool aWorldCoordinates=false, bool aWarpView=false)=0
If enabled (.
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.
void ShowPreview(bool aShow=true)
virtual int GetTopLayer() const
GAL * GetGAL() const
Return the #GAL this view is using to draw graphical primitives.
void Hide(VIEW_ITEM *aItem, bool aHide=true, bool aHideOverlay=false)
Temporarily hide the item in the view (e.g.
void AddToPreview(VIEW_ITEM *aItem, bool aTakeOwnership=true)
PAINTER * GetPainter() const
Return the painter object used by the view for drawing #VIEW_ITEMS.
LSEQ is a sequence (and therefore also a set) of PCB_LAYER_IDs.
LSET is a set of PCB_LAYER_IDs.
LSEQ UIOrder() const
Return the copper, technical and user layers in the order shown in layer widget.
static LSET AllNonCuMask()
Return a mask holding all layer minus CU layers.
static LSET AllCuMask(int aCuLayerCount=MAX_CU_LAYERS)
Return a mask holding the requested number of Cu PCB_LAYER_IDs.
A collection of nets and the parameters used to route or test these nets.
const wxString GetHumanReadableName() const
Gets the consolidated name of this netclass (which may be an aggregate).
Handle the data for a net.
const wxString & GetNetname() const
static wxString GetDefaultUserProjectsPath()
Gets the default path we point users to create projects.
static TOOL_ACTION_GROUP layerDirectSwitchActions()
static TOOL_ACTION layerToggle
static TOOL_ACTION drag45Degree
static TOOL_ACTION layerInner12
static TOOL_ACTION routerUndoLastSegment
static TOOL_ACTION layerInner8
static TOOL_ACTION layerInner3
static TOOL_ACTION layerPrev
static TOOL_ACTION routerSettingsDialog
Activation of the Push and Shove settings dialogs.
static TOOL_ACTION layerInner2
static TOOL_ACTION routerAttemptFinish
static TOOL_ACTION routeDiffPair
Activation of the Push and Shove router (differential pair mode)
static TOOL_ACTION selectionCursor
Select a single item under the cursor position.
static TOOL_ACTION trackViaSizeChanged
static TOOL_ACTION layerChanged
static TOOL_ACTION layerInner25
static TOOL_ACTION breakTrack
Break a single track into two segments at the cursor.
static TOOL_ACTION routerRouteSelectedFromEnd
static TOOL_ACTION routerHighlightMode
Actions to enable switching modes via hotkey assignments.
static TOOL_ACTION routerWalkaroundMode
static TOOL_ACTION routerShoveMode
static TOOL_ACTION layerInner24
static TOOL_ACTION properties
Activation of the edit tool.
static TOOL_ACTION selectionClear
Clear the current selection.
static TOOL_ACTION layerInner29
static TOOL_ACTION routerAutorouteSelected
static TOOL_ACTION layerInner11
static TOOL_ACTION routerDiffPairDialog
static TOOL_ACTION routerContinueFromEnd
static TOOL_ACTION layerInner16
static TOOL_ACTION layerInner26
static TOOL_ACTION layerInner18
static TOOL_ACTION layerInner14
static TOOL_ACTION selectLayerPair
static TOOL_ACTION layerInner6
static TOOL_ACTION dragFreeAngle
static TOOL_ACTION clearHighlight
static TOOL_ACTION layerInner22
static TOOL_ACTION layerInner5
static TOOL_ACTION layerInner20
static TOOL_ACTION layerInner7
static TOOL_ACTION layerInner27
static TOOL_ACTION layerInner1
static TOOL_ACTION layerInner10
static TOOL_ACTION layerInner15
static TOOL_ACTION layerInner17
static TOOL_ACTION layerBottom
static TOOL_ACTION layerInner19
static TOOL_ACTION layerInner9
static TOOL_ACTION routerInlineDrag
Activation of the Push and Shove router (inline dragging mode)
static TOOL_ACTION layerInner30
static TOOL_ACTION layerTop
static TOOL_ACTION selectItems
Select a list of items (specified as the event parameter)
static TOOL_ACTION cycleRouterMode
static TOOL_ACTION layerInner4
static TOOL_ACTION routeSingleTrack
Activation of the Push and Shove router.
static TOOL_ACTION layerInner13
static TOOL_ACTION layerInner21
static TOOL_ACTION layerNext
static TOOL_ACTION routerRouteSelected
static TOOL_ACTION layerInner23
static TOOL_ACTION layerInner28
Common, abstract interface for edit frames.
APPEARANCE_CONTROLS * GetAppearancePanel()
virtual PCB_LAYER_ID GetActiveLayer() const
PCB_DRAW_PANEL_GAL * GetCanvas() const override
Return a pointer to GAL-based canvas of given EDA draw frame.
The main frame for Pcbnew.
void SetActiveLayer(PCB_LAYER_ID aLayer) override
Change the currently active layer to aLayer and also update the APPEARANCE_CONTROLS.
EDA_ITEM * Clone() const override
Create a duplicate of this item with linked list members set to NULL.
A #PLUGIN derivation for saving and loading Pcbnew s-expression formatted files.
void SaveBoard(const wxString &aFileName, BOARD *aBoard, const std::map< std::string, UTF8 > *aProperties=nullptr) override
Write aBoard to a storage file in a format that this PCB_IO implementation knows about or it can be u...
PCB_LAYER_ID m_Route_Layer_TOP
PCB_LAYER_ID m_Route_Layer_BOTTOM
void SetEnd(const VECTOR2I &aEnd)
void SetStart(const VECTOR2I &aStart)
const VECTOR2I & GetStart() const
const VECTOR2I & GetEnd() const
EDA_ITEM_FLAGS IsPointOnEnds(const VECTOR2I &point, int min_dist=0) const
Return STARTPOINT if point if near (dist = min_dist) start point, ENDPOINT if point if near (dist = m...
void SetLayerPair(PCB_LAYER_ID aTopLayer, PCB_LAYER_ID aBottomLayer)
For a via m_layer contains the top layer, the other layer is in m_bottomLayer/.
void SetViaType(VIATYPE aViaType)
int Count(int aKindMask=-1) const
void Add(const LINE &aLine)
std::vector< ITEM * > & Items()
Base class for PNS router board items.
const PNS_LAYER_RANGE & Layers() const
virtual NET_HANDLE Net() const
PnsKind Kind() const
Return the type (kind) of the item.
bool OfKind(int aKindMask) const
static wxString FormatLogFileAsString(int aMode, const std::vector< ITEM * > &aAddedItems, const std::set< KIID > &aRemovedItems, const std::vector< ITEM * > &aHeads, const std::vector< EVENT_ENTRY > &aEvents)
ITEM * FindItemByParent(const BOARD_ITEM *aParent)
std::vector< ITEM * > FindItemsByParent(const BOARD_ITEM *aParent)
virtual const VECTOR2I & CurrentEnd() const =0
Function CurrentEnd()
virtual const ITEM_SET Traces()=0
Function Traces()
virtual bool HasPlacedAnything() const
virtual const VECTOR2I & CurrentStart() const =0
Function CurrentStart()
void SetMode(ROUTER_MODE aMode)
bool SwitchLayer(int layer)
void ClearViewDecorations()
PLACEMENT_ALGO * Placer()
std::vector< PNS::ITEM * > GetLastCommittedLeaderSegments()
void BreakSegmentOrArc(ITEM *aItem, const VECTOR2I &aP)
bool ContinueFromEnd(ITEM **aNewStartItem)
void UpdateSizes(const SIZES_SETTINGS &aSizes)
Applies stored settings.
const wxString & FailureReason() const
bool IsPlacingVia() const
RULE_RESOLVER * GetRuleResolver() const
ROUTING_SETTINGS & Settings()
bool RoutingInProgress() const
RouterState GetState() const
std::optional< VECTOR2I > UndoLastSegment()
bool StartDragging(const VECTOR2I &aP, ITEM *aItem, int aDragMode=DM_ANY)
bool StartRouting(const VECTOR2I &aP, ITEM *aItem, int aLayer)
void SetVisibleViewArea(const BOX2I &aExtents)
int GetCurrentLayer() const
void GetUpdatedItems(std::vector< PNS::ITEM * > &aRemoved, std::vector< PNS::ITEM * > &aAdded, std::vector< PNS::ITEM * > &aHeads)
bool FixRoute(const VECTOR2I &aP, ITEM *aItem, bool aForceFinish, bool aForceCommit)
void ToggleViaPlacement()
const std::vector< NET_HANDLE > GetCurrentNets() const
bool Move(const VECTOR2I &aP, ITEM *aItem)
Contain all persistent settings of the router, such as the mode, optimization effort,...
bool GetFreeAngleMode() const
void SetMode(PNS_MODE aMode)
Return the optimizer effort. Bigger means cleaner traces, but slower routing.
PNS_MODE Mode() const
Set the routing mode.
DIRECTION_45::CORNER_MODE GetCornerMode() const
virtual NET_HANDLE DpCoupledNet(NET_HANDLE aNet)=0
void SetViaType(VIATYPE aViaType)
void SetTrackWidth(int aWidth)
int DiffPairWidth() const
void SetDiffPairWidth(int aWidth)
void SetDiffPairWidthSource(const wxString &aSource)
void SetDiffPairGapSource(const wxString &aSource)
void SetDiffPairGap(int aGap)
void SetViaDrill(int aDrill)
wxString GetClearanceSource() const
wxString GetDiffPairGapSource() const
wxString GetDiffPairWidthSource() const
void AddLayerPair(int aL1, int aL2)
void SetClearance(int aClearance)
std::optional< int > PairedLayer(int aLayerId)
bool TrackWidthIsExplicit() const
void SetViaDiameter(int aDiameter)
void SetClearanceSource(const wxString &aSource)
wxString GetWidthSource() const
void SetWidthSource(const wxString &aSource)
int DiffPairViaGap() const
void SetBoard(BOARD *aBoard)
PNS::RULE_RESOLVER * GetRuleResolver() override
void SetStartLayerFromPCBNew(PCB_LAYER_ID aLayer)
PCB_LAYER_ID GetBoardLayerFromPNSLayer(int aLayer) const override
int GetPNSLayerFromBoardLayer(PCB_LAYER_ID aLayer) const override
bool ImportSizes(PNS::SIZES_SETTINGS &aSizes, PNS::ITEM *aStartItem, PNS::NET_HANDLE aNet, VECTOR2D aStartPosition) override
void SetCommitFlags(int aCommitFlags)
Represent a contiguous set of PCB layers.
bool Overlaps(const PNS_LAYER_RANGE &aOther) const
bool SaveAs(const wxString &aDirectory, const wxString &aFile)
bool SaveAs(const wxString &aDirectory, const wxString &aFile)
Container for project specific data.
virtual PROJECT_LOCAL_SETTINGS & GetLocalSettings() const
virtual PROJECT_FILE & GetProjectFile() const
Describe ratsnest for a single net.
const std::vector< CN_EDGE > & GetEdges() const
void SetMessage(const wxString &aStatus)
void SetHint(const wxString &aHint)
void SetPosition(const VECTOR2I &aPos) override
static bool NotEmpty(const SELECTION &aSelection)
Test if there are any items selected.
static bool ShowAlways(const SELECTION &aSelection)
The default condition function (always returns true).
virtual KIGFX::VIEW_ITEM * GetItem(unsigned int aIdx) const override
const std::deque< EDA_ITEM * > GetItems() const
int Size() const
Returns the number of selected parts.
std::deque< EDA_ITEM * > & Items()
std::vector< EDA_ITEM * > GetItemsSortedBySelectionOrder() const
bool Empty() const
Checks if there is anything selected.
size_t CountType(KICAD_T aType) const
wxString MessageTextFromValue(double aValue, bool aAddUnitLabel=true, EDA_DATA_TYPE aType=EDA_DATA_TYPE::DISTANCE) const
A lower-precision version of StringFromValue().
A modified version of the wxInfoBar class that allows us to:
void ShowMessageFor(const wxString &aMessage, int aTime, int aFlags=wxICON_INFORMATION, MESSAGE_TYPE aType=WX_INFOBAR::MESSAGE_TYPE::GENERIC)
Show the infobar with the provided message and icon for a specific period of time.
Handle a list of polygons defining a copper zone.
void DisplayError(wxWindow *aParent, const wxString &aText, int aDisplayTime)
Display an error or warning message box with aMessage.
This file is part of the common library.
@ VIA_DIAMETER_CONSTRAINT
@ DIFF_PAIR_GAP_CONSTRAINT
std::vector< EDA_ITEM * > EDA_ITEMS
Define list of drawing items for screens.
#define ROUTER_TRANSIENT
transient items that should NOT be cached
#define ENDPOINT
ends. (Used to support dragging.)
std::uint32_t EDA_ITEM_FLAGS
#define STARTPOINT
When a line is selected, these flags indicate which.
static FILENAME_RESOLVER * resolver
a few functions useful in geometry calculations.
VECTOR2< ret_type > GetClampedCoords(const VECTOR2< in_type > &aCoords, pad_type aPadding=1u)
Clamps a vector to values that can be negated, respecting numeric limits of coordinates data type wit...
wxString KeyNameFromKeyCode(int aKeycode, bool *aIsFound)
Return the key name from the key code.
This file is part of the common library.
bool IsCopperLayer(int aLayerId)
Test whether a layer is a copper layer.
PCB_LAYER_ID
A quick note on layer IDs:
The Cairo implementation of the graphics abstraction layer.
@ RM_MarkObstacles
Ignore collisions, mark obstacles.
@ RM_Walkaround
Only walk around.
@ PNS_MODE_ROUTE_DIFF_PAIR
@ ID_POPUP_PCB_SELECT_WIDTH1
@ ID_POPUP_PCB_SELECT_DIFFPAIR16
@ ID_POPUP_PCB_SELECT_USE_NETCLASS_VALUES
@ ID_POPUP_PCB_SELECT_WIDTH16
@ ID_POPUP_PCB_SELECT_AUTO_WIDTH
@ ID_POPUP_PCB_SELECT_CUSTOM_WIDTH
@ ID_POPUP_PCB_SELECT_DIFFPAIR1
@ ID_POPUP_PCB_SELECT_USE_NETCLASS_DIFFPAIR
@ ID_POPUP_PCB_SELECT_VIASIZE1
@ ID_POPUP_PCB_SELECT_CUSTOM_DIFFPAIR
@ ID_POPUP_PCB_SELECT_VIASIZE16
Class that computes missing connections on a PCB.
std::vector< FAB_LAYER_COLOR > dummy
wxString UnescapeString(const wxString &aSource)
Container to handle a stock of specific differential pairs each with unique track width,...
An abstract function object, returning a design rule (clearance, diff pair gap, etc) required between...
Container to handle a stock of specific vias each with unique diameter and drill sizes in the BOARD c...
@ PCB_VIA_T
class PCB_VIA, a via (like a track segment on a copper layer)
@ PCB_FOOTPRINT_T
class FOOTPRINT, a footprint
@ PCB_ARC_T
class PCB_ARC, an arc track segment on a copper layer
@ PCB_TRACE_T
class PCB_TRACK, a track segment (segment on a copper layer)
VECTOR2< double > VECTOR2D
wxPoint ToWxPoint(const VECTOR2I &aSize)
wxString AddFileExtListToFilter(const std::vector< std::string > &aExts)
Build the wildcard extension file dialog wildcard filter to add to the base message dialog.