25#include <unordered_map>
26#include <unordered_set>
30#include <wx/filename.h>
31#include <wx/filedlg.h>
32#include <wx/hyperlink.h>
34#include <wx/wupdlock.h>
154using namespace std::placeholders;
157#define INSPECT_DRC_ERROR_DIALOG_NAME wxT( "InspectDrcErrorDialog" )
158#define INSPECT_CLEARANCE_DIALOG_NAME wxT( "InspectClearanceDialog" )
159#define INSPECT_CONSTRAINTS_DIALOG_NAME wxT( "InspectConstraintsDialog" )
160#define FOOTPRINT_DIFF_DIALOG_NAME wxT( "FootprintDiffDialog" )
203 m_exportNetlistAction(
nullptr ),
204 m_findDialog(
nullptr ),
205 m_findByPropertiesDialog(
nullptr ),
206 m_inspectDrcErrorDlg(
nullptr ),
207 m_inspectClearanceDlg(
nullptr ),
208 m_inspectConstraintsDlg(
nullptr ),
209 m_footprintDiffDlg(
nullptr ),
210 m_boardSetupDlg(
nullptr ),
211 m_designBlocksPane(
nullptr ),
212 m_importProperties(
nullptr ),
213 m_eventCounterTimer(
nullptr )
215 m_maximizeByDefault =
true;
216 m_showBorderAndTitleBlock =
true;
217 m_SelTrackWidthBox =
nullptr;
218 m_SelViaSizeBox =
nullptr;
219 m_CurrentVariantCtrl =
nullptr;
220 m_ShowLayerManagerTools =
true;
221 m_supportsAutoSave =
true;
222 m_ProbingSchToPcb =
false;
223 m_ShowSearch =
false;
224 m_ShowNetInspector =
false;
226 m_crossProbeFlashTimer.SetOwner(
this );
231 m_ZoneFillsDirty =
true;
233 m_aboutTitle =
_HKI(
"KiCad PCB Editor" );
238 m_exportNetlistAction =
new TOOL_ACTION(
"pcbnew.EditorControl.exportNetlist",
240 _(
"Export netlist used to update schematics" ) );
245 GetGalDisplayOptions(),
249 SetBoard(
new BOARD() );
252 wxIconBundle icon_bundle;
255 icon_bundle.AddIcon( icon );
257 icon_bundle.AddIcon( icon );
259 icon_bundle.AddIcon( icon );
261 icon_bundle.AddIcon( icon );
263 icon_bundle.AddIcon( icon );
265 SetIcons( icon_bundle );
274 GetScreen()->m_Center =
false;
282 PrepareLayerIndicator(
true );
304 m_auimgr.SetManagedWindow(
this );
311#if defined( __WXOSX_MAC__ )
312 m_loadNoticeInfoBar =
new WX_INFOBAR( GetToolCanvas() );
314 m_loadNoticeInfoBar =
new WX_INFOBAR(
this, &m_auimgr );
315 m_auimgr.AddPane( m_loadNoticeInfoBar,
316 EDA_PANE().InfoBar().Name( wxS(
"LoadNoticeInfoBar" ) ).Top().Layer( 1 )
320 unsigned int auiFlags = wxAUI_MGR_DEFAULT;
321#if !defined( _WIN32 )
324 auiFlags |= wxAUI_MGR_LIVE_RESIZE;
326 m_auimgr.SetFlags( auiFlags );
329 m_auimgr.AddPane( m_tbTopMain,
EDA_PANE().HToolbar().Name( wxS(
"TopMainToolbar" ) )
331 m_auimgr.AddPane( m_tbTopAux,
EDA_PANE().HToolbar().Name( wxS(
"TopAuxToolbar" ) )
333 m_auimgr.AddPane( m_messagePanel,
EDA_PANE().Messages().Name( wxS(
"MsgPanel" ) )
334 .Bottom().Layer( 6 ) );
337 m_auimgr.AddPane( m_tbLeft,
EDA_PANE().VToolbar().Name( wxS(
"LeftToolbar" ) )
338 .Left().Layer( 3 ) );
340 m_auimgr.AddPane( m_tbRight,
EDA_PANE().VToolbar().Name( wxS(
"RightToolbar" ) )
341 .Right().Layer( 3 ) );
343 m_auimgr.AddPane( m_appearancePanel,
EDA_PANE().Name( wxS(
"LayersManager" ) )
345 .Caption(
_(
"Appearance" ) ).PaneBorder(
false )
347 .MinSize( m_appearancePanel->GetMinSize().x, FromDIP( 60 ) )
350 .BestSize( m_appearancePanel->GetMinSize().x, -1 )
352 .BestSize( m_appearancePanel->GetBestSize().x, -1 )
354 .FloatingSize( m_appearancePanel->GetBestSize() )
355 .CloseButton(
false ) );
357 m_auimgr.AddPane( m_selectionFilterPanel,
EDA_PANE().Name( wxS(
"SelectionFilter" ) )
358 .Right().Layer( 4 ).Position( 2 )
359 .Caption(
_(
"Selection Filter" ) ).PaneBorder(
false )
361 .MinSize( m_selectionFilterPanel->GetMinSize().x, -1 )
362 .BestSize( m_selectionFilterPanel->GetBestSize().x, -1 )
363 .FloatingSize( m_selectionFilterPanel->GetBestSize() )
364 .CloseButton(
false ) );
366 m_auimgr.AddPane( m_designBlocksPane,
EDA_PANE().Name( DesignBlocksPaneName() )
368 .Caption(
_(
"Design Blocks" ) )
369 .CaptionVisible(
true )
371 .TopDockable(
false )
372 .BottomDockable(
false )
374 .MinSize( FromDIP( wxSize( 240, 60 ) ) )
375 .BestSize( FromDIP( wxSize( 300, 200 ) ) )
376 .FloatingSize( FromDIP( wxSize( 800, 600 ) ) )
377 .FloatingPosition( FromDIP( wxPoint( 50, 200 ) ) )
380 m_auimgr.AddPane( m_propertiesPanel,
EDA_PANE().Name( PropertiesPaneName() )
382 .Caption(
_(
"Properties" ) ).PaneBorder(
false )
383 .MinSize( FromDIP( wxSize( 240, 60 ) ) )
384 .BestSize( FromDIP( wxSize( 300, 200 ) ) )
385 .FloatingSize( wxSize( 300, 200 ) )
386 .CloseButton(
true ) );
389 m_auimgr.AddPane( GetCanvas(),
EDA_PANE().Canvas().Name( wxS(
"DrawFrame" ) )
392 m_auimgr.AddPane( m_netInspectorPanel,
EDA_PANE().Name( NetInspectorPanelName() )
394 .Caption(
_(
"Net Inspector" ) )
396 .MinSize( FromDIP( wxSize( 240, 60 ) ) )
397 .BestSize( FromDIP( wxSize( 300, 200 ) ) )
398 .FloatingSize( wxSize( 300, 200 ) )
399 .CloseButton(
true ) );
401 m_auimgr.AddPane( m_searchPane,
EDA_PANE().Name( SearchPaneName() )
403 .Caption(
_(
"Search" ) ).PaneBorder(
false )
404 .MinSize( FromDIP( wxSize ( 180, 60 ) ) )
405 .BestSize( FromDIP( wxSize ( 180, 100 ) ) )
406 .FloatingSize( FromDIP( wxSize( 480, 200 ) ) )
407 .DestroyOnClose(
false )
408 .CloseButton(
true ) );
410 m_auimgr.AddPane( m_constraintsPanel,
EDA_PANE().Name( ConstraintsPaneName() )
412 .Caption(
_(
"Geometric Constraints" ) ).PaneBorder(
false )
413 .MinSize( FromDIP( wxSize( 360, 120 ) ) )
414 .BestSize( FromDIP( wxSize( 600, 200 ) ) )
415 .FloatingSize( FromDIP( wxSize( 600, 240 ) ) )
416 .DestroyOnClose(
false )
422 m_auimgr.GetPane(
"LayersManager" ).Show( m_ShowLayerManagerTools );
423 m_auimgr.GetPane(
"SelectionFilter" ).Show( m_ShowLayerManagerTools );
424 m_auimgr.GetPane( PropertiesPaneName() ).Show( GetPcbNewSettings()->m_AuiPanels.show_properties );
425 m_auimgr.GetPane( NetInspectorPanelName() ).Show( m_ShowNetInspector );
426 m_auimgr.GetPane( SearchPaneName() ).Show( m_ShowSearch );
427 m_auimgr.GetPane( DesignBlocksPaneName() ).Show( GetPcbNewSettings()->m_AuiPanels.design_blocks_show );
430 m_auimgr.GetPane(
"SelectionFilter" ).dock_proportion = 0;
431 FinishAUIInitialization();
435#if !defined( __WXOSX_MAC__ )
436 if( wxAuiPaneInfo& pane = m_auimgr.GetPane( wxS(
"LoadNoticeInfoBar" ) ); pane.IsOk() )
445 wxAuiPaneInfo& layersManager = m_auimgr.GetPane( wxS(
"LayersManager" ) );
448 wxAuiPaneInfo& designBlocksPane = m_auimgr.GetPane( DesignBlocksPaneName() );
454 wxAuiPaneInfo& propertiesPanel = m_auimgr.GetPane( PropertiesPaneName() );
462 wxAuiPaneInfo& searchPane = m_auimgr.GetPane( SearchPaneName() );
470 wxAuiPaneInfo& searchPane = m_auimgr.GetPane( SearchPaneName() );
478 m_layerPairSettings = std::make_unique<LAYER_PAIR_SETTINGS>();
480 m_layerPairSettings->Bind( PCB_LAYER_PAIR_PRESETS_CHANGED, [&]( wxCommandEvent& aEvt )
483 std::span<const LAYER_PAIR_INFO> newPairInfos = m_layerPairSettings->GetLayerPairs();
485 std::vector<LAYER_PAIR_INFO>{ newPairInfos.begin(), newPairInfos.end() };
488 m_layerPairSettings->Bind( PCB_CURRENT_LAYER_PAIR_CHANGED, [&]( wxCommandEvent& aEvt )
490 const LAYER_PAIR& layerPair = m_layerPairSettings->GetCurrentLayerPair();
497 PrepareLayerIndicator();
508 [
this]( wxIdleEvent& aEvent )
510 BOX2D viewport = GetCanvas()->GetView()->GetViewport();
512 if( viewport != m_lastNetnamesViewport )
515 m_lastNetnamesViewport = viewport;
530 m_toolManager->GetTool<
DRC_TOOL>()->GetDRCEngine()->InitEngine( wxFileName() );
539 m_apiHandler = std::make_unique<API_HANDLER_PCB>(
this );
544 m_apiHandlerCommon = std::make_unique<API_HANDLER_COMMON>();
548 GetCanvas()->SwitchBackend( m_canvasType );
558 if( strK2S.Find( wxT(
"pcbnew.app" ) ) != wxNOT_FOUND )
561 strK2S += wxT(
"../../" );
564 strK2S += wxT(
"Contents/MacOS/" );
567 wxFileName appK2S( strK2S, wxT(
"kicad2step" ) );
570 appK2S.SetExt( wxT(
"exe" ) );
585 m_appearancePanel->OnBoardChanged();
595 UpdateToolbarControlSizes();
603 m_eventCounterTimer =
new wxTimer(
this );
606 [&]( wxTimerEvent& aEvent )
608 GetCanvas()->m_PaintEventCounter->Show();
609 GetCanvas()->m_PaintEventCounter->Reset();
617 m_eventCounterTimer->GetId() );
619 m_eventCounterTimer->Start( 1000 );
626 DragAcceptFiles(
true );
636 wxLogTrace(
traceCrossProbeFlash,
"StartCrossProbeFlash(PCB): aborted (setting disabled) items=%zu",
651 if( item->IsMoving() )
654 "StartCrossProbeFlash(PCB): aborted (items are moving)" );
661 wxLogTrace(
traceCrossProbeFlash,
"StartCrossProbeFlash(PCB): restarting existing flash (phase=%d)",
666 wxLogTrace(
traceCrossProbeFlash,
"StartCrossProbeFlash(PCB): starting with %zu items", aItems.size() );
708 if( item->IsMoving() )
711 "Timer(PCB) phase=%d: items are moving, stopping flash",
795 drcDlg->Close(
true );
800 ruleEditorDlg->Close(
true );
826 bool show = !pane.IsShown();
841 sheet->AttachToTracker(
nullptr );
859 m_pcb->ClearProject();
867 if( aBuildConnectivity )
933 &
m_pcb->GetPageSettings(),
935 &
m_pcb->GetTitleBlock(),
936 &
m_pcb->GetProperties() );
947 if( screen !=
nullptr )
956 wxString currentVariant =
board->GetCurrentVariant();
957 wxString variantDesc =
board->GetVariantDescription( currentVariant );
1001 if( aDep == current )
1077 pcbTool->SetIsBoardEditor(
true );
1108 auto groupWithDesignBlockLink =
1111 if( aSel.Size() != 1 )
1119 return group->HasDesignBlockLink();
1124#define ENABLE( x ) ACTION_CONDITIONS().Enable( x )
1125#define CHECK( x ) ACTION_CONDITIONS().Check( x )
1179 auto enableZoneControlCondition =
1187 ENABLE( enableZoneControlCondition )
1190 ENABLE( enableZoneControlCondition )
1193 ENABLE( enableZoneControlCondition )
1196 ENABLE( enableZoneControlCondition )
1201 auto autoConstraintsCond =
1210 auto boardFlippedCond =
1216 auto layerManagerCond =
1222 auto propertiesCond =
1228 auto netInspectorCond =
1234 auto searchPaneCond =
1240 auto constraintsPaneCond =
1246 auto designBlockCond =
1252 auto highContrastCond =
1258 auto globalRatsnestCond =
1265 auto curvedRatsnestCond =
1272 auto netHighlightCond =
1277 if(
auto* view = canvas->GetView() )
1279 if(
auto* painter = view->GetPainter() )
1281 if(
auto* settings = painter->GetSettings() )
1282 return !settings->GetHighlightNetCodes().empty();
1290 auto enableNetHighlightCond =
1303 .Enable( enableNetHighlightCond ) );
1313 const auto isArcKeepCenterMode =
1320 const auto isArcKeepEndpointMode =
1327 const auto isArcKeepRadiusMode =
1338 auto isHighlightMode =
1352 auto isWalkaroundMode =
1363 auto isAutoTrackWidth =
1378 if( bci->GetNetCode() > 0 )
1386 auto connectedOrFootprintCond =
1413 static const std::vector<KICAD_T> zoneTypes = {
PCB_ZONE_T };
1437#define CURRENT_TOOL( action ) mgr->SetConditions( action, CHECK( cond.CurrentTool( action ) ) )
1452#define CURRENT_EDIT_TOOL( action ) \
1453 mgr->SetConditions( action, ACTION_CONDITIONS().Check( cond.CurrentTool( action ) ) \
1454 .Enable( isDRCIdle ) )
1518#undef CURRENT_EDIT_TOOL
1527 if( event.GetId() == wxID_EXIT )
1530 if( event.GetId() == wxID_CLOSE ||
Kiface().IsSingle() )
1542 marker->GetRCItem()->SetItems(
GetCanvas()->GetDrawingSheet() );
1544 commit.
Add( marker );
1563 && aEvent.GetId() == wxEVT_QUERY_END_SESSION
1571 if( zoneFillerTool->
IsBusy() )
1576 reporter->ShowWithEffect( wxSHOW_EFFECT_EXPAND );
1585 if( chooser && chooser->
IsModal() )
1588 if(
Kiface().IsSingle() )
1593 if( fpEditor && !fpEditor->Close() )
1599 if( fpViewer && !fpViewer->Close() )
1617 wxString msg =
_(
"Save changes to '%s' before closing?" );
1634 if( !projPath.IsEmpty() &&
Kiway().LocalHistory().HistoryExists( projPath ) )
1637 wxS(
"Discard unsaved pcb changes" ) );
1658 GetCanvas()->SetEvtHandlerEnabled(
false );
1671 drcDlg->Close(
true );
1676 ruleEditorDlg->Close(
true );
1723 if(
Prj().GetLocalSettings().ShouldAutoSave() )
1730 wxLogTrace(
traceAutoSave, wxT(
"Skipping auto-save of migrated local settings" ) );
1737 m_auimgr.GetPane( wxS(
"LayersManager" ) ).Show(
false );
1738 m_auimgr.GetPane( wxS(
"TabbedPanel" ) ).Show(
false );
1765 static std::mutex dialogMutex;
1767 std::unique_lock<std::mutex> dialogLock( dialogMutex, std::try_to_lock );
1770 if( !dialogLock.owns_lock() )
1785 if( !aInitialPage.IsEmpty() )
1799 if( !
GetBoard()->SynchronizeComponentClasses( std::unordered_set<wxString>() ) )
1803 m_infoBar->ShowMessage(
_(
"Could not load component class assignment rules" ), wxICON_WARNING,
1804 WX_INFOBAR::MESSAGE_TYPE::GENERIC );
1818 adapter->Tracker().InvalidateProjectScoped();
1838 if( (
GetBoard()->GetVisibleLayers() & maskAndPasteLayers ).
any() )
1856 if(
text->HasTextVars() )
1858 text->ClearRenderCache();
1859 text->ClearBoundingBoxCache();
1953 if( designBlocksPane.IsDocked() )
1994 if( oldLayer == aLayer && !aForceRedraw )
2019 const auto getClearanceLayerForActive =
2025 return std::nullopt;
2028 if( std::optional<int> oldClearanceLayer = getClearanceLayerForActive( oldLayer ) )
2031 if( std::optional<int> newClearanceLayer = getClearanceLayerForActive( aLayer ) )
2047 wxFileName fn(
GetBoard()->GetFileName() );
2060 layerEnum.
Map( layer,
GetBoard()->GetLayerName( layer ) );
2090 if( unresolved > 0 )
2092 wxString msg = wxString::Format( wxPLURAL(
"%d WRL 3D model could not be matched "
2093 "to an equivalent STEP model.",
2094 "%d WRL 3D models could not be matched "
2095 "to equivalent STEP models.",
2100 _(
"Show options" ), wxEmptyString );
2102 link->Bind( wxEVT_COMMAND_HYPERLINK, std::function<
void( wxHyperlinkEvent& )>(
2103 [
this]( wxHyperlinkEvent& )
2124 if( fn.FileExists() && !fn.IsFileWritable() )
2128 m_infoBar->ShowMessage(
_(
"Board file is read only." ), wxICON_WARNING,
2129 WX_INFOBAR::MESSAGE_TYPE::OUTDATED_SAVE );
2172 SetStatusText( wxEmptyString );
2221 if(
project.m_PcbLastPath[ aType ].IsEmpty() )
2222 return wxEmptyString;
2224 wxFileName absoluteFileName =
project.m_PcbLastPath[ aType ];
2227 absoluteFileName.MakeAbsolute( pcbFileName.GetPath() );
2228 return absoluteFileName.GetFullPath();
2236 wxFileName relativeFileName = aLastPath;
2239 relativeFileName.MakeRelativeTo( pcbFileName.GetPath() );
2241 if( relativeFileName.GetFullPath() !=
project.m_PcbLastPath[ aType ] )
2243 project.m_PcbLastPath[ aType ] = relativeFileName.GetFullPath();
2260 if( !GetTitle().StartsWith( wxT(
"*" ) ) )
2271 connectivity->RecalculateRatsnest(
nullptr );
2274 std::vector<MSG_PANEL_ITEM> msg_list;
2283 bool readOnly =
false;
2284 bool unsaved =
false;
2286 if( fn.IsOk() && fn.FileExists() )
2287 readOnly = !fn.IsFileWritable();
2296 title += fn.GetName();
2299 title += wxS(
" " ) +
_(
"[Read Only]" );
2302 title += wxS(
" " ) +
_(
"[Unsaved]" );
2304 title += wxT(
" \u2014 " ) +
_(
"PCB Editor" );
2343 layerEnum.
Map( layer,
GetBoard()->GetLayerName( layer ) );
2374 wxString findString;
2378 if( selection.
Size() == 1 )
2382 switch( front->
Type() )
2392 if( findString.Contains( wxT(
"\n" ) ) )
2393 findString = findString.Before(
'\n' );
2443 if(
Kiface().IsSingle() )
2455 if( !frame->IsShownOnScreen() )
2457 wxEventBlocker blocker(
this );
2462 if( !fn.FileExists() )
2466 if( !fn.FileExists() )
2477 frame->Show(
true );
2491 if( standalone == 0 )
2493 DisplayErrorMessage(
this,
_(
"Cannot update the PCB because PCB editor is opened in stand-alone mode. "
2494 "In order to create or update PCBs from schematics, you must launch the "
2495 "KiCad project manager and create a project." ) );
2499 if( standalone < 0 )
2504 std::string payload( aAnnotateMessage );
2514 if( schFrame->IsIconized() )
2515 schFrame->Iconize(
false );
2521 if( wxWindow::FindFocus() != schFrame )
2522 schFrame->SetFocus();
2528 if( payload == aAnnotateMessage )
2546 wxString extra_info = e.
Problem() + wxT(
" : " ) + e.
What() + wxT(
" at " ) + e.
Where();
2548 DisplayErrorMessage(
this,
_(
"Received an error while reading netlist. Please report this issue to "
2549 "the KiCad team using the menu Help->Report Bug." ),
2560 if( aFootprint ==
nullptr )
2599 fp_editor->Show(
true );
2610 fp_editor->Show(
true );
2626 bool aSelectedMode )
2656 if( infobar->GetMessageType() == WX_INFOBAR::MESSAGE_TYPE::DRC_RULES_ERROR )
2661 wxHyperlinkCtrl* button =
new wxHyperlinkCtrl( infobar, wxID_ANY,
_(
"Edit design rules" ), wxEmptyString );
2663 button->Bind( wxEVT_COMMAND_HYPERLINK, std::function<
void( wxHyperlinkEvent& aEvent )>(
2664 [&]( wxHyperlinkEvent& aEvent )
2669 infobar->RemoveAllButtons();
2670 infobar->AddButton( button );
2671 infobar->AddCloseButton();
2672 infobar->ShowMessage(
_(
"Could not compile custom design rules." ), wxICON_ERROR,
2673 WX_INFOBAR::MESSAGE_TYPE::DRC_RULES_ERROR );
2699 [
this](
const wxString& aProjectPath, std::vector<HISTORY_FILE_DATA>& aFileData )
2741 zoneFillerTool && zoneFillerTool->
IsBusy() )
2785 for(
const auto& [identifier, visible] : cfg->m_Plugins.actions )
2787 if( identifier == aPluginPath )
2793 return aPluginDefault;
2805 return m_auimgr.GetPane( wxS(
"LayersManager" ) ).IsShown();
2823 if( IsShownOnScreen() )
2841 _(
"Violation Report" ) );
2853 _(
"Clearance Report" ) );
2865 _(
"Constraints Report" ) );
2877 _(
"Compare Footprint with Library" ) );
2907 if( aEvent.GetId() == wxID_APPLY )
2921 dialog.ShowQuasiModal();
2934 wxLogTrace(
traceApi,
"PCB frame: EDA_EVT_PLUGIN_AVAILABILITY_CHANGED" );
2946 if( layer == curLayer )
2953 if( layer >
GetBoard()->GetCopperLayerStackMaxId() )
2969 switch( aItem->
Type() )
2990 DIALOG_TABLE_PROPERTIES dlg(
this,
static_cast<PCB_TABLE*
>( aItem ) );
2993 dlg.ShowQuasiModal();
3015 DIALOG_DIMENSION_PROPERTIES dlg(
this,
static_cast<PCB_DIMENSION_BASE*
>( aItem ) );
3031 static_cast<EDA_GROUP*
>(
static_cast<PCB_GROUP*
>( aItem ) ) );
3035 static_cast<PCB_GENERATOR*
>( aItem )->ShowPropertiesDialog(
this );
3039 m_toolManager->GetTool<DRC_TOOL>()->CrossProbe(
static_cast<PCB_MARKER*
>( aItem ) );
const KICOMMON_API wxEventTypeTag< wxCommandEvent > EDA_EVT_PLUGIN_AVAILABILITY_CHANGED
Notifies other parts of KiCad when plugin availability changes.
@ KEEP_ENDPOINTS_OR_START_DIRECTION
Whe editing endpoints, the other end remains in place.
@ KEEP_CENTER_ENDS_ADJUST_ANGLE
When editing endpoints, only the angle is adjusted.
@ KEEP_CENTER_ADJUST_ANGLE_RADIUS
When editing endpoints, the angle and radius are adjusted.
constexpr EDA_IU_SCALE pcbIUScale
KIFACE_BASE & Kiface()
Global KIFACE_BASE "get" accessor.
wxBitmap KiBitmap(BITMAPS aBitmap, int aHeightTag)
Construct a wxBitmap from an image identifier Returns the image from the active theme if the image ha...
@ NORMAL
Inactive layers are shown normally (no high-contrast mode)
constexpr BOX2I BOX2ISafe(const BOX2D &aInput)
static TOOL_ACTION toggleGrid
static TOOL_ACTION unselectAll
static TOOL_ACTION selectItem
Select an item (specified as the event parameter).
static TOOL_ACTION togglePolarCoords
static TOOL_ACTION pluginsReload
static TOOL_ACTION selectSetLasso
static TOOL_ACTION selectSetRect
Set lasso selection mode.
static TOOL_ACTION pasteSpecial
static TOOL_ACTION groupProperties
static TOOL_ACTION pointEditorArcKeepCenter
static TOOL_ACTION ungroup
static TOOL_ACTION toggleBoundingBoxes
static TOOL_ACTION pointEditorArcKeepRadius
static TOOL_ACTION showSearch
static TOOL_ACTION duplicate
static TOOL_ACTION highContrastMode
static TOOL_ACTION embeddedFiles
static TOOL_ACTION measureTool
static TOOL_ACTION doDelete
static TOOL_ACTION selectionTool
static TOOL_ACTION zoomFitScreen
static TOOL_ACTION deleteTool
static TOOL_ACTION zoomTool
static TOOL_ACTION showProperties
static TOOL_ACTION gridSetOrigin
static TOOL_ACTION toggleGridOverrides
static TOOL_ACTION selectAll
static TOOL_ACTION pointEditorArcKeepEndpoint
Manage TOOL_ACTION objects.
void SetConditions(const TOOL_ACTION &aAction, const ACTION_CONDITIONS &aConditions)
Set the conditions the UI elements for activating a specific tool action should use for determining t...
static const ADVANCED_CFG & GetCfg()
Get the singleton instance's config, which is shared by all consumers.
void OnColorThemeChanged()
Respond to change in OS's DarkMode.
APP_SETTINGS_BASE is a settings class that should be derived for each standalone KiCad application.
Handles how to draw a screen (a board, a schematic ...)
bool IsContentModified() const
const wxString & GetPageNumber() const
virtual void Push(const wxString &aMessage=wxEmptyString, int aCommitFlags=0) override
Execute the changes.
A base class derived from BOARD_ITEM for items that can be connected and have a net,...
bool m_UseConnectedTrackWidth
Handle actions specific to the board editor in PcbNew.
Abstract interface for BOARD_ITEMs capable of storing other items inside.
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
Bridges BOARD's listener stream into the generic TEXT_VAR_TRACKER.
Information pertinent to a Pcbnew printed circuit board.
bool IsElementVisible(GAL_LAYER_ID aLayer) const
Test whether a given element category is visible.
void RemoveAllListeners()
Remove all listeners.
const PAGE_INFO & GetPageSettings() const
GAL_SET GetVisibleElements() const
Return a set of all the element categories that are visible.
void InitializeClearanceCache()
Initialize the clearance cache for all board items.
void SaveToHistory(const wxString &aProjectPath, std::vector< HISTORY_FILE_DATA > &aFileData)
Serialize board into HISTORY_FILE_DATA for non-blocking history commit.
bool BuildConnectivity(PROGRESS_REPORTER *aReporter=nullptr)
Build or rebuild the board connectivity database for the board, especially the list of connected item...
void SynchronizeNetsAndNetClasses(bool aResetTrackAndViaSizes)
Copy NETCLASS info to each NET, based on NET membership in a NETCLASS.
std::weak_ptr< void > GetHistoryLifetimeToken() const
Liveness token handed to LOCAL_HISTORY::RegisterSaver so a shared autosave timer skips this board's s...
void SetProject(PROJECT *aProject, bool aReferenceOnly=false)
Link a board to a given project.
const wxString & GetFileName() const
void SetElementVisibility(GAL_LAYER_ID aLayer, bool aNewState)
Change the visibility of an element category.
void GetMsgPanelInfo(EDA_DRAW_FRAME *aFrame, std::vector< MSG_PANEL_ITEM > &aList) override
Populate aList of MSG_PANEL_ITEM objects with it's internal state for display purposes.
const LSET & GetEnabledLayers() const
A proxy function that calls the corresponding function in m_BoardSettings.
void UpdateRatsnestExclusions()
Update the visibility flags on the current unconnected ratsnest lines.
void SynchronizeTuningProfileProperties()
Ensure that all time domain properties providers are in sync with current settings.
std::shared_ptr< CONNECTIVITY_DATA > GetConnectivity() const
Return a list of missing connections between components/tracks.
constexpr BOX2< Vec > & Inflate(coord_type dx, coord_type dy)
Inflates the rectangle horizontally by dx and vertically by dy.
void SetColor(int aLayer, const COLOR4D &aColor)
COLOR4D GetColor(int aLayer) const
COMMIT & Add(EDA_ITEM *aItem, BASE_SCREEN *aScreen=nullptr)
Add a new item to the model.
Handle actions that are shared between different applications.
bool AutosaveUsesLocalHistory() const
The backup format is the single switch that selects the autosave mechanism: the incremental format re...
Dialog that offers to migrate obsolete WRL 3D model references on a loaded board to current STEP mode...
static int AutoMigrateByFilename(PCB_EDIT_FRAME *aFrame)
Silently rewrite unresolvable .wrl/.wrz references to STEP files whose filename stem matches in the s...
static int CountUnresolvedWrlReferences(PCB_EDIT_FRAME *aFrame)
Count of unique unresolvable .wrl/.wrz references on the board (deduplicated by filename).
void InitEngine(const wxFileName &aRulePath)
Initialize the DRC engine.
void SetSheetPath(const std::string &aSheetPath)
Set the sheet path displayed in the title block.
void SetSheetCount(int aSheetCount)
Change the sheet-count number displayed in the title block.
void SetVariantName(const std::string &aVariant)
Set the current variant name and description to be shown on the drawing sheet.
void SetVariantDesc(const std::string &aVariantDesc)
void SetPageNumber(const std::string &aPageNumber)
Change the page number displayed in the title block.
void SetSheetName(const std::string &aSheetName)
Set the sheet name displayed in the title block.
void SetIsFirstPage(bool aIsFirstPage)
Change if this is first page.
void AttachToTracker(TEXT_VAR_TRACKER *aTracker)
Register this proxy with aTracker as a dependent on every title-block source variable its current tem...
void SetFileName(const std::string &aFileName)
Set the file name displayed in the title block.
virtual bool doAutoSave()
This should be overridden by the derived class to handle the auto save feature.
void CommonSettingsChanged(int aFlags) override
Notification event that some of the common (suite-wide) settings have changed.
void ShowChangedLanguage() override
Redraw the menus and what not in current language.
virtual void setupUIConditions()
Setup the UI conditions for the various actions and their controls in this frame.
virtual void ThemeChanged()
Process light/dark theme change.
virtual bool CanAcceptApiCommands()
Check if this frame is ready to accept API commands.
virtual void RecreateToolbars()
virtual void OnSize(wxSizeEvent &aEvent)
virtual bool canCloseWindow(wxCloseEvent &aCloseEvent)
virtual int GetUndoCommandCount() const
bool m_isClosing
Set by the close window event handler after frames are asked if they can close.
WX_INFOBAR * GetInfoBar()
static std::vector< const PLUGIN_ACTION * > GetOrderedPluginActions(PLUGIN_ACTION_SCOPE aScope, APP_SETTINGS_BASE *aCfg)
Return ordered list of plugin actions for display in the toolbar.
static const wxString AppearancePanelName()
virtual wxString GetFullScreenDesc() const
void OnSelectGrid(wxCommandEvent &event)
Command event handler for selecting grid sizes.
void SetMsgPanel(const std::vector< MSG_PANEL_ITEM > &aList)
Clear the message panel and populates it with the contents of aList.
virtual void SwitchCanvas(EDA_DRAW_PANEL_GAL::GAL_TYPE aCanvasType)
Change the current rendering backend.
virtual void OnSize(wxSizeEvent &event) override
Recalculate the size of toolbars and display panel when the frame size changes.
virtual void OnSelectZoom(wxCommandEvent &event)
Set the zoom factor when selected by the zoom list box in the main tool bar.
GAL_DISPLAY_OPTIONS_IMPL & GetGalDisplayOptions()
Return a reference to the gal rendering options used by GAL for rendering.
virtual wxString GetScreenDesc() const
static const wxString PropertiesPaneName()
virtual void Zoom_Automatique(bool aWarpPointer)
Redraw the screen with best zoom level and the best centering that shows all the page or the board.
NET_INSPECTOR_PANEL * m_netInspectorPanel
static const wxString NetInspectorPanelName()
SEARCH_PANE * m_searchPane
static const wxString DesignBlocksPaneName()
PROPERTIES_PANEL * m_propertiesPanel
virtual void UpdateProperties()
static constexpr GAL_TYPE GAL_FALLBACK
void StopDrawing()
Prevent the GAL canvas from further drawing until it is recreated or StartDrawing() is called.
void ForceRefresh()
Force a redraw.
virtual void Refresh(bool aEraseBackground=true, const wxRect *aRect=nullptr) override
KIGFX::GAL * GetGAL() const
Return a pointer to the GAL instance used in the panel.
void RequestRefresh()
Make sure a refresh gets done on the next idle event if it hasn't already.
A base class for most all the KiCad significant classes used in schematics and boards.
KICAD_T Type() const
Returns the type of object.
Specialization of the wxAuiPaneInfo class for KiCad panels.
A mix-in class (via multiple inheritance) that handles texts such as labels, parts,...
SELECTION_CONDITION NoActiveTool()
Create a functor testing if there are no tools active in the frame.
SELECTION_CONDITION BoundingBoxes()
SELECTION_CONDITION RedoAvailable()
Create a functor that tests if there are any items in the redo queue.
SELECTION_CONDITION CurrentTool(const TOOL_ACTION &aTool)
Create a functor testing if the specified tool is the current active tool in the frame.
SELECTION_CONDITION GridVisible()
Create a functor testing if the grid is visible in a frame.
SELECTION_CONDITION PolarCoordinates()
Create a functor testing if polar coordinates are current being used.
SELECTION_CONDITION GridOverrides()
Create a functor testing if the grid overrides wires is enabled in a frame.
ENUM_MAP & Map(T aValue, const wxString &aName)
static ENUM_MAP< T > & Instance()
ENUM_MAP & Undefined(T aValue)
void ReadWindowSettings(WINDOW_SETTINGS &aCfg)
Read GAL config options from application-level config.
bool Contains(GAL_LAYER_ID aPos)
Hold an error message and may be used when throwing exceptions containing meaningful error messages.
virtual const wxString What() const
A composite of Problem() and Where()
virtual const wxString Problem() const
what was the problem?
virtual const wxString Where() const
where did the Problem() occur?
void RegisterHandler(API_HANDLER *aHandler)
Adds a new request handler to the server.
void DeregisterHandler(API_HANDLER *aHandler)
Read the new s-expression based KiCad netlist format.
virtual void LoadNetlist() override
Load the contents of the netlist file into aNetlist.
APP_SETTINGS_BASE * KifaceSettings() const
A color representation with 4 components: red, green, blue, alpha.
void SetGridColor(const COLOR4D &aGridColor)
Set the grid color.
virtual void Update(const VIEW_ITEM *aItem, int aUpdateFlags) const override
For dynamic VIEWs, inform the associated VIEW that the graphical representation of this item has chan...
An abstract base class for deriving all objects that can be added to a VIEW.
bool IsBOARD_ITEM() const
Hold a (potentially large) number of VIEW_ITEMs and renders them on a graphics device provided by the...
BOX2D GetViewport() const
Return the current viewport visible area rectangle.
virtual void Update(const VIEW_ITEM *aItem, int aUpdateFlags) const
For dynamic VIEWs, inform the associated VIEW that the graphical representation of this item has chan...
void SetLayerVisible(int aLayer, bool aVisible=true)
Control the visibility of a particular layer.
void UpdateAllItems(int aUpdateFlags)
Update all items in the view according to the given flags.
void MarkTargetDirty(int aTarget)
Set or clear target 'dirty' flag.
void UpdateAllItemsConditionally(int aUpdateFlags, std::function< bool(VIEW_ITEM *)> aCondition)
Update items in the view according to the given flags and condition.
An implementation of class VIEW_CONTROLS for wxWidgets library.
std::unique_ptr< PROF_COUNTER > m_MotionEventCounter
A wxFrame capable of the OpenProjectFiles function, meaning it can load a portion of a KiCad project.
virtual bool OpenProjectFiles(const std::vector< wxString > &aFileList, int aCtl=0)
Open a project or set of files given by aFileList.
void OnSockRequestServer(wxSocketEvent &evt)
void OnSockRequest(wxSocketEvent &evt)
bool IsModal() const override
Return true if the frame is shown in our modal mode and false if the frame is shown as an usual frame...
A minimalistic software bus for communications between various DLLs/DSOs (DSOs) within the same KiCad...
virtual KIWAY_PLAYER * Player(FRAME_T aFrameType, bool doCreate=true, wxTopLevelWindow *aParent=nullptr)
Return the KIWAY_PLAYER* given a FRAME_T.
virtual void ExpressMail(FRAME_T aDestination, MAIL_T aCommand, std::string &aPayload, wxWindow *aSource=nullptr, bool aFromOtherThread=false)
Send aPayload to aDestination from aSource.
LOCAL_HISTORY & LocalHistory()
Return the LOCAL_HISTORY associated with this KIWAY.
virtual void CommonSettingsChanged(int aFlags=0)
Call CommonSettingsChanged() on all KIWAY_PLAYERs.
PCB_LAYER_ID GetLayerA() const
PCB_LAYER_ID GetLayerB() const
bool CommitDuplicateOfLastSave(const wxString &aProjectPath, const wxString &aFileType, const wxString &aMessage)
Create a new commit duplicating the tree pointed to by Last_Save_<fileType> and move the Last_Save_<f...
void NoteFileChange(const wxString &aFile)
Record that a file has been modified and should be included in the next snapshot.
void RegisterSaver(const void *aSaverObject, const std::function< void(const wxString &, std::vector< HISTORY_FILE_DATA > &)> &aSaver, const std::weak_ptr< void > &aLifetime={})
Register a saver callback invoked during autosave history commits.
void UnregisterSaver(const void *aSaverObject)
Unregister a previously registered saver callback.
void RemoveAutosaveFiles(const wxString &aProjectPath) const
Remove every autosave file under the project at aProjectPath regardless of which source it shadowed.
LSET is a set of PCB_LAYER_IDs.
LSEQ Seq(const LSEQ &aSequence) const
Return an LSEQ from the union of this LSET and a desired sequence.
static const LSET & AllLayersMask()
static wxString Name(PCB_LAYER_ID aLayerId)
Return the fixed name association with aLayerId.
Store information read from a netlist along with the flags used to update the NETLIST in the BOARD.
void SetInitialPage(const wxString &aPage, const wxString &aParentPage=wxEmptyString)
Describe the page size and margins of a paper page on which to eventually print or plot.
Dockable panel listing the board's geometric constraints (issue #2329).
DISPLAY_OPTIONS m_Display
EDA_ANGLE m_RotationAngle
ARC_EDIT_MODE m_ArcEditMode
Gather all the actions that are shared by tools.
static TOOL_ACTION showConstraintsPanel
Toggle the docked constraints pane (board editor).
static TOOL_ACTION drawRuleArea
static TOOL_ACTION microwaveCreateGap
static TOOL_ACTION drawBezier
static TOOL_ACTION placeText
static TOOL_ACTION drawOrthogonalDimension
static TOOL_ACTION drawRectangle
static TOOL_ACTION padDisplayMode
static TOOL_ACTION placeReferenceImage
static TOOL_ACTION showRatsnest
static TOOL_ACTION showLayersManager
static TOOL_ACTION toggleNetHighlight
static TOOL_ACTION addConstraintVertical
static TOOL_ACTION saveSelectionAsDesignBlock
static TOOL_ACTION drawCircle
static TOOL_ACTION mirrorH
Mirroring of selected items.
static TOOL_ACTION routeDiffPair
Activation of the Push and Shove router (differential pair mode)
static TOOL_ACTION tuneDiffPair
static TOOL_ACTION saveToLinkedDesignBlock
static TOOL_ACTION layerChanged
static TOOL_ACTION grabUnconnected
Select and move nearest unconnected footprint from ratsnest of selection.
static TOOL_ACTION ddAppendBoard
Drag and drop.
static TOOL_ACTION drawEllipseArc
static TOOL_ACTION highlightNet
static TOOL_ACTION autoTrackWidth
static TOOL_ACTION drawTable
static TOOL_ACTION drawTextBox
static TOOL_ACTION addConstraintPerpendicular
static TOOL_ACTION routerHighlightMode
Actions to enable switching modes via hotkey assignments.
static TOOL_ACTION routerWalkaroundMode
static TOOL_ACTION routerShoveMode
static TOOL_ACTION drawZoneCutout
static TOOL_ACTION drawPolygon
static TOOL_ACTION hideNetInRatsnest
static TOOL_ACTION zoneDisplayFilled
static TOOL_ACTION showNetInRatsnest
static TOOL_ACTION drawRadialDimension
static TOOL_ACTION tuneSingleTrack
static TOOL_ACTION viaDisplayMode
static TOOL_ACTION drawLeader
static TOOL_ACTION addConstraintAngular
static TOOL_ACTION addConstraintArcAngle
static TOOL_ACTION angleSnapModeChanged
Notification event when angle mode changes.
static TOOL_ACTION saveBoardAsDesignBlock
static TOOL_ACTION drillOrigin
static TOOL_ACTION tuneSkew
static TOOL_ACTION addConstraintHorizontal
static TOOL_ACTION trackDisplayMode
static TOOL_ACTION showNetInspector
static TOOL_ACTION microwaveCreateStubArc
static TOOL_ACTION drawEllipse
static TOOL_ACTION zoneDisplayTriangulated
static TOOL_ACTION placeDesignBlock
static TOOL_ACTION selectUnconnected
Select unconnected footprints from ratsnest of selection.
static TOOL_ACTION zoneDisplayFractured
static TOOL_ACTION addConstraintCollinear
static TOOL_ACTION drawVia
static TOOL_ACTION drawArc
static TOOL_ACTION zoneDuplicate
Duplicate zone onto another layer.
static TOOL_ACTION graphicsOutlines
Display footprint graphics as outlines.
static TOOL_ACTION addConstraintEqualRadius
static TOOL_ACTION addConstraintTangent
static TOOL_ACTION drawSimilarZone
static TOOL_ACTION showDesignBlockPanel
static TOOL_ACTION drawCenterDimension
static TOOL_ACTION selectSameSheet
Select all components on the same sheet as the selected footprint.
static TOOL_ACTION microwaveCreateStub
static TOOL_ACTION selectNet
Select all connections belonging to a single net.
static TOOL_ACTION ddImportGraphics
static TOOL_ACTION microwaveCreateLine
static TOOL_ACTION addConstraintFixedLength
static TOOL_ACTION flipBoard
static TOOL_ACTION zoneDisplayOutline
static TOOL_ACTION ratsnestLineMode
static TOOL_ACTION toggleAutoConstraints
Toggle authoring constraints automatically while drawing.
static TOOL_ACTION textOutlines
Display texts as lines.
static TOOL_ACTION highlightNetSelection
static TOOL_ACTION microwaveCreateFunctionShape
static TOOL_ACTION placePoint
static TOOL_ACTION zoneMerge
static TOOL_ACTION addConstraintSymmetric
static TOOL_ACTION addConstraintFixedPosition
Ground a point, and the cluster holding it.
static TOOL_ACTION mirrorV
static TOOL_ACTION unlock
static TOOL_ACTION addConstraintPointOnLine
static TOOL_ACTION placeFootprint
static TOOL_ACTION routeSingleTrack
Activation of the Push and Shove router.
static TOOL_ACTION createArray
Tool for creating an array of objects.
static TOOL_ACTION showDiffPhaseSkew
Display of phase skew between differential pair tracks.
static TOOL_ACTION deselectNet
Remove all connections belonging to a single net from the active selection.
static TOOL_ACTION addConstraintCoincident
static TOOL_ACTION drawLine
static TOOL_ACTION placeLinkedDesignBlock
static TOOL_ACTION localRatsnestTool
static TOOL_ACTION rotateCw
Rotation of selected objects.
static TOOL_ACTION rotateCcw
static TOOL_ACTION addConstraintParallel
static TOOL_ACTION drawAlignedDimension
static TOOL_ACTION addConstraintFixedRadius
static TOOL_ACTION addConstraintEqualLength
static TOOL_ACTION drawZone
static TOOL_ACTION selectOnSchematic
Select symbols/pins on schematic corresponding to selected footprints/pads.
static TOOL_ACTION addConstraintMidpoint
static TOOL_ACTION addConstraintConcentric
Common, abstract interface for edit frames.
void ShowTextPropertiesDialog(PCB_TEXT *aText)
COLOR_SETTINGS * GetColorSettings(bool aForceRefresh=false) const override
Helper to retrieve the current color settings.
void doCloseWindow() override
int ShowTextBoxPropertiesDialog(PCB_TEXTBOX *aTextBox)
void unitsChangeRefresh() override
Called when when the units setting has changed to allow for any derived classes to handle refreshing ...
bool UndoRedoBlocked() const
Check if the undo and redo operations are currently blocked.
PCB_LAYER_BOX_SELECTOR * m_SelLayerBox
virtual void SetBoard(BOARD *aBoard, PROGRESS_REPORTER *aReporter=nullptr) override
Set the #m_Pcb member in such as way as to ensure deleting any previous BOARD.
std::unique_ptr< LAYER_PAIR_SETTINGS > m_layerPairSettings
APPEARANCE_CONTROLS * GetAppearancePanel()
APPEARANCE_CONTROLS * m_appearancePanel
void ShowReferenceImagePropertiesDialog(BOARD_ITEM *aBitmap)
PANEL_SELECTION_FILTER * m_selectionFilterPanel
void ShowBarcodePropertiesDialog(PCB_BARCODE *aText)
void ShowGraphicItemPropertiesDialog(PCB_SHAPE *aShape)
void ActivateGalCanvas() override
Set the #m_Pcb member in such as way as to ensure deleting any previous BOARD.
Base PCB main window class for Pcbnew, Gerbview, and CvPcb footprint viewer.
void ShowPadPropertiesDialog(PAD *aPad)
const PCB_DISPLAY_OPTIONS & GetDisplayOptions() const
Display options control the way tracks, vias, outlines and other things are shown (for instance solid...
void LoadSettings(APP_SETTINGS_BASE *aCfg) override
Load common frame parameters from a configuration file.
PCBNEW_SETTINGS * GetPcbNewSettings() const
virtual void SetActiveLayer(PCB_LAYER_ID aLayer)
void OnModify() override
Must be called after a change in order to set the "modify" flag and update other data structures and ...
virtual MAGNETIC_SETTINGS * GetMagneticItemsSettings()
EDA_ITEM * ResolveItem(const KIID &aId, bool aAllowNullptrReturn=false) const override
Fetch an item by KIID.
PCB_DRAW_PANEL_GAL * GetCanvas() const override
Return a pointer to GAL-based canvas of given EDA draw frame.
virtual PCB_LAYER_ID GetActiveLayer() const
virtual void SetPageSettings(const PAGE_INFO &aPageSettings) override
void SaveSettings(APP_SETTINGS_BASE *aCfg) override
Save common frame parameters to a configuration data file.
PCB_SCREEN * GetScreen() const override
Return a pointer to a BASE_SCREEN or one of its derivatives.
virtual BOARD_DESIGN_SETTINGS & GetDesignSettings() const
Return the BOARD_DESIGN_SETTINGS for the open project.
virtual void Update3DView(bool aMarkDirty, bool aRefresh, const wxString *aTitle=nullptr)
Update the 3D view, if the viewer is opened by this frame.
Handle actions that are shared between different frames in PcbNew.
Handle design block actions in the PCB editor.
bool m_FlipBoardView
true if the board is flipped to show the mirrored view
double m_ZoneOpacity
Opacity override for filled zone areas.
HIGH_CONTRAST_MODE m_ContrastModeDisplay
How inactive layers are displayed.
void UpdateColors()
Update the color settings in the painter and GAL.
DS_PROXY_VIEW_ITEM * GetDrawingSheet() const
void SetDrawingSheet(DS_PROXY_VIEW_ITEM *aDrawingSheet)
Sets (or updates) drawing-sheet used by the draw panel.
virtual KIGFX::PCB_VIEW * GetView() const override
Return a pointer to the #VIEW instance used in the panel.
void SyncLayersVisibility(const BOARD *aBoard)
Update "visibility" property of each layer of a given BOARD.
virtual void SetHighContrastLayer(int aLayer) override
SetHighContrastLayer(), with some extra smarts for PCB.
void RedrawRatsnest()
Return the bounding box of the view that should be used if model is not valid.
Group generic conditions for PCB editor states.
SELECTION_CONDITION PadFillDisplay()
Create a functor that tests if the frame fills the pads.
SELECTION_CONDITION TrackFillDisplay()
Create a functor that tests if the frame fills tracks.
SELECTION_CONDITION HasItems()
Create a functor that tests if there are items in the board.
SELECTION_CONDITION GraphicsFillDisplay()
Create a functor that tests if the frame fills graphics items.
SELECTION_CONDITION ZoneDisplayMode(ZONE_DISPLAY_MODE aMode)
Create a functor that tests the current zone display mode in the frame.
SELECTION_CONDITION ViaFillDisplay()
Create a functor that tests if the frame fills vias.
SELECTION_CONDITION TextFillDisplay()
Create a functor that tests if the frame fills text items.
The main frame for Pcbnew.
void HardRedraw() override
Rebuild the GAL and redraws the screen.
void OnDisplayOptionsChanged() override
std::size_t m_textVarListenerHandle
Reactive text-var invalidation listener state.
static bool GetPluginActionButtonVisible(const wxString &aPluginPath, bool aPluginDefault)
Return true if button visibility action plugin setting was set to true or it is unset and plugin defa...
void OnEditItemRequest(BOARD_ITEM *aItem) override
Install the corresponding dialog editor for the given item.
void SetLastPath(LAST_PATH_TYPE aType, const wxString &aLastPath)
Set the path of the last file successfully read.
bool interactiveOperationInProgress() const
Return true when an interactive tool operation (routing, dragging, point editing, zone filling,...
int m_crossProbeFlashPhase
Phase counter.
void FindNext(bool reverse=false)
Find the next item using our existing search parameters.
void ResolveDRCExclusions(bool aCreateMarkers)
If aCreateMarkers then create DRC exclusion markers from the serialized data.
void SetBoard(BOARD *aBoard, PROGRESS_REPORTER *aReporter=nullptr) override
Set the #m_Pcb member in such as way as to ensure deleting any previous BOARD.
void SetActiveLayer(PCB_LAYER_ID aLayer) override
Change the currently active layer to aLayer and also update the APPEARANCE_CONTROLS.
void OnModify() override
Must be called after a board change to set the modified flag.
void ThemeChanged() override
Called when light/dark theme is changed.
void SwitchLayer(PCB_LAYER_ID layer) override
Change the active layer in the editor.
wxTimer m_crossProbeFlashTimer
Timer to toggle selection visibility for flash.
void StartCrossProbeFlash(const std::vector< BOARD_ITEM * > &aItems)
void OnCrossProbeFlashTimer(wxTimerEvent &aEvent)
std::unique_ptr< API_HANDLER_PCB > m_apiHandler
void setupUIConditions() override
Setup the UI conditions for the various actions and their controls in this frame.
void UpdateVariantSelectionCtrl()
Update the variant selection dropdown with the current board's variant names.
bool DoAutoSave()
Perform auto save when the board has been modified and not saved within the auto save interval.
void SetElementVisibility(GAL_LAYER_ID aElement, bool aNewState)
Change the visibility of an element category.
DIALOG_BOOK_REPORTER * m_inspectDrcErrorDlg
void OnClearFileHistory(wxCommandEvent &aEvent)
std::unique_ptr< GRID_HELPER > MakeGridHelper() override
virtual ~PCB_EDIT_FRAME()
void SwitchCanvas(EDA_DRAW_PANEL_GAL::GAL_TYPE aCanvasType) override
Switch currently used canvas (Cairo / OpenGL).
void CommonSettingsChanged(int aFlags) override
Called after the preferences dialog is run.
void ShowFindByPropertiesDialog()
Show the Find by Properties dialog.
BOARD_ITEM_CONTAINER * GetModel() const override
DIALOG_BOOK_REPORTER * GetInspectDrcErrorDialog()
void ShowTargetOptionsDialog(PCB_TARGET *aTarget)
void ShowBoardSetupDialog(const wxString &aInitialPage=wxEmptyString, wxWindow *aParent=nullptr)
DIALOG_FIND * m_findDialog
DIALOG_BOOK_REPORTER * m_inspectConstraintsDlg
void SetPageSettings(const PAGE_INFO &aPageSettings) override
bool IsElementVisible(GAL_LAYER_ID aElement) const
Test whether a given element category is visible.
bool CanAcceptApiCommands() override
Check if this frame is ready to accept API commands.
void UpdateUserInterface()
Update the layer manager and other widgets from the board setup (layer and items visibility,...
void SetGridColor(const COLOR4D &aColor) override
void ProjectChanged() override
Notification event that the project has changed.
static const wxString ConstraintsPaneName()
wxString GetLastPath(LAST_PATH_TYPE aType)
Get the last path for a particular type.
void ShowChangedLanguage() override
Redraw the menus and what not in current language.
void doCloseWindow() override
WX_INFOBAR * m_loadNoticeInfoBar
Secondary infobar that stacks above the main one; reserved for load-time notices (currently the WRL -...
void ReCreateLayerBox(bool aForceResizeToolbar=true)
Recreate the layer box by clearing the old list and building a new one from the new layer names and c...
void SaveProjectLocalSettings() override
Save changes to the project local settings.
static std::vector< const PLUGIN_ACTION * > GetOrderedPluginActions()
Return ordered list of plugins in sequence in which they should appear on toolbar or in settings.
void detachTextVarTracker()
Drop every cached reference into the current BOARD's text-var tracker.
void onPluginAvailabilityChanged(wxCommandEvent &aEvt)
void PrepareLayerIndicator(bool aForceRebuild=false)
void ShowFindDialog()
Show the Find dialog.
void onSize(wxSizeEvent &aEvent)
int ShowExchangeFootprintsDialog(FOOTPRINT *aFootprint, bool aUpdateMode, bool aSelectedMode)
int TestStandalone()
Test if standalone mode.
void ShowFootprintPropertiesDialog(FOOTPRINT *aFootprint)
void UpdateProperties() override
bool canRunAutoSave() const override
Return true when it is safe to run an autosave snapshot right now.
PANEL_CONSTRAINTS * m_constraintsPanel
Dockable geometric-constraint list (#2329).
bool IsContentModified() const override
Get if the current board has been modified but not saved.
bool Clear_Pcb(bool doAskAboutUnsavedChanges, bool aFinal=false)
Delete all and reinitialize the current board.
bool m_crossProbeFlashing
Currently flashing guard.
TOOL_ACTION * m_exportNetlistAction
The export board netlist tool action object.
void OnBoardLoaded()
Update the state of the GUI after a new board is loaded or created.
void ReCreateAuxiliaryToolbar() override
void Edit_Zone_Params(ZONE *zone_container)
Edit params (layer, clearance, ...) for a zone outline.
bool FetchNetlistFromSchematic(NETLIST &aNetlist, const wxString &aAnnotateMessage)
wxString GetCurrentFileName() const override
Get the full filename + path of the currently opened file in the frame.
void LoadSettings(APP_SETTINGS_BASE *aCfg) override
Load common frame parameters from a configuration file.
DIALOG_BOOK_REPORTER * GetFootprintDiffDialog()
EDA_ANGLE GetRotationAngle() const override
Return the angle used for rotate operations.
void ToggleConstraintsPanel()
Show/hide the dockable geometric-constraint list pane, refreshing it when shown (#2329).
COLOR4D GetGridColor() override
std::vector< KIID > m_crossProbeFlashItems
Items to flash (by UUID)
void UpdateTitle()
Set the main window title bar text.
DIALOG_BOOK_REPORTER * m_footprintDiffDlg
void ActivateGalCanvas() override
Set the #m_Pcb member in such as way as to ensure deleting any previous BOARD.
void onVariantSelected(wxCommandEvent &aEvent)
Event handler for variant selection changes in the toolbar.
SELECTION & GetCurrentSelection() override
Get the current selection from the canvas area.
void OnQuit(wxCommandEvent &event)
void NotifyFindByPropertiesDialog()
Notify the Find by Properties dialog that the selection has changed.
void onCloseModelessBookReporterDialogs(wxCommandEvent &aEvent)
PCB_DESIGN_BLOCK_PANE * m_designBlocksPane
bool canCloseWindow(wxCloseEvent &aCloseEvent) override
DIALOG_BOARD_SETUP * m_boardSetupDlg
DIALOG_BOOK_REPORTER * GetInspectClearanceDialog()
wxTimer * m_eventCounterTimer
void Tracks_and_Vias_Size_Event(wxCommandEvent &event)
void SaveSettings(APP_SETTINGS_BASE *aCfg) override
Save common frame parameters to a configuration data file.
bool m_ShowLayerManagerTools
static const wxString SearchPaneName()
DIALOG_FIND_BY_PROPERTIES * m_findByPropertiesDialog
DIALOG_BOOK_REPORTER * m_inspectClearanceDlg
void OnFileHistory(wxCommandEvent &event)
DIALOG_BOOK_REPORTER * GetInspectConstraintsDialog()
class TEXT_VAR_TRACKER * m_textVarListenerTracker
A set of BOARD_ITEMs (i.e., without duplicates).
PCB net inspection panel.
Tool that displays edit points allowing to modify items by dragging the points.
PCB_LAYER_ID m_Route_Layer_TOP
PCB_LAYER_ID m_Route_Layer_BOTTOM
static bool HasUnlockedItems(const SELECTION &aSelection)
Test if any selected items are unlocked.
static bool HasLockedItems(const SELECTION &aSelection)
Test if any selected items are locked.
virtual COMMON_SETTINGS * GetCommonSettings() const
KICAD_API_SERVER & GetApiServer()
virtual const wxString & GetExecutablePath() const
void Show(std::ostream &aStream=std::cerr)
A progress reporter interface for use in multi-threaded environments.
The backing store for a PROJECT, in JSON format.
std::vector< LAYER_PAIR_INFO > m_LayerPairInfos
List of stored 3D viewports (view matrixes)
The project local settings are things that are attached to a particular project, but also might be pa...
wxString m_ActiveLayerPreset
The name of a LAYER_PRESET that is currently activated (or blank if none)
PCB_LAYER_ID m_ActiveLayer
The current (active) board layer for editing.
virtual const wxString GetProjectPath() const
Return the full path of the project.
virtual PROJECT_LOCAL_SETTINGS & GetLocalSettings() const
void IncrementNetclassesTicker()
virtual PROJECT_FILE & GetProjectFile() const
void IncrementTextVarsTicker()
static SELECTION_CONDITION HasTypes(std::vector< KICAD_T > aTypes)
Create a functor that tests if among the selected items there is at least one of a given types.
static bool NotEmpty(const SELECTION &aSelection)
Test if there are any items selected.
static SELECTION_CONDITION MoreThan(int aNumber)
Create a functor that tests if the number of selected items is greater than the value given as parame...
static bool Idle(const SELECTION &aSelection)
Test if there no items selected or being edited.
static SELECTION_CONDITION Count(int aNumber)
Create a functor that tests if the number of selected items is equal to the value given as parameter.
static bool ShowAlways(const SELECTION &aSelection)
The default condition function (always returns true).
static SELECTION_CONDITION OnlyTypes(std::vector< KICAD_T > aTypes)
Create a functor that tests if the selected items are only of given types.
int Size() const
Returns the number of selected parts.
Is a LINE_READER that reads from a multiline 8 bit wide std::string.
Coordinates the dependency index with change notifications.
ListenerHandle AddInvalidateListener(InvalidateCallback aCallback)
Register a listener that fires for every invalidation.
static constexpr ListenerHandle INVALID_LISTENER
A modified version of the wxInfoBar class that allows us to:
A type-safe container of any type.
bool HandleUnsavedChanges(wxWindow *aParent, const wxString &aMessage, const std::function< bool()> &aSaveFunction)
Display a dialog with Save, Cancel and Discard Changes buttons.
void DisplayErrorMessage(wxWindow *aParent, const wxString &aText, const wxString &aExtraInfo)
Display an error message with aMessage.
int GetLastUnsavedChangesResponse()
Return the result code from the last call to HandleUnsavedChanges(): wxID_YES, wxID_NO or wxID_CANCEL...
This file is part of the common library.
#define DIALOG_DRC_WINDOW_NAME
#define DIALOG_DRC_RULE_EDITOR_WINDOW_NAME
Declaration of the eda_3d_viewer class.
static constexpr EDA_ANGLE ANGLE_90
#define KICAD_DEFAULT_DRAWFRAME_STYLE
#define PCB_EDIT_FRAME_NAME
EVT_MENU_RANGE(ID_GERBVIEW_DRILL_FILE1, ID_GERBVIEW_DRILL_FILEMAX, GERBVIEW_FRAME::OnDrlFileHistory) EVT_MENU_RANGE(ID_GERBVIEW_ZIP_FILE1
@ FRAME_FOOTPRINT_CHOOSER
a few functions useful in geometry calculations.
static const std::string LegacySchematicFileExtension
static const std::string LegacyPcbFileExtension
static const std::string KiCadSchematicFileExtension
static const std::string SVGFileExtension
static const std::string KiCadPcbFileExtension
const wxChar *const traceAutoSave
Flag to enable auto save feature debug tracing.
const wxChar *const traceCrossProbeFlash
Flag to enable debug output for cross-probe flash operations.
const wxChar *const traceApi
Flag to enable debug output related to the IPC API and its plugin system.
@ ID_EDA_SOCKET_EVENT_SERV
EVT_MENU(ID_COMPARE_PROJECT_BRANCHES, KICAD_MANAGER_FRAME::OnCompareProjectBranches) KICAD_MANAGER_FRAME
int GetNetnameLayer(int aLayer)
Return a netname layer corresponding to the given layer.
bool IsCopperLayer(int aLayerId)
Test whether a layer is a copper layer.
GAL_LAYER_ID
GAL layers are "virtual" layers, i.e.
@ LAYER_ZONES
Control for copper zone opacity/visibility (color ignored).
#define CLEARANCE_LAYER_FOR(boardLayer)
PCB_LAYER_ID
A quick note on layer IDs:
#define MAIL_SCH_GET_NETLIST_CANCELLED
Reply payload for MAIL_SCH_GET_NETLIST when the user deliberately aborts netlist generation (for exam...
@ REPAINT
Item needs to be redrawn.
@ GEOMETRY
Position or shape has changed.
@ ALL
All except INITIAL_ADD.
@ TARGET_NONCACHED
Auxiliary rendering target (noncached)
@ RM_MarkObstacles
Ignore collisions, mark obstacles.
@ RM_Walkaround
Only walk around.
BARCODE class definition.
#define FOOTPRINT_DIFF_DIALOG_NAME
EVT_MENU_RANGE(ID_POPUP_PCB_SELECT_WIDTH_START_RANGE, ID_POPUP_PCB_SELECT_WIDTH_END_RANGE, PCB_EDIT_FRAME::Tracks_and_Vias_Size_Event) EVT_UPDATE_UI_RANGE(ID_POPUP_PCB_SELECT_WIDTH1
ID_POPUP_PCB_SELECT_WIDTH8
#define INSPECT_CLEARANCE_DIALOG_NAME
PCB_EDIT_FRAME::OnUpdateSelectTrackWidth EVT_UPDATE_UI_RANGE(ID_POPUP_PCB_SELECT_VIASIZE1, ID_POPUP_PCB_SELECT_VIASIZE8, PCB_EDIT_FRAME::OnUpdateSelectViaSize) PCB_EDIT_FRAME
#define INSPECT_DRC_ERROR_DIALOG_NAME
#define INSPECT_CONSTRAINTS_DIALOG_NAME
@ ID_POPUP_PCB_SELECT_WIDTH_START_RANGE
@ ID_POPUP_PCB_SELECT_WIDTH1
@ ID_POPUP_PCB_SELECT_VIASIZE8
@ ID_AUX_TOOLBAR_PCB_VARIANT_SELECT
@ ID_AUX_TOOLBAR_PCB_VIA_SIZE
@ ID_POPUP_PCB_SELECT_WIDTH_END_RANGE
@ ID_POPUP_PCB_SELECT_VIASIZE1
@ ID_AUX_TOOLBAR_PCB_TRACK_WIDTH
PGM_BASE & Pgm()
The global program "get" accessor.
LAST_PATH_TYPE
For storing PcbNew MRU paths of various types.
#define CURRENT_TOOL(action)
std::function< bool(const SELECTION &)> SELECTION_CONDITION
Functor type that checks a specific condition for selected items.
T * GetToolbarSettings(const wxString &aFilename)
T * GetAppSettings(const char *aFilename)
KIWAY Kiway(KFCTL_STANDALONE)
wxString UnescapeString(const wxString &aSource)
#define TO_UTF8(wxstring)
Convert a wxString to a UTF8 encoded C string for all wxWidgets build modes.
A min-max version of BOX2 for fast intersection checking.
bool Intersects(const BOX2I_MINMAX &aOther) const
A filename or source description, a problem input line, a line number, a byte offset,...
float properties_splitter
int properties_panel_width
int design_blocks_panel_float_height
bool appearance_expand_layer_display
bool appearance_expand_net_display
int design_blocks_panel_docked_width
int search_panel_dock_direction
int design_blocks_panel_float_width
TRACK_CLEARANCE_MODE m_TrackClearance
bool m_DisplayRatsnestLinesCurved
bool m_ShowGlobalRatsnest
Identifies a single resolvable source that a text item's ${...} reference depends on.
IbisParser parser & reporter
wxLogTrace helper definitions.
@ PCB_SHAPE_T
class PCB_SHAPE, a segment not on copper layers
@ PCB_DIM_ORTHOGONAL_T
class PCB_DIM_ORTHOGONAL, a linear dimension constrained to x/y
@ PCB_DIM_LEADER_T
class PCB_DIM_LEADER, a leader dimension (graphic item)
@ PCB_GENERATOR_T
class PCB_GENERATOR, generator on a layer
@ PCB_VIA_T
class PCB_VIA, a via (like a track segment on a copper layer)
@ PCB_DIM_CENTER_T
class PCB_DIM_CENTER, a center point marking (graphic item)
@ PCB_GROUP_T
class PCB_GROUP, a set of BOARD_ITEMs
@ PCB_TEXTBOX_T
class PCB_TEXTBOX, wrapped text on a layer
@ PCB_ZONE_T
class ZONE, a copper pour area
@ PCB_TEXT_T
class PCB_TEXT, text on a layer
@ PCB_REFERENCE_IMAGE_T
class PCB_REFERENCE_IMAGE, bitmap on a layer
@ PCB_FIELD_T
class PCB_FIELD, text associated with a footprint property
@ PCB_MARKER_T
class PCB_MARKER, a marker used to show something
@ PCB_BARCODE_T
class PCB_BARCODE, a barcode (graphic item)
@ PCB_TARGET_T
class PCB_TARGET, a target (graphic item)
@ PCB_FOOTPRINT_T
class FOOTPRINT, a footprint
@ PCB_DIM_ALIGNED_T
class PCB_DIM_ALIGNED, a linear dimension (graphic item)
@ PCB_PAD_T
class PAD, a pad in a footprint
@ PCB_ARC_T
class PCB_ARC, an arc track segment on a copper layer
@ PCB_TABLE_T
class PCB_TABLE, table of PCB_TABLECELLs
@ PCB_POINT_T
class PCB_POINT, a 0-dimensional point
@ PCB_TRACE_T
class PCB_TRACK, a track segment (segment on a copper layer)
@ PCB_DIM_RADIAL_T
class PCB_DIM_RADIAL, a radius or diameter dimension
Definition of file extensions used in Kicad.
void SetAuiPaneSize(wxAuiManager &aManager, wxAuiPaneInfo &aPane, int aWidth, int aHeight)
Sets the size of an AUI pane, working around http://trac.wxwidgets.org/ticket/13180.
WX_VIEW_CONTROLS class definition.