24#include <unordered_set>
27#include <wx/clipbrd.h>
29#include <wx/filedlg.h>
31#include <wx/imagpng.h>
35#include <wx/mstream.h>
36#include <wx/textdlg.h>
37#include <wx/treectrl.h>
121constexpr int clipboardMaxBitmapSize = 4096;
122constexpr double clipboardBboxInflation = 0.02;
125std::vector<SCH_ITEM*> collectSelectionItems(
const SCH_SELECTION& aSelection )
127 std::vector<SCH_ITEM*> items;
128 items.reserve( aSelection.
GetSize() );
135 items.push_back( schItem );
148 bbox.
GetHeight() * clipboardBboxInflation );
154bool generateHtmlFromPngData(
const wxMemoryBuffer& aPngData, wxMemoryBuffer& aHtmlBuffer )
156 if( aPngData.GetDataLen() == 0 )
159 std::vector<uint8_t> pngVec(
static_cast<const uint8_t*
>( aPngData.GetData() ),
160 static_cast<const uint8_t*
>( aPngData.GetData() ) + aPngData.GetDataLen() );
162 std::vector<uint8_t> base64Data;
165 std::string html =
"<img src=\"data:image/png;base64,";
166 html.append(
reinterpret_cast<const char*
>( base64Data.data() ), base64Data.size() );
167 html.append(
"\" />" );
169 aHtmlBuffer.SetDataLen( 0 );
170 aHtmlBuffer.AppendData( html.data(), html.size() );
177 wxMemoryBuffer& aBuffer )
182 renderSettings.m_ShowHiddenPins =
false;
183 renderSettings.m_ShowHiddenFields =
false;
185 std::unique_ptr<SVG_PLOTTER> plotter = std::make_unique<SVG_PLOTTER>();
186 plotter->SetRenderSettings( &renderSettings );
192 plotter->SetPageSettings( pageInfo );
193 plotter->SetColorMode(
true );
196 plotter->SetViewport( plot_offset,
schIUScale.IU_PER_MILS / 10, 1.0,
false );
197 plotter->SetCreator( wxT(
"Eeschema-SVG" ) );
199 wxFileName tempFile( wxFileName::CreateTempFileName( wxS(
"kicad_svg" ) ) );
201 if( !plotter->OpenFile( tempFile.GetFullPath() ) )
203 wxRemoveFile( tempFile.GetFullPath() );
211 plotter->StartPlot( wxT(
"1" ) );
212 aFrame->
GetScreen()->
Plot( plotter.get(), plotOpts, collectSelectionItems( aSelection ) );
217 wxRemoveFile( tempFile.GetFullPath() );
228 int aWidth,
int aHeight,
bool aUseAlpha,
bool aIncludeDrawingSheet )
230 wxImage
image( aWidth, aHeight,
false );
235 double actualPPI = std::max( actualPPI_x, actualPPI_y );
237 VECTOR2D pageSizeIn( (
double) aWidth / actualPPI, (
double) aHeight / actualPPI );
249 std::unique_ptr<KIGFX::SCH_PAINTER> painter = std::make_unique<KIGFX::SCH_PAINTER>( gal.get() );
250 std::unique_ptr<KIGFX::VIEW> view = std::make_unique<KIGFX::VIEW>();
252 painter->SetSchematic( &aFrame->
Schematic() );
253 view->SetGAL( gal.get() );
254 view->SetPainter( painter.get() );
256 view->SetScale( 1.0 );
259 gal->SetSheetSize( pageSizeIn );
263 std::vector<std::unique_ptr<SCH_ITEM>> clonedItems;
264 clonedItems.reserve( aSelection.
GetSize() );
274 clonedItems.emplace_back( clone );
291 view->SetLayerVisible( i,
true );
298 std::unique_ptr<DS_PROXY_VIEW_ITEM> drawingSheet;
300 if( aIncludeDrawingSheet )
318 drawingSheet->SetVariantName(
TO_UTF8( currentVariant ) );
319 drawingSheet->SetVariantDesc(
TO_UTF8( variantDesc ) );
321 view->Add( drawingSheet.get() );
324 view->SetCenter( aBBox.
Centre() );
325 view->UseDrawPriority(
true );
341 const BOX2I& aBBox,
bool aUseAlpha,
bool aIncludeDrawingSheet )
343 const double c_targetPPI = 300;
344 const double c_targetPixelsPerMM = c_targetPPI / 25.4;
348 if( size.
x <= 0 || size.
y <= 0 )
355 if( bitmapWidth > clipboardMaxBitmapSize || bitmapHeight > clipboardMaxBitmapSize )
357 double scaleDown = (double) clipboardMaxBitmapSize / std::max( bitmapWidth, bitmapHeight );
358 bitmapWidth =
KiROUND( bitmapWidth * scaleDown );
359 bitmapHeight =
KiROUND( bitmapHeight * scaleDown );
362 if( bitmapWidth <= 0 || bitmapHeight <= 0 )
365 wxImage
result = renderSelectionToBitmap( aFrame, aSelection, aBBox, bitmapWidth, bitmapHeight, aUseAlpha,
366 aIncludeDrawingSheet );
405 wxFileDialog dlg(
m_frame,
_(
"Schematic Files" ), curr_fn.GetPath(), curr_fn.GetFullName(),
410 if( dlg.ShowModal() == wxID_CANCEL )
415 m_frame->saveSchematicFile( curr_sheet, newFilename );
427 bool wasOnSubsheet = (
m_frame->GetCurrentSheet().Last() != &root );
442 msg.Printf(
_(
"Revert '%s' (and all sub-sheets) to last version saved?" ), schematic.
GetFileName() );
471 m_frame->ShowSchematicSetupDialog();
493 m_frame->GetCanvas()->GetView()->MarkDirty();
495 m_frame->GetCanvas()->Refresh();
501 m_frame->RollbackSchematicFromUndo();
524 m_frame->GetCanvas()->GetBackend() );
533 m_frame->GetCanvas()->GetBackend() );
551 if( aRunningOnDemand )
561 m_frame->GetCanvas()->Refresh();
575 m_frame->GetCanvas()->Refresh(
true );
603 m_frame->Schematic().OnSchSelectionChanged();
625 m_frame->SendSelectItemsToPcb( selection.GetItemsSortedBySelectionOrder(), aForce );
631 bool savePowerSymbols =
false;
637 targetLib =
m_frame->SelectLibrary(
_(
"Export Symbols" ),
_(
"Export symbols to library:" ),
638 { {
_(
"Include power symbols in export" ), &savePowerSymbols },
639 {
_(
"Update schematic symbols to link to exported symbols" ), &map }
642 if( targetLib.empty() )
649 std::map<LIB_ID, LIB_SYMBOL*> libSymbols;
650 std::map<LIB_ID, std::vector<SCH_SYMBOL*>> symbolMap;
652 for(
size_t i = 0; i < symbols.
GetCount(); ++i )
658 if( libSymbols.count(
id ) )
661 "Two symbols have the same LIB_ID but are different!" );
665 libSymbols[id] = libSymbol;
668 symbolMap[id].emplace_back( symbol );
675 auto optRow = adapter->
GetRow( targetLib );
676 wxCHECK( optRow, 0 );
685 for(
const std::pair<const LIB_ID, LIB_SYMBOL*>& it : libSymbols )
688 std::unique_ptr<LIB_SYMBOL> newSym = origSym->
Flatten();
689 const wxString newSymName = newSym->GetName();
693 pi->SaveSymbol( dest.GetFullPath(), std::move( newSym ) );
697 msg.Printf(
_(
"Error saving symbol %s to library '%s'." ), newSymName, row->
Nickname() );
698 msg += wxS(
"\n\n" ) + ioe.
What();
708 for(
SCH_SYMBOL* symbol : symbolMap[it.first] )
712 wxCHECK2( parentScreen,
continue );
715 symbol->SetLibId(
id );
723 std::set<SCH_SCREEN*> processedScreens;
729 if( processedScreens.find( ( screen ) ) == processedScreens.end() )
731 processedScreens.insert( screen );
736 commit.
Push( wxS(
"Update Library Identifiers" ) );
743#define HITTEST_THRESHOLD_PIXELS 5
747 static const std::vector<KICAD_T> voltageProbeTypes = {
760 blocking_win->Close(
true );
782 wxString variant =
m_frame->Schematic().GetCurrentVariant();
793 if( !symbol || !libPin )
801 std::vector<EMBEDDED_FILES*> embeddedFilesStack;
802 embeddedFilesStack.push_back(
m_frame->Schematic().GetEmbeddedFiles() );
805 embeddedFilesStack.push_back( symbolEmbeddedFile );
816 std::vector<std::string> currentNames =
model.SpiceGenerator().CurrentNames( spiceItem );
818 if( currentNames.size() == 0 )
822 else if( currentNames.size() == 1 )
830 int modelPinIndex =
model.FindModelPinIndex( libPin->
GetNumber().ToStdString() );
834 wxString
name = currentNames.at( modelPinIndex );
845 else if( item->
IsType( voltageProbeTypes ) )
855 wxString spiceNet = *
name;
871 wxString connectionName;
873 if( item && item->IsType( voltageProbeTypes ) )
882 else if( item && item->Type() !=
SCH_PIN_T )
903 if(
m_frame->GetHighlightedConnection() != connectionName )
905 m_frame->SetHighlightedConnection( connectionName );
913 [
this](
const int& aFinalState )
918 if( !
m_frame->GetHighlightedConnection().IsEmpty() )
920 m_frame->SetHighlightedConnection( wxEmptyString );
963 item = item->GetParent();
976 blocking_win->Close(
true );
978 static_cast<SIMULATOR_FRAME*
>( simFrame )->AddTuner( sheetPath, symbol );
992 collector.
Collect(
m_frame->GetScreen(), { SCH_SYMBOL_T, SCH_FIELD_T }, aPos );
1000 item =
static_cast<SCH_FIELD*
>( item )->GetParentSymbol();
1015 [
this](
const int& aFinalState )
1057 wxLogTrace(
"KICAD_SCH_HIGHLIGHT",
"highlightNet: pos=(%f,%f) clear=%d", aPosition.
x, aPosition.
y,
1058 ( aPosition ==
CLEAR ) );
1062 std::optional<wxString> connName;
1066 if( aPosition !=
CLEAR )
1070 if(
erc.TestDuplicateSheetNames(
false ) > 0 )
1072 wxMessageBox(
_(
"Error: duplicate sub-sheet names found in current sheet." ) );
1078 wxLogTrace(
"KICAD_SCH_HIGHLIGHT",
"highlightNet: item=%p type=%d", (
void*) item,
1079 item ? (
int) item->
Type() : -1 );
1087 symbol =
dynamic_cast<SCH_SYMBOL*
>( item->GetParent() );
1091 std::vector<SCH_PIN*> pins = symbol->
GetPins();
1093 if( pins.size() == 1 )
1094 connName = pins[0]->GetConnectionName( &editFrame->
GetCurrentSheet() );
1104 if( !connName || connName->IsEmpty() )
1106 wxLogTrace(
"KICAD_SCH_HIGHLIGHT",
"highlightNet: no connection under cursor" );
1107 editFrame->SetStatusText( wxT(
"" ) );
1112 editorControl->SetHighlightBusMembers(
false );
1120 wxLogTrace(
"KICAD_SCH_HIGHLIGHT",
"highlightNet: setting highlighted connection to %s",
1122 editorControl->SetHighlightBusMembers(
false );
1136 editorControl->SetHighlightBusMembers(
false );
1140 editorControl->SetHighlightBusMembers( !editorControl->GetHighlightBusMembers() );
1151 editorControl->UpdateNetHighlighting(
dummy );
1152 wxLogTrace(
"KICAD_SCH_HIGHLIGHT",
"highlightNet: done" );
1175 auto& chains =
m_frame->Schematic().NetChains();
1179 const auto name = item ? item->GetConnectionName( &
m_frame->GetCurrentSheet() ) : std::nullopt;
1181 wxString newConnection;
1187 newChain =
chain->GetName();
1189 if( !
chain->GetNets().empty() )
1190 m_frame->SendCrossProbeNetName( *
chain->GetNets().begin() );
1194 newConnection = *
name;
1200 m_frame->SendCrossProbeClearHighlight();
1204 m_frame->SetHighlightedNetChain( newChain );
1205 m_frame->SetHighlightedConnection( newConnection );
1206 m_frame->UpdateNetHighlightStatus();
1242 for(
const auto& [symbol, screen] : chains.GetBridgeSymbols( *
chain, net ) )
1244 commit.
Modify( symbol, screen );
1248 commit.
Push(
_(
"Remove from Net Chain" ) );
1259 m_frame->SetHighlightedNetChain( wxEmptyString );
1272 const auto getNetNamePattern =
1275 wxString netName = aConn.Name();
1282 return prefix + wxT(
"*" );
1284 return prefix + wxT(
".*" );
1289 return std::nullopt;
1295 std::set<wxString> netNames;
1304 std::optional<wxString> netNamePattern = getNetNamePattern( *connection );
1306 if( !netNamePattern )
1309 m_frame->ShowInfoBarError(
_(
"All selected nets must be labeled to assign a netclass." ) );
1313 netNames.insert( *netNamePattern );
1316 if( netNames.empty() )
1318 m_frame->ShowInfoBarError(
_(
"No nets selected." ) );
1325 [&](
const std::vector<wxString>& aNetNames )
1327 std::unordered_set<SCH_ITEM*> highlighted;
1328 const SCH_CONNECTIVITY::NAVIGATION_QUERY query( schematic );
1330 for( const wxString& name : aNetNames )
1331 query.CollectNetItems( name, path, highlighted );
1333 for( SCH_ITEM* item : screen->Items() )
1335 bool redraw = setNetHighlight( item, highlighted.contains( item ) );
1337 item->RunOnChildren(
1338 [&]( SCH_ITEM* aChild )
1340 redraw |= setNetHighlight( aChild, highlighted.contains( aChild ) );
1342 RECURSE_MODE::NO_RECURSE );
1345 getView()->Update( item, KIGFX::VIEW_UPDATE_FLAGS::REPAINT );
1348 m_frame->GetCanvas()->ForceRefresh();
1351 if( dlg.ShowModal() )
1353 getView()->UpdateAllItemsConditionally(
1358 auto invalidateTextVars =
1361 if(
text->HasTextVars() )
1363 text->ClearRenderCache();
1364 text->ClearBoundingBoxCache();
1371 if(
dynamic_cast<SCH_LINE*
>( aItem ) )
1381 invalidateTextVars(
text );
1385 item->RunOnChildren(
1386 [&invalidateTextVars](
SCH_ITEM* aChild )
1389 invalidateTextVars(
text );
1394 m_frame->GetScreen()->Update( item,
false );
1410 if( !selectionTool )
1422 if( !conn->GetNetName().IsEmpty() )
1424 netName = conn->GetNetName();
1431 if( netName.IsEmpty() )
1432 netName =
m_frame->GetHighlightedConnection();
1434 if( netName.IsEmpty() )
1436 m_frame->ShowInfoBarError(
_(
"No connected net selected." ) );
1440 m_frame->FindNetInInspector( netName );
1452 wxCHECK( screen, 0 );
1454 const wxString selectedName =
m_frame->GetHighlightedConnection();
1455 const wxString chainName =
m_frame->GetHighlightedNetChain();
1457 :
m_frame->Schematic().NetChains().GetNetChainByName( chainName );
1458 std::unordered_set<SCH_ITEM*> highlighted;
1460 if( !selectedName.IsEmpty() ||
chain )
1464 if( !selectedName.IsEmpty() )
1469 for(
const wxString&
name :
chain->GetNets() )
1474 bool changed =
false;
1483 const bool powerHighlight = symbol && symbol->
IsPower() && !symbol->
GetPins().empty()
1484 && highlighted.contains( symbol->
GetPins().front() );
1485 item->RunOnChildren(
1488 bool highlight = highlighted.contains( child );
1492 const auto* field =
static_cast<SCH_FIELD*
>( child );
1508 m_frame->GetCanvas()->Refresh();
1549 DisplayError( editFrame,
_(
"Unable to replace the net chain terminal pin." ) );
1572 if(
SCH_NETCHAIN* sig = chains.GetNetChainForNet( *netName ) )
1574 const wxString oldName = sig->GetName();
1575 const wxString newName = wxGetTextFromUser(
_(
"Net chain name:" ),
_(
"Name Net Chain" ), oldName );
1577 if( newName.IsEmpty() || newName == oldName )
1582 DisplayError( editFrame,
_(
"Chain name cannot contain spaces, quotes, or parentheses." ) );
1586 if( !chains.RenameCommittedNetChain( oldName, newName ) )
1588 DisplayError( editFrame, wxString::Format(
_(
"Unable to rename net chain '%s' to '%s'." ),
1589 oldName, newName ) );
1608 if( selection.GetSize() != 2 )
1614 if( !
pinA || !pinB )
1624 DisplayError( editFrame,
_(
"No potential net chain connects the selected pins." ) );
1629 for(
const wxString& net : potential->
GetNets() )
1631 if(
SCH_NETCHAIN* owner = chains.GetNetChainForNet( net ) )
1633 DisplayError( editFrame, wxString::Format(
_(
"The selected pins are already in net chain '%s'." ),
1634 owner->GetName() ) );
1643 wxString msg = wxString::Format(
_(
"Create Net Chain between %s:%s and %s:%s" ),
1662 int dx = bbox.
GetWidth() / 4;
if( dx < 100 ) dx = 100;
1663 int dy = bbox.
GetHeight() / 4;
if( dy < 100 ) dy = 100;
1665 if(
auto canvas = editFrame->
GetCanvas() )
1667 canvas->GetView()->SetCenter( bbox.
GetCenter() );
1669 auto view = canvas->GetView();
1672 BOX2D viewBox = view->GetBoundary();
1675 double scale = std::min( scaleX, scaleY );
1677 view->SetScale(
scale );
1681 const auto restoreHighlight =
1690 wxString
name = wxGetTextFromUser( msg,
_(
"Create Net Chain" ), suggestion, editFrame );
1692 if(
name.IsEmpty() )
1701 DisplayError( editFrame,
_(
"Chain name cannot contain spaces, quotes, or parentheses." ) );
1705 if( chains.GetNetChainByName(
name ) )
1708 DisplayError( editFrame, wxString::Format(
_(
"A net chain named '%s' already exists." ),
name ) );
1712 if( !chains.CreateNetChainFromPotential( potential,
name ) )
1715 DisplayError( editFrame, wxString::Format(
_(
"Unable to create net chain '%s'." ),
name ) );
1726 editFrame->Refresh();
1744 std::vector<SCH_SYMBOL*> symbols;
1749 symbols.push_back( sym );
1752 if( symbols.size() >= 1 )
1755 if( symbols.size() >= 2 )
1759 if( symbols.empty() && sel.
GetSize() == 1 )
1763 if( schItem && schItem->
IsType( { SCH_PIN_T, SCH_ITEM_LOCATE_WIRE_T, SCH_ITEM_LOCATE_BUS_T } ) )
1782 if(
m_frame->GetUndoCommandCount() <= 0 )
1791 wxCHECK( undo_list, 0 );
1793 m_frame->PutDataInPreviousState( undo_list );
1797 m_frame->PushCommandToRedoList( undo_list );
1801 m_frame->GetCanvas()->Refresh();
1812 if(
m_frame->GetRedoCommandCount() == 0 )
1824 m_frame->PutDataInPreviousState( list );
1827 list->ReversePickersListOrder();
1828 m_frame->PushCommandToUndoList( list );
1832 m_frame->GetCanvas()->Refresh();
1845 if( selection.Empty() )
1848 if( aUseDuplicateClipboard )
1851 selection.SetScreen(
m_frame->GetScreen() );
1854 for(
EDA_ITEM* item : selection.GetItems() )
1861 else if( item->Type() ==
SCH_FIELD_T && selection.IsHover() )
1865 selection.Add( item->GetParent() );
1870 selection.Remove( item );
1875 static_cast<SCH_ITEM*
>( item )->RunOnChildren(
1878 selection.Add( aChild );
1889 plugin.
Format( &selection, &selPath, schematic, &formatter,
true );
1891 std::string prettyData = formatter.
GetString();
1894 if( !aUseDuplicateClipboard )
1898 result &= wxTheClipboard->Open();
1902 wxDataObjectComposite* data =
new wxDataObjectComposite();
1905 wxCustomDataObject* kicadObj =
new wxCustomDataObject( wxDataFormat(
"application/kicad" ) );
1906 kicadObj->SetData( prettyData.size(), prettyData.data() );
1907 data->Add( kicadObj );
1909 BOX2I selectionBox = expandedSelectionBox( selection );
1914 wxImage
image = renderSelectionToImageForClipboard(
m_frame, selection, selectionBox,
true,
false );
1915 wxMemoryBuffer pngBuffer;
1922 wxMemoryBuffer htmlBuffer;
1924 if( generateHtmlFromPngData( pngBuffer, htmlBuffer ) )
1926 wxCustomDataObject* htmlObj =
new wxCustomDataObject( wxDF_HTML );
1927 htmlObj->SetData( htmlBuffer.GetDataLen(), htmlBuffer.GetData() );
1928 data->Add( htmlObj );
1933 wxLogDebug( wxS(
"Failed to generate bitmap for clipboard" ) );
1937 wxMemoryBuffer svgBuffer;
1939 if( plotSelectionToSvg(
m_frame, selection, selectionBox, svgBuffer ) )
1941 wxCustomDataObject* svgObj =
new wxCustomDataObject( wxDataFormat(
"image/svg+xml" ) );
1942 svgObj->SetData( svgBuffer.GetDataLen(), svgBuffer.GetData() );
1943 data->Add( svgObj );
1947 wxLogDebug( wxS(
"Failed to generate SVG for clipboard" ) );
1952 data->Add(
new wxTextDataObject( wxString::FromUTF8( prettyData ) ) );
1954 result &= wxTheClipboard->SetData( data );
1955 result &= wxTheClipboard->Flush();
1956 wxTheClipboard->Close();
1960 if( selection.IsHover() )
1963 if( aUseDuplicateClipboard )
1996 wxTextEntry* textEntry =
dynamic_cast<wxTextEntry*
>( wxWindow::FindFocus() );
2013 wxTextEntry* textEntry =
dynamic_cast<wxTextEntry*
>( wxWindow::FindFocus() );
2032 if( selection.Empty() )
2037 if( selection.IsHover() )
2045 const KIID_PATH& aClipPath,
bool aForceKeepAnnotations )
2047 wxCHECK(
m_frame && aSymbol, );
2050 bool instanceFound =
false;
2057 if( ( tmp.m_Path.empty() && aClipPath.empty() ) || ( !aClipPath.empty() && tmp.m_Path.
EndsWith( aClipPath ) ) )
2060 instanceFound =
true;
2062 wxLogTrace(
traceSchPaste, wxS(
"Pasting found symbol instance with reference %s, unit %d:\n"
2063 "\tClipboard path: %s\n"
2064 "\tSymbol UUID: %s." ),
2075 pasteLookupPath.push_back( aSymbol->
m_Uuid );
2077 if( !instanceFound )
2079 wxLogTrace(
traceSchPaste, wxS(
"Clipboard symbol instance **not** found:\n\tClipboard path: %s\n"
2080 "\tSymbol UUID: %s." ),
2100 if( !aForceKeepAnnotations )
2109 const KIID_PATH& aClipPath,
bool aForceKeepAnnotations,
2113 wxCHECK( aSheet && aPastedSheets, aPastePath );
2118 aPastedSheets->push_back( sheetPath );
2127 if( item->IsConnectable() )
2128 item->SetConnectivityDirty();
2134 wxCHECK2( symbol,
continue );
2148 pin->SetConnectivityDirty();
2158 wxCHECK2( subsheet,
continue );
2171 pin->SetConnectivityDirty();
2176 newClipPath.push_back( subsheet->
m_Uuid );
2178 updatePastedSheet( subsheet, sheetPath, newClipPath, aForceKeepAnnotations, aPastedSheets, aPastedSymbols );
2190 wxCHECK( aScreen, );
2198 wxCHECK2( symbol,
continue );
2202 KIID_PATH pathWithSymbol = symbolInstance.m_Path;
2204 pathWithSymbol.push_back( symbol->
m_Uuid );
2219 wxCHECK2( symbol,
continue );
2228 const wxString& aLibSymbolName )
2235 if( aClipboardScreen )
2237 auto clipIt = aClipboardScreen->
GetLibSymbols().find( aLibSymbolName );
2240 return clipIt->second;
2245 auto destIt = aDestScreen->
GetLibSymbols().find( aLibSymbolName );
2248 return destIt->second;
2257 wxTextEntry* textEntry =
dynamic_cast<wxTextEntry*
>( wxWindow::FindFocus() );
2266 std::string content;
2281 if( content.empty() )
2287 auto bitmap = std::make_unique<SCH_BITMAP>();
2289 if( bitmap->GetReferenceImage().SetImage( clipImg->ConvertToImage() ) )
2317 "Do you want to continue?" ) );
2323 tempScreen->
Append( text_item );
2329 bool hasTableCells =
false;
2331 for(
EDA_ITEM* item : currentSelection )
2335 hasTableCells =
true;
2348 clipboardTable =
static_cast<SCH_TABLE*
>( item );
2353 if( clipboardTable )
2371 commit.
Push(
_(
"Paste Cells" ) );
2391 bool annotateAutomatic =
m_frame->eeconfig()->m_AnnotatePanel.automatic;
2396 bool forceRemoveAnnotations =
false;
2416 std::vector<SCH_ITEM*> sortedLoadedItems;
2417 bool sheetsPasted =
false;
2422 if( destFn.IsRelative() )
2423 destFn.MakeAbsolute(
m_frame->Prj().GetProjectPath() );
2430 std::map<wxString, SCH_SCREEN*> loadedScreens;
2434 if( item.LastScreen() )
2435 loadedScreens[item.Last()->GetFileName()] = item.LastScreen();
2446 std::set<wxString> existingRefsSet;
2449 existingRefsSet.insert( ref.GetRef() );
2452 std::map<KIID, EDA_ITEM*> itemMap;
2456 std::map<SCH_SHEET_PATH, SCH_REFERENCE_LIST> pastedSymbols;
2457 std::map<SCH_SHEET_PATH, SCH_SHEET_LIST> pastedSheets;
2462 sortedLoadedItems.push_back( item );
2464 loadedItems.push_back( item );
2467 sort( sortedLoadedItems.begin(), sortedLoadedItems.end(),
2470 SCH_SHEET* firstSheet = static_cast<SCH_SHEET*>( firstItem );
2471 SCH_SHEET* secondSheet = static_cast<SCH_SHEET*>( secondItem );
2472 return StrNumCmp( firstSheet->GetName(), secondSheet->GetName(), false ) < 0;
2476 for(
SCH_ITEM* item : sortedLoadedItems )
2478 loadedItems.push_back( item );
2485 if( srcFn.IsRelative() )
2486 srcFn.MakeAbsolute(
m_frame->Prj().GetProjectPath() );
2490 if( hierarchy.
TestForRecursion( sheetHierarchy, destFn.GetFullPath( wxPATH_UNIX ) ) )
2492 auto msg = wxString::Format(
_(
"The pasted sheet '%s'\n"
2493 "was dropped because the destination already has "
2494 "the sheet or one of its subsheets as a parent." ),
2497 loadedItems.pop_back();
2503 tempScreen->
Clear(
false );
2505 for(
EDA_ITEM* item : loadedItems )
2511 wxCHECK2( schItem,
continue );
2525 wxCHECK2( currentScreen,
continue );
2537 if( !existingRefsSet.contains( instance.m_Reference ) )
2539 forceKeepAnnotations = !forceRemoveAnnotations;
2555 if( existingRefsSet.contains( instance.m_Reference ) )
2557 needsNewKiid =
true;
2565 const_cast<KIID&
>( item->m_Uuid ) =
KIID();
2571 pin->SetConnectivityDirty();
2581 pastedSymbols[sheetPath].AddItem( schReference );
2590 wxString baseName = nameField->
GetText();
2591 wxString candidateName = baseName;
2594 while( !baseName.IsEmpty() && wxIsdigit( baseName.Last() ) )
2596 number = baseName.Last() + number;
2597 baseName.RemoveLast();
2602 hierarchy =
m_frame->Schematic().Hierarchy();
2604 int uniquifier = std::max( 0, wxAtoi( number ) ) + 1;
2606 while( existingSheetNames.count( candidateName ) )
2607 candidateName = wxString::Format( wxT(
"%s%d" ), baseName, uniquifier++ );
2609 nameField->
SetText( candidateName );
2610 existingSheetNames.emplace( candidateName );
2618 if( !fn.IsAbsolute() )
2621 fn.Normalize(
FN_NORMALIZE_FLAGS | wxPATH_NORM_ENV_VARS, currentSheetFileName.GetPath() );
2625 if( !
m_frame->Schematic().Root().SearchHierarchy( fn.GetFullPath( wxPATH_UNIX ), &existingScreen ) )
2627 if( loadedScreens.count( sheet->
GetFileName() ) > 0 )
2628 existingScreen = loadedScreens.at( sheet->
GetFileName() );
2633 if( existingScreen )
2639 if( !
m_frame->LoadSheetFromFile( sheet, &pasteRoot, fn.GetFullPath() ) )
2646 sheetsPasted =
true;
2649 clipPath.push_back( sheet->
m_Uuid );
2658 pin->SetConnectivityDirty();
2666 ( forceKeepAnnotations && annotateAutomatic ),
2667 &pastedSheets[sheetPath], pastedSymbols );
2676 const_cast<KIID&
>( item->m_Uuid ) =
KIID();
2678 if( srcItem && destItem )
2689 if( !
group->GetName().IsEmpty() )
2713 m_frame->Schematic().RefreshHierarchy();
2722 wxString pageNum = wxString::Format(
"%d", page );
2725 pageNum = wxString::Format(
"%d", ++page );
2727 int virtualPageNumber = page;
2734 pastedSheet.SetVirtualPageNumber( virtualPageNumber );
2738 sheetInstance.
m_Path = pastedSheet.Path();
2741 sheetInstance.
m_Path.pop_back();
2747 wxCHECK2( sheet,
continue );
2750 hierarchy.push_back( pastedSheet );
2753 std::vector<KIID_PATH> instancesToRemove;
2757 if( !hierarchy.
HasPath( instance.m_Path ) )
2758 instancesToRemove.push_back( instance.m_Path );
2761 for(
const KIID_PATH& instancePath : instancesToRemove )
2766 for(
auto&[
path, refs] : pastedSymbols )
2770 if( ref.GetSheetPath() == pastedSheet )
2772 ref.GetSheetPath().SetVirtualPageNumber( virtualPageNumber );
2773 ref.SetSheetNumber( virtualPageNumber );
2780 m_frame->SetSheetNumberAndCount();
2784 hierarchy =
m_frame->Schematic().Hierarchy();
2787 std::map<SCH_SHEET_PATH, SCH_REFERENCE_LIST> annotatedSymbols;
2792 for(
size_t i = 0; i < pastedSymbols[sheetPath].GetCount(); i++ )
2795 annotatedSymbols[sheetPath].AddItem( pastedSymbols[sheetPath][i] );
2798 for(
const SCH_SHEET_PATH& pastedSheetPath : pastedSheets[sheetPath] )
2800 for(
size_t i = 0; i < pastedSymbols[pastedSheetPath].GetCount(); i++ )
2803 annotatedSymbols[pastedSheetPath].AddItem( pastedSymbols[pastedSheetPath][i] );
2808 if( !annotatedSymbols.empty() )
2815 annotatedSymbols[
path].SortByReferenceOnly();
2820 annotatedSymbols[
path].ReannotateDuplicates( existingRefs, annotateAlgo );
2824 annotatedSymbols[
path].ReannotateByOptions( annotateOrder, annotateAlgo, annotateStartNum,
2825 existingRefs,
false, &hierarchy );
2828 annotatedSymbols[
path].UpdateAnnotation();
2831 for(
size_t i = 0; i < annotatedSymbols[
path].GetCount(); i++ )
2832 existingRefs.
AddItem( annotatedSymbols[
path][i] );
2836 annotatedSymbols[pastedSheetPath].SortByReferenceOnly();
2837 annotatedSymbols[pastedSheetPath].SetRefDesTracker( schematicSettings.
m_refDesTracker );
2841 annotatedSymbols[pastedSheetPath].ReannotateDuplicates( existingRefs, annotateAlgo );
2845 annotatedSymbols[pastedSheetPath].ReannotateByOptions( annotateOrder, annotateAlgo,
2846 annotateStartNum, existingRefs,
2847 false, &hierarchy );
2850 annotatedSymbols[pastedSheetPath].UpdateAnnotation();
2853 for(
size_t i = 0; i < annotatedSymbols[pastedSheetPath].GetCount(); i++ )
2854 existingRefs.
AddItem( annotatedSymbols[pastedSheetPath][i] );
2859 m_frame->GetCurrentSheet().UpdateAllScreenReferences();
2877 for(
int i = loadedItems.size() - 1; i >= 0; i-- )
2883 loadedItems.erase( loadedItems.begin() + i );
2896 if( !selection.Empty() )
2900 int closest_dist = INT_MAX;
2905 int dist = ( eventPos - pt ).EuclideanNorm();
2907 if( dist < closest_dist )
2909 selection.SetReferencePoint( pt );
2910 closest_dist = dist;
2914 std::vector<SCH_ITEM*> anchorCandidates =
FlattenGroups( selection.Items() );
2917 for(
EDA_ITEM* item : anchorCandidates )
2929 processPt(
pin->GetPosition() );
2935 processPt( item->GetPosition() );
2939 if( closest_dist == INT_MAX )
2941 for(
EDA_ITEM* item : anchorCandidates )
2943 switch( item->Type() )
2949 processPt(
static_cast<SCH_LINE*
>( item )->GetStartPoint() );
2950 processPt(
static_cast<SCH_LINE*
>( item )->GetEndPoint() );
2970 for(
int ii = 0; ii < shape->
GetPolyShape().TotalVertices(); ++ii )
2977 processPt( shape->
GetEnd() );
2985 processPt( item->GetPosition() );
2994 else if( selection.GetTopLeftItem()->Type() ==
SCH_GROUP_T )
3001 group->RunOnChildren(
3013 selection.SetReferencePoint( item->
GetPosition() );
3015 selection.SetReferencePoint(
group->GetPosition() );
3021 selection.SetReferencePoint( item->
GetPosition() );
3027 commit.
Push(
_(
"Paste" ) );
3030 m_frame->RefreshNetNavigator();
3051 if( selection.GetSize() >= 1 )
3054 if( selection.IsHover() )
3062 tableTool->EditTable( aEvent );
3072 m_frame->ShowInfoBarError(
_(
"Symbols with broken library symbol links cannot be edited." ) );
3082 blocking_win->Close(
true );
3111 dlg.
m_FirstRefDes->SetValidator( wxTextValidator( wxFILTER_EMPTY ) );
3125 int startNum = atoi( startRef.
GetRefNumber().utf8_string().c_str() );
3140 if( ref.GetRef() == startRef.
GetRef() )
3142 int num = atoi( ref.GetRefNumber().utf8_string().c_str() );
3144 if( num >= startNum )
3147 wxString fullRef = ref.GetRef();
3153 ref.GetSymbol()->SetRef( &sheet,
From_UTF8( fullRef.c_str() ) );
3158 if( !commit.
Empty() )
3159 commit.
Push(
_(
"Increment Annotations" ) );
3201 if( !
m_frame->Schematic().GetCurrentVariant().IsEmpty() )
3204 _(
"Bulk Edit Symbol Library Links is not available when a design variant is "
3205 "active. Switch to the default variant first." ) );
3286 sheetSelection.
Add( item );
3293 wxImage
image = renderSelectionToImageForClipboard(
m_frame, sheetSelection, pageBBox,
true,
true );
3299 if( wxTheClipboard->Open() )
3301 wxDataObjectComposite* data =
new wxDataObjectComposite();
3305 wxTheClipboard->SetData( data );
3306 wxTheClipboard->Flush();
3307 wxTheClipboard->Close();
3312 wxLogMessage(
_(
"Cannot create the schematic image" ) );
3367 m_frame->GetCanvas()->Refresh();
3381 m_frame->GetCanvas()->Refresh();
3393 m_frame->GetCanvas()->Refresh();
3405 m_frame->GetCanvas()->Refresh();
3417 m_frame->GetCanvas()->Refresh();
3428 m_frame->GetCanvas()->Refresh();
3437 wxString variant =
m_frame->Schematic().GetCurrentVariant();
3441 m_frame->GetCanvas()->GetView()->UpdateAllItemsConditionally(
3446 auto invalidateTextVars =
3449 if(
text->HasTextVars() )
3451 text->ClearRenderCache();
3452 text->ClearBoundingBoxCache();
3459 item->RunOnChildren(
3460 [&invalidateTextVars](
SCH_ITEM* aChild )
3463 invalidateTextVars(
text );
3467 if( item->GetExcludedFromSim( sheetPath, variant ) )
3472 invalidateTextVars(
text );
3477 m_frame->GetCanvas()->Refresh();
3489 m_frame->RefreshOperatingPointDisplay();
3490 m_frame->GetCanvas()->Refresh();
3502 m_frame->RefreshOperatingPointDisplay();
3503 m_frame->GetCanvas()->Refresh();
3517 m_frame->GetCanvas()->Refresh();
3535 m_frame->eeconfig()->m_Drawing.line_mode++;
3555 switch(
static_cast<LINE_MODE>(
m_frame->eeconfig()->m_Drawing.line_mode ) )
3569 if( !
Pgm().GetCommonSettings()->m_Input.hotkey_feedback )
3573 int currentIdx =
m_toolMgr->GetSettings()->m_Window.grid.last_size_idx;
3575 wxArrayString gridsLabels;
3578 gridsLabels.Add(
grid.UserUnitsMessageText(
m_frame ) );
3580 if( !
m_frame->GetHotkeyPopup() )
3586 popup->
Popup(
_(
"Grid" ), gridsLabels, currentIdx );
3603 if( selection.Size() != 1 || selection[0]->Type() !=
SCH_GROUP_T )
3608 if( !
group->HasDesignBlockLink() )
3613 std::unique_ptr<DESIGN_BLOCK> designBlock( designBlockPane->
GetDesignBlock(
group->GetDesignBlockLibId(),
3619 if( designBlock->GetSchematicFile().IsEmpty() )
3622 msg.Printf(
_(
"Design block %s does not have a schematic file." ),
3623 group->GetDesignBlockLibId().GetUniStringLibId() );
3624 m_frame->GetInfoBar()->ShowMessageFor( msg, 5000, wxICON_WARNING );
3645 if( selection.Size() != 1 || selection[0]->Type() !=
SCH_GROUP_T )
3650 if( !
group->HasDesignBlockLink() )
3655 std::unique_ptr<DESIGN_BLOCK> designBlock( designBlockPane->
GetDesignBlock(
group->GetDesignBlockLibId(),
constexpr EDA_IU_SCALE schIUScale
constexpr BOX2I KiROUND(const BOX2D &aBoxD)
static TOOL_ACTION updatePcbFromSchematic
static TOOL_ACTION revert
static TOOL_ACTION saveAs
static TOOL_ACTION pickerTool
static TOOL_ACTION showSymbolEditor
static TOOL_ACTION pasteSpecial
static TOOL_ACTION pageSettings
static TOOL_ACTION showSearch
static TOOL_ACTION selectionActivate
Activation of the selection tool.
static TOOL_ACTION duplicate
static TOOL_ACTION doDelete
static TOOL_ACTION updateSchematicFromPcb
static TOOL_ACTION selectionClear
Clear the current selection.
static TOOL_ACTION showProperties
static TOOL_ACTION copyAsText
static TOOL_ACTION refreshPreview
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.
int GetVirtualPageNumber() const
static wxString m_DrawingSheetFileName
the name of the drawing sheet file, or empty to use the default drawing sheet
const wxString & GetPageNumber() const
void SetContentModified(bool aModified=true)
constexpr BOX2< Vec > & Inflate(coord_type dx, coord_type dy)
Inflates the rectangle horizontally by dx and vertically by dy.
constexpr size_type GetWidth() const
constexpr Vec Centre() const
constexpr BOX2< Vec > & Merge(const BOX2< Vec > &aRect)
Modify the position and size of the rectangle in order to contain aRect.
constexpr const Vec GetCenter() const
constexpr size_type GetHeight() const
constexpr const Vec & GetOrigin() const
constexpr const SizeVec & GetSize() const
int GetCount() const
Return the number of objects in the list.
static const COLOR4D CLEAR
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.
static PRIORITY GetDriverPriority(SCH_ITEM *aDriver)
Return the priority (higher is more important) of a candidate driver.
void SelectLibId(const LIB_ID &aLibId)
DESIGN_BLOCK * GetDesignBlock(const LIB_ID &aLibId, bool aUseCacheLib, bool aShowErrorMsg, wxString *aErrorMsg=nullptr)
Load design block from design block library table.
Class DIALOG_INCREMENT_ANNOTATIONS_BASE.
wxTextCtrl * m_FirstRefDes
wxRadioButton * m_AllSheets
void SetWksFileName(const wxString &aFilename)
bool Show(bool show) override
void SetInitialFocus(wxWindow *aWindow)
Sets the window (usually a wxTextCtrl) that should be focused when the dialog is shown.
virtual void Refresh(bool aEraseBackground=true, const wxRect *aRect=nullptr) override
A base class for most all the KiCad significant classes used in schematics and boards.
virtual VECTOR2I GetPosition() const
EDA_ITEM_FLAGS GetEditFlags() const
virtual EDA_GROUP * GetParentGroup() const
KICAD_T Type() const
Returns the type of object.
virtual bool IsType(const std::vector< KICAD_T > &aScanTypes) const
Check whether the item is one of the listed types.
void SetNetHighlighted(bool aHighlighted)
virtual EDA_ITEM * Clone() const
Create a duplicate of this item with linked list members set to NULL.
bool IsNetHighlighted() const
Net highlighting must not clear brightening owned by find or picker tools.
virtual void SetParent(EDA_ITEM *aParent)
SHAPE_POLY_SET & GetPolyShape()
const VECTOR2I & GetEnd() const
Return the ending point of the graphic.
const VECTOR2I & GetStart() const
Return the starting point of the graphic.
std::vector< VECTOR2I > GetRectCorners() const
A mix-in class (via multiple inheritance) that handles texts such as labels, parts,...
virtual bool IsVisible() const
PANEL_ANNOTATE m_AnnotatePanel
static const TOOL_EVENT ClearedEvent
static const TOOL_EVENT GridChangedByKeyEvent
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 UnselectedEvent
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()
static std::unique_ptr< CAIRO_PRINT_GAL > Create(GAL_DISPLAY_OPTIONS &aOptions, wxImage *aImage, double aDPI)
GAL_ANTIALIASING_MODE antialiasing_mode
The grid style to draw the grid in.
virtual bool HasNativeLandscapeRotation() const =0
void SetLayerColor(int aLayer, const COLOR4D &aColor)
Change the color used to draw a layer.
void SetDefaultFont(const wxString &aFont)
const COLOR4D & GetLayerColor(int aLayer) const
Return the color used to draw a layer.
void SetIsPrinting(bool isPrinting)
An interface for classes handling user events controlling the view behavior such as zooming,...
VECTOR2D GetCursorPosition() const
Return the current cursor position in world coordinates.
An abstract base class for deriving all objects that can be added to a 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...
void SetLayerVisible(int aLayer, bool aVisible=true)
Control the visibility of a particular layer.
static constexpr int VIEW_MAX_LAYERS
Maximum number of layers that may be shown.
void UpdateAllItems(int aUpdateFlags)
Update all items in the view according to the given flags.
void Hide(VIEW_ITEM *aItem, bool aHide=true, bool aHideOverlay=false)
Temporarily hide the item in the view (e.g.
void AddToPreview(VIEW_ITEM *aItem, bool aTakeOwnership=true)
void SetVisible(VIEW_ITEM *aItem, bool aIsVisible=true)
Set the item visibility.
bool EndsWith(const KIID_PATH &aPath) const
Test if aPath from the last path towards the first path.
wxString AsString() const
wxString AsString() const
KIWAY & Kiway() const
Return a reference to the KIWAY that this object has an opportunity to participate in.
A wxFrame capable of the OpenProjectFiles function, meaning it can load a portion of a KiCad project.
wxWindow * GetBlockingDialog()
Gets the window pointer to the blocking dialog (to send it signals)
std::optional< LIBRARY_TABLE_ROW * > GetRow(const wxString &aNickname, LIBRARY_TABLE_SCOPE aScope=LIBRARY_TABLE_SCOPE::BOTH) const
Like LIBRARY_MANAGER::GetRow but filtered to the LIBRARY_TABLE_TYPE of this adapter.
std::optional< wxString > GetFullURI(LIBRARY_TABLE_TYPE aType, const wxString &aNickname, bool aSubstituted=false)
Return the full location specifying URI for the LIB, either in original UI form or in environment var...
const wxString & Type() const
const wxString & Nickname() const
A logical library item identifier and consists of various portions much like a URI.
int SetLibNickname(const UTF8 &aLibNickname)
Override the logical library name portion of the LIB_ID to aLibNickname.
Define a library symbol object.
const LIB_ID & GetLibId() const override
bool IsPower() const override
std::unique_ptr< LIB_SYMBOL > Flatten() const
Return a flattened symbol inheritance to the caller.
Instantiate the current locale within a scope in which you are expecting exceptions to be thrown.
static void ConvertToSpiceMarkup(wxString *aNetName)
Convert an escaped schematic net name to SPICE, preserving literal slashes when mapping ground names.
Tree view item data for the net navigator.
static bool ParseBusGroup(const wxString &aGroup, wxString *name, std::vector< wxString > *aMemberList, size_t *aPrefixEnd=nullptr)
Parse a bus group label into the name and a list of components.
static bool ParseBusVector(const wxString &aBus, wxString *aName, std::vector< wxString > *aMemberList)
Parse a bus vector (e.g.
Describe the page size and margins of a paper page on which to eventually print or plot.
void SetHeightMils(double aHeightInMils)
void SetWidthMils(double aWidthInMils)
A holder to handle information on schematic or board items.
void PushItem(const ITEM_PICKER &aItem)
Push aItem to the top of the list.
void SetDescription(const wxString &aDescription)
void ReversePickersListOrder()
Reverse the order of pickers stored in this list.
static SYMBOL_LIBRARY_ADAPTER * SymbolLibAdapter(PROJECT *aProject)
Accessor for project symbol library manager adapter.
static bool RescueProject(wxWindow *aParent, RESCUER &aRescuer, bool aRunningOnDemand)
size_t GetCandidateCount()
Return the number of rescue candidates found.
These are loaded from Eeschema settings but then overwritten by the project settings.
double GetHopOverScale()
Accessor that computes the current hop-over size.
std::shared_ptr< REFDES_TRACKER > m_refDesTracker
A list of previously used schematic reference designators.
Holds all the data relating to one schematic.
SCH_CONNECTIVITY::NETCHAIN_MANAGER & NetChains() const
wxString GetVariantDescription(const wxString &aVariantName) const
Return the description for a variant.
wxString GetFileName() const
Helper to retrieve the filename from the root sheet screen.
SCHEMATIC_SETTINGS & Settings() const
SCH_SHEET_LIST Hierarchy() const
Return the full schematic flattened hierarchical sheet list.
PROJECT & Project() const
Return a reference to the project this schematic is part of.
wxString GetCurrentVariant() const
Return the current variant being edited.
const std::map< wxString, wxString > * GetProperties()
SCH_SHEET_PATH & CurrentSheet() const
static TOOL_ACTION showPcbNew
static TOOL_ACTION createNetChain
static TOOL_ACTION assignFootprints
static TOOL_ACTION copyVariant
static TOOL_ACTION lineModeNext
static TOOL_ACTION toggleOPCurrents
static TOOL_ACTION saveToLinkedDesignBlock
static TOOL_ACTION clearHighlight
static TOOL_ACTION removeVariant
static TOOL_ACTION editSymbolFields
static TOOL_ACTION importFPAssignments
static TOOL_ACTION toggleAnnotateAuto
static TOOL_ACTION editLibSymbolWithLibEdit
static TOOL_ACTION toggleERCWarnings
static TOOL_ACTION editVariantDescription
static TOOL_ACTION schematicSetup
static TOOL_ACTION toggleDirectiveLabels
static TOOL_ACTION highlightNetTool
static TOOL_ACTION removeFromNetChain
static TOOL_ACTION findNetInInspector
static TOOL_ACTION toggleHiddenFields
static TOOL_ACTION saveCurrSheetCopyAs
static TOOL_ACTION showRemoteSymbolPanel
static TOOL_ACTION remapSymbols
static TOOL_ACTION lineMode45
static TOOL_ACTION editSymbolLibraryLinks
static TOOL_ACTION simTune
static TOOL_ACTION generateBOM
static TOOL_ACTION showHierarchy
static TOOL_ACTION highlightNetChain
static TOOL_ACTION showNetNavigator
static TOOL_ACTION markSimExclusions
static TOOL_ACTION placeImage
static TOOL_ACTION editWithLibEdit
static TOOL_ACTION toggleERCErrors
static TOOL_ACTION incrementAnnotations
static TOOL_ACTION rescueSymbols
static TOOL_ACTION angleSnapModeChanged
static TOOL_ACTION placeLinkedDesignBlock
static TOOL_ACTION generateBOMLegacy
static TOOL_ACTION placeDesignBlock
static TOOL_ACTION toggleOPVoltages
static TOOL_ACTION simProbe
static TOOL_ACTION lineMode90
static TOOL_ACTION lineModeFree
static TOOL_ACTION changeSheet
static TOOL_ACTION highlightNet
static TOOL_ACTION assignNetclass
static TOOL_ACTION annotate
static TOOL_ACTION showDesignBlockPanel
static TOOL_ACTION updateDesignBlockFromSelection
static TOOL_ACTION replaceTerminalPin
static TOOL_ACTION togglePinAltIcons
static TOOL_ACTION toggleERCExclusions
static TOOL_ACTION updateNetHighlighting
static TOOL_ACTION renameVariant
static TOOL_ACTION createNetChainBetweenPins
static TOOL_ACTION exportNetlist
static TOOL_ACTION drawSheetOnClipboard
static TOOL_ACTION exportSymbolsToLibrary
static TOOL_ACTION toggleHiddenPins
static TOOL_ACTION selectOnPCB
static TOOL_ACTION addVariant
static TOOL_ACTION importNonKicadSchematic
static TOOL_ACTION nameNetChain
SCH_RENDER_SETTINGS * GetRenderSettings()
SCH_DRAW_PANEL * GetCanvas() const override
Return a pointer to GAL-based canvas of given EDA draw frame.
EESCHEMA_SETTINGS * eeconfig() const
COLOR_SETTINGS * GetColorSettings(bool aForceRefresh=false) const override
Returns a pointer to the active color theme settings.
Base class for a bus or wire entry.
void Collect(SCH_SCREEN *aScreen, const std::vector< KICAD_T > &aScanTypes, const VECTOR2I &aPos, int aUnit=0, int aBodyStyle=0)
Scan a EDA_ITEM using this class's Inspector method which does the collection.
virtual void Push(const wxString &aMessage=wxT("A commit"), int aCommitFlags=0) override
Execute the changes.
virtual void Revert() override
Revert the commit by restoring the modified items state.
Each graphical item can have a SCH_CONNECTION describing its logical connection (to a bus or net).
Net membership for one UI operation.
void CollectNetItems(const wxString &aName, const SCH_SHEET_PATH &aSheet, std::unordered_set< SCH_ITEM * > &aItems, bool aIncludeBusParents=false, bool aIncludeBusMembers=false) const
Add the items of a net on one sheet to aItems without building other sheets.
bool ReplaceNetChainTerminalPin(const TERMINAL_CHANGE &aChange)
static wxString NetKeyForItem(const SCH_ITEM &aItem, const SCH_SHEET_PATH &aPath)
bool NetChainsBuilt() const
Returns true once RebuildNetChains() has completed at least once on this graph.
Handle actions specific to the schematic editor.
int PageSetup(const TOOL_EVENT &aEvent)
bool RescueLegacyProject(bool aRunningOnDemand)
int ToggleDirectiveLabels(const TOOL_EVENT &aEvent)
int SaveAs(const TOOL_EVENT &aEvent)
int MarkSimExclusions(const TOOL_EVENT &aEvent)
int Annotate(const TOOL_EVENT &aEvent)
int ShowSchematicSetup(const TOOL_EVENT &aEvent)
int HighlightNet(const TOOL_EVENT &aEvent)
Highlight net chain under the cursor.
int ClearHighlight(const TOOL_EVENT &aEvent)
Update net highlighting after an edit.
int FindNetInInspector(const TOOL_EVENT &aEvent)
int EditSymbolFields(const TOOL_EVENT &aEvent)
bool m_duplicateIsHoverSelection
int GenerateBOMLegacy(const TOOL_EVENT &aEvent)
int RemoveFromNetChain(const TOOL_EVENT &aEvent)
Remove any net highlighting.
int HighlightNetCursor(const TOOL_EVENT &aEvent)
Replace one of a net chain's terminal pins.
int CopyAsText(const TOOL_EVENT &aEvent)
int AddVariant(const TOOL_EVENT &aEvent)
int ImportFPAssignments(const TOOL_EVENT &aEvent)
int ChangeLineMode(const TOOL_EVENT &aEvent)
void doCrossProbeSchToPcb(const TOOL_EVENT &aEvent, bool aForce)
int ExportSymbolsToLibrary(const TOOL_EVENT &aEvent)
int SaveCurrSheetCopyAs(const TOOL_EVENT &aEvent)
Saves the currently-open schematic sheet to an other name.
bool rescueProject(RESCUER &aRescuer, bool aRunningOnDemand)
int CrossProbeToPcb(const TOOL_EVENT &aEvent)
Equivalent to the above, but initiated by the user.
void SetHighlightBusMembers(bool aHighlightBusMembers)
int CopyVariant(const TOOL_EVENT &aEvent)
int PlaceLinkedDesignBlock(const TOOL_EVENT &aEvent)
int ToggleRemoteSymbolPanel(const TOOL_EVENT &aEvent)
int RemapSymbols(const TOOL_EVENT &aEvent)
int DrawSheetOnClipboard(const TOOL_EVENT &aEvent)
SCH_SHEET_PATH updatePastedSheet(SCH_SHEET *aSheet, const SCH_SHEET_PATH &aPastePath, const KIID_PATH &aClipPath, bool aForceKeepAnnotations, SCH_SHEET_LIST *aPastedSheets, std::map< SCH_SHEET_PATH, SCH_REFERENCE_LIST > &aPastedSymbols)
int TogglePinAltIcons(const TOOL_EVENT &aEvent)
int RescueSymbols(const TOOL_EVENT &aEvent)
Perform rescue operations to recover old projects from before certain changes were made.
int AssignNetclass(const TOOL_EVENT &aEvent)
std::string m_duplicateClipboard
int ExportNetlist(const TOOL_EVENT &aEvent)
int Open(const TOOL_EVENT &aEvent)
int Paste(const TOOL_EVENT &aEvent)
int ToggleOPVoltages(const TOOL_EVENT &aEvent)
int Copy(const TOOL_EVENT &aEvent)
int SaveToLinkedDesignBlock(const TOOL_EVENT &aEvent)
int ToggleERCWarnings(const TOOL_EVENT &aEvent)
int NextLineMode(const TOOL_EVENT &aEvent)
int Redo(const TOOL_EVENT &aEvent)
Clipboard support.
int UpdatePCB(const TOOL_EVENT &aEvent)
int RemoveVariant(const TOOL_EVENT &aEvent)
int UpdateFromPCB(const TOOL_EVENT &aEvent)
int ToggleAnnotateAuto(const TOOL_EVENT &aEvent)
int EditVariantDescription(const TOOL_EVENT &aEvent)
int ToggleHiddenPins(const TOOL_EVENT &aEvent)
int Duplicate(const TOOL_EVENT &aEvent)
int IncrementAnnotations(const TOOL_EVENT &aEvent)
bool searchSupplementaryClipboard(const wxString &aSheetFilename, SCH_SCREEN **aScreen)
int GridFeedback(const TOOL_EVENT &aEvent)
int ShowSearch(const TOOL_EVENT &aEvent)
int EditWithSymbolEditor(const TOOL_EVENT &aEvent)
int ReplaceTerminalPin(const TOOL_EVENT &aEvent)
int SimTune(const TOOL_EVENT &aEvent)
Highlight net under the cursor.
int EditSymbolLibraryLinks(const TOOL_EVENT &aEvent)
int New(const TOOL_EVENT &aEvent)
int ImportNonKicadSchematic(const TOOL_EVENT &aEvent)
int ShowCreateNetChain(const TOOL_EVENT &aEvent)
std::map< wxString, SCH_SCREEN * > m_supplementaryClipboard
int ExplicitCrossProbeToPcb(const TOOL_EVENT &aEvent)
int ToggleOPCurrents(const TOOL_EVENT &aEvent)
int ShowPcbNew(const TOOL_EVENT &aEvent)
int UpdateNetHighlighting(const TOOL_EVENT &aEvent)
Launch a tool to highlight nets.
int ToggleERCErrors(const TOOL_EVENT &aEvent)
int ShowHierarchy(const TOOL_EVENT &aEvent)
int OnAngleSnapModeChanged(const TOOL_EVENT &aEvent)
void setTransitions() override
This method is meant to be overridden in order to specify handlers for events.
bool m_highlightBusMembers
static const LIB_SYMBOL * ChoosePasteLibSymbol(const SCH_SCREEN *aClipboardScreen, const SCH_SCREEN *aDestScreen, const wxString &aLibSymbolName)
Choose which cached library symbol a pasted instance should adopt.
int ShowNetNavigator(const TOOL_EVENT &aEvent)
int NameNetChain(const TOOL_EVENT &aEvent)
int SimProbe(const TOOL_EVENT &aEvent)
void updatePastedSymbol(SCH_SYMBOL *aSymbol, const SCH_SHEET_PATH &aPastePath, const KIID_PATH &aClipPath, bool aForceKeepAnnotations)
int ShowCvpcb(const TOOL_EVENT &aEvent)
int HighlightNetChain(const TOOL_EVENT &aEvent)
int ToggleLibraryTree(const TOOL_EVENT &aEvent)
int RenameVariant(const TOOL_EVENT &aEvent)
std::set< SCH_SYMBOL * > m_pastedSymbols
void prunePastedSymbolInstances()
Reconcile every pasted symbol's instances against the current project.
int Cut(const TOOL_EVENT &aEvent)
int ToggleProperties(const TOOL_EVENT &aEvent)
std::map< KIID_PATH, SCH_SYMBOL_INSTANCE > m_clipboardSymbolInstances
int Save(const TOOL_EVENT &aEvent)
bool RescueSymbolLibTableProject(bool aRunningOnDemand)
Notifies pcbnew about the selected item.
bool doCopy(bool aUseDuplicateClipboard=false)
< copy selection to clipboard or to m_duplicateClipboard
int Undo(const TOOL_EVENT &aEvent)
int ToggleERCExclusions(const TOOL_EVENT &aEvent)
int Plot(const TOOL_EVENT &aEvent)
int CreateNetChainBetweenPins(const TOOL_EVENT &aEvent)
int Print(const TOOL_EVENT &aEvent)
int Revert(const TOOL_EVENT &aEvent)
int GenerateBOM(const TOOL_EVENT &aEvent)
void setPastedSymbolInstances(const SCH_SCREEN *aScreen)
int ToggleHiddenFields(const TOOL_EVENT &aEvent)
Schematic editor (Eeschema) main window.
void ToggleProperties() override
SCH_DESIGN_BLOCK_PANE * GetDesignBlockPane() const
void RecalculateConnections(SCH_COMMIT *aCommit, SCH_CLEANUP_FLAGS aCleanupFlags, PROGRESS_REPORTER *aProgressReporter=nullptr, bool aCleanupDone=false)
Generate the connection data for the entire schematic hierarchy.
void ToggleNetNavigator()
void OnModify() override
Must be called after a schematic change in order to set the "modify" flag and update other data struc...
void ToggleLibraryTree() override
SCH_SCREEN * GetScreen() const override
Return a pointer to a BASE_SCREEN or one of its derivatives.
void SendCrossProbeClearHighlight()
Tell Pcbnew to clear the existing highlighted net, if one exists.
SCH_SHEET_PATH & GetCurrentSheet() const
const SCH_ITEM * GetSelectedNetNavigatorItem() const
SCHEMATIC & Schematic() const
void ToggleSearch()
Toggle the show/hide state of Search pane.
wxString GetFullScreenDesc() const override
const wxString & GetHighlightedNetChain() const
void ToggleSchematicHierarchy()
Toggle the show/hide state of the left side schematic navigation panel.
void SetHighlightedConnection(const wxString &aConnection, const NET_NAVIGATOR_ITEM_DATA *aSelection=nullptr, bool aForceNetNavigatorRefresh=false)
void SetHighlightedNetChain(const wxString &aNetChain)
void SetCrossProbeConnection(const wxString &aName)
Send a connection (net or bus) to Pcbnew for highlighting.
const wxString & GetHighlightedConnection() const
void UpdateNetHighlightStatus()
wxString GetScreenDesc() const override
Return a human-readable description of the current screen.
void EditVariantDescription()
void SelectNetNavigatorItem(const NET_NAVIGATOR_ITEM_DATA *aSelection=nullptr)
void ToggleRemoteSymbolPanel()
virtual const wxString & GetText() const override
Return the string associated with the text object.
void SetText(const wxString &aText) override
A set of SCH_ITEMs (i.e., without duplicates).
A SCH_IO derivation for loading schematic files using the new s-expression file format.
void LoadContent(LINE_READER &aReader, SCH_SHEET *aSheet, int aVersion=SEXPR_SCHEMATIC_FILE_VERSION)
void Format(SCH_SHEET *aSheet)
static SCH_FILE_T EnumFromStr(const wxString &aFileType)
Return the #SCH_FILE_T from the corresponding plugin type name: "kicad", "legacy",...
Base class for any item which can be embedded within the SCHEMATIC container class,...
virtual bool IsConnectable() const
void SetLocked(bool aLocked) override
const SYMBOL * GetParentSymbol() const
SCHEMATIC * Schematic() const
Search the item hierarchy to find a SCHEMATIC.
virtual void SetLastResolvedState(const SCH_ITEM *aItem)
void SetConnectivityDirty(bool aDirty=true)
bool IsConnectivityDirty() const
std::optional< wxString > GetConnectionName(const SCH_SHEET_PATH *aSheet=nullptr, bool aLocal=false, bool aIgnoreSheet=false) const
Return the connection name for this sheet instance, if connected.
virtual void SetUnit(int aUnit)
SCH_CONNECTION * Connection(const SCH_SHEET_PATH *aSheet=nullptr) const
Retrieve the connection associated with this object in the given sheet.
bool HasBusConnection(const SCH_SHEET_PATH *aSheet=nullptr) const
virtual std::vector< VECTOR2I > GetConnectionPoints() const
Add all the connection points for this item to aPoints.
bool IsType(const std::vector< KICAD_T > &aScanTypes) const override
Check whether the item is one of the listed types.
Segment description base class to describe items which have 2 end points (track, wire,...
A net chain is a collection of nets that are connected together through passive components.
const std::set< wxString > & GetNets() const
const wxString & GetName() const
static bool IsValidName(const wxString &aName)
SCH_PIN * GetLibPin() const
const wxString & GetNumber() const
const BOX2I GetBoundingBox() const override
Return the orthogonal bounding box of this object for display purposes.
Container to create a flattened list of symbols because in a complex hierarchy, a symbol can be used ...
void SortByReferenceOnly()
Sort the list of references by reference.
void SplitReferences()
Attempt to split all reference designators into a name (U) and number (1).
void AddItem(const SCH_REFERENCE &aItem)
A helper to define a symbol's reference designator in a schematic.
void SetRef(const wxString &aReference)
void Split()
Attempt to split the reference designator into a name (U) and number (1).
bool IsSplitNeeded()
Determine if this reference needs to be split or if it likely already has been.
void SetSheetNumber(int aSheetNumber)
wxString GetRefNumber() const
void SetBackgroundColor(const COLOR4D &aColor) override
Set the background color.
const KIGFX::COLOR4D & GetBackgroundColor() const override
Return current background color settings.
bool m_ShowPinsElectricalType
void LoadColors(const COLOR_SETTINGS *aSettings) override
Container class that holds multiple SCH_SCREEN objects in a hierarchy.
void UpdateSymbolLinks(REPORTER *aReporter=nullptr)
Initialize the LIB_SYMBOL reference for each SCH_SYMBOL found in the full schematic.
void PruneOrphanedSheetInstances(const wxString &aProjectName, const SCH_SHEET_LIST &aValidSheetPaths)
void PruneOrphanedSymbolInstances(const wxString &aProjectName, const SCH_SHEET_LIST &aValidSheetPaths)
bool HasNoFullyDefinedLibIds()
Test all of the schematic symbols to see if all LIB_ID objects library nickname is not set.
const PAGE_INFO & GetPageSettings() const
void Append(SCH_ITEM *aItem, bool aUpdateLibSymbol=true)
void Clear(bool aFree=true)
Delete all draw items and clears the project settings.
std::set< wxString > GetSheetNames() const
const std::map< wxString, LIB_SYMBOL * > & GetLibSymbols() const
Fetch a list of unique LIB_SYMBOL object pointers required to properly render each SCH_SYMBOL in this...
EE_RTREE & Items()
Get the full RTree, usually for iterating.
const wxString & GetFileName() const
void UpdateSymbolLinks(REPORTER *aReporter=nullptr, LEGACY_SYMBOL_LIBS *aLegacyLibs=nullptr, SYMBOL_LIBRARY_ADAPTER *aLibraries=nullptr)
Initialize the LIB_SYMBOL reference for each SCH_SYMBOL found in this schematic from the project #SYM...
SCHEMATIC * Schematic() const
TITLE_BLOCK & GetTitleBlock()
void Plot(PLOTTER *aPlotter, const SCH_PLOT_OPTS &aPlotOpts) const
Plot all the schematic objects to aPlotter.
void MigrateSimModels()
Migrate any symbols having V6 simulation models to their V7 equivalents.
BOX2I GetBoundingBox() const override
VECTOR2I GetCenter() const
A container for handling SCH_SHEET_PATH objects in a flattened hierarchy.
void FillItemMap(std::map< KIID, EDA_ITEM * > &aMap)
Fill an item cache for temporary use when many items need to be fetched.
void SortByPageNumbers(bool aUpdateVirtualPageNums=true)
Sort the list of sheets by page number.
SCH_SHEET_LIST FindAllSheetsForScreen(const SCH_SCREEN *aScreen) const
Return a SCH_SHEET_LIST with a copy of all the SCH_SHEET_PATH using a particular screen.
int GetLastVirtualPageNumber() const
bool PageNumberExists(const wxString &aPageNumber) const
bool ContainsSheet(const SCH_SHEET *aSheet) const
bool HasPath(const KIID_PATH &aPath) const
void GetSymbols(SCH_REFERENCE_LIST &aReferences, SYMBOL_FILTER aSymbolFilter, bool aForceIncludeOrphanSymbols=false) const
Add a SCH_REFERENCE object to aReferences for each symbol in the list of sheets.
bool TestForRecursion(const SCH_SHEET_LIST &aSrcSheetHierarchy, const wxString &aDestFileName)
Test every SCH_SHEET_PATH in this SCH_SHEET_LIST to verify if adding the sheets stored in aSrcSheetHi...
Handle access to a stack of flattened SCH_SHEET objects by way of a path for creating a flattened sch...
bool IsSharedPath() const
Determine if this sheet path is shared in a complex hierarchy.
void GetSymbols(SCH_REFERENCE_LIST &aReferences, SYMBOL_FILTER aSymbolFilter, bool aForceIncludeOrphanSymbols=false) const
Adds SCH_REFERENCE object to aReferences for each symbol in the sheet.
KIID_PATH Path() const
Get the sheet path as an KIID_PATH.
SCH_SCREEN * LastScreen()
SCH_SHEET * Last() const
Return a pointer to the last SCH_SHEET of the list.
void push_back(SCH_SHEET *aSheet)
Forwarded method from std::vector.
Define a sheet pin (label) used in sheets to create hierarchical schematics.
Sheet symbol placed in a schematic, and is the entry point for a sub schematic.
wxString GetFileName() const
Return the filename corresponding to this sheet.
void RemoveInstance(const KIID_PATH &aInstancePath)
SCH_FIELD * GetField(FIELD_T aFieldType)
Return a mandatory field in this sheet.
void AddInstance(const SCH_SHEET_INSTANCE &aInstance)
SCH_SCREEN * GetScreen() const
void SetScreen(SCH_SCREEN *aScreen)
Set the SCH_SCREEN associated with this sheet to aScreen.
std::vector< SCH_SHEET_PIN * > & GetPins()
const std::vector< SCH_SHEET_INSTANCE > & GetInstances() const
EMBEDDED_FILES * GetEmbeddedFiles() override
SCH_SYMBOLs don't currently support embedded files, but their LIB_SYMBOL counterparts do.
const std::vector< SCH_SYMBOL_INSTANCE > & GetInstances() const
wxString GetSchSymbolLibraryName() const
std::vector< const SCH_PIN * > GetPins(const SCH_SHEET_PATH *aSheet) const
Retrieve a list of the SCH_PINs for the given sheet path.
void ClearAnnotation(const SCH_SHEET_PATH *aSheetPath, bool aResetPrefix)
Clear exiting symbol annotation.
void AddHierarchicalReference(const KIID_PATH &aPath, const wxString &aRef, int aUnit)
Add a full hierarchical reference to this symbol.
bool IsMissingLibSymbol() const
Check to see if the library symbol is set to the dummy library symbol.
const LIB_ID & GetLibId() const override
std::unique_ptr< LIB_SYMBOL > & GetLibSymbolRef()
void SetLibSymbol(LIB_SYMBOL *aLibSymbol)
Set this schematic symbol library symbol reference to aLibSymbol.
const wxString GetRef(const SCH_SHEET_PATH *aSheet, bool aIncludeUnit=false) const override
bool IsPower() const override
SCH_FIELD * GetField(FIELD_T aFieldType)
Return a mandatory field in this symbol.
virtual void Add(EDA_ITEM *aItem)
A null aItem is ignored; the selection never holds null members.
const std::deque< EDA_ITEM * > GetItems() const
virtual unsigned int GetSize() const override
Return the number of stored items.
const VECTOR2I & CVertex(int aIndex, int aOutline, int aHole) const
Return the index-th vertex in a given hole outline within a given outline.
The SIMULATOR_FRAME holds the main user-interface for running simulations.
void AddCurrentTrace(const wxString &aDeviceName)
Add a current trace for a given device to the current plot.
void AddVoltageTrace(const wxString &aNetName)
Add a voltage trace for a given net to the current plot.
SIM_MODEL & CreateModel(SIM_MODEL::TYPE aType, std::span< const wxString > aPins, REPORTER &aReporter)
void SetFilesStack(std::vector< EMBEDDED_FILES * > aFilesStack)
Is a LINE_READER that reads from a multiline 8 bit wide std::string.
The symbol library editor main window.
bool IsLibraryTreeShown() const override
void LoadSymbol(const wxString &aLibrary, const wxString &aSymbol, int Unit)
void LoadSymbolFromSchematic(SCH_SYMBOL *aSymbol)
Load a symbol from the schematic to edit in place.
void ToggleLibraryTree() override
An interface to the global shared library manager that is schematic-specific and linked to one projec...
Class to handle modifications to the symbol libraries.
Symbol library viewer main window.
virtual const wxString GetRef(const SCH_SHEET_PATH *aSheet, bool aIncludeUnit=false) const =0
A wrapper for reporting to a wxString object.
std::unique_ptr< wxBitmap > GetImageFromClipboard()
Get image data from the clipboard, if there is any.
bool EncodeImageToPng(const wxImage &aImage, wxMemoryBuffer &aOutput)
Encode an image to PNG format with fast compression settings optimized for clipboard use.
bool AddTransparentImageToClipboardData(wxDataObjectComposite *aData, wxImage aImage)
Adds an image to clipboard data in a platform-specific way such that transparency is supported.
bool SaveClipboard(const std::string &aTextUTF8)
Store information to the system clipboard.
std::string GetClipboardUTF8()
Return the information currently stored in the system clipboard.
bool AddPngToClipboardData(wxDataObjectComposite *aData, const wxMemoryBuffer &aPngData, const wxImage *aFallbackImage)
Adds pre-encoded PNG data to clipboard in a platform-specific way.
wxString EnsureFileExtension(const wxString &aFilename, const wxString &aExtension)
It's annoying to throw up nag dialogs when the extension isn't right.
bool IsOK(wxWindow *aParent, const wxString &aMessage)
Display a yes/no dialog with aMessage and returns the user response.
void DisplayInfoMessage(wxWindow *aParent, const wxString &aMessage, const wxString &aExtraInfo)
Display an informational message box with aMessage.
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.
int InvokeDialogCreateBOM(SCH_EDIT_FRAME *aCaller)
Create and show DIALOG_BOM and return whatever DIALOG_BOM::ShowModal() returns.
bool InvokeDialogEditSymbolsLibId(SCH_EDIT_FRAME *aCaller)
Run a dialog to modify the LIB_ID of symbols for instance when a symbol has moved from a symbol libra...
int InvokeDialogNetList(SCH_EDIT_FRAME *aCaller)
#define IS_PASTED
Modifier on IS_NEW which indicates it came from clipboard.
#define IS_NEW
New item, just created.
#define ENDPOINT
ends. (Used to support dragging.)
#define IS_MOVING
Item being moved.
#define STARTPOINT
When a line is selected, these flags indicate which.
@ RECTANGLE
Use RECTANGLE instead of RECT to avoid collision in a Windows header.
@ FRAME_SCH_SYMBOL_EDITOR
static const std::string KiCadSchematicFileExtension
static wxString KiCadSchematicFileWildcard()
static const wxChar traceSchPaste[]
Flag to enable schematic paste debugging output.
#define NET_PLUGIN_CHANGE
Create and shows DIALOG_EXPORT_NETLIST and returns whatever DIALOG_EXPORT_NETLIST::ShowModal() return...
std::unique_ptr< T > IO_RELEASER
Helper to hold and release an IO_BASE object when exceptions are thrown.
#define THROW_IO_ERROR(msg)
macro which captures the "call site" values of FILE_, __FUNCTION & LINE
bool LoadFileToMemory(const wxString &aFileName, wxMemoryBuffer &aBuffer)
Load the contents of a file into a memory buffer.
#define KICTL_REVERT
reverting to a previously-saved (KiCad) file.
@ LAYER_DRAWINGSHEET
Sheet frame and title block.
@ LAYER_SCHEMATIC_DRAWINGSHEET
@ LAYER_SCHEMATIC_PAGE_LIMITS
@ REPAINT
Item needs to be redrawn.
@ GEOMETRY
Position or shape has changed.
@ TARGET_NONCACHED
Auxiliary rendering target (noncached)
void encode(const std::vector< uint8_t > &aInput, std::vector< uint8_t > &aOutput)
#define MAX_PAGE_SIZE_EESCHEMA_MILS
PGM_BASE & Pgm()
The global program "get" accessor.
Plotting engines similar to ps (PostScript, Gerber, svg)
static bool highlightNet(TOOL_MANAGER *aToolMgr, const VECTOR2D &aPosition)
static bool setNetHighlight(SCH_ITEM *aItem, bool aHighlight)
#define HITTEST_THRESHOLD_PIXELS
static void recalculateIfStale(SCH_EDIT_FRAME *aFrame, SCH_ITEM *aItem)
Class to handle a set of SCH_ITEMs.
std::vector< EDA_ITEM * > EDA_ITEMS
ANNOTATE_ORDER_T
Schematic annotation order options.
ANNOTATE_ALGO_T
Schematic annotation type options.
@ SYMBOL_FILTER_NON_POWER
constexpr double SCH_WORLD_UNIT(1e-7/0.0254)
std::vector< FAB_LAYER_COLOR > dummy
wxString UnescapeString(const wxString &aSource)
wxString From_UTF8(const char *cstring)
#define TO_UTF8(wxstring)
Convert a wxString to a UTF8 encoded C string for all wxWidgets build modes.
Optional context derived from the user selection that opened the dialog.
wxString toRef
Second selected symbol reference, if any.
wxString fromRef
Selected symbol reference (or first of two)
wxString netName
Net name from a selected pin or wire/bus.
bool show_directive_labels
std::vector< GRID > grids
Common grid settings, available to every frame.
A simple container for sheet instance information.
A simple container for schematic symbol instance information.
static constexpr auto NOT_CONNECTED
@ REFERENCE
Field Reference of part, i.e. "IC21".
@ VALUE
Field Value of part, i.e. "3.3K".
IbisParser parser & reporter
const SHAPE_LINE_CHAIN chain
wxString result
Test unit parsing edge cases and error handling.
VECTOR2< int32_t > VECTOR2I
VECTOR2< double > VECTOR2D
Definition of file extensions used in Kicad.
#define FN_NORMALIZE_FLAGS
Default flags to pass to wxFileName::Normalize().
#define ZOOM_MIN_LIMIT_EESCHEMA
#define ZOOM_MAX_LIMIT_EESCHEMA