42#include <wx/filedlg.h>
44#include <wx/statusbr.h>
45#include <wx/wupdlock.h>
116 auto installModel = [
this](
RC_TREE_MODEL*& aModel, wxDataViewCtrl* aCtrl )
120 aCtrl->AssociateModel( aModel );
145 listItem.SetText( str );
146 listItem.SetData( code );
158 { wxID_CANCEL,
_(
"Close" ) } } );
168 m_drcStatusBar =
new wxStatusBar(
this, wxID_ANY, wxSTB_DEFAULT_STYLE );
171 int statusBarWidths[2] = { FromDIP( 12 ), -1 };
174 if( wxSizer* mainSizer = GetSizer() )
203 g_lastIgnored.push_back( { m_ignoredList->GetItemText( ii ), m_ignoredList->GetItemData( ii ) } );
222 wxDataViewCtrl* ctrl =
dynamic_cast<wxDataViewCtrl*
>( aEvent.GetEventObject() );
227 bool overLink =
hitTestLink( ctrl, aEvent.GetPosition(),
nullptr );
228 ctrl->SetCursor( overLink ? wxCursor( wxCURSOR_HAND ) : wxNullCursor );
236 wxDataViewCtrl* ctrl =
dynamic_cast<wxDataViewCtrl*
>( aEvent.GetEventObject() );
239 if( ctrl &&
hitTestLink( ctrl, aEvent.GetPosition(), &href ) )
240 wxLaunchDefaultBrowser( href );
246 wxDataViewModel*
model = aCtrl->GetModel();
252 wxDataViewColumn* col =
nullptr;
253 aCtrl->HitTest( aPoint, item, col );
255 if( !item.IsOk() || !col )
264 wxDataViewItemAttr attr;
266 model->GetValue( value, item, col->GetModelColumn() );
267 model->GetAttr( item, col->GetModelColumn(), attr );
269 wxRect cellRect = aCtrl->GetItemRect( item, col );
288 SetReturnCode( wxID_CANCEL );
310 int newValue =
KiROUND( cur * 1000.0 );
316 int elapsed =
static_cast<int>(
317 std::chrono::duration_cast<std::chrono::seconds>( std::chrono::steady_clock::now() -
m_drcStartTime )
327 tick = wxString::Format( wxT(
"%1$d min %2$d s" ), elapsed / 60, elapsed % 60 );
329 tick = wxString::Format( wxT(
"%d s" ), elapsed );
331 m_drcStatusBar->SetStatusText( wxString::Format(
_(
"Elapsed: %s" ), tick ), 1 );
345 Pgm().
App().SafeYieldFor(
this, wxEVT_CATEGORY_NATIVE_EVENTS );
382 menu.Append( 4205,
_(
"Report All Errors for Each Track" ),
383 _(
"If unchecked, only the first error will be reported for each track" ),
387 menu.AppendSeparator();
389 menu.Append( 4206,
_(
"Cross-probe Selected Items" ),
390 _(
"Highlight corresponding items on canvas when selected in the DRC list" ),
394 menu.Append( 4207,
_(
"Center on Cross-probe" ),
395 _(
"When cross-probing, scroll the canvas so that the item is visible" ),
400 int menu_id =
m_bMenu->GetPopupMenuSelectionFromUser( menu );
402 if( menu_id == 0 || menu_id == 4205 )
406 else if( menu_id == 2 || menu_id == 4206 )
410 else if( menu_id == 3 || menu_id == 4207 )
419 m_frame->ShowBoardSetupDialog(
_(
"Custom Rules" ),
this );
425 if(
int hotkey = aEvt.GetKeyCode() )
427 if( aEvt.ControlDown() )
429 if( aEvt.ShiftDown() )
453 if( zoneFillerTool->IsBusy() )
462 m_frame->GetBoard()->RecordDRCExclusions();
479 m_messages->Report(
_(
"DRC incomplete: could not compile custom design rules." )
480 + wxS(
" " )
481 + wxS(
"<a href='$CUSTOM_RULES'>" ) +
_(
"Show design rules." ) + wxT(
"</a>" ) );
494 for( std::reference_wrapper<RC_ITEM>& item : violations )
500 listItem.SetText( wxT(
" • " ) + item.get().GetErrorText(
true ) );
501 listItem.SetData( item.get().GetErrorCode() );
534 std::chrono::duration<double, std::milli>( std::chrono::steady_clock::now() -
m_drcStartTime ).count();
539 int totalSeconds =
KiROUND( elapsedMs / 1000.0 );
541 if( totalSeconds >= 60 )
542 return wxString::Format(
_(
"%1$d min %2$d s" ), totalSeconds / 60, totalSeconds % 60 );
544 return wxString::Format(
_(
"%.2f s" ), elapsedMs / 1000.0 );
549 m_messages->Report(
_(
"-------- DRC canceled by user.<br><br>" ) );
552 m_drcStatusBar->SetStatusText( wxString::Format(
_(
"Canceled after %s" ), formatElapsed() ), 1 );
559 m_drcStatusBar->SetStatusText( wxString::Format(
_(
"Completed in %s" ), formatElapsed() ), 1 );
623 std::shared_ptr<RC_ITEM> rc_item = node->
m_RcItem;
633 if( marker->GetRCItem() == rc_item )
635 parentMarker = marker;
659 LSET violationLayers;
665 std::vector<BOARD_ITEM*> items = { aItem };
667 if( parentMarker && parentMarker != aItem )
668 items.push_back( parentMarker );
678 m_frame->GetAppearancePanel()->SetLayerVisible( principalLayer,
true );
681 m_frame->SetActiveLayer( principalLayer );
685 if( !
m_frame->GetPcbNewSettings()->m_Display.m_ShowGlobalRatsnest )
692 m_frame->GetBoard()->GetConnectivity()->RunOnUnconnectedEdges(
708 if( item == a && item == b )
736 std::vector<BOARD_ITEM*> items;
744 for(
const KIID&
id : rc_item->GetIDs() )
748 if( candidate && candidate->GetNetCode() == net )
749 items.push_back( candidate );
754 items.push_back( item );
757 if( parentMarker && std::find( items.begin(), items.end(), parentMarker ) == items.end() )
759 items.push_back( parentMarker );
775 if( aEvent.GetItem().IsOk() )
797 std::shared_ptr<RC_ITEM> rcItem = node->m_RcItem;
799 std::shared_ptr<CONNECTIVITY_DATA> conn =
m_currentBoard->GetConnectivity();
803 switch(
bds().m_DRCSeverities[ rcItem->GetErrorCode() ] )
807 default: listName =
_(
"appropriate" );
break;
812 ID_EDIT_EXCLUSION_COMMENT = 4467,
814 ID_REMOVE_EXCLUSION_ALL,
816 ID_ADD_EXCLUSION_WITH_COMMENT,
817 ID_ADD_EXCLUSION_ALL,
818 ID_INSPECT_VIOLATION,
820 ID_SET_SEVERITY_TO_ERROR,
821 ID_SET_SEVERITY_TO_WARNING,
822 ID_SET_SEVERITY_TO_IGNORE,
826 if( rcItem->GetParent()->IsExcluded() )
828 menu.Append( ID_REMOVE_EXCLUSION,
829 _(
"Remove exclusion for this violation" ),
830 wxString::Format(
_(
"It will be placed back in the %s list" ), listName ) );
832 menu.Append( ID_EDIT_EXCLUSION_COMMENT,
833 _(
"Edit exclusion comment..." ) );
837 menu.Append( ID_REMOVE_EXCLUSION_ALL,
838 wxString::Format(
_(
"Remove all exclusions for violations of rule '%s'" ),
840 wxString::Format(
_(
"They will be placed back in the %s list" ), listName ) );
845 menu.Append( ID_ADD_EXCLUSION,
846 _(
"Exclude this violation" ),
847 wxString::Format(
_(
"It will be excluded from the %s list" ), listName ) );
849 menu.Append( ID_ADD_EXCLUSION_WITH_COMMENT,
850 _(
"Exclude with comment..." ),
851 wxString::Format(
_(
"It will be excluded from the %s list" ), listName ) );
855 menu.Append( ID_ADD_EXCLUSION_ALL,
856 wxString::Format(
_(
"Exclude all violations of rule '%s'..." ),
858 wxString::Format(
_(
"They will be excluded from the %s list" ), listName ) );
862 menu.AppendSeparator();
865 wxString fixDRCErrorMenuText = drcTool->FixDRCErrorMenuText( rcItem );
867 if( !inspectDRCErrorMenuText.IsEmpty() || !fixDRCErrorMenuText.IsEmpty() )
869 if( !inspectDRCErrorMenuText.IsEmpty() )
870 menu.Append( ID_INSPECT_VIOLATION, inspectDRCErrorMenuText );
872 if( !fixDRCErrorMenuText.IsEmpty() )
873 menu.Append( ID_FIX_VIOLATION, fixDRCErrorMenuText );
875 menu.AppendSeparator();
880 menu.Append( ID_SET_SEVERITY_TO_ERROR,
881 wxString::Format(
_(
"Change severity to Error for all '%s' violations" ),
882 rcItem->GetErrorText(
true ) ),
883 _(
"Violation severities can also be edited in Board Setup" ) );
887 menu.Append( ID_SET_SEVERITY_TO_WARNING,
888 wxString::Format(
_(
"Change severity to Warning for all '%s' violations" ),
889 rcItem->GetErrorText(
true ) ),
890 _(
"Violation severities can also be edited in Board Setup" ) );
893 menu.Append( ID_SET_SEVERITY_TO_IGNORE,
894 wxString::Format(
_(
"Ignore all '%s' violations" ), rcItem->GetErrorText(
true ) ),
895 _(
"Violations will not be checked or reported" ) );
897 menu.AppendSeparator();
899 menu.Append( ID_EDIT_SEVERITIES,
900 _(
"Edit violation severities..." ),
901 _(
"Open the Board Setup dialog" ) );
903 bool modified =
false;
904 int command = GetPopupMenuSelectionFromUser( menu );
908 case ID_EDIT_EXCLUSION_COMMENT:
911 WX_TEXT_ENTRY_DIALOG dlg(
this, wxEmptyString,
_(
"Exclusion Comment" ), marker->GetComment(),
true );
916 marker->SetExcluded(
true, dlg.
GetValue() );
930 case ID_REMOVE_EXCLUSION:
933 marker->SetExcluded(
false );
938 m_frame->GetBoard()->UpdateRatsnestExclusions();
939 m_frame->GetCanvas()->RedrawRatsnest();
943 m_frame->GetCanvas()->GetView()->Update( marker );
953 case ID_ADD_EXCLUSION:
954 case ID_ADD_EXCLUSION_WITH_COMMENT:
959 if( command == ID_ADD_EXCLUSION_WITH_COMMENT )
969 marker->SetExcluded(
true, comment );
977 m_frame->GetBoard()->UpdateRatsnestExclusions();
978 m_frame->GetCanvas()->RedrawRatsnest();
982 m_frame->GetCanvas()->GetView()->Update( marker );
996 case ID_REMOVE_EXCLUSION_ALL:
999 DRC_ITEM* candidateDrcItem =
static_cast<DRC_ITEM*
>( marker->GetRCItem().get() );
1003 marker->SetExcluded(
false );
1013 case ID_ADD_EXCLUSION_ALL:
1016 DRC_ITEM* candidateDrcItem =
static_cast<DRC_ITEM*
>( marker->GetRCItem().get() );
1020 marker->SetExcluded(
true );
1030 case ID_INSPECT_VIOLATION:
1034 case ID_FIX_VIOLATION:
1035 drcTool->FixDRCError( node->m_RcItem );
1038 case ID_SET_SEVERITY_TO_ERROR:
1043 if( marker->GetRCItem()->GetErrorCode() == rcItem->GetErrorCode() )
1044 m_frame->GetCanvas()->GetView()->Update( marker );
1052 case ID_SET_SEVERITY_TO_WARNING:
1057 if( marker->GetRCItem()->GetErrorCode() == rcItem->GetErrorCode() )
1058 m_frame->GetCanvas()->GetView()->Update( marker );
1066 case ID_SET_SEVERITY_TO_IGNORE:
1070 wxListItem listItem;
1072 listItem.SetText( wxT(
" • " ) + rcItem->GetErrorText(
true ) );
1073 listItem.SetData( rcItem->GetErrorCode() );
1079 std::vector<BOARD_ITEM*> toRemove;
1083 if( marker->GetRCItem()->GetErrorCode() == rcItem->GetErrorCode() )
1085 m_frame->GetCanvas()->GetView()->Remove( marker );
1086 toRemove.emplace_back( marker );
1096 m_frame->GetCanvas()->RedrawRatsnest();
1104 case ID_EDIT_SEVERITIES:
1105 m_frame->ShowBoardSetupDialog(
_(
"Violation Severity" ),
this );
1120 int errorCode = (int) event.m_item.GetData();
1127 menu.Check(
bds().GetSeverity( errorCode ),
true );
1129 int severity = GetPopupMenuSelectionFromUser( menu );
1133 if(
bds().m_DRCSeverities[ errorCode ] != severity )
1147 m_frame->ShowBoardSetupDialog(
_(
"Violation Severity" ),
this );
1153 if( aEvent.GetEventObject() ==
m_showAll )
1168 wxFileDialog dlg(
this,
_(
"Save Report File" ),
Prj().GetProjectPath(), fn.GetFullName(),
1170 wxFD_SAVE | wxFD_OVERWRITE_PROMPT );
1174 if( dlg.ShowModal() != wxID_OK )
1179 if( fn.GetExt().IsEmpty() )
1182 if( !fn.IsAbsolute() )
1185 fn.MakeAbsolute( prj_path );
1191 bool success =
false;
1198 m_messages->Report( wxString::Format(
_(
"Report file '%s' created<br>" ), fn.GetFullPath() ) );
1200 DisplayError(
this, wxString::Format(
_(
"Failed to create file '%s'." ), fn.GetFullPath() ) );
1206 wxCommandEvent
dummy;
1221 SetReturnCode( wxID_CANCEL );
1244 m_frame->GetCanvas()->Refresh();
1315 m_frame->GetCanvas()->GetView()->Update( marker );
1341 m_frame->GetBoard()->DeleteMARKERs(
true, aIncludeExclusions );
1373 static bool s_includeExclusions =
false;
1375 int numExcluded = 0;
1386 if( numExcluded > 0 )
1388 wxMessageDialog dlg(
this,
_(
"Delete exclusions too?" ),
_(
"Delete All Markers" ),
1389 wxYES_NO | wxCANCEL | wxCENTER | wxICON_QUESTION );
1390 dlg.SetYesNoLabels(
_(
"Errors and Warnings Only" ),
1391 _(
"Errors, Warnings and Exclusions" ) );
1393 int ret = dlg.ShowModal();
1395 if( ret == wxID_CANCEL )
1397 else if( ret == wxID_NO )
1398 s_includeExclusions =
true;
1417 int numUnconnected = 0;
1418 int numFootprints = 0;
1421 int numWarnings = 0;
1422 int numExcluded = 0;
1448 bool errorsOverflowed =
false;
1449 bool warningsOverflowed =
false;
1450 bool markersOverflowed =
false;
1451 bool unconnectedOverflowed =
false;
1452 bool footprintsOverflowed =
false;
1458 if( drcEngine->IsErrorLimitExceeded( ii ) )
1461 errorsOverflowed =
true;
1463 warningsOverflowed =
true;
1468 unconnectedOverflowed =
true;
1470 unconnectedOverflowed =
true;
1481 footprintsOverflowed =
true;
1483 footprintsOverflowed =
true;
1488 markersOverflowed =
true;
1490 markersOverflowed =
true;
1502 num.Printf( markersOverflowed ? wxT(
"%d+" ) : wxT(
"%d" ), numMarkers );
1508 msg.Replace( wxT(
"(%s)" ), wxEmptyString );
1515 num.Printf( unconnectedOverflowed ? wxT(
"%d+" ) : wxT(
"%d" ), numUnconnected );
1521 msg.Replace( wxT(
"(%s)" ), wxEmptyString );
1528 num.Printf( footprintsOverflowed ? wxT(
"%d+" ) : wxT(
"%d" ), numFootprints );
1534 msg.Replace( wxT(
"%s" ),
_(
"not run" ) );
1539 msg.Replace( wxT(
"(%s)" ), wxEmptyString );
1552 msg.Replace( wxT(
"(%s)" ), wxEmptyString );
1562 if( !
m_drcRun && numWarnings == 0 )
KIFACE_BASE & Kiface()
Global KIFACE_BASE "get" accessor.
wxBitmapBundle KiBitmapBundle(BITMAPS aBitmap, int aMinHeight)
constexpr BOX2I KiROUND(const BOX2D &aBoxD)
static TOOL_ACTION excludeMarker
static TOOL_ACTION selectionClear
Clear the current selection.
A base class derived from BOARD_ITEM for items that can be connected and have a net,...
std::map< int, SEVERITY > m_DRCSeverities
SEVERITY GetSeverity(int aDRCErrorCode)
std::set< DRC_EXCLUSION, DRC_EXCLUSION_COMPARE > m_DrcExclusions
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
Information pertinent to a Pcbnew printed circuit board.
const LSET & GetVisibleLayers() const
A proxy function that calls the correspondent function in m_BoardSettings.
const MARKERS & Markers() const
void FinalizeBulkRemove(std::vector< BOARD_ITEM * > &aRemovedItems)
Must be used if Remove() is used using a BULK_x REMOVE_MODE to generate a change event for listeners.
void Remove(BOARD_ITEM *aBoardItem, REMOVE_MODE aMode=REMOVE_MODE::NORMAL) override
Removes an item from the container.
BOARD_ITEM * ResolveItem(const KIID &aID, bool aAllowNullptrReturn=false) const
BOARD_CONNECTED_ITEM * Parent() const
CN_EDGE represents a point-to-point connection, whether realized or unrealized (ie: tracks etc.
std::shared_ptr< const CN_ANCHOR > GetSourceNode() const
std::shared_ptr< const CN_ANCHOR > GetTargetNode() const
const VECTOR2I GetTargetPos() const
const VECTOR2I GetSourcePos() const
wxCheckBox * m_cbRefillZones
wxBoxSizer * bSizerViolationsBox
wxButton * m_DeleteAllMarkersButton
wxCheckBox * m_showExclusions
wxCheckBox * m_showErrors
wxDataViewCtrl * m_unconnectedDataView
wxDataViewCtrl * m_footprintsDataView
NUMBER_BADGE * m_warningsBadge
NUMBER_BADGE * m_exclusionsBadge
wxSimplebook * m_runningResultsBook
wxButton * m_DeleteCurrentMarkerButton
STD_BITMAP_BUTTON * m_bMenu
wxButton * m_sdbSizerCancel
wxCheckBox * m_cbTestFootprints
DIALOG_DRC_BASE(wxWindow *parent, wxWindowID id=wxID_ANY, const wxString &title=_("Design Rules Checker"), const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxSize(-1,-1), long style=wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER)
wxCheckBox * m_showWarnings
wxListCtrl * m_ignoredList
NUMBER_BADGE * m_errorsBadge
WX_HTML_REPORT_BOX * m_messages
wxDataViewCtrl * m_markerDataView
void OnDRCItemSelected(wxDataViewEvent &aEvent) override
wxString m_footprintsTitleTemplate
void UpdateData()
Rebuild the contents of the violation tabs based on the current markers and severties.
std::shared_ptr< RC_ITEMS_PROVIDER > m_ratsnestProvider
wxString m_markersTitleTemplate
DIALOG_DRC(PCB_EDIT_FRAME *aEditorFrame, wxWindow *aParent)
Constructors.
void OnEditViolationSeverities(wxHyperlinkEvent &aEvent) override
wxStatusBar * m_drcStatusBar
void OnDeleteOneClick(wxCommandEvent &aEvent) override
RC_TREE_MODEL * m_fpWarningsTreeModel
static bool hitTestLink(wxDataViewCtrl *aCtrl, const wxPoint &aPoint, wxString *aHref)
void onDataViewMotion(wxMouseEvent &aEvent)
void OnDeleteAllClick(wxCommandEvent &aEvent) override
void OnMenu(wxCommandEvent &aEvent) override
bool TransferDataToWindow() override
void OnErrorLinkClicked(wxHtmlLinkEvent &event) override
BOARD_DESIGN_SETTINGS & bds()
bool m_report_all_track_errors
void SelectMarker(const PCB_MARKER *aMarker)
void OnClose(wxCloseEvent &event) override
void installLinkHandlers(wxDataViewCtrl *aCtrl)
void OnCharHook(wxKeyEvent &aEvt) override
std::chrono::steady_clock::time_point m_drcStartTime
void OnDRCItemRClick(wxDataViewEvent &aEvent) override
void OnRunDRCClick(wxCommandEvent &aEvent) override
wxString m_ignoredTitleTemplate
void OnDRCItemDClick(wxDataViewEvent &aEvent) override
THROTTLE m_updateThrottle
void deleteAllMarkers(bool aIncludeExclusions)
void updateDisplayedCounts()
RC_TREE_MODEL * m_unconnectedTreeModel
bool m_scroll_on_crossprobe
void onDataViewLeftUp(wxMouseEvent &aEvent)
wxString m_unconnectedTitleTemplate
std::shared_ptr< RC_ITEMS_PROVIDER > m_fpWarningsProvider
std::shared_ptr< RC_ITEMS_PROVIDER > m_markersProvider
void OnSeverity(wxCommandEvent &aEvent) override
void OnIgnoredItemRClick(wxListEvent &event) override
void OnCancelClick(wxCommandEvent &aEvent) override
void OnActivateDlg(wxActivateEvent &aEvent) override
void OnChangingNotebookPage(wxNotebookEvent &aEvent) override
void OnSaveReport(wxCommandEvent &aEvent) override
RC_TREE_MODEL * m_markersTreeModel
bool Show(bool show) override
void SetupStandardButtons(std::map< int, wxString > aLabels={})
void finishDialogSettings()
In all dialogs, we must call the same functions to fix minimal dlg size, the default position and per...
virtual void OnCharHook(wxKeyEvent &aEvt)
EDA_UNITS GetUserUnits() const
Design Rule Checker object that performs all the DRC tests.
void InitEngine(const wxFileName &aRulePath)
Initialize the DRC engine.
Container for an DRC exclusion, which is a PCB_MARKER plus an optional comment.
void SetComment(const wxString &aComment)
static DRC_EXCLUSION FromMarker(const PCB_MARKER &aMarker)
static std::vector< std::reference_wrapper< RC_ITEM > > GetItemsWithSeverities()
static void GetViolationLayers(BOARD *aBoard, const std::shared_ptr< RC_ITEM > &aItem, PCB_MARKER *aMarker, PCB_LAYER_ID &aPrincipalLayer, LSET &aViolationLayers)
Work out which layer to focus on and which layers a violation involves.
DRC_RULE * GetViolatingRule() const
bool WriteJsonReport(const wxString &aFullFileName)
bool WriteTextReport(const wxString &aFullFileName)
KICAD_T Type() const
Returns the type of object.
wxDataViewCtrl renderer that draws [label](url) markup as clickable link runs inline with plain text.
bool HitTestRunsForCell(const wxString &aValue, const wxDataViewItemAttr &aCellAttr, const wxRect &aCellRect, const wxPoint &aPoint, wxString *aHref) const
Hit-test aPoint against the link runs of aValue laid out in aCell.
PROJECT & Prj() const
Return a reference to the PROJECT associated with this KIWAY.
LSET is a set of PCB_LAYER_IDs.
const VECTOR2I & GetPos() const
void SetExcluded(bool aExcluded, const wxString &aComment=wxEmptyString)
enum MARKER_T GetMarkerType() const
static TOOL_ACTION showRatsnest
The main frame for Pcbnew.
SEVERITY GetSeverity() const override
virtual wxApp & App()
Return a bare naked wxApp which may come from wxPython, SINGLE_TOP, or kicad.exe.
virtual void AdvancePhase() override
Use the next available virtual zone of the dialog progress bar.
PROGRESS_REPORTER_BASE(int aNumPhases)
virtual void SetCurrentProgress(double aProgress) override
Set the progress value to aProgress (0..1).
std::atomic_bool m_cancelled
std::atomic_int m_progress
std::atomic_int m_maxProgress
virtual void AdvancePhase()=0
Use the next available virtual zone of the dialog progress bar.
virtual const wxString GetProjectPath() const
Return the full path of the project.
MARKER_BASE * GetParent() const
static RC_TREE_NODE * ToNode(wxDataViewItem aItem)
void ValueChanged(RC_TREE_NODE *aNode)
void Update(std::shared_ptr< RC_ITEMS_PROVIDER > aProvider, int aSeverities)
void DeleteCurrentItem(bool aDeep)
void EnableHyperlinks(bool aEnable)
Render [label](url) markup as clickable links.
static KIID ToUUID(wxDataViewItem aItem)
std::shared_ptr< RC_ITEM > m_RcItem
A KICAD version of wxTextEntryDialog which supports the various improvements/work-arounds from DIALOG...
wxString GetValue() const
void DisplayError(wxWindow *aParent, const wxString &aText)
Display an error or warning message box with aMessage.
This file is part of the common library.
static BOARD * g_lastDRCBoard
static bool g_lastFootprintTestsRun
static std::vector< std::pair< wxString, int > > g_lastIgnored
#define DIALOG_DRC_WINDOW_NAME
@ DRCE_DP_UNCOUPLED_LENGTH_TOO_LONG
@ DRCE_SCHEMATIC_FIELDS_PARITY
@ DRCE_UNRESOLVED_VARIABLE
@ DRCE_DUPLICATE_FOOTPRINT
static int DEFAULT_SINGLE_COL_WIDTH
static const std::string ReportFileExtension
static const std::string JsonFileExtension
static wxString JsonFileWildcard()
static wxString ReportFileWildcard()
PCB_LAYER_ID
A quick note on layer IDs:
This file contains miscellaneous commonly used macros and functions.
PGM_BASE & Pgm()
The global program "get" accessor.
std::vector< FAB_LAYER_COLOR > dummy
A filename or source description, a problem input line, a line number, a byte offset,...
@ PCB_ZONE_T
class ZONE, a copper pour area
Functions to provide common constants and other functions to assist in making a consistent UI.
VECTOR2< int32_t > VECTOR2I
Definition of file extensions used in Kicad.