73#include <wx/filename.h>
98#include <wx/hyperlink.h>
101using namespace std::placeholders;
135 double backgroundBrightness =
m_frame->GetCanvas()->GetGAL()->GetClearColor().GetBrightness();
138 if( backgroundBrightness > 0.5 )
187 const wxString fn = *aEvent.
Parameter<wxString*>();
196 const wxString fn = *aEvent.
Parameter<wxString*>();
198 m_frame->Zoom_Automatique(
false );
256 editFrame->OnDisplayOptionsChanged();
288 if(
Pgm().GetCommonSettings()->m_DoNotShowAgain.zone_fill_warning )
291 bool unfilledZones =
false;
293 for(
const ZONE* zone :
board()->Zones() )
295 if( !zone->GetIsRuleArea() && !zone->IsFilled() )
297 unfilledZones =
true;
307 infobar->
AddLink(
_(
"Don't show again" ),
308 [&]( wxHyperlinkEvent& aEvent )
311 m_frame->GetInfoBar()->Dismiss();
315 msg.Printf(
_(
"Not all zones are filled. Use Edit > Fill All Zones (%s) if you wish to see all fills." ),
358 m_frame->SetDisplayOptions( opts );
376 m_frame->SetDisplayOptions( opts );
392 m_frame->SetDisplayOptions( opts );
401 if( !
Pgm().GetCommonSettings()->m_Input.hotkey_feedback )
406 wxArrayString labels;
407 labels.Add(
_(
"Normal" ) );
408 labels.Add(
_(
"Dimmed" ) );
409 labels.Add(
_(
"Hidden" ) );
411 if( !
m_frame->GetHotkeyPopup() )
436 m_frame->SetDisplayOptions( opts );
461 editFrame->OnDisplayOptionsChanged();
483 bool wraparound =
false;
497 for( ; ii < (int) layerStack.size(); ii++ )
499 if( layer == layerStack[ii] )
504 for( ; ii < (int) layerStack.size(); ii++ )
508 if( jj >= (
int) layerStack.size() )
511 layer = layerStack[jj];
542 bool wraparound =
false;
556 for( ; ii < (int) layerStack.size(); ii++ )
558 if( layer == layerStack[ii] )
563 for( ; ii >= 0; ii-- )
568 jj = (int) layerStack.size() - 1;
570 layer = layerStack[jj];
599 int currentLayer =
m_frame->GetActiveLayer();
613#define ALPHA_MIN 0.20
614#define ALPHA_MAX 1.00
615#define ALPHA_STEP 0.05
621 int currentLayer =
m_frame->GetActiveLayer();
627 settings->
SetColor( currentLayer, currentColor );
628 m_frame->GetCanvas()->UpdateColors();
631 view->UpdateLayerColor( currentLayer );
637 m_frame->GetCanvas()->ForceRefresh();
651 int currentLayer =
m_frame->GetActiveLayer();
657 settings->
SetColor( currentLayer, currentColor );
658 m_frame->GetCanvas()->UpdateColors();
661 view->UpdateLayerColor( currentLayer );
667 m_frame->GetCanvas()->ForceRefresh();
690 if( presets.size() < 2 )
693 if( currentIndex < 0 )
695 wxASSERT_MSG(
false,
"Current layer pair not found in layer settings" );
699 const int nextIndex = ( currentIndex + 1 ) % presets.size();
700 const LAYER_PAIR& nextPair = presets[nextIndex].GetLayerPair();
713 if( !
Pgm().GetCommonSettings()->m_Input.hotkey_feedback )
728 wxArrayString labels;
731 wxString label = layerPresentation.
getLayerPairName( layerPairInfo.GetLayerPair() );
733 if( layerPairInfo.GetName() )
734 label += wxT(
" (" ) + *layerPairInfo.GetName() + wxT(
")" );
739 if( !editFrame->GetHotkeyPopup() )
740 editFrame->CreateHotkeyPopup();
793 [
this](
const VECTOR2D& pt ) ->
bool
815#define HITTEST_THRESHOLD_PIXELS 5
836 [
this](
const VECTOR2D& aPosition ) ->
bool
879 for(
int i = collector.
GetCount() - 1; i >= 0; --i )
881 if( !selectionTool->
Selectable( collector[i] ) )
906 [
this](
const int& aFinalState )
915 m_frame->GetCanvas()->Refresh();
925 std::vector<BOARD_ITEM*>& aPastedItems )
933 pad->SetParent( editorFootprint );
934 aPastedItems.push_back(
pad );
937 aClipFootprint->
Pads().clear();
944 wxCHECK2( field,
continue );
946 if( field->IsMandatory() )
948 if(
EDA_GROUP* parentGroup = field->GetParentGroup() )
949 parentGroup->RemoveItem( field );
958 VECTOR2I pos = field->GetFPRelativePosition();
959 field->SetParent( editorFootprint );
960 field->SetFPRelativePosition( pos );
962 aPastedItems.push_back( field );
978 item->Rotate( item->GetPosition(), -aClipFootprint->
GetOrientation() );
979 item->Rotate( item->GetPosition(), editorFootprint->
GetOrientation() );
981 VECTOR2I pos = item->GetFPRelativePosition();
982 item->SetParent( editorFootprint );
983 item->SetFPRelativePosition( pos );
985 aPastedItems.push_back( item );
990 for(
ZONE* zone : aClipFootprint->
Zones() )
992 zone->SetParent( editorFootprint );
993 aPastedItems.push_back( zone );
996 aClipFootprint->
Zones().clear();
1000 group->SetParent( editorFootprint );
1001 aPastedItems.push_back(
group );
1004 aClipFootprint->
Groups().clear();
1010 constraint->SetParent( editorFootprint );
1011 aPastedItems.push_back( constraint );
1029 std::vector<BOARD_ITEM*> returnItems;
1033 if( !item->FitsEnabledLayers( enabledLayers, copperLayers ) )
1035 if(
EDA_GROUP* parentGroup = item->GetParentGroup() )
1036 parentGroup->RemoveItem( item );
1042 if( !item->IsLayerAgnostic() )
1043 item->SetLayerSet( item->GetLayerSet() & enabledLayers );
1045 returnItems.push_back( item );
1048 if( returnItems.size() < aItems.size() )
1051 "present in the current board.\n"
1052 "These items could not be pasted.\n" ) );
1055 aItems = returnItems;
1074 if( wxDialog::OSXHasModalDialogsOpen() )
1088 if( selTool && clipItem )
1092 bool hasTableCells =
false;
1098 hasTableCells =
true;
1109 BOARD* clipBoard =
static_cast<BOARD*
>( clipItem );
1115 clipboardTable =
static_cast<PCB_TABLE*
>( item );
1121 if( clipboardTable )
1137 commit.
Push(
_(
"Paste Cells" ) );
1153 std::vector<BOARD_ITEM*> newItems;
1157 auto refImg = std::make_unique<PCB_REFERENCE_IMAGE>(
m_frame->GetModel() );
1159 if( refImg->GetReferenceImage().SetImage( clipImg->ConvertToImage() ) )
1160 newItems.push_back( refImg.release() );
1166 if( clipText.empty() )
1173 "Do you want to continue?" ) );
1178 std::unique_ptr<PCB_TEXT> item = std::make_unique<PCB_TEXT>(
m_frame->GetModel() );
1179 item->SetText( clipText );
1180 item->SetLayer(
m_frame->GetActiveLayer() );
1182 newItems.push_back( item.release() );
1185 bool cancelled = !
placeBoardItems( &commit, newItems,
true,
false,
false,
false );
1190 commit.
Push(
_(
"Paste Text" ) );
1197 bool clear_nets =
false;
1198 const wxString defaultRef = wxT(
"REF**" );
1215 BOARD* clipBoard =
static_cast<BOARD*
>( clipItem );
1217 if( isFootprintEditor || clear_nets )
1228 bool cancelled =
false;
1230 switch( clipItem->
Type() )
1234 BOARD* clipBoard =
static_cast<BOARD*
>( clipItem );
1236 if( isFootprintEditor )
1239 std::vector<BOARD_ITEM*> pastedItems;
1243 group->SetParent( editorFootprint );
1244 pastedItems.push_back(
group );
1254 switch( clipDrawItem->Type() )
1268 clipDrawItem->SetParent( editorFootprint );
1269 pastedItems.push_back( clipDrawItem );
1275 if(
EDA_GROUP* parentGroup = clipDrawItem->GetParentGroup() )
1276 parentGroup->RemoveItem( clipDrawItem );
1288 constraint->SetParent( editorFootprint );
1289 pastedItems.push_back( constraint );
1297 [&](
EDA_ITEM* item,
void* testData )
1326 fp->ResolveComponentClassNames(
board(), fp->GetTransientComponentClassNames() );
1327 fp->ClearTransientComponentClassNames();
1333 fp->SetReference( defaultRef );
1345 std::vector<BOARD_ITEM*> pastedItems;
1347 if( isFootprintEditor )
1350 delete clipFootprint;
1360 pastedItems.push_back( clipFootprint );
1370 m_frame->DisplayToolMsg(
_(
"Invalid clipboard contents" ) );
1377 commit.
Push(
_(
"Paste" ) );
1418 std::unique_ptr<DESIGN_BLOCK> designBlock( designBlockPane->
GetDesignBlock( selectedLibId,
true,
true ) );
1423 if( designBlock->GetBoardFile().IsEmpty() || !wxFileName::FileExists( designBlock->GetBoardFile() ) )
1425 editFrame->
ShowInfoBarError(
_(
"Design block has no layout to place." ),
true );
1435 bool repeatPlacement =
false;
1438 repeatPlacement = cfg->m_DesignBlockChooserPanel.repeated_placement;
1444 ret =
AppendBoard( *pi, designBlock->GetBoardFile(), designBlock.get() );
1445 }
while( repeatPlacement && ret == 0 );
1465 std::vector<PCB_GROUP*> linkedGroups;
1466 int skippedNoLink = 0;
1476 linkedGroups.push_back( g );
1481 if( linkedGroups.empty() )
1483 m_frame->ShowInfoBarError(
_(
"No groups with a linked design block are selected." ),
true );
1489 bool hasLocked =
false;
1493 for(
EDA_ITEM* item : g->GetItems() )
1508 m_frame->ShowInfoBarWarning(
_(
"Selection contains locked items. "
1509 "Enable 'Override locks' to operate on them." ),
1523 std::vector<Failure> failures;
1525 bool cancelled =
false;
1526 bool netlessCopperPlaced =
false;
1528 std::unique_ptr<WX_PROGRESS_REPORTER> progress;
1530 if( linkedGroups.size() > 1 &&
Pgm().IsGUI() )
1532 progress = std::make_unique<WX_PROGRESS_REPORTER>(
m_frame,
_(
"Applying Design Block Layouts" ),
1536 auto generateBoundingBox = [](
const std::unordered_set<EDA_ITEM*>& aItems )
1538 std::vector<VECTOR2I> bbCorners;
1539 bbCorners.reserve( aItems.size() * 4 );
1543 const BOX2I bb = item->GetBoundingBox().GetInflated( 100000 );
1547 std::vector<VECTOR2I> hullVertices;
1556 auto applyOneGroup = [&](
PCB_GROUP*
group, wxString& outErr ) ->
bool
1559 std::unique_ptr<DESIGN_BLOCK> designBlock(
1565 if( designBlock->GetBoardFile().IsEmpty() )
1567 outErr =
_(
"the design block has no saved board layout" );
1579 auto clearFlags = [&]()
1595 if( !pi ||
AppendBoard( *pi, designBlock->GetBoardFile(), designBlock.get(), &tempCommit,
true ) != 0 )
1598 outErr =
_(
"the design block's board file could not be read" );
1625 outErr =
_(
"the design block's board layout is empty" );
1630 bool blockHasNetlessCopper =
false;
1638 blockHasNetlessCopper =
true;
1671 if(
group->GetItems().empty() )
1676 outErr =
_(
"the group has no items" );
1697 .m_connectedRoutingOnly =
false,
1698 .m_copyPlacement =
true,
1699 .m_copyOtherItems =
true,
1700 .m_groupItems =
false,
1701 .m_includeLockedItems =
true,
1702 .m_anchorFp =
nullptr };
1707 std::vector<NETINFO_ITEM*> isolatedNets =
1711 int result = mct->
RepeatLayout( aEvent, dbRA, destRA, options, &sharedCommit, &repeatErr );
1727 outErr = repeatErr.IsEmpty() ?
_(
"the layout could not be copied onto the group" ) : repeatErr;
1731 if( blockHasNetlessCopper )
1732 netlessCopperPlaced =
true;
1737 for(
size_t i = 0; i < linkedGroups.size(); ++i )
1743 progress->SetCurrentProgress(
static_cast<double>( i ) / linkedGroups.size() );
1745 wxString::Format(
_(
"Applying layout to group %zu of %zu..." ), i + 1, linkedGroups.size() ) );
1747 if( !progress->KeepRefreshing() )
1756 if( applyOneGroup( g, err ) )
1759 failures.push_back( { g, err } );
1763 progress->SetCurrentProgress( 1.0 );
1767 sharedCommit.Revert();
1768 m_frame->ShowInfoBarMsg(
_(
"Apply design block layout cancelled." ),
true );
1774 sharedCommit.Push( wxString::Format(
_(
"Apply design block layout to %d group(s)" ), applied ) );
1776 if( netlessCopperPlaced )
1777 m_frame->ShowInfoBarMsg(
_(
"Copied copper has no net assigned. Assign nets to connect it." ),
true );
1781 sharedCommit.Revert();
1784 if( skippedNoLink > 0 || !failures.empty() || linkedGroups.size() > 1 )
1788 html << wxT(
"<p>" )
1789 << wxString::Format(
_(
"Applied design block layout to %d of %d group(s)." ), applied,
1790 (
int) linkedGroups.size() )
1793 if( skippedNoLink > 0 )
1795 html << wxT(
"<p>" )
1796 << wxString::Format(
_(
"Skipped %d selected item(s) that are not groups linked to a "
1802 if( !failures.empty() )
1804 html << wxT(
"<p>" ) <<
_(
"The following groups could not be processed:" ) << wxT(
"</p><ul>" );
1806 for(
const Failure& f : failures )
1808 wxString
name = f.group->GetName().IsEmpty() ?
_(
"(unnamed group)" ) : f.group->GetName();
1809 wxString reason = f.reason;
1811 reason.Replace( wxT(
"\n" ), wxT(
"<br>" ) );
1812 html << wxString::Format( wxT(
"<li><b>%s</b>: %s</li>" ),
name, reason );
1815 html << wxT(
"</ul>" );
1824 return applied > 0 ? 0 : 1;
1843 if( !
group->HasDesignBlockLink() )
1848 std::unique_ptr<DESIGN_BLOCK> designBlock( designBlockPane->
GetDesignBlock(
group->GetDesignBlockLibId(),
1854 if( designBlock->GetBoardFile().IsEmpty() )
1857 msg.Printf(
_(
"Design block %s does not have a board file." ),
1858 group->GetDesignBlockLibId().GetUniStringLibId() );
1859 m_frame->GetInfoBar()->ShowMessageFor( msg, 5000, wxICON_WARNING );
1870 if( aEvent.
Parameter<
bool*>() !=
nullptr )
1871 return AppendBoard( *pi, designBlock->GetBoardFile(), designBlock.get(),
1874 return AppendBoard( *pi, designBlock->GetBoardFile(), designBlock.get() );
1894 if( !
group->HasDesignBlockLink() )
1899 std::unique_ptr<DESIGN_BLOCK> designBlock( designBlockPane->
GetDesignBlock(
group->GetDesignBlockLibId(),
1912 bool aReannotateDuplicates,
bool aSkipMove )
1915 bool isNew =
board() != aBoard;
1916 std::vector<BOARD_ITEM*> items;
1924 bool doCopy = ( item->GetFlags() &
SKIP_STRUCT ) == 0;
1927 item->SetFlags( isNew ?
IS_NEW : 0 );
1930 items.push_back( item );
1941 item->SetParent(
board() );
1946 return placeBoardItems( aCommit, items, isNew, aAnchorAtOrigin, aReannotateDuplicates, aSkipMove );
1951 bool aAnchorAtOrigin,
bool aReannotateDuplicates,
bool aSkipMove )
1957 std::vector<BOARD_ITEM*> itemsToSel;
1958 itemsToSel.reserve( aItems.size() );
1964 std::map<KIID, KIID> idMap;
1965 std::set<BOARD_ITEM*> resetItems;
1967 auto resetUuidOnce =
1970 if( !resetItems.insert( aItem ).second )
1973 KIID oldUuid = aItem->m_Uuid;
1975 idMap[oldUuid] = aItem->m_Uuid;
1982 resetUuidOnce( item );
1984 item->RunOnChildren(
1987 resetUuidOnce( aChild );
1995 if( item->IsGroupableType() && !item->GetParentGroup() )
1998 enteredGroup->AddItem( item );
2002 item->SetParent(
board() );
2007 ZONE* zone =
static_cast<ZONE*
>( item );
2037 if( !item->GetParentGroup() || !
alg::contains( aItems, item->GetParentGroup()->AsEdaItem() ) )
2038 itemsToSel.push_back( item );
2043 if( aIsNew && !idMap.empty() )
2047 item->RemapKIIDs( idMap );
2048 item->RunOnChildren( [&](
BOARD_ITEM* aChild )
2057 EDA_ITEMS toSel( itemsToSel.begin(), itemsToSel.end() );
2067 aCommit->
Add( item );
2069 aCommit->
Added( item );
2076 if( aAnchorAtOrigin )
2082 selection.SetReferencePoint( item->GetPosition() );
2111 std::unique_ptr<BOARD_COMMIT> tempCommit;
2116 tempCommit = std::make_unique<BOARD_COMMIT>( editFrame );
2117 commit = tempCommit.get();
2127 auto clearSkipStructOnExistingItems =
2134 std::map<wxString, wxString> oldProperties = brd->
GetProperties();
2135 std::map<wxString, wxString> newProperties;
2147 std::map<std::string, UTF8> props;
2151 props[
"page_width"] = std::to_string( editFrame->
GetPageSizeIU().
x );
2152 props[
"page_height"] = std::to_string( editFrame->
GetPageSizeIU().
y );
2156 [&]( wxString aTitle,
int aIcon, wxString aMessage, wxString aAction ) ->
bool
2158 KIDIALOG dlg( editFrame, aMessage, aTitle, wxOK | wxCANCEL | aIcon );
2160 if( !aAction.IsEmpty() )
2161 dlg.SetOKLabel( aAction );
2171 mappable->RegisterCallback(
2172 [editFrame](
const std::vector<INPUT_LAYER_DESC>& aLayerDescs )
2186 clearSkipStructOnExistingItems();
2193 for(
const std::pair<const wxString, wxString>& prop : oldProperties )
2194 newProperties[prop.first] = prop.second;
2216 connectedItem->SetLocalRatsnestVisible( showGlobalRatsnest );
2221 pad->SetLocalRatsnestVisible( showGlobalRatsnest );
2229 if( copperLayerCount > initialCopperLayerCount )
2234 enabledLayers |= initialEnabledLayers;
2242 wxString msg = wxString::Format(
_(
"Board changed from %d to %d copper layers, stackup updated." ),
2243 initialCopperLayerCount,
2250 bool placeAsGroup =
false;
2253 placeAsGroup = cfg->m_DesignBlockChooserPanel.place_as_group;
2263 int groupableCount = 0;
2267 if( eda_item->IsBOARD_ITEM()
2274 if( groupableCount >= 2 )
2290 if( eda_item->IsBOARD_ITEM() )
2292 if(
static_cast<BOARD_ITEM*
>( eda_item )->IsLocked() )
2293 group->SetLocked(
true );
2301 if( eda_item->IsBOARD_ITEM()
2304 commit->
Modify( eda_item );
2305 group->AddItem( eda_item );
2320 commit->
Push( aDesignBlock ?
_(
"Place Design Block" ) :
_(
"Append Board" ) );
2336 clearSkipStructOnExistingItems();
2345 wxCommandEvent
dummy;
2357 wxCommandEvent
dummy;
2369 :
m_frame->GetPcbNewSettings()->m_MagneticItems;
2377 snapMode = !snapMode;
2387 if( !
Pgm().GetCommonSettings()->m_Input.hotkey_feedback )
2390 wxArrayString labels;
2391 labels.Add(
_(
"Active Layer" ) );
2392 labels.Add(
_(
"All Layers" ) );
2394 if( !
m_frame->GetHotkeyPopup() )
2400 :
m_frame->GetPcbNewSettings()->m_MagneticItems;
2403 popup->
Popup(
_(
"Object Snapping" ), labels,
static_cast<int>( settings.
allLayers ) );
2415 std::shared_ptr<DRC_ENGINE> drcEngine =
m_frame->GetBoard()->GetDesignSettings().m_DRCEngine;
2418 std::vector<MSG_PANEL_ITEM> msgItems;
2420 if( routerTool && routerTool->RoutingInProgress() )
2422 routerTool->UpdateMessagePanel();
2426 if( !pcbFrame && !
m_frame->GetModel() )
2446 msgItems.emplace_back(
_(
"UUID" ), *uuid );
2462 if( candidate->GetNet() != coupledNet )
2467 if( !coupledItem || dist_sq < closestDist_sq )
2469 coupledItem = candidate;
2470 closestDist_sq = dist_sq;
2476 wxString msg =
m_frame->MessageTextFromMinOptMax( constraint.
Value() );
2478 if( !msg.IsEmpty() )
2480 msgItems.emplace_back( wxString::Format(
_(
"DP Gap Constraints: %s" ), msg ),
2481 wxString::Format(
_(
"(from %s)" ), constraint.
GetName() ) );
2489 msgItems.emplace_back( wxString::Format(
_(
"DP Max Uncoupled-length: %s" ), msg ),
2490 wxString::Format(
_(
"(from %s)" ), constraint.
GetName() ) );
2494 else if( pcbFrame &&
selection.GetSize() == 2 )
2511 if( a_conn && b_conn )
2517 if( overlap.count() > 0 )
2521 if( a_netcode != b_netcode || a_netcode < 0 || b_netcode < 0 )
2524 msgItems.emplace_back(
_(
"Resolved Clearance" ),
2531 int actual_clearance = a_shape->GetClearance( b_shape.get() );
2533 if( actual_clearance > -1 && actual_clearance < std::numeric_limits<int>::max() )
2535 msgItems.emplace_back(
_(
"Actual Clearance" ),
2536 m_frame->MessageTextFromValue( actual_clearance ) );
2557 int actual = std::numeric_limits<int>::max();
2564 actual = std::min(
actual, hole->GetClearance( other.get() ) );
2572 actual = std::min(
actual, hole->GetClearance( other.get() ) );
2575 if(
actual < std::numeric_limits<int>::max() )
2578 msgItems.emplace_back(
_(
"Resolved Hole Clearance" ),
2581 if(
actual > -1 &&
actual < std::numeric_limits<int>::max() )
2583 msgItems.emplace_back(
_(
"Actual Hole Clearance" ),
2618 msgItems.emplace_back(
_(
"Resolved Edge Clearance" ),
2623 msgItems.emplace_back(
_(
"Resolved Margin Clearance" ),
2633 if( msgItems.empty() )
2636 std::map<KICAD_T, int> typeCounts;
2639 typeCounts[item->Type()]++;
2642 bool allSameType = ( typeCounts.size() == 1 );
2643 KICAD_T commonType = allSameType ? typeCounts.begin()->first :
NOT_USED;
2648 wxString typeName =
selection.Front()->GetFriendlyName();
2649 msgItems.emplace_back( typeName, wxString::Format( wxT(
"%d" ),
selection.GetSize() ) );
2654 std::set<wxString> layers;
2655 std::set<PAD_SHAPE> shapes;
2656 std::set<VECTOR2I> sizes;
2662 layers.insert(
pad->LayerMaskDescribe() );
2664 pad->Padstack().ForEachUniqueLayer(
2667 shapes.insert(
pad->GetShape( aLayer ) );
2668 sizes.insert(
pad->GetSize( aLayer ) );
2672 if( layers.size() == 1 )
2673 msgItems.emplace_back(
_(
"Layer" ), *layers.begin() );
2675 if( shapes.size() == 1 )
2678 if( sizes.size() == 1 )
2680 msgItems.emplace_back(
_(
"Pad Size" ),
2681 wxString::Format( wxT(
"%s x %s" ),
2682 m_frame->MessageTextFromValue( sizes.begin()->x ),
2683 m_frame->MessageTextFromValue( sizes.begin()->y ) ) );
2692 for(
const auto& [type, count] : typeCounts )
2694 if( !breakdown.IsEmpty() )
2695 breakdown += wxT(
", " );
2702 if( item->Type() == type )
2704 typeName = item->GetFriendlyName();
2709 breakdown += wxString::Format( wxT(
"%s: %d" ), typeName, count );
2712 msgItems.emplace_back(
_(
"Selected Items" ),
2713 wxString::Format( wxT(
"%d (%s)" ),
selection.GetSize(), breakdown ) );
2718 std::set<wxString> netNames;
2719 std::set<wxString> netClasses;
2729 netClasses.insert(
UnescapeString( bci->GetEffectiveNetClass()->GetHumanReadableName() ) );
2731 if( netNames.size() > 1 && netClasses.size() > 1 )
2736 if( netNames.size() == 1 )
2737 msgItems.emplace_back(
_(
"Net" ), *netNames.begin() );
2739 if( netClasses.size() == 1 )
2740 msgItems.emplace_back(
_(
"Resolved Netclass" ), *netClasses.begin() );
2746 bool lengthValid =
true;
2747 double selectedLength = 0;
2750 std::function<void(
EDA_ITEM* )> accumulateTrackLength;
2752 accumulateTrackLength =
2757 selectedLength +=
static_cast<PCB_TRACK*
>( aItem )->GetLength();
2775 lengthValid =
false;
2785 lengthValid =
false;
2792 accumulateTrackLength( item );
2797 msgItems.emplace_back(
_(
"Selected 2D Length" ),
2798 m_frame->MessageTextFromValue( selectedLength ) );
2804 LSET enabledLayers =
m_frame->GetBoard()->GetEnabledLayers();
2806 bool areaValid =
true;
2807 bool hasCopper =
false;
2808 bool hasNonCopper =
false;
2810 std::map<PCB_LAYER_ID, SHAPE_POLY_SET> layerPolys;
2813 std::function<void(
EDA_ITEM* )> accumulateArea;
2834 LSET itemLayers = boardItem->GetLayerSet() & enabledLayers;
2838 boardItem->TransformShapeToPolySet( layerPolys[layer], layer, 0,
2841 if( enabledCopper.
Contains( layer ) )
2844 hasNonCopper =
true;
2849 static_cast<PAD*
>( aItem )->TransformHoleToPolygon( holes, 0,
ARC_LOW_DEF,
2856 int R =
via->GetDrillValue() / 2;
2866 accumulateArea( item );
2873 for(
auto& [layer, layerPoly] : layerPolys )
2876 if( enabledCopper.
Contains( layer ) )
2877 layerPoly.BooleanSubtract( holes );
2879 area += layerPoly.Area();
2885 if( hasCopper && !hasNonCopper )
2886 areaLabel =
_(
"Selected 2D Copper Area" );
2887 else if( !hasCopper && hasNonCopper )
2888 areaLabel =
_(
"Selected 2D Area" );
2890 areaLabel =
_(
"Selected 2D Total Area" );
2892 msgItems.emplace_back( areaLabel,
2902 m_frame->SetMsgPanel( msgItems );
2919 wxFileName fileName = wxFileName( *aEvent.
Parameter<wxString*>() );
2926 wxString filePath = fileName.GetFullPath();
2944 std::vector<BOARD_ITEM*> items;
2945 items.push_back(
table );
2948 commit.
Push(
_(
"Place Board Characteristics" ) );
2964 std::vector<BOARD_ITEM*> items;
2965 items.push_back(
table );
2968 commit.
Push(
_(
"Place Board Stackup Table" ) );
2982 const auto available =
2990 if( !available( layer ) )
2993 const auto next = std::find_if( candidates.begin(), candidates.end(), available );
2995 if(
next == candidates.end() )
2997 m_frame->ShowInfoBarError(
_(
"No documentation layer is enabled to hold a drill "
3003 m_frame->SetActiveLayer( layer );
3008 if( !
board->IsLayerVisible( layer ) )
3010 m_frame->ShowInfoBarWarning( wxString::Format(
3011 _(
"Layer '%s' is hidden; nothing will be shown until you make it visible." ),
3012 board->GetLayerName( layer ) ) );
3041 std::vector<BOARD_ITEM*> items;
3042 items.push_back( chart );
3048 board->GetDesignSettings().GetDrillSymbolProfile() = assigned;
3051 commit.
Push(
_(
"Place Drill Chart" ) );
3068 const auto available =
3085 if( !available( layer ) )
3088 const auto next = std::find_if( candidates.begin(), candidates.end(), available );
3090 if(
next == candidates.end() )
3092 m_frame->ShowInfoBarError(
_(
"Every documentation layer already has a drill map." ) );
3097 m_frame->SetActiveLayer( layer );
3102 if( !
board->IsLayerVisible( layer ) )
3104 m_frame->ShowInfoBarWarning( wxString::Format(
3105 _(
"Layer '%s' is hidden; nothing will be shown until you make it visible." ),
3106 board->GetLayerName( layer ) ) );
3117 commit.
Push(
_(
"Place Drill Map" ) );
3142 dialog->
Show(
true );
3152 m_frame->SetDisplayOptions( opts );
3202 std::vector<const EMBEDDED_FILES*> stack;
3206 int embeddedCount = 0;
3210 bool fpModified =
false;
3221 wxFileName fname( fullPath );
3222 wxString ext = fname.GetExt().Upper();
3224 if( fname.Exists() )
3229 model.m_Filename = file->GetLink();
3234 if( ext ==
"WRL" || ext ==
"WRZ" )
3239 alts.Add( wxT(
"stp" ) );
3240 alts.Add( wxT(
"step" ) );
3241 alts.Add( wxT(
"STP" ) );
3242 alts.Add( wxT(
"STEP" ) );
3243 alts.Add( wxT(
"Stp" ) );
3244 alts.Add( wxT(
"Step" ) );
3245 alts.Add( wxT(
"stpz" ) );
3246 alts.Add( wxT(
"stpZ" ) );
3247 alts.Add( wxT(
"STPZ" ) );
3249 for(
const auto& alt : alts )
3251 wxFileName altFile( fname.GetPath(),
3252 fname.GetName() + wxT(
"." ) + alt );
3254 if( altFile.IsOk() && altFile.FileExists() )
3269 if( embeddedCount > 0 )
3271 commit.
Push(
_(
"Embed 3D Models" ) );
3272 wxString msg = wxString::Format(
_(
"%d 3D model(s) successfully embedded." ), embeddedCount );
3273 m_frame->GetInfoBar()->ShowMessageFor( msg, 5000 );
constexpr EDA_IU_SCALE pcbIUScale
constexpr int ARC_LOW_DEF
std::set< BOARD_ITEM *, CompareByUuid > BOARD_ITEM_SET
Set of BOARD_ITEMs ordered by UUID.
PCB_TABLE * Build_Board_Characteristics_Table(BOARD *aBoard, EDA_UNITS aDisplayUnits)
@ NORMAL
Inactive layers are shown normally (no high-contrast mode)
@ HIDDEN
Inactive layers are hidden.
@ DIMMED
Inactive layers are dimmed (old high-contrast mode)
@ RATSNEST
Net/netclass colors are shown on ratsnest lines only.
@ ALL
Net/netclass colors are shown on all net copper.
@ OFF
Net (and netclass) colors are not shown.
@ VISIBLE
Ratsnest lines are drawn to items on visible layers only.
@ ALL
Ratsnest lines are drawn to items on all layers (default)
PCB_TABLE * Build_Board_Stackup_Table(BOARD *aBoard, EDA_UNITS aDisplayUnits)
constexpr BOX2I KiROUND(const BOX2D &aBoxD)
static TOOL_ACTION selectItem
Select an item (specified as the event parameter).
static TOOL_ACTION addLibrary
static TOOL_ACTION pickerTool
static TOOL_ACTION gridResetOrigin
static TOOL_ACTION pasteSpecial
static TOOL_ACTION highContrastModeCycle
static TOOL_ACTION highContrastMode
static TOOL_ACTION deleteTool
static TOOL_ACTION selectionClear
Clear the current selection.
static TOOL_ACTION newLibrary
static TOOL_ACTION gridSetOrigin
static TOOL_ACTION ddAddLibrary
static TOOL_ACTION selectItems
Select a list of items (specified as the event parameter)
static const ADVANCED_CFG & GetCfg()
Get the singleton instance's config, which is shared by all consumers.
APP_SETTINGS_BASE is a settings class that should be derived for each standalone KiCad application.
virtual void Push(const wxString &aMessage=wxEmptyString, int aCommitFlags=0) override
Execute the changes.
virtual void Revert() override
Revert the commit by restoring the modified items state.
A base class derived from BOARD_ITEM for items that can be connected and have a net,...
PCB_LAYER_ID GetLayer() const override
Return the primary layer this item is on.
NETINFO_ITEM * GetNet() const
Return #NET_INFO object for a given item.
void SetGridOrigin(const VECTOR2I &aOrigin)
BOARD_STACKUP & GetStackupDescriptor()
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
virtual bool IsConnected() const
Returns information if the object is derived from BOARD_CONNECTED_ITEM.
virtual std::shared_ptr< SHAPE_SEGMENT > GetEffectiveHoleShape(PCB_LAYER_ID aLayer=UNDEFINED_LAYER, DRC_CONSTRAINT_T aUsage=NULL_CONSTRAINT) const
virtual PCB_LAYER_ID GetLayer() const
Return the primary layer this item is on.
virtual bool IsOnLayer(PCB_LAYER_ID aLayer) const
Test to see if this object is on the given layer.
virtual void SetLayer(PCB_LAYER_ID aLayer)
Set the layer this item is on.
FOOTPRINT * GetParentFootprint() const
virtual LSET GetLayerSet() const
Return a std::bitset of all layers on which the item physically resides.
virtual bool IsOnCopperLayer() const
virtual std::shared_ptr< SHAPE > GetEffectiveShape(PCB_LAYER_ID aLayer=UNDEFINED_LAYER, FLASHING aFlash=FLASHING::DEFAULT, DRC_CONSTRAINT_T aUsage=NULL_CONSTRAINT) const
Some pad shapes can be complex (rounded/chamfered rectangle), even without considering custom shapes.
virtual bool HasHole() const
virtual void RemapKIIDs(const std::map< KIID, KIID > &aIdMap)
Remap KIIDs this item stores to reference other items (e.g.
bool SynchronizeWithBoard(BOARD_DESIGN_SETTINGS *aSettings)
Synchronize the BOARD_STACKUP_ITEM* list with the board.
Information pertinent to a Pcbnew printed circuit board.
INSPECT_RESULT Visit(INSPECTOR inspector, void *testData, const std::vector< KICAD_T > &scanTypes) override
May be re-implemented for each derived class in order to handle all the types given by its member dat...
EMBEDDED_FILES * GetEmbeddedFiles() override
void SetVisibleLayers(const LSET &aLayerMask)
A proxy function that calls the correspondent function in m_BoardSettings changes the bit-mask of vis...
void MapNets(BOARD *aDestBoard)
Map all nets in the given board to nets with the same name (if any) in the destination board.
const std::vector< BOARD_CONNECTED_ITEM * > AllConnectedItems()
const PAGE_INFO & GetPageSettings() const
void SetProperties(const std::map< wxString, wxString > &aProps)
const GROUPS & Groups() const
The groups must maintain the following invariants.
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.
FOOTPRINT * GetFirstFootprint() const
Get the first footprint on the board or nullptr.
TITLE_BLOCK & GetTitleBlock()
int GetCopperLayerCount() const
const std::map< wxString, wxString > & GetProperties() const
const FOOTPRINTS & Footprints() const
void RemoveAll(std::initializer_list< KICAD_T > aTypes={ PCB_NETINFO_T, PCB_MARKER_T, PCB_GROUP_T, PCB_ZONE_T, PCB_GENERATOR_T, PCB_FOOTPRINT_T, PCB_TRACE_T, PCB_SHAPE_T })
An efficient way to remove all items of a certain type from the board.
const BOARD_ITEM_SET GetItemSet()
Collect every owned item (tracks, zones, generators, footprints, drawings, markers,...
void SetPageSettings(const PAGE_INFO &aPageSettings)
const CONSTRAINTS & Constraints() const
Geometric constraints (#2329) owned by this board.
void SetCopperLayerCount(int aCount)
bool IsLayerVisible(PCB_LAYER_ID aLayer) const
A proxy function that calls the correspondent function in m_BoardSettings tests whether a given layer...
BOARD_DESIGN_SETTINGS & GetDesignSettings() const
const LSET & GetEnabledLayers() const
A proxy function that calls the corresponding function in m_BoardSettings.
void Remove(BOARD_ITEM *aBoardItem, REMOVE_MODE aMode=REMOVE_MODE::NORMAL) override
Removes an item from the container.
void SetEnabledLayers(const LSET &aLayerMask)
A proxy function that calls the correspondent function in m_BoardSettings.
void SetTitleBlock(const TITLE_BLOCK &aTitleBlock)
const DRAWINGS & Drawings() const
constexpr size_type GetHeight() const
int GetCount() const
Return the number of objects in the list.
void Remove(int aIndex)
Remove the item at aIndex (first position is 0).
Color settings are a bit different than most of the settings objects in that there can be more than o...
void SetColor(int aLayer, const COLOR4D &aColor)
COLOR4D GetColor(int aLayer) const
COMMIT & Added(EDA_ITEM *aItem, BASE_SCREEN *aScreen=nullptr)
Notify observers that aItem has been added.
COMMIT & Modify(EDA_ITEM *aItem, BASE_SCREEN *aScreen=nullptr, RECURSE_MODE aRecurse=RECURSE_MODE::NO_RECURSE)
Modify a given item in the model.
COMMIT & Add(EDA_ITEM *aItem, BASE_SCREEN *aScreen=nullptr)
Add a new item to the model.
DO_NOT_SHOW_AGAIN m_DoNotShowAgain
void SelectLibId(const LIB_ID &aLibId)
LIB_ID GetSelectedLibId(int *aUnit=nullptr) const
DESIGN_BLOCK * GetDesignBlock(const LIB_ID &aLibId, bool aUseCacheLib, bool aShowErrorMsg, wxString *aErrorMsg=nullptr)
Load design block from design block library table.
const LIB_ID & GetLibId() const
Modeless inspector for the board's drill groups.
static std::map< wxString, PCB_LAYER_ID > RunModal(wxWindow *aParent, const std::vector< INPUT_LAYER_DESC > &aLayerDesc)
Create and show a dialog (modal) and returns the data from it after completion.
bool GetClearNets() const
bool Show(bool show) override
MINOPTMAX< int > & Value()
Grouping rules and symbol assignments, shared by reference so a chart and its map can never disagree ...
virtual APP_SETTINGS_BASE * config() const
Return the settings object used in SaveSettings(), and is overloaded in KICAD_MANAGER_FRAME.
void ShowInfoBarError(const wxString &aErrorMsg, bool aShowCloseButton=false, INFOBAR_MESSAGE_TYPE aType=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()
bool GetOverrideLocks() const
virtual void Refresh(bool aEraseBackground=true, const wxRect *aRect=nullptr) override
A set of EDA_ITEMs (i.e., without duplicates).
bool HasDesignBlockLink() const
void RemoveItem(EDA_ITEM *aItem)
Remove item from group.
A base class for most all the KiCad significant classes used in schematics and boards.
virtual void SetPosition(const VECTOR2I &aPos)
void SetFlags(EDA_ITEM_FLAGS aMask)
virtual wxString GetItemDescription(UNITS_PROVIDER *aUnitsProvider, bool aFull) const
Return a user-visible description string of this item.
virtual EDA_GROUP * GetParentGroup() const
KICAD_T Type() const
Returns the type of object.
void ClearFlags(EDA_ITEM_FLAGS aMask=EDA_ITEM_ALL_FLAGS)
virtual void GetMsgPanelInfo(EDA_DRAW_FRAME *aFrame, std::vector< MSG_PANEL_ITEM > &aList)
Populate aList of MSG_PANEL_ITEM objects with it's internal state for display purposes.
bool HasFlag(EDA_ITEM_FLAGS aFlag) const
virtual void SetParent(EDA_ITEM *aParent)
bool IsHatchedFill() const
EMBEDDED_FILE * AddFile(const wxFileName &aName, bool aOverwrite)
Load a file from disk and adds it to the collection.
static const TOOL_EVENT ClearedEvent
static const TOOL_EVENT SelectedEvent
static const TOOL_EVENT SelectedItemsModified
Selected items were moved, this can be very high frequency on the canvas, use with care.
static const TOOL_EVENT PointSelectedEvent
static const TOOL_EVENT ContrastModeChangedByKeyEvent
static const TOOL_EVENT ConnectivityChangedEvent
Selected item had a property changed (except movement)
static const TOOL_EVENT UnselectedEvent
Provide an extensible class to resolve 3D model paths.
A general implementation of a COLLECTORS_GUIDE.
Used when the right click button is pressed, or when the select tool is in effect.
static const std::vector< KICAD_T > BoardLevelItems
A scan list for all primary board items, omitting items which are subordinate to a FOOTPRINT,...
static const std::vector< KICAD_T > AllBoardItems
A scan list for all editable board items.
void Collect(BOARD_ITEM *aItem, const std::vector< KICAD_T > &aScanList, const VECTOR2I &aRefPos, const COLLECTORS_GUIDE &aGuide)
Scan a BOARD_ITEM using this class's Inspector method, which does the collection.
static const std::vector< KICAD_T > FootprintItems
A scan list for primary footprint items.
void SetDialogSizeInDU(int aWidth, int aHeight)
Set the dialog size, using a "logical" value.
void AddHTML_Text(const wxString &message)
Add HTML text (without any change) to message list.
virtual void SetProgressReporter(PROGRESS_REPORTER *aReporter)
Set an optional progress reporter.
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()
Helper class to create more flexible dialogs, including 'do not show again' checkbox handling.
void DoNotShowCheckbox(wxString file, int line)
Shows the 'do not show again' checkbox.
A color representation with 4 components: red, green, blue, alpha.
COLOR4D & Darken(double aFactor)
Makes the color darker by a given factor.
COLOR4D & Brighten(double aFactor)
Makes the color brighter by a given factor.
void SetGridOrigin(const VECTOR2D &aGridOrigin)
Set the origin point for the grid.
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...
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.
bool IsBOARD_ITEM() const
Hold a (potentially large) number of VIEW_ITEMs and renders them on a graphics device provided by the...
virtual void Add(VIEW_ITEM *aItem, int aDrawPriority=-1)
Add a VIEW_ITEM to the view.
virtual void Remove(VIEW_ITEM *aItem)
Remove a VIEW_ITEM from the view.
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...
GAL * GetGAL() const
Return the GAL this view is using to draw graphical primitives.
void MarkDirty()
Force redraw of view on the next rendering.
Plugin class for import plugins that support remappable layers.
All information about a layer pair as stored in the layer pair store.
Management class for layer pairs in a PCB.
std::vector< LAYER_PAIR_INFO > GetEnabledLayerPairs(int &aCurrentIndex) const
Get a vector of all enabled layer pairs, in order.
void SetCurrentLayerPair(const LAYER_PAIR &aPair)
Set the "active" layer pair.
A logical library item identifier and consists of various portions much like a URI.
bool IsValid() const
Check if this LID_ID is valid.
const UTF8 & GetLibItemName() const
LSEQ is a sequence (and therefore also a set) of PCB_LAYER_IDs.
LSET is a set of PCB_LAYER_IDs.
static const LSET & AllCuMask()
return AllCuMask( MAX_CU_LAYERS );
LSEQ UIOrder() const
Return the copper, technical and user layers in the order shown in layer widget.
LSEQ CuStack() const
Return a sequence of copper layers in starting from the front/top and extending to the back/bottom.
LSEQ Seq(const LSEQ &aSequence) const
Return an LSEQ from the union of this LSET and a desired sequence.
static LSET AllCuMask(int aCuLayerCount)
Return a mask holding the requested number of Cu PCB_LAYER_IDs.
bool Contains(PCB_LAYER_ID aLayer) const
See if the layer set contains a PCB layer.
EDA_MSG_PANEL items for displaying messages.
Handle the data for a net.
static const int UNCONNECTED
Constant that holds the "unconnected net" number (typically 0) all items "connected" to this net are ...
static NETINFO_ITEM * OrphanedItem()
NETINFO_ITEM meaning that there was no net assigned for an item, as there was no board storing net li...
static wxString ShowPadShape(PAD_SHAPE aShape)
bool HasHole() const override
Describe the page size and margins of a paper page on which to eventually print or plot.
static TOOL_ACTION layerToggle
static TOOL_ACTION layerInner12
static TOOL_ACTION nextFootprint
static TOOL_ACTION layerInner8
static TOOL_ACTION zoneDisplayToggle
static TOOL_ACTION previousFootprint
static TOOL_ACTION layerInner3
static TOOL_ACTION layerPrev
static TOOL_ACTION showRatsnest
static TOOL_ACTION zoneFillAll
static TOOL_ACTION layerInner2
static TOOL_ACTION magneticSnapAllLayers
static TOOL_ACTION collect3DModels
static TOOL_ACTION saveToLinkedDesignBlock
static TOOL_ACTION placeDrillMap
static TOOL_ACTION ddAppendBoard
Drag and drop.
static TOOL_ACTION layerInner25
static TOOL_ACTION magneticSnapActiveLayer
Snapping controls.
static TOOL_ACTION layerAlphaDec
static TOOL_ACTION zoneDisplayFilled
static TOOL_ACTION layerInner24
static TOOL_ACTION viaDisplayMode
static TOOL_ACTION layerInner29
static TOOL_ACTION placeCharacteristics
static TOOL_ACTION layerInner11
static TOOL_ACTION layerAlphaInc
static TOOL_ACTION layerPairPresetsCycle
static TOOL_ACTION layerInner16
static TOOL_ACTION layerInner26
static TOOL_ACTION layerInner18
static TOOL_ACTION layerInner14
static TOOL_ACTION trackDisplayMode
static TOOL_ACTION magneticSnapToggle
static TOOL_ACTION layerInner6
static TOOL_ACTION applyDesignBlockLayout
static TOOL_ACTION ddImportFootprint
static TOOL_ACTION zoneDisplayTriangulated
static TOOL_ACTION rehatchShapes
static TOOL_ACTION layerInner22
static TOOL_ACTION placeDesignBlock
static TOOL_ACTION layerInner5
static TOOL_ACTION zoneDisplayFractured
static TOOL_ACTION ratsnestModeCycle
static TOOL_ACTION layerInner20
static TOOL_ACTION layerInner7
static TOOL_ACTION layerInner27
static TOOL_ACTION loadFpFromBoard
static TOOL_ACTION appendBoard
static TOOL_ACTION netColorModeCycle
static TOOL_ACTION layerInner1
static TOOL_ACTION layerInner10
static TOOL_ACTION layerInner15
static TOOL_ACTION layerInner17
static TOOL_ACTION flipBoard
static TOOL_ACTION layerBottom
static TOOL_ACTION zoneDisplayOutline
static TOOL_ACTION ratsnestLineMode
static TOOL_ACTION layerInner19
static TOOL_ACTION layerInner9
static TOOL_ACTION showDrillGroups
static TOOL_ACTION placeDrillChart
static TOOL_ACTION move
move or drag an item
static TOOL_ACTION layerInner30
static TOOL_ACTION layerTop
static TOOL_ACTION updateDesignBlockFromSelection
static TOOL_ACTION layerInner4
static TOOL_ACTION layerInner13
static TOOL_ACTION layerInner21
static TOOL_ACTION saveFpToBoard
static TOOL_ACTION layerNext
static TOOL_ACTION placeLinkedDesignBlock
static TOOL_ACTION placeStackup
static TOOL_ACTION layerInner23
static TOOL_ACTION layerInner28
Common, abstract interface for edit frames.
void RestoreCopyFromUndoList(wxCommandEvent &aEvent)
Undo the last edit:
APPEARANCE_CONTROLS * GetAppearancePanel()
void RestoreCopyFromRedoList(wxCommandEvent &aEvent)
Redo the last edit:
void UpdateVertexEditorSelection(BOARD_ITEM *aItem)
Base PCB main window class for Pcbnew, Gerbview, and CvPcb footprint viewer.
const VECTOR2I GetPageSizeIU() const override
Works off of GetPageSettings() to return the size of the paper page in the internal units of this par...
void OnModify() override
Must be called after a change in order to set the "modify" flag and update other data structures and ...
virtual BOARD_DESIGN_SETTINGS & GetDesignSettings() const
Return the BOARD_DESIGN_SETTINGS for the open project.
A geometric constraint between board items (issue #2329).
int PlaceDrillChart(const TOOL_EVENT &aEvent)
int RehatchShapes(const TOOL_EVENT &aEvent)
void setTransitions() override
< Sets up handlers for various events.
int AppendBoardFromFile(const TOOL_EVENT &aEvent)
int AddLibrary(const TOOL_EVENT &aEvent)
int DdAppendBoard(const TOOL_EVENT &aEvent)
int LoadFpFromBoard(const TOOL_EVENT &aEvent)
int SaveToLinkedDesignBlock(const TOOL_EVENT &aEvent)
int DdImportFootprint(const TOOL_EVENT &aEvent)
int SnapModeFeedback(const TOOL_EVENT &aEvent)
int NetColorModeCycle(const TOOL_EVENT &aEvent)
int SaveFpToBoard(const TOOL_EVENT &aEvent)
int RatsnestModeCycle(const TOOL_EVENT &aEvent)
int TrackDisplayMode(const TOOL_EVENT &aEvent)
int DdAddLibrary(const TOOL_EVENT &aEvent)
int ShowDrillGroups(const TOOL_EVENT &aEvent)
int Redo(const TOOL_EVENT &aEvent)
int PlaceLinkedDesignBlock(const TOOL_EVENT &aEvent)
bool placeBoardItems(BOARD_COMMIT *aCommit, std::vector< BOARD_ITEM * > &aItems, bool aIsNew, bool aAnchorAtOrigin, bool aReannotateDuplicates, bool aSkipMove)
Add and select or just select for move/place command a list of board items.
int LayerPresetFeedback(const TOOL_EVENT &aEvent)
int UpdateMessagePanel(const TOOL_EVENT &aEvent)
int LayerAlphaDec(const TOOL_EVENT &aEvent)
static void rehatchBoardItem(KIGFX::VIEW *aView, BOARD_ITEM *aItem)
Regenerate and redraw an item's hatching, skipping non-hatched shapes. Static for testing.
int LayerNext(const TOOL_EVENT &aEvent)
int PlaceStackup(const TOOL_EVENT &aEvent)
std::unique_ptr< STATUS_TEXT_POPUP > m_statusPopup
int ToggleRatsnest(const TOOL_EVENT &aEvent)
int LayerAlphaInc(const TOOL_EVENT &aEvent)
int HighContrastModeCycle(const TOOL_EVENT &aEvent)
std::unique_ptr< KIGFX::ORIGIN_VIEWITEM > m_gridOrigin
int HighContrastMode(const TOOL_EVENT &aEvent)
int Undo(const TOOL_EVENT &aEvent)
int ViaDisplayMode(const TOOL_EVENT &aEvent)
static void DoSetGridOrigin(KIGFX::VIEW *aView, PCB_BASE_FRAME *aFrame, EDA_ITEM *originViewItem, const VECTOR2D &aPoint)
int CollectAndEmbed3DModels(const TOOL_EVENT &aEvent)
void pruneItemLayers(std::vector< BOARD_ITEM * > &aItems)
Helper for pasting.
int GridPlaceOrigin(const TOOL_EVENT &aEvent)
int FlipPcbView(const TOOL_EVENT &aEvent)
int PlaceCharacteristics(const TOOL_EVENT &aEvent)
wxWeakRef< wxDialog > m_drillGroupsDialog
Modeless, so it outlives the action that opened it.
int ApplyDesignBlockLayout(const TOOL_EVENT &aEvent)
int SnapMode(const TOOL_EVENT &aEvent)
int ContrastModeFeedback(const TOOL_EVENT &aEvent)
int LayerToggle(const TOOL_EVENT &aEvent)
int AppendBoard(PCB_IO &pi, const wxString &fileName, DESIGN_BLOCK *aDesignBlock=nullptr, BOARD_COMMIT *aCommit=nullptr, bool aSkipMove=false)
void Reset(RESET_REASON aReason) override
Bring the tool to a known, initial state.
int IterateFootprint(const TOOL_EVENT &aEvent)
int Print(const TOOL_EVENT &aEvent)
int ZoneDisplayMode(const TOOL_EVENT &aEvent)
int GridResetOrigin(const TOOL_EVENT &aEvent)
BOARD_ITEM * m_pickerItem
int InteractiveDelete(const TOOL_EVENT &aEvent)
int AppendDesignBlock(const TOOL_EVENT &aEvent)
int LayerPrev(const TOOL_EVENT &aEvent)
int PlaceDrillMap(const TOOL_EVENT &aEvent)
int CycleLayerPresets(const TOOL_EVENT &aEvent)
int Paste(const TOOL_EVENT &aEvent)
void unfilledZoneCheck()
We have bug reports indicating that some new users confuse zone filling/unfilling with the display mo...
int LayerSwitch(const TOOL_EVENT &aEvent)
bool m_FlipBoardView
true if the board is flipped to show the mirrored view
HIGH_CONTRAST_MODE m_ContrastModeDisplay
How inactive layers are displayed.
NET_COLOR_MODE m_NetColorMode
How to use color overrides on specific nets and netclasses.
ZONE_DISPLAY_MODE m_ZoneDisplayMode
void RedrawRatsnest()
Return the bounding box of the view that should be used if model is not valid.
A drill chart placed on the board, kept in step with the holes.
void RebuildCells(const BOARD &aBoard, DRILL_SYMBOL_PROFILE *aAssignedProfile=nullptr)
Regenerate the cells from the board.
Turns on drill symbols at the holes, for one layer.
The main frame for Pcbnew.
PCB_DESIGN_BLOCK_PANE * GetDesignBlockPane() const
static const TOOL_EVENT & SnappingModeChangedByKeyEvent()
Hotkey feedback.
static const TOOL_EVENT & LayerPairPresetChangedByKeyEvent()
A set of BOARD_ITEMs (i.e., without duplicates).
PCB_FILE_T
The set of file types that the PCB_IO_MGR knows about, and for which there has been a plugin written,...
@ KICAD_SEXP
S-expression Pcbnew file format.
static PCB_IO * FindPlugin(PCB_FILE_T aFileType)
Return a #PLUGIN which the caller can use to import, export, save, or load design documents.
static PCB_FILE_T FindPluginTypeFromBoardPath(const wxString &aFileName, int aCtl=0)
Return a plugin type given a path for a board file.
A base class that BOARD loading and saving plugins should derive from.
void LoadAndAppendBoard(const wxString &aFileName, BOARD &aAppendToMe, const std::map< std::string, UTF8 > *aProperties=nullptr, PROJECT *aProject=nullptr)
Same as LoadBoard(), but appends the loaded board to an existing board, which must already exist.
virtual void SetQueryUserCallback(std::function< bool(wxString aTitle, int aIcon, wxString aMessage, wxString aAction)> aCallback)
Registers a KIDIALOG callback for collecting info from the user.
Class that manages the presentation of PCB layers in a PCB frame.
wxString getLayerPairName(const LAYER_PAIR &aPair) const
PCB_LAYER_ID m_Route_Layer_TOP
PCB_LAYER_ID m_Route_Layer_BOTTOM
void UpdateHatching() const override
const BOX2I GetBoundingBox() const override
Return the orthogonal bounding box of this object for display purposes.
void Move(const VECTOR2I &aMoveVector) override
Move this object.
void SetLayer(PCB_LAYER_ID aLayer) override
Set the layer this item is on.
const VECTOR2I & GetStart() const
const VECTOR2I & GetEnd() const
virtual COMMON_SETTINGS * GetCommonSettings() const
static S3D_CACHE * Get3DCacheManager(PROJECT *aProject, bool updateProjDir=false)
Return a pointer to an instance of the 3D cache manager.
Container for project specific data.
virtual const wxString GetProjectPath() const
Return the full path of the project.
Cache for storing the 3D shapes.
FILENAME_RESOLVER * GetResolver() noexcept
ecoord SquaredDistance(const SEG &aSeg) const
VECTOR2I::extended_type ecoord
virtual void Add(EDA_ITEM *aItem)
A null aItem is ignored; the selection never holds null members.
Represent a polyline containing arcs as well as line segments: A chain of connected line and/or arc s...
Represent a set of closed polygons.
const SHAPE_LINE_CHAIN & COutline(int aIndex) const
virtual VECTOR2I Centre() const
Compute a center-of-mass of the shape.
Hold the information shown in the lower right corner of a plot, printout, or editing view.
static constexpr extended_type ECOORD_MAX
A modified version of the wxInfoBar class that allows us to:
void RemoveAllButtons()
Remove all the buttons that have been added by the user.
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.
void AddLink(const wxString &aLinkText, const std::function< void(wxHyperlinkEvent &)> &aFn)
Add a hypertext link to the infobar.
Multi-thread safe progress reporter dialog, intended for use of tasks that parallel reporting back of...
Handle a list of polygons defining a copper zone.
void SetDoNotAllowPads(bool aEnable)
void AddPolygon(std::vector< VECTOR2I > &aPolygon)
Add a polygon to the zone outline.
void SetPlacementAreaSource(const wxString &aSource)
void SetPlacementAreaSourceType(PLACEMENT_SOURCE_T aType)
SHAPE_POLY_SET * Outline()
void SetHatchStyle(ZONE_BORDER_DISPLAY_STYLE aStyle)
void SetIsRuleArea(bool aEnable)
void SetDoNotAllowTracks(bool aEnable)
const wxString & GetZoneName() const
void SetLayerSet(const LSET &aLayerSet) override
void SetDoNotAllowVias(bool aEnable)
void SetDoNotAllowFootprints(bool aEnable)
void SetDoNotAllowZoneFills(bool aEnable)
void SetZoneName(const wxString &aName)
void SetPlacementAreaEnabled(bool aEnabled)
std::unique_ptr< wxBitmap > GetImageFromClipboard()
Get image data from the clipboard, if there is any.
std::string GetClipboardUTF8()
Return the information currently stored in the system clipboard.
bool IsOK(wxWindow *aParent, const wxString &aMessage)
Display a yes/no dialog with aMessage and returns the user response.
void DisplayErrorMessage(wxWindow *aParent, const wxString &aText, const wxString &aExtraInfo)
Display an error message with aMessage.
void DisplayError(wxWindow *aParent, const wxString &aText)
Display an error or warning message box with aMessage.
This file is part of the common library.
void TransformCircleToPolygon(SHAPE_LINE_CHAIN &aBuffer, const VECTOR2I &aCenter, int aRadius, int aError, ERROR_LOC aErrorLoc, int aMinSegCount=0)
Convert a circle to a polygon, using multiple straight lines.
void BuildConvexHull(std::vector< VECTOR2I > &aResult, const std::vector< VECTOR2I > &aPoly)
Calculate the convex hull of a list of points in counter-clockwise order.
@ DIFF_PAIR_GAP_CONSTRAINT
@ EDGE_CLEARANCE_CONSTRAINT
@ MAX_UNCOUPLED_CONSTRAINT
@ HOLE_CLEARANCE_CONSTRAINT
LSET DrillDocumentationLayers()
Layers a chart or map may live on.
Declaration of the eda_3d_viewer class.
#define IS_NEW
New item, just created.
#define MCT_SKIP_STRUCT
flag used by the multichannel tool to mark items that should be skipped
#define SKIP_STRUCT
flag indicating that the structure should be ignored
static FILENAME_RESOLVER * resolver
static const std::string KiCadUriPrefix
wxString KeyNameFromKeyCode(int aKeycode, bool *aIsFound)
Return the key name from the key code.
std::unique_ptr< T > IO_RELEASER
Helper to hold and release an IO_BASE object when exceptions are thrown.
#define KICTL_KICAD_ONLY
chosen file is from KiCad according to user
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.
PCB_LAYER_ID
A quick note on layer IDs:
#define ZONE_LAYER_FOR(boardLayer)
std::optional< wxString > GetMsgPanelDisplayUuid(const KIID &aKiid)
Get a formatted UUID string for display in the message panel, according to the current advanced confi...
SHAPE_LINE_CHAIN RectifyPolygon(const SHAPE_LINE_CHAIN &aPoly)
void CollectBoxCorners(const BOX2I &aBox, std::vector< VECTOR2I > &aCorners)
Add the 4 corners of a BOX2I to a vector.
@ REPAINT
Item needs to be redrawn.
constexpr char APPEND_PRESERVE_DESTINATION_STACKUP[]
bool contains(const _Container &__container, _Value __value)
Returns true if the container contains the given value.
bool AskLoadBoardFileName(PCB_EDIT_FRAME *aParent, wxString *aFileName, int aCtl=0)
Show a wxFileDialog asking for a BOARD filename to open.
PCB_TABLE * Build_Board_Characteristics_Table(BOARD *aBoard, EDA_UNITS aDisplayUnits)
PCB_TABLE * Build_Board_Stackup_Table(BOARD *aBoard, EDA_UNITS aDisplayUnits)
static void pasteFootprintItemsToFootprintEditor(FOOTPRINT *aClipFootprint, BOARD *aBoard, std::vector< BOARD_ITEM * > &aPastedItems)
Class to handle a set of BOARD_ITEMs.
bool AskLoadBoardFileName(PCB_EDIT_FRAME *aParent, wxString *aFileName, int aCtl=0)
Show a wxFileDialog asking for a BOARD filename to open.
PGM_BASE & Pgm()
The global program "get" accessor.
#define HITTEST_THRESHOLD_PIXELS
std::vector< EDA_ITEM * > EDA_ITEMS
Utility functions for working with shapes.
std::vector< FAB_LAYER_COLOR > dummy
wxString UnescapeString(const wxString &aSource)
RATSNEST_MODE m_RatsnestMode
bool m_ShowGlobalRatsnest
std::unordered_set< EDA_ITEM * > m_designBlockItems
PLACEMENT_SOURCE_T m_sourceType
std::set< FOOTPRINT * > m_components
wxString result
Test unit parsing edge cases and error handling.
constexpr KICAD_T BaseType(const KICAD_T aType)
Return the underlying type of the given type.
KICAD_T
The set of class identification values stored in EDA_ITEM::m_structType.
@ PCB_CONSTRAINT_T
a geometric constraint between board items
@ 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_VIA_T
class PCB_VIA, a via (like a track segment on a copper layer)
@ PCB_DRILL_MAP_T
class PCB_DRILL_MAP, drill symbols drawn at the holes
@ 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
@ NOT_USED
the 3d code uses this value
@ PCB_MARKER_T
class PCB_MARKER, a marker used to show something
@ PCB_BARCODE_T
class PCB_BARCODE, a barcode (graphic item)
@ PCB_TABLECELL_T
class PCB_TABLECELL, PCB_TEXTBOX for use in tables
@ 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_DIMENSION_T
class PCB_DIMENSION_BASE: abstract dimension meta-type
@ 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
@ PCB_DRILL_CHART_T
class PCB_DRILL_CHART, a live drill chart derived from PCB_TABLE
VECTOR2< int32_t > VECTOR2I
VECTOR2< double > VECTOR2D
Definition of file extensions used in Kicad.