24#include <wx/hyperlink.h>
32using namespace std::placeholders;
109 .Name(
"pcbnew.InteractiveRouter.EndTrack" )
111 .DefaultHotkey( WXK_END )
112 .MenuText(
_(
"Finish Track" ) )
113 .Tooltip(
_(
"Stops laying the current track." ) )
118 .Name(
"pcbnew.InteractiveRouter.PlaceVia" )
120 .DefaultHotkey(
'V' )
121 .LegacyHotkeyName(
"Add Through Via" )
122 .MenuText(
_(
"Place Through Via" ) )
123 .Tooltip(
_(
"Adds a through-hole via at the end of currently routed track." ) )
129 .Name(
"pcbnew.InteractiveRouter.PlaceBlindVia" )
132 .LegacyHotkeyName(
"Add Blind/Buried Via" )
133 .MenuText(
_(
"Place Blind/Buried Via" ) )
134 .Tooltip(
_(
"Adds a blind or buried via at the end of currently routed track.") )
140 .Name(
"pcbnew.InteractiveRouter.PlaceMicroVia" )
142 .DefaultHotkey(
MD_CTRL +
'V' )
143 .LegacyHotkeyName(
"Add MicroVia" )
144 .MenuText(
_(
"Place Microvia" ) )
145 .Tooltip(
_(
"Adds a microvia at the end of currently routed track." ) )
151 .Name(
"pcbnew.InteractiveRouter.SelLayerAndPlaceVia" )
153 .DefaultHotkey(
'<' )
154 .LegacyHotkeyName(
"Select Layer and Add Through Via" )
155 .MenuText(
_(
"Select Layer and Place Through Via..." ) )
156 .Tooltip(
_(
"Select a layer, then add a through-hole via at the end of currently routed track." ) )
162 .Name(
"pcbnew.InteractiveRouter.SelLayerAndPlaceBlindVia" )
164 .DefaultHotkey(
MD_ALT +
'<' )
165 .LegacyHotkeyName(
"Select Layer and Add Blind/Buried Via" )
166 .MenuText(
_(
"Select Layer and Place Blind/Buried Via..." ) )
167 .Tooltip(
_(
"Select a layer, then add a blind or buried via at the end of currently routed track." ) )
173 .Name(
"pcbnew.InteractiveRouter.SelLayerAndPlaceMicroVia" )
175 .MenuText(
_(
"Select Layer and Place Micro Via..." ) )
176 .Tooltip(
_(
"Select a layer, then add a micro via at the end of currently routed track." ) )
182 .Name(
"pcbnew.InteractiveRouter.CustomTrackViaSize" )
184 .DefaultHotkey(
'Q' )
185 .LegacyHotkeyName(
"Custom Track/Via Size" )
186 .MenuText(
_(
"Custom Track/Via Size..." ) )
187 .Tooltip(
_(
"Shows a dialog for changing the track width and via size." ) )
191 .Name(
"pcbnew.InteractiveRouter.SwitchPosture" )
193 .DefaultHotkey(
'/' )
194 .LegacyHotkeyName(
"Switch Track Posture" )
195 .MenuText(
_(
"Switch Track Posture" ) )
196 .Tooltip(
_(
"Switches posture of the currently routed track." ) )
200 .Name(
"pcbnew.InteractiveRouter.SwitchRounding" )
202 .DefaultHotkey(
MD_CTRL +
'/' )
203 .MenuText(
_(
"Track Corner Mode" ) )
204 .Tooltip(
_(
"Switches between sharp/rounded and 45°/90° corners when routing tracks." ) )
208#define _(s) wxGetTranslation((s))
215 m_inRouterTool( false )
227 SetIcon( BITMAPS::width_track_via );
228 SetTitle(
_(
"Select Track/Via Width" ) );
247 _(
"Route using the width of the starting track." ), wxITEM_CHECK );
252 _(
"Use track and via sizes from the net class" ), wxITEM_CHECK );
257 _(
"Specify custom track and via sizes" ), wxITEM_CHECK );
268 msg =
_(
"Track netclass width" );
273 Append( menuIdx, msg, wxEmptyString, wxITEM_CHECK );
284 msg =
_(
"Via netclass values" );
287 if(
via.m_Drill > 0 )
289 msg.Printf(
_(
"Via %s, hole %s" ),
295 msg.Printf(
_(
"Via %s" ),
301 Append( menuIdx, msg, wxEmptyString, wxITEM_CHECK );
309 int id = aEvent.GetId();
360 SetIcon( BITMAPS::width_track_via );
361 SetTitle(
_(
"Select Differential Pair Dimensions" ) );
377 _(
"Use differential pair dimensions from the net class" ), wxITEM_CHECK );
382 _(
"Specify custom differential pair dimensions" ), wxITEM_CHECK );
395 if( diffPair.
m_Gap <= 0 )
399 msg.Printf(
_(
"Width %s" ),
404 msg.Printf(
_(
"Width %s, via gap %s" ),
413 msg.Printf(
_(
"Width %s, gap %s" ),
419 msg.Printf(
_(
"Width %s, gap %s, via gap %s" ),
427 Append( menuIdx, msg, wxEmptyString, wxITEM_CHECK );
435 int id = aEvent.GetId();
481 menu.
SetTitle(
_(
"Interactive Router" ) );
499 auto notRoutingCond =
510 if( currentNets.empty() || currentNets[0] == nullptr )
519 return ratsnest && !ratsnest->
GetEdges().empty();
523 menu.AddSeparator( 1 );
526 menu.AddSeparator( haveHighlight, 2 );
584 if( !logger || logger->GetEvents().size() == 0 )
587 wxString cwd = wxGetCwd();
589 wxFileName fname_log;
590 fname_log.SetPath( cwd );
591 fname_log.SetName(
"pns.log" );
593 wxFileName fname_dump( cwd );
594 fname_dump.SetPath( cwd );
595 fname_dump.SetName(
"pns.dump" );
597 wxFileName fname_settings( cwd );
598 fname_settings.SetPath( cwd );
599 fname_settings.SetName(
"pns.settings" );
601 wxString msg = wxString::Format( wxT(
"Path: %s\nEvent file: %s\nBoard dump: %s\nSettings dump: %s" ),
603 fname_log.GetFullName(),
604 fname_dump.GetFullName(),
605 fname_settings.GetFullName() );
608 _(
"Would you like to save the router\nevent log for debugging purposes?" ), msg,
609 _(
"OK" ),
_(
"Cancel" ) );
614 FILE* settings_f = wxFopen( fname_settings.GetFullPath(),
"wb" );
616 fprintf( settings_f,
"%s\n", settingsStr.c_str() );
617 fclose( settings_f );
631 std::vector<PNS::ITEM*> added, removed, heads;
634 std::set<KIID> removedKIIDs;
636 for(
auto item : removed )
638 wxASSERT_MSG( item->Parent() !=
nullptr,
"removed an item with no parent uuid?" );
641 removedKIIDs.insert( item->Parent()->m_Uuid );
644 FILE* log_f = wxFopen( fname_log.GetFullPath(),
"wb" );
646 added, removedKIIDs, heads,
647 logger->GetEvents() );
648 fprintf( log_f,
"%s\n", logString.c_str().AsChar() );
705 if( currentLayer != activeLayer )
726 std::shared_ptr<DRC_ENGINE>& drcEngine = bds.
m_DRCEngine;
741 if( !constraint.
IsNull() )
769 dummyTrackB.
SetLayer( targetLayer );
777 if( !constraint.
IsNull() )
790 if( !constraint.
IsNull() )
816 wxASSERT_MSG(
false, wxT(
"Unhandled via type" ) );
936 size_t target_idx = 0;
938 for(
size_t i = 0; i < layers.size(); i++ )
947 target_idx = ( idx + 1 ) % layers.size();
950 for(
size_t i = 0; i < layers.size() - 1; i++ )
954 targetLayer = layers[target_idx];
959 if( target_idx >= layers.size() )
977 size_t target_idx = 0;
979 for(
size_t i = 0; i < layers.size(); i++ )
988 target_idx = ( idx > 0 ) ? ( idx - 1 ) : ( layers.size() - 1 );
990 for(
size_t i = 0; i < layers.size() - 1; i++ )
994 targetLayer = layers[target_idx];
1001 target_idx = layers.size() - 1;
1019 if( targetLayer == currentLayer )
1039 VIATYPE viaType = VIATYPE::THROUGH;
1040 bool selectLayer =
false;
1045 const int actViaFlags = aEvent.
Parameter<
int>();
1046 selectLayer = actViaFlags & VIA_ACTION_FLAGS::SELECT_LAYER;
1059 if( viaType != VIATYPE::THROUGH )
1060 not_allowed_ly.set( currentLayer );
1062 if( viaType == VIATYPE::MICROVIA )
1065 int previous_layer = currentLayer ==
B_Cu ? layerCount - 2
1068 int next_layer = currentLayer >= layerCount-2 ?
B_Cu
1073 if( previous_layer >=
F_Cu && previous_layer != currentLayer )
1074 not_allowed_ly.reset( previous_layer );
1076 if( next_layer != currentLayer )
1077 not_allowed_ly.reset( next_layer );
1081 not_allowed_ly, endPoint );
1090 if( viaType != VIATYPE::THROUGH )
1092 if( currentLayer == targetLayer )
1102 if( viaType == VIATYPE::BLIND_BURIED
1103 && ( ( targetLayer ==
B_Cu && currentLayer ==
F_Cu )
1104 || ( targetLayer ==
F_Cu && currentLayer ==
B_Cu ) ) )
1106 viaType = VIATYPE::THROUGH;
1115 case VIATYPE::THROUGH:
1117 currentLayer = pairTop;
1118 targetLayer = pairBottom;
1121 case VIATYPE::MICROVIA:
1124 if( pairTop > pairBottom ) std::swap( pairTop, pairBottom );
1126 if( currentLayer == pairTop && pairBottom == pairTop+1 )
1128 targetLayer = pairBottom;
1130 else if( currentLayer == pairBottom && pairBottom == pairTop+1 )
1132 targetLayer = pairTop;
1134 else if( currentLayer ==
F_Cu || currentLayer ==
In1_Cu )
1137 currentLayer =
F_Cu;
1139 if( layerCount > 2 )
1144 else if( currentLayer ==
B_Cu || currentLayer == layerCount - 2 )
1147 currentLayer =
B_Cu,
1160 case VIATYPE::BLIND_BURIED:
1161 if( currentLayer == pairTop || currentLayer == pairBottom )
1165 currentLayer = pairTop;
1166 targetLayer = pairBottom;
1172 targetLayer = pairTop;
1176 if( currentLayer == targetLayer )
1179 infobar->
ShowMessageFor(
_(
"Blind/buried via need 2 different layers." ),
1188 wxFAIL_MSG( wxT(
"unexpected via type" ) );
1211 if( !constraint.
IsNull() )
1217 if( !constraint.
IsNull() )
1264 if( !
getView()->IsLayerVisible( routingLayer ) )
1277 frame()->GetScreen()->m_Route_Layer_BOTTOM );
1307 m_router->ClearViewDecorations();
1356 auto syncRouterAndFrameLayer =
1364 if( !
getView()->IsLayerVisible( routingLayer ) )
1381 if( evt->IsCancelInteractive() )
1389 if( evt->IsMotion() )
1401 evt->SetMousePosition( last.value() );
1409 bool* autoRouted = evt->Parameter<
bool*>();
1416 if( autoRouted !=
nullptr )
1425 if( autoRouted !=
nullptr )
1427 *autoRouted =
false;
1441 syncRouterAndFrameLayer();
1459 bool forceFinish = evt->Modifier(
MD_SHIFT );
1464 if( needLayerSwitch )
1468 syncRouterAndFrameLayer();
1504 else if( evt->IsCancelInteractive() || evt->IsActivate()
1510 if( evt->IsActivate() && !evt->IsMoveTool() )
1515 else if( evt->IsUndoRedo() )
1533 evt->SetPassEvent();
1550 if( settingsDlg.ShowModal() == wxID_OK )
1569 settingsDlg.ShowModal();
1661 std::vector<BOARD_CONNECTED_ITEM*> itemList;
1667 const PADS& fpPads = (
static_cast<FOOTPRINT*
>( item ) )->Pads();
1670 itemList.push_back(
pad );
1681 bool groupStart =
true;
1688 RN_NET* net = connectivity->GetRatsnestForNet( item->GetNetCode() );
1693 std::vector<std::shared_ptr<const CN_ANCHOR>> anchors;
1697 std::shared_ptr<const CN_ANCHOR> target = edge.GetTargetNode();
1698 std::shared_ptr<const CN_ANCHOR> source = edge.GetSourceNode();
1700 if( source->Parent() == item )
1701 anchors.push_back( edge.GetSourceNode() );
1702 else if( target->Parent() == item )
1703 anchors.push_back( edge.GetTargetNode() );
1707 for( std::shared_ptr<const CN_ANCHOR>
anchor : anchors )
1722 bool autoRouted =
false;
1799 if( !evt->IsDrag() )
1802 if( evt->IsCancelInteractive() )
1807 else if( evt->IsActivate() )
1809 if( evt->IsMoveTool() || evt->IsEditorTool() )
1828 else if( evt->IsMotion() )
1846 evt->SetPassEvent(
false );
1854 if( evt->HasPosition() )
1872 else if( evt->IsKeyPressed() )
1877 evt->SetPassEvent();
1885 evt->SetPassEvent();
1911 KIDIALOG dlg(
frame(),
_(
"The selected item is locked." ),
_(
"Confirmation" ),
1912 wxOK | wxCANCEL | wxICON_WARNING );
1913 dlg.SetOKLabel(
_(
"Drag Anyway" ) );
1955 if( evt->IsMotion() )
1960 else if( evt->IsClick(
BUT_LEFT ) )
1969 else if( evt->IsCancelInteractive() || evt->IsActivate() )
1974 if( evt->IsActivate() && !evt->IsMoveTool() )
1979 else if( evt->IsUndoRedo() )
2007 evt->SetPassEvent();
2012 evt->SetPassEvent();
2051 if( vias + traces == 0 )
2065 for(
int i = 0; !reference && i < aCollector.
GetCount(); i++ )
2066 reference =
dynamic_cast<PCB_TRACK*
>( aCollector[i] );
2080 refPoint = reference->
GetEnd();
2084 for(
int i = 0; i < aCollector.
GetCount(); i++ )
2088 if( neighbor && neighbor != reference )
2093 if( neighbor->
GetStart() != refPoint && neighbor->
GetEnd() != refPoint )
2100 aCollector.
Append( reference );
2117 if( item->
IsType( { PCB_FOOTPRINT_T } ) )
2149 std::set<FOOTPRINT*> footprints;
2152 footprints.insert(
static_cast<FOOTPRINT*
>( item ) );
2174 bool wasLocked =
false;
2198 std::vector<BOARD_ITEM*> dynamicItems;
2199 std::unique_ptr<CONNECTIVITY_DATA> dynamicData =
nullptr;
2202 if( !footprints.empty() )
2204 if( showCourtyardConflicts )
2214 itemsToDrag.
Add( solid );
2218 if( connectivityData->GetRatsnestForPad(
pad ).size() > 0 )
2219 dynamicItems.push_back(
pad );
2228 itemsToDrag.
Add( solid );
2231 if( showCourtyardConflicts )
2235 dynamicData = std::make_unique<CONNECTIVITY_DATA>( dynamicItems,
true );
2236 connectivityData->BlockRatsnestItems( dynamicItems );
2243 itemsToDrag.
Add( startItem );
2261 else if( !footprints.empty() )
2286 int dragMode = aEvent.
Parameter<
int> ();
2322 bool hasMouseMoved =
false;
2328 if( evt->IsCancelInteractive() )
2335 else if( evt->IsMotion() || evt->IsDrag(
BUT_LEFT ) )
2337 hasMouseMoved =
true;
2341 if( !footprints.empty() )
2352 previewItem =
static_cast<BOARD_ITEM*
>( drawing->Clone() );
2353 previewItem->
Move( offset );
2362 &&
pad->GetDrillSize().x == 0 )
2365 previewItem->
Move( offset );
2378 previewItem->
Move( offset );
2383 previewItem->
Move( offset );
2387 if( showCourtyardConflicts )
2391 if( showCourtyardConflicts )
2393 courtyardClearanceDRC.
Run();
2401 dynamicData->Move( offset - lastOffset );
2402 lastOffset = offset;
2403 connectivityData->ComputeLocalRatsnest( dynamicItems, dynamicData.get(), offset );
2406 else if( hasMouseMoved && ( evt->IsMouseUp(
BUT_LEFT ) || evt->IsClick(
BUT_LEFT ) ) )
2412 else if( evt->IsUndoRedo() )
2440 evt->SetPassEvent();
2445 evt->SetPassEvent();
2451 if( !footprints.empty() )
2468 connectivityData->ClearLocalRatsnest();
2529 KIDIALOG dlg(
frame(),
_(
"The selected item is locked." ),
_(
"Confirmation" ),
2530 wxOK | wxCANCEL | wxICON_WARNING );
2531 dlg.SetOKLabel(
_(
"Break Track" ) );
2555 if( sizeDlg.ShowModal() == wxID_OK )
2591 std::vector<MSG_PANEL_ITEM> items;
2598 wxString description;
2603 wxASSERT( nets.size() >= 2 );
2610 description = wxString::Format(
_(
"Routing Diff Pair: %s" ),
2617 if( netclassA == netclassB )
2618 netclass = netclassA->
GetName();
2620 netclass = netclassA->
GetName() + wxT(
", " ) + netclassB->
GetName();
2622 secondary = wxString::Format(
_(
"Resolved Netclass: %s" ),
2625 else if( !nets.empty() && nets[0] )
2629 description = wxString::Format(
_(
"Routing Track: %s" ),
2632 secondary = wxString::Format(
_(
"Resolved Netclass: %s" ),
2637 description =
_(
"Routing Track" );
2638 secondary =
_(
"(no net)" );
2641 items.emplace_back( description, secondary );
2643 wxString cornerMode;
2647 cornerMode =
_(
"Free-angle" );
2661 items.emplace_back(
_(
"Corner Style" ), cornerMode );
2663#define FORMAT_VALUE( x ) frame()->MessageTextFromValue( x )
2667 items.emplace_back( wxString::Format(
_(
"Track Width: %s" ),
2669 wxString::Format(
_(
"(from %s)" ),
2672 items.emplace_back( wxString::Format(
_(
"Min Clearance: %s" ),
2674 wxString::Format(
_(
"(from %s)" ),
2677 items.emplace_back( wxString::Format(
_(
"Diff Pair Gap: %s" ),
2679 wxString::Format(
_(
"(from %s)" ),
2684 items.emplace_back( wxString::Format(
_(
"Track Width: %s" ),
2686 wxString::Format(
_(
"(from %s)" ),
2689 items.emplace_back( wxString::Format(
_(
"Min Clearance: %s" ),
2691 wxString::Format(
_(
"(from %s)" ),
@ switch_corner_rounding_shape
static TOOL_ACTION cancelInteractive
static TOOL_ACTION pasteSpecial
static TOOL_ACTION doDelete
static const ADVANCED_CFG & GetCfg()
Get the singleton instance's config, which is shared by all consumers.
void SetLayerVisible(int aLayer, bool isVisible)
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.
const Vec & GetOrigin() const
const Vec & GetSize() const
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...
WX_INFOBAR * GetInfoBar()
void AddStandardSubMenus(TOOL_MENU &aMenu)
Construct a "basic" menu for a tool, containing only items that apply to all tools (e....
void SetMsgPanel(const std::vector< MSG_PANEL_ITEM > &aList)
Clear the message panel and populates it with the contents of aList.
void SetCurrentCursor(KICURSOR aCursor)
Set the current cursor shape for this panel.
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
void AddToPreview(EDA_ITEM *aItem, bool aTakeOwnership=true)
GAL * GetGAL() const
Return the #GAL this view is using to draw graphical primitives.
void Hide(VIEW_ITEM *aItem, bool aHide=true)
Temporarily hide the item in the view (e.g.
PAINTER * GetPainter() const
Return the painter object used by the view for drawing #VIEW_ITEMS.
Represent a contiguous set of PCB layers.
bool Overlaps(const LAYER_RANGE &aOther) const
LSEQ is a sequence (and therefore also a set) of PCB_LAYER_IDs.
LSET is a set of PCB_LAYER_IDs.
static LSET AllLayersMask()
LSEQ Seq(const PCB_LAYER_ID *aWishListSequence, unsigned aCount) const
Return an LSEQ from the union of this LSET and a desired sequence.
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
Handle the data for a net.
const wxString & GetNetname() const
bool m_ShowCourtyardCollisions
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 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()
void UndoRedoBlock(bool aBlock=true)
Enable/disable undo and redo operations.
PCB_LAYER_ID SelectOneLayer(PCB_LAYER_ID aDefaultLayer, LSET aNotAllowedLayersMask=LSET(), wxPoint aDlgPosition=wxDefaultPosition)
Show the dialog box for a layer selection.
PCBNEW_SETTINGS * GetPcbNewSettings() const
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.
PCB_SCREEN * GetScreen() const override
Return a pointer to a BASE_SCREEN or one of its derivatives.
virtual void SetActiveLayer(PCB_LAYER_ID aLayer)
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 STRING_UTF8_MAP *aProperties=nullptr) override
Write aBoard to a storage file in a format that this PLUGIN 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)
void Add(const LINE &aLine)
Base class for PNS router board items.
virtual NET_HANDLE Net() const
PnsKind Kind() const
Return the type (kind) of the item.
const LAYER_RANGE & Layers() const
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 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()
void UpdateSizes(const SIZES_SETTINGS &aSizes)
Applies stored settings.
const wxString & FailureReason() const
bool IsPlacingVia() const
RULE_RESOLVER * GetRuleResolver() const
ROUTING_SETTINGS & Settings()
bool FixRoute(const VECTOR2I &aP, ITEM *aItem, bool aForceFinish=false)
bool RoutingInProgress() const
RouterState GetState() const
std::optional< VECTOR2I > UndoLastSegment()
void BreakSegment(ITEM *aItem, const VECTOR2I &aP)
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)
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)
std::optional< int > PairedLayer(int aLayerId)
bool TrackWidthIsExplicit() const
void SetViaDiameter(int aDiameter)
wxString GetWidthSource() const
void SetWidthSource(const wxString &aSource)
int DiffPairViaGap() const
bool ImportSizes(PNS::SIZES_SETTINGS &aSizes, PNS::ITEM *aStartItem, PNS::NET_HANDLE aNet) override
PNS::RULE_RESOLVER * GetRuleResolver() override
void SetStartLayer(int aLayer)
void SetCommitFlags(int aCommitFlags)
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
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::vector< EDA_ITEM * > GetItemsSortedBySelectionOrder() const
int Size() const
Returns the number of selected parts.
bool Empty() const
Checks if there is anything selected.
wxString MessageTextFromValue(double aValue, bool aAddUnitLabel=true, EDA_DATA_TYPE aType=EDA_DATA_TYPE::DISTANCE)
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.
int OKOrCancelDialog(wxWindow *aParent, const wxString &aWarning, const wxString &aMessage, const wxString &aDetailedMessage, const wxString &aOKLabel, const wxString &aCancelLabel, bool *aApplyToAll)
Display a warning dialog with aMessage and returns the user response.
This file is part of the common library.
@ VIA_DIAMETER_CONSTRAINT
@ DIFF_PAIR_GAP_CONSTRAINT
#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
bool IsCopperLayer(int aLayerId)
Tests whether a layer is a copper layer.
PCB_LAYER_ID
A quick note on layer IDs:
PCB_LAYER_ID ToLAYER_ID(int aLayer)
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,...
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)
wxPoint ToWxPoint(const VECTOR2I &aSize)