24#include <wx/filedlg.h>
25#include <wx/hyperlink.h>
33using 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 );
579 static size_t lastLoggerSize = 0;
583 if( !logger || logger->GetEvents().size() == 0
584 || logger->GetEvents().size() == lastLoggerSize )
589 wxFileDialog dlg(
frame(),
_(
"Save router log" ), mruPath,
"pns.log",
591 wxFD_OVERWRITE_PROMPT | wxFD_SAVE );
593 if( dlg.ShowModal() != wxID_OK )
595 lastLoggerSize = logger->GetEvents().size();
599 wxFileName fname_log( dlg.GetPath() );
600 mruPath = fname_log.GetPath();
602 wxFileName fname_dump( fname_log );
603 fname_dump.SetExt(
"dump" );
605 wxFileName fname_settings( fname_log );
606 fname_settings.SetExt(
"settings" );
608 FILE* settings_f = wxFopen( fname_settings.GetAbsolutePath(),
"wb" );
610 fprintf( settings_f,
"%s\n", settingsStr.c_str() );
611 fclose( settings_f );
625 std::vector<PNS::ITEM*> added, removed, heads;
628 std::set<KIID> removedKIIDs;
630 for(
auto item : removed )
632 wxASSERT_MSG( item->Parent() !=
nullptr,
"removed an item with no parent uuid?" );
635 removedKIIDs.insert( item->Parent()->m_Uuid );
638 FILE* log_f = wxFopen( fname_log.GetAbsolutePath(),
"wb" );
640 added, removedKIIDs, heads,
641 logger->GetEvents() );
646 fname_log.GetAbsolutePath() ) );
650 fprintf( log_f,
"%s\n", logString.c_str().AsChar() );
709 if( currentLayer != activeLayer )
732 std::shared_ptr<DRC_ENGINE>& drcEngine = bds.
m_DRCEngine;
761 if( !constraint.
IsNull() )
789 dummyTrackB.
SetLayer( targetLayer );
797 if( !constraint.
IsNull() )
810 if( !constraint.
IsNull() )
836 wxASSERT_MSG(
false, wxT(
"Unhandled via type" ) );
860 frame()->SetActiveLayer(
897 size_t target_idx = 0;
900 for(
size_t i = 0; i < layers.size(); i++ )
902 if( layers[i] == lastTargetLayer )
909 target_idx = ( idx + 1 ) % layers.size();
912 for(
size_t i = 0; i < layers.size() - 1; i++ )
916 targetLayer = layers[target_idx];
921 if( target_idx >= layers.size() )
939 size_t target_idx = 0;
942 for(
size_t i = 0; i < layers.size(); i++ )
944 if( layers[i] == lastTargetLayer )
951 target_idx = ( idx > 0 ) ? ( idx - 1 ) : ( layers.size() - 1 );
953 for(
size_t i = 0; i < layers.size() - 1; i++ )
957 targetLayer = layers[target_idx];
964 target_idx = layers.size() - 1;
986 if( !enabledLayers.test( targetLayer ) )
994 if( targetLayer == currentLayer )
1014 VIATYPE viaType = VIATYPE::THROUGH;
1015 bool selectLayer =
false;
1020 const int actViaFlags = aEvent.
Parameter<
int>();
1021 selectLayer = actViaFlags & VIA_ACTION_FLAGS::SELECT_LAYER;
1029 endPoint =
frame()->GetCanvas()->ClientToScreen( endPoint );
1034 if( viaType != VIATYPE::THROUGH )
1035 not_allowed_ly.
set( currentLayer );
1037 targetLayer =
frame()->SelectOneLayer(
static_cast<PCB_LAYER_ID>( currentLayer ),
1038 not_allowed_ly, endPoint );
1047 if( viaType != VIATYPE::THROUGH )
1049 if( currentLayer == targetLayer )
1059 if( viaType == VIATYPE::BLIND_BURIED
1060 && ( ( targetLayer ==
B_Cu && currentLayer ==
F_Cu )
1061 || ( targetLayer ==
F_Cu && currentLayer ==
B_Cu ) ) )
1063 viaType = VIATYPE::THROUGH;
1069 if( viaType == VIATYPE::THROUGH )
1072 currentLayer = pairTop;
1073 targetLayer = pairBottom;
1077 if( currentLayer == pairTop || currentLayer == pairBottom )
1081 currentLayer = pairTop;
1082 targetLayer = pairBottom;
1088 targetLayer = pairTop;
1092 if( currentLayer == targetLayer )
1120 if( !constraint.
IsNull() )
1126 if( !constraint.
IsNull() )
1175 if( !
getView()->IsLayerVisible( pcbLayer ) )
1185 frame()->GetBoard()->GetDesignSettings().m_TempOverrideTrackWidth =
false;
1218 m_router->ClearViewDecorations();
1229 frame()->UndoRedoBlock(
true );
1244 frame()->GetCanvas()->SetCurrentCursor( KICURSOR::ARROW );
1247 frame()->UndoRedoBlock(
false );
1264 frame()->GetCanvas()->SetCurrentCursor( KICURSOR::PENCIL );
1267 auto syncRouterAndFrameLayer =
1276 if( !
getView()->IsLayerVisible( pcbLayer ) )
1293 if( evt->IsCancelInteractive() )
1301 if( evt->IsMotion() )
1313 evt->SetMousePosition( last.value() );
1321 bool* autoRouted = evt->Parameter<
bool*>();
1328 if( autoRouted !=
nullptr )
1337 if( autoRouted !=
nullptr )
1339 *autoRouted =
false;
1353 syncRouterAndFrameLayer();
1374 bool forceFinish = evt->Modifier(
MD_SHIFT );
1375 bool forceCommit =
false;
1380 if( needLayerSwitch )
1390 syncRouterAndFrameLayer();
1411 frame()->GetCanvas()->SetCurrentCursor( KICURSOR::ARROW );
1423 bool forceFinish =
true;
1424 bool forceCommit =
false;
1429 else if( evt->IsCancelInteractive() || evt->IsActivate()
1435 if( evt->IsActivate() && !evt->IsMoveTool() )
1440 else if( evt->IsUndoRedo() )
1458 evt->SetPassEvent();
1475 if( settingsDlg.
ShowModal() == wxID_OK )
1575 frame->PushTool( aEvent );
1580 frame->GetCanvas()->SetCurrentCursor( KICURSOR::PENCIL );
1591 std::vector<BOARD_CONNECTED_ITEM*> itemList;
1598 itemList.push_back(
pad );
1606 std::shared_ptr<CONNECTIVITY_DATA> connectivity =
frame->GetBoard()->GetConnectivity();
1609 bool groupStart =
true;
1616 RN_NET* net = connectivity->GetRatsnestForNet( item->GetNetCode() );
1621 std::vector<std::shared_ptr<const CN_ANCHOR>> anchors;
1625 std::shared_ptr<const CN_ANCHOR> target = edge.GetTargetNode();
1626 std::shared_ptr<const CN_ANCHOR> source = edge.GetSourceNode();
1628 if( !source || source->Dirty() || !target || target->Dirty() )
1631 if( source->Parent() == item )
1632 anchors.push_back( source );
1633 else if( target->Parent() == item )
1634 anchors.push_back( target );
1638 for( std::shared_ptr<const CN_ANCHOR>
anchor : anchors )
1647 if(
frame->GetActiveLayer() != originalLayer )
1648 frame->SetActiveLayer( originalLayer );
1656 bool autoRouted =
false;
1682 frame->PopTool( aEvent );
1709 frame->PushTool( aEvent );
1714 frame->GetCanvas()->SetCurrentCursor( KICURSOR::PENCIL );
1733 if( !evt->IsDrag() )
1736 if( evt->IsCancelInteractive() )
1738 frame->PopTool( aEvent );
1741 else if( evt->IsActivate() )
1743 if( evt->IsMoveTool() || evt->IsEditorTool() )
1750 frame->PopTool( aEvent );
1762 else if( evt->IsMotion() )
1780 evt->SetPassEvent(
false );
1788 if( evt->HasPosition() )
1801 else if( evt->IsKeyPressed() )
1806 evt->SetPassEvent();
1814 evt->SetPassEvent();
1819 frame->PopTool( aEvent );
1843 KIDIALOG dlg(
frame(),
_(
"The selected item is locked." ),
_(
"Confirmation" ),
1844 wxOK | wxCANCEL | wxICON_WARNING );
1845 dlg.SetOKLabel(
_(
"Drag Anyway" ) );
1881 frame()->UndoRedoBlock(
true );
1887 if( evt->IsMotion() )
1896 if( dragger->GetForceMarkObstaclesMode( &dragStatus ) )
1903 hint.Printf(
_(
"(%s to commit anyway.)" ),
1907 statusItem->
SetMessage(
_(
"Track violates DRC." ) );
1915 else if( evt->IsClick(
BUT_LEFT ) )
1917 bool forceFinish =
false;
1918 bool forceCommit = evt->Modifier(
MD_CTRL );
1927 else if( evt->IsCancelInteractive() || evt->IsActivate() )
1932 if( evt->IsActivate() && !evt->IsMoveTool() )
1937 else if( evt->IsUndoRedo() )
1965 evt->SetPassEvent();
1970 evt->SetPassEvent();
1985 frame()->UndoRedoBlock(
false );
2012 if( vias + traces == 0 )
2026 for(
int i = 0; !reference && i < aCollector.
GetCount(); i++ )
2027 reference =
dynamic_cast<PCB_TRACK*
>( aCollector[i] );
2041 refPoint = reference->
GetEnd();
2045 for(
int i = 0; i < aCollector.
GetCount(); i++ )
2049 if( neighbor && neighbor != reference )
2054 if( neighbor->
GetStart() != refPoint && neighbor->
GetEnd() != refPoint )
2061 aCollector.
Append( reference );
2080 if( item->
IsType( { PCB_FOOTPRINT_T } ) )
2098 std::copy( aOriginalSelection.
Items().begin(), aOriginalSelection.
Items().end(), std::back_inserter( selItems ) );
2130 std::set<FOOTPRINT*> footprints;
2133 footprints.insert(
static_cast<FOOTPRINT*
>( item ) );
2152 bool wasLocked =
false;
2162 frame()->PushTool( aEvent );
2171 bool showCourtyardConflicts =
frame()->GetPcbNewSettings()->m_ShowCourtyardCollisions;
2177 std::vector<BOARD_ITEM*> dynamicItems;
2178 std::unique_ptr<CONNECTIVITY_DATA> dynamicData =
nullptr;
2180 std::vector<PNS::ITEM*> leaderSegments;
2182 if( !footprints.empty() )
2184 if( showCourtyardConflicts )
2194 itemsToDrag.
Add( solid );
2198 if( connectivityData->GetRatsnestForPad(
pad ).size() > 0 )
2199 dynamicItems.push_back(
pad );
2208 itemsToDrag.
Add( solid );
2211 if( showCourtyardConflicts )
2215 dynamicData = std::make_unique<CONNECTIVITY_DATA>(
board()->GetConnectivity(),
2216 dynamicItems,
true );
2217 connectivityData->BlockRatsnestItems( dynamicItems );
2221 for (
const EDA_ITEM* bitem : selectedItems )
2227 itemsToDrag.
Add( pitem );
2239 std::set<PNS::NET_HANDLE> highlightNetcodes;
2241 if( itemsToDrag.
Count() >= 1 )
2247 if( pitem->Shape( layer )->Collide( p0, 0 ) )
2252 highlightNetcodes.insert( pitem->Net() );
2256 if( highlightNetcodes.size() )
2259 else if( !footprints.empty() )
2285 int dragMode = aEvent.
Parameter<
int> ();
2296 if( !footprints.empty() )
2297 connectivityData->ClearLocalRatsnest();
2304 frame()->PopTool( aEvent );
2312 frame()->UndoRedoBlock(
true );
2320 frame()->GetCanvas()->SetCurrentCursor( KICURSOR::ARROW );
2333 bool hasMouseMoved =
false;
2334 bool hasMultidragCancelled =
false;
2340 if( evt->IsCancelInteractive() )
2345 hasMultidragCancelled =
true;
2349 else if( evt->IsMotion() || evt->IsDrag(
BUT_LEFT ) )
2351 hasMouseMoved =
true;
2357 if( !footprints.empty() )
2366 previewItem =
static_cast<BOARD_ITEM*
>( drawing->Clone() );
2367 previewItem->
Move( offset );
2376 &&
pad->GetDrillSize().x == 0 )
2379 previewItem->
Move( offset );
2392 previewItem->
Move( offset );
2397 previewItem->
Move( offset );
2401 if( showCourtyardConflicts )
2405 if( showCourtyardConflicts )
2407 courtyardClearanceDRC.
Run();
2415 dynamicData->Move( offset - lastOffset );
2416 lastOffset = offset;
2417 connectivityData->ComputeLocalRatsnest( dynamicItems, dynamicData.get(), offset );
2424 if( dragger->GetForceMarkObstaclesMode( &dragStatus ) )
2429 hint.Printf(
_(
"(%s to commit anyway.)" ),
2433 statusItem->
SetMessage(
_(
"Track violates DRC." ) );
2441 else if( hasMouseMoved && ( evt->IsMouseUp(
BUT_LEFT ) || evt->IsClick(
BUT_LEFT ) ) )
2443 bool forceFinish =
false;
2444 bool forceCommit = evt->Modifier(
MD_CTRL );
2452 else if( evt->IsUndoRedo() )
2480 evt->SetPassEvent();
2485 evt->SetPassEvent();
2491 if( !footprints.empty() )
2508 connectivityData->ClearLocalRatsnest();
2518 if( itemsToDrag.
Size() && hasMultidragCancelled )
2522 else if( leaderSegments.size() )
2524 std::vector<EDA_ITEM*> newItems;
2526 for(
auto lseg : leaderSegments )
2527 newItems.push_back( lseg->Parent() );
2535 frame()->UndoRedoBlock(
false );
2536 frame()->PopTool( aEvent );
2586 KIDIALOG dlg(
frame(),
_(
"The selected item is locked." ),
_(
"Confirmation" ),
2587 wxOK | wxCANCEL | wxICON_WARNING );
2588 dlg.SetOKLabel(
_(
"Break Track" ) );
2595 frame()->UndoRedoBlock(
true );
2601 frame()->UndoRedoBlock(
false );
2648 std::vector<MSG_PANEL_ITEM> items;
2656 wxString description;
2662 wxASSERT( nets.size() >= 2 );
2669 description = wxString::Format(
_(
"Routing Diff Pair: %s" ),
2676 if( *netclassA == *netclassB )
2677 netclass = netclassA->
GetName();
2679 netclass = netclassA->
GetName() + wxT(
", " ) + netclassB->
GetName();
2681 secondary = wxString::Format(
_(
"Resolved Netclass: %s" ),
2684 else if( !nets.empty() && nets[0] )
2688 description = wxString::Format(
_(
"Routing Track: %s" ),
2691 secondary = wxString::Format(
_(
"Resolved Netclass: %s" ),
2696 description =
_(
"Routing Track" );
2697 secondary =
_(
"(no net)" );
2700 items.emplace_back( description, secondary );
2702 wxString cornerMode;
2706 cornerMode =
_(
"Free-angle" );
2720 items.emplace_back(
_(
"Corner Style" ), cornerMode );
2730 items.emplace_back(
_(
"Mode" ), mode );
2732#define FORMAT_VALUE( x ) frame()->MessageTextFromValue( x )
2736 items.emplace_back( wxString::Format(
_(
"Track Width: %s" ),
2738 wxString::Format(
_(
"(from %s)" ),
2741 items.emplace_back( wxString::Format(
_(
"Min Clearance: %s" ),
2743 wxString::Format(
_(
"(from %s)" ),
2746 items.emplace_back( wxString::Format(
_(
"Diff Pair Gap: %s" ),
2748 wxString::Format(
_(
"(from %s)" ),
2752 wxASSERT( traces.
Count() == 2 );
2757 items.emplace_back( wxString::Format(
_(
"DP Max Uncoupled-length: %s" ),
2759 wxString::Format(
_(
"(from %s)" ),
2765 items.emplace_back( wxString::Format(
_(
"Track Width: %s" ),
2767 wxString::Format(
_(
"(from %s)" ),
2770 items.emplace_back( wxString::Format(
_(
"Min Clearance: %s" ),
2772 wxString::Format(
_(
"(from %s)" ),
2778 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)
Checks the 'do not show again' setting for the dialog.
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
Returns 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 GetName() 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)
std::vector< ITEM * > FindItemsByZone(const ZONE *aParent)
ITEM * FindItemByParent(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 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)
Tests 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.