KiCad PCB EDA Suite
Loading...
Searching...
No Matches
board_editor_control.cpp
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 2014 CERN
5 * Copyright (C) 2014-2022 KiCad Developers, see AUTHORS.txt for contributors.
6 * @author Maciej Suminski <[email protected]>
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, you may find one here:
20 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
21 * or you may search the http://www.gnu.org website for the version 2 license,
22 * or you may write to the Free Software Foundation, Inc.,
23 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
24 */
25
27
28#include <functional>
29#include <memory>
30
31#include <pgm_base.h>
32#include <advanced_config.h>
33#include <bitmaps.h>
34#include <pcb_painter.h>
35#include <board.h>
36#include <board_commit.h>
38#include <pcb_generator.h>
39#include <footprint.h>
40#include <pad.h>
41#include <pcb_target.h>
42#include <pcb_track.h>
43#include <zone.h>
44#include <pcb_marker.h>
45#include <confirm.h>
49#include <kiface_base.h>
50#include <kiway.h>
52#include <origin_viewitem.h>
53#include <pcb_edit_frame.h>
54#include <pcbnew_id.h>
55#include <project.h>
56#include <project/project_file.h> // LAST_PATH_TYPE
57#include <tool/tool_manager.h>
58#include <tool/tool_event.h>
59#include <tools/drawing_tool.h>
60#include <tools/pcb_actions.h>
65#include <tools/edit_tool.h>
68#include <richio.h>
69#include <router/router_tool.h>
70#include <view/view_controls.h>
71#include <view/view_group.h>
75#include <wx/filedlg.h>
76#include <wx/msgdlg.h>
77#include <wx/log.h>
78
80
81using namespace std::placeholders;
82
83
85{
86public:
88 ACTION_MENU( true )
89 {
90 SetIcon( BITMAPS::add_zone );
91 SetTitle( _( "Zones" ) );
92
97
98 AppendSeparator();
99
104
105 AppendSeparator();
106
108 }
109
110protected:
111 ACTION_MENU* create() const override
112 {
113 return new ZONE_CONTEXT_MENU();
114 }
115};
116
117
119{
120public:
122 CONDITIONAL_MENU( aTool )
123 {
124 SetIcon( BITMAPS::locked );
125 SetTitle( _( "Locking" ) );
126
130 }
131
132 ACTION_MENU* create() const override
133 {
134 return new LOCK_CONTEXT_MENU( this->m_tool );
135 }
136};
137
138
140 PCB_TOOL_BASE( "pcbnew.EditorControl" ),
141 m_frame( nullptr ),
142 m_inPlaceFootprint( false ),
143 m_placingFootprint( false ),
144 m_inPlaceTarget( false )
145{
146 m_placeOrigin = std::make_unique<KIGFX::ORIGIN_VIEWITEM>( KIGFX::COLOR4D( 0.8, 0.0, 0.0, 1.0 ),
148}
149
150
152{
153}
154
155
157{
158 m_frame = getEditFrame<PCB_EDIT_FRAME>();
159
160 if( aReason == MODEL_RELOAD || aReason == GAL_SWITCH || aReason == REDRAW )
161 {
162 m_placeOrigin->SetPosition( getModel<BOARD>()->GetDesignSettings().GetAuxOrigin() );
163 getView()->Remove( m_placeOrigin.get() );
164 getView()->Add( m_placeOrigin.get() );
165 }
166}
167
168
170{
171 auto activeToolCondition =
172 [this]( const SELECTION& aSel )
173 {
174 return ( !m_frame->ToolStackIsEmpty() );
175 };
176
177 auto inactiveStateCondition =
178 [this]( const SELECTION& aSel )
179 {
180 return ( m_frame->ToolStackIsEmpty() && aSel.Size() == 0 );
181 };
182
183 auto placeModuleCondition =
184 [this]( const SELECTION& aSel )
185 {
186 return m_frame->IsCurrentTool( PCB_ACTIONS::placeFootprint ) && aSel.GetSize() == 0;
187 };
188
189 auto& ctxMenu = m_menu->GetMenu();
190
191 // "Cancel" goes at the top of the context menu when a tool is active
192 ctxMenu.AddItem( ACTIONS::cancelInteractive, activeToolCondition, 1 );
193 ctxMenu.AddSeparator( 1 );
194
195 // "Get and Place Footprint" should be available for Place Footprint tool
196 ctxMenu.AddItem( PCB_ACTIONS::getAndPlace, placeModuleCondition, 1000 );
197 ctxMenu.AddSeparator( 1000 );
198
199 // Finally, add the standard zoom & grid items
200 getEditFrame<PCB_BASE_FRAME>()->AddStandardSubMenus( *m_menu.get() );
201
202 std::shared_ptr<ZONE_CONTEXT_MENU> zoneMenu = std::make_shared<ZONE_CONTEXT_MENU>();
203 zoneMenu->SetTool( this );
204
205 std::shared_ptr<LOCK_CONTEXT_MENU> lockMenu = std::make_shared<LOCK_CONTEXT_MENU>( this );
206
207 // Add the PCB control menus to relevant other tools
208
210
211 if( selTool )
212 {
213 TOOL_MENU& toolMenu = selTool->GetToolMenu();
214 CONDITIONAL_MENU& menu = toolMenu.GetMenu();
215
216 // Add "Get and Place Footprint" when Selection tool is in an inactive state
217 menu.AddItem( PCB_ACTIONS::getAndPlace, inactiveStateCondition );
218 menu.AddSeparator();
219
220 toolMenu.RegisterSubMenu( zoneMenu );
221 toolMenu.RegisterSubMenu( lockMenu );
222
223 menu.AddMenu( lockMenu.get(), SELECTION_CONDITIONS::NotEmpty, 100 );
224
225 menu.AddMenu( zoneMenu.get(), SELECTION_CONDITIONS::OnlyTypes( { PCB_ZONE_T } ), 100 );
226 }
227
228 DRAWING_TOOL* drawingTool = m_toolMgr->GetTool<DRAWING_TOOL>();
229
230 if( drawingTool )
231 {
232 TOOL_MENU& toolMenu = drawingTool->GetToolMenu();
233 CONDITIONAL_MENU& menu = toolMenu.GetMenu();
234
235 toolMenu.RegisterSubMenu( zoneMenu );
236
237 // Functor to say if the PCB_EDIT_FRAME is in a given mode
238 // Capture the tool pointer and tool mode by value
239 auto toolActiveFunctor =
240 [=]( DRAWING_TOOL::MODE aMode )
241 {
242 return [=]( const SELECTION& sel )
243 {
244 return drawingTool->GetDrawingMode() == aMode;
245 };
246 };
247
248 menu.AddMenu( zoneMenu.get(), toolActiveFunctor( DRAWING_TOOL::MODE::ZONE ), 300 );
249 }
250
251 return true;
252}
253
254
256{
258 return 0;
259}
260
261
263{
265 return 0;
266}
267
268
270{
272 return 0;
273}
274
275
277{
279 return 0;
280}
281
282
284{
286 return 0;
287}
288
289
291{
293 return 0;
294}
295
296
298{
299 PICKED_ITEMS_LIST undoCmd;
301 ITEM_PICKER wrapper( nullptr, undoItem, UNDO_REDO::PAGESETTINGS );
302
303 undoCmd.PushItem( wrapper );
304 undoCmd.SetDescription( _( "Page Settings" ) );
305 m_frame->SaveCopyInUndoList( undoCmd, UNDO_REDO::PAGESETTINGS );
306
310
311 if( dlg.ShowModal() == wxID_OK )
312 {
314 [&]( KIGFX::VIEW_ITEM* aItem ) -> int
315 {
316 EDA_TEXT* text = dynamic_cast<EDA_TEXT*>( aItem );
317
318 if( text && text->HasTextVars() )
319 {
320 text->ClearRenderCache();
321 text->ClearBoundingBoxCache();
323 }
324
325 return 0;
326 } );
327
328 m_frame->OnModify();
329 }
330 else
331 {
333 }
334
335 return 0;
336}
337
338
340{
342 return 0;
343}
344
345
347{
349 return 0;
350}
351
352
354{
356 return 0;
357}
358
359
361{
363 return 0;
364}
365
366
368{
369 getEditFrame<PCB_EDIT_FRAME>()->ShowBoardSetupDialog();
370 return 0;
371}
372
373
375{
376 getEditFrame<PCB_EDIT_FRAME>()->InstallNetlistFrame();
377 return 0;
378}
379
380
382{
383 wxString fullFileName = frame()->GetBoard()->GetFileName();
384 wxString path;
385 wxString name;
386 wxString ext;
387
388 wxFileName::SplitPath( fullFileName, &path, &name, &ext );
389 name += wxT( "." ) + wxString( FILEEXT::SpecctraSessionFileExtension );
390
391 fullFileName = wxFileSelector( _( "Specctra Session File" ), path, name,
392 wxT( "." ) + wxString( FILEEXT::SpecctraSessionFileExtension ),
393 FILEEXT::SpecctraSessionFileWildcard(), wxFD_OPEN | wxFD_CHANGE_DIR,
394 frame() );
395
396 if( !fullFileName.IsEmpty() )
397 getEditFrame<PCB_EDIT_FRAME>()->ImportSpecctraSession( fullFileName );
398
399 return 0;
400}
401
402
404{
405 wxString fullFileName = m_frame->GetLastPath( LAST_PATH_SPECCTRADSN );
406 wxFileName fn;
407
408 if( fullFileName.IsEmpty() )
409 {
410 fn = m_frame->GetBoard()->GetFileName();
412 }
413 else
414 {
415 fn = fullFileName;
416 }
417
418 fullFileName = wxFileSelector( _( "Specctra DSN File" ), fn.GetPath(), fn.GetFullName(),
420 wxFD_SAVE | wxFD_OVERWRITE_PROMPT | wxFD_CHANGE_DIR, frame() );
421
422 if( !fullFileName.IsEmpty() )
423 {
424 m_frame->SetLastPath( LAST_PATH_SPECCTRADSN, fullFileName );
425 getEditFrame<PCB_EDIT_FRAME>()->ExportSpecctraFile( fullFileName );
426 }
427
428 return 0;
429}
430
431
433{
434 wxCHECK( m_frame, 0 );
435
436 wxFileName fn = m_frame->Prj().GetProjectFullName();
437
438 // Use a different file extension for the board netlist so the schematic netlist file
439 // is accidentally overwritten.
440 fn.SetExt( wxT( "pcb_net" ) );
441
442 wxFileDialog dlg( m_frame, _( "Export Board Netlist" ), fn.GetPath(), fn.GetFullName(),
443 _( "KiCad board netlist files" ) + AddFileExtListToFilter( { "pcb_net" } ),
444 wxFD_SAVE | wxFD_OVERWRITE_PROMPT );
445
446 dlg.SetExtraControlCreator( &LEGACYFILEDLG_NETLIST_OPTIONS::Create );
447
448 if( dlg.ShowModal() == wxID_CANCEL )
449 return 0;
450
451 fn = dlg.GetPath();
452
453 if( !fn.IsDirWritable() )
454 {
455 wxString msg;
456
457 msg.Printf( _( "Path `%s` is read only." ), fn.GetPath() );
458 wxMessageDialog( m_frame, msg, _( "I/O Error" ), wxOK | wxCENTER | wxICON_EXCLAMATION );
459 return 0;
460 }
461
463 dynamic_cast<const LEGACYFILEDLG_NETLIST_OPTIONS*>( dlg.GetExtraControl() );
464 wxCHECK( noh, 0 );
465
467
468 for( const FOOTPRINT* footprint : board()->Footprints() )
469 {
472 { footprint->m_Uuid } );
473
474 for( const PAD* pad : footprint->Pads() )
475 {
476 const wxString& netname = pad->GetShortNetname();
477
478 if( !netname.IsEmpty() )
479 {
480 component->AddNet( pad->GetNumber(), netname, pad->GetPinFunction(),
481 pad->GetPinType() );
482 }
483 }
484
485 nlohmann::ordered_map<wxString, wxString> fields;
486
487 for( PCB_FIELD* field : footprint->Fields() )
488 fields[field->GetCanonicalName()] = field->GetText();
489
490 component->SetFields( fields );
491
492 netlist.AddComponent( component );
493 }
494
495 FILE_OUTPUTFORMATTER formatter( fn.GetFullPath() );
496
497 netlist.Format( "pcb_netlist", &formatter, 0, noh->GetNetlistOptions() );
498
499 return 0;
500}
501
502
504{
505 wxCommandEvent dummy;
506
509 else if( aEvent.IsAction( &PCB_ACTIONS::generateReportFile ) )
511 else if( aEvent.IsAction( &PCB_ACTIONS::generateD356File ) )
513 else if( aEvent.IsAction( &PCB_ACTIONS::generateBOM ) )
515 else if( aEvent.IsAction( &PCB_ACTIONS::generateIPC2581File ) )
517 else if( aEvent.IsAction( &PCB_ACTIONS::generateODBPPFile ) )
519 else
520 wxFAIL_MSG( wxT( "GenerateFabFiles(): unexpected request" ) );
521
522 return 0;
523}
524
525
527{
528 int errors = 0;
529 wxString details;
530 bool quiet = aEvent.Parameter<bool>();
531
532 // Repair duplicate IDs and missing nets.
533 std::set<KIID> ids;
534 int duplicates = 0;
535
536 auto processItem =
537 [&]( EDA_ITEM* aItem )
538 {
539 if( ids.count( aItem->m_Uuid ) )
540 {
541 duplicates++;
542 const_cast<KIID&>( aItem->m_Uuid ) = KIID();
543 }
544
545 ids.insert( aItem->m_Uuid );
546
547 BOARD_CONNECTED_ITEM* cItem = dynamic_cast<BOARD_CONNECTED_ITEM*>( aItem );
548
549 if( cItem && cItem->GetNetCode() )
550 {
551 NETINFO_ITEM* netinfo = cItem->GetNet();
552
553 if( netinfo && !board()->FindNet( netinfo->GetNetname() ) )
554 {
555 board()->Add( netinfo );
556
557 details += wxString::Format( _( "Orphaned net %s re-parented.\n" ),
558 netinfo->GetNetname() );
559 errors++;
560 }
561 }
562 };
563
564 // Footprint IDs are the most important, so give them the first crack at "claiming" a
565 // particular KIID.
566
567 for( FOOTPRINT* footprint : board()->Footprints() )
568 processItem( footprint );
569
570 // After that the principal use is for DRC marker pointers, which are most likely to pads
571 // or tracks.
572
573 for( FOOTPRINT* footprint : board()->Footprints() )
574 {
575 for( PAD* pad : footprint->Pads() )
576 processItem( pad );
577 }
578
579 for( PCB_TRACK* track : board()->Tracks() )
580 processItem( track );
581
582 // From here out I don't think order matters much.
583
584 for( FOOTPRINT* footprint : board()->Footprints() )
585 {
586 processItem( &footprint->Reference() );
587 processItem( &footprint->Value() );
588
589 for( BOARD_ITEM* item : footprint->GraphicalItems() )
590 processItem( item );
591
592 for( ZONE* zone : footprint->Zones() )
593 processItem( zone );
594
595 for( PCB_GROUP* group : footprint->Groups() )
596 processItem( group );
597 }
598
599 for( BOARD_ITEM* drawing : board()->Drawings() )
600 processItem( drawing );
601
602 for( ZONE* zone : board()->Zones() )
603 processItem( zone );
604
605 for( PCB_MARKER* marker : board()->Markers() )
606 processItem( marker );
607
608 for( PCB_GROUP* group : board()->Groups() )
609 processItem( group );
610
611 if( duplicates )
612 {
613 errors += duplicates;
614 details += wxString::Format( _( "%d duplicate IDs replaced.\n" ), duplicates );
615 }
616
617 /*******************************
618 * Your test here
619 */
620
621 /*******************************
622 * Inform the user
623 */
624
625 if( errors )
626 {
627 m_frame->OnModify();
628
629 wxString msg = wxString::Format( _( "%d potential problems repaired." ), errors );
630
631 if( !quiet )
632 DisplayInfoMessage( m_frame, msg, details );
633 }
634 else if( !quiet )
635 {
636 DisplayInfoMessage( m_frame, _( "No board problems found." ) );
637 }
638
639 return 0;
640}
641
642
644{
646
647 if( m_frame->FetchNetlistFromSchematic( netlist, _( "Updating PCB requires a fully annotated "
648 "schematic." ) ) )
649 {
650 DIALOG_UPDATE_PCB updateDialog( m_frame, &netlist );
651 updateDialog.ShowModal();
652 }
653
654 return 0;
655}
656
658{
659 if( Kiface().IsSingle() )
660 {
661 DisplayErrorMessage( m_frame, _( "Cannot update schematic because Pcbnew is opened in "
662 "stand-alone mode. In order to create or update PCBs "
663 "from schematics, you must launch the KiCad project "
664 "manager and create a project." ) );
665 return 0;
666 }
667
670
671 if( frame )
672 {
673 std::string payload;
674
675 if( wxWindow* blocking_win = frame->Kiway().GetBlockingDialog() )
676 blocking_win->Close( true );
677
679 }
680 return 0;
681}
682
683
685{
687 return 0;
688}
689
690
692{
693 getEditFrame<PCB_EDIT_FRAME>()->ToggleLayersManager();
694 return 0;
695}
696
697
699{
700 getEditFrame<PCB_EDIT_FRAME>()->ToggleProperties();
701 return 0;
702}
703
704
706{
707 getEditFrame<PCB_EDIT_FRAME>()->ToggleNetInspector();
708 return 0;
709}
710
711
713{
714 getEditFrame<PCB_EDIT_FRAME>()->ToggleSearch();
715 return 0;
716}
717
718
720{
722 return 0;
723}
724
725
726// Track & via size control
728{
729 BOARD_DESIGN_SETTINGS& bds = getModel<BOARD>()->GetDesignSettings();
731
733 && SELECTION_CONDITIONS::OnlyTypes( { PCB_TRACE_T, PCB_ARC_T, PCB_VIA_T } )( selection ) )
734 {
735 BOARD_COMMIT commit( this );
736
737 for( EDA_ITEM* item : selection )
738 {
739 if( item->IsType( { PCB_TRACE_T, PCB_ARC_T } ) )
740 {
741 PCB_TRACK* track = static_cast<PCB_TRACK*>( item );
742
743 for( int i = 0; i < (int) bds.m_TrackWidthList.size(); ++i )
744 {
745 int candidate = bds.m_NetSettings->GetDefaultNetclass()->GetTrackWidth();
746
747 if( i > 0 )
748 candidate = bds.m_TrackWidthList[ i ];
749
750 if( candidate > track->GetWidth() )
751 {
752 commit.Modify( track );
753 track->SetWidth( candidate );
754 break;
755 }
756 }
757 }
758 }
759
760 commit.Push( _( "Increase Track Width" ) );
761 return 0;
762 }
763
764 ROUTER_TOOL* routerTool = m_toolMgr->GetTool<ROUTER_TOOL>();
765
766 if( routerTool && routerTool->IsToolActive()
767 && routerTool->Router()->Mode() == PNS::PNS_MODE_ROUTE_DIFF_PAIR )
768 {
769 int widthIndex = (int) bds.GetDiffPairIndex() + 1;
770
771 // If we go past the last track width entry in the list, start over at the beginning
772 if( widthIndex >= (int) bds.m_DiffPairDimensionsList.size() )
773 widthIndex = 0;
774
775 bds.SetDiffPairIndex( widthIndex );
776 bds.UseCustomDiffPairDimensions( false );
777
779 }
780 else
781 {
782 int widthIndex = (int) bds.GetTrackWidthIndex();
783
784 if( routerTool && routerTool->IsToolActive()
787 {
788 bds.m_TempOverrideTrackWidth = true;
789 }
790 else
791 {
792 widthIndex++;
793 }
794
795 // If we go past the last track width entry in the list, start over at the beginning
796 if( widthIndex >= (int) bds.m_TrackWidthList.size() )
797 widthIndex = 0;
798
799 bds.SetTrackWidthIndex( widthIndex );
800 bds.UseCustomTrackViaSize( false );
801
803 }
804
805 return 0;
806}
807
808
810{
811 BOARD_DESIGN_SETTINGS& bds = getModel<BOARD>()->GetDesignSettings();
813
815 && SELECTION_CONDITIONS::OnlyTypes( { PCB_TRACE_T, PCB_ARC_T, PCB_VIA_T } )( selection ) )
816 {
817 BOARD_COMMIT commit( this );
818
819 for( EDA_ITEM* item : selection )
820 {
821 if( item->IsType( { PCB_TRACE_T, PCB_ARC_T } ) )
822 {
823 PCB_TRACK* track = static_cast<PCB_TRACK*>( item );
824
825 for( int i = (int) bds.m_TrackWidthList.size() - 1; i >= 0; --i )
826 {
827 int candidate = bds.m_NetSettings->GetDefaultNetclass()->GetTrackWidth();
828
829 if( i > 0 )
830 candidate = bds.m_TrackWidthList[ i ];
831
832 if( candidate < track->GetWidth() )
833 {
834 commit.Modify( track );
835 track->SetWidth( candidate );
836 break;
837 }
838 }
839 }
840 }
841
842 commit.Push( _( "Decrease Track Width" ) );
843 return 0;
844 }
845
846 ROUTER_TOOL* routerTool = m_toolMgr->GetTool<ROUTER_TOOL>();
847
848 if( routerTool && routerTool->IsToolActive()
849 && routerTool->Router()->Mode() == PNS::PNS_MODE_ROUTE_DIFF_PAIR )
850 {
851 int widthIndex = (int) bds.GetDiffPairIndex() - 1;
852
853 // If we get to the lowest entry start over at the highest
854 if( widthIndex < 0 )
855 widthIndex = (int) bds.m_DiffPairDimensionsList.size() - 1;
856
857 bds.SetDiffPairIndex( widthIndex );
858 bds.UseCustomDiffPairDimensions( false );
859
861 }
862 else
863 {
864 int widthIndex = (int) bds.GetTrackWidthIndex();
865
866 if( routerTool && routerTool->IsToolActive()
869 {
870 bds.m_TempOverrideTrackWidth = true;
871 }
872 else
873 {
874 widthIndex--;
875 }
876
877 // If we get to the lowest entry start over at the highest
878 if( widthIndex < 0 )
879 widthIndex = (int) bds.m_TrackWidthList.size() - 1;
880
881 bds.SetTrackWidthIndex( widthIndex );
882 bds.UseCustomTrackViaSize( false );
883
885 }
886
887 return 0;
888}
889
890
892{
893 BOARD_DESIGN_SETTINGS& bds = getModel<BOARD>()->GetDesignSettings();
895
897 && SELECTION_CONDITIONS::OnlyTypes( { PCB_TRACE_T, PCB_ARC_T, PCB_VIA_T } )( selection ) )
898 {
899 BOARD_COMMIT commit( this );
900
901 for( EDA_ITEM* item : selection )
902 {
903 if( item->Type() == PCB_VIA_T )
904 {
905 PCB_VIA* via = static_cast<PCB_VIA*>( item );
906
907 for( int i = 0; i < (int) bds.m_ViasDimensionsList.size(); ++i )
908 {
909 VIA_DIMENSION dims( bds.m_NetSettings->GetDefaultNetclass()->GetViaDiameter(),
910 bds.m_NetSettings->GetDefaultNetclass()->GetViaDrill() );
911
912 if( i> 0 )
913 dims = bds.m_ViasDimensionsList[ i ];
914
915 // TODO(JE) padstacks
916 if( dims.m_Diameter > via->GetWidth( PADSTACK::ALL_LAYERS ) )
917 {
918 commit.Modify( via );
919 via->SetWidth( PADSTACK::ALL_LAYERS, dims.m_Diameter );
920 via->SetDrill( dims.m_Drill );
921 break;
922 }
923 }
924 }
925 }
926
927 commit.Push( _( "Increase Via Size" ) );
928 }
929 else
930 {
931 int sizeIndex = (int) bds.GetViaSizeIndex() + 1;
932
933 // If we go past the last via entry in the list, start over at the beginning
934 if( sizeIndex >= (int) bds.m_ViasDimensionsList.size() )
935 sizeIndex = 0;
936
937 bds.SetViaSizeIndex( sizeIndex );
938 bds.UseCustomTrackViaSize( false );
939
941 }
942
943 return 0;
944}
945
946
948{
949 BOARD_DESIGN_SETTINGS& bds = getModel<BOARD>()->GetDesignSettings();
951
953 && SELECTION_CONDITIONS::OnlyTypes( { PCB_TRACE_T, PCB_ARC_T, PCB_VIA_T } )( selection ) )
954 {
955 BOARD_COMMIT commit( this );
956
957 for( EDA_ITEM* item : selection )
958 {
959 if( item->Type() == PCB_VIA_T )
960 {
961 PCB_VIA* via = static_cast<PCB_VIA*>( item );
962
963 for( int i = (int) bds.m_ViasDimensionsList.size() - 1; i >= 0; --i )
964 {
965 VIA_DIMENSION dims( bds.m_NetSettings->GetDefaultNetclass()->GetViaDiameter(),
966 bds.m_NetSettings->GetDefaultNetclass()->GetViaDrill() );
967
968 if( i > 0 )
969 dims = bds.m_ViasDimensionsList[ i ];
970
971 // TODO(JE) padstacks
972 if( dims.m_Diameter < via->GetWidth( PADSTACK::ALL_LAYERS ) )
973 {
974 commit.Modify( via );
975 via->SetWidth( PADSTACK::ALL_LAYERS, dims.m_Diameter );
976 via->SetDrill( dims.m_Drill );
977 break;
978 }
979 }
980 }
981 }
982
983 commit.Push( "Decrease Via Size" );
984 }
985 else
986 {
987 int sizeIndex = 0; // Assume we only have a single via size entry
988
989 // If there are more, cycle through them backwards
990 if( bds.m_ViasDimensionsList.size() > 0 )
991 {
992 sizeIndex = (int) bds.GetViaSizeIndex() - 1;
993
994 // If we get to the lowest entry start over at the highest
995 if( sizeIndex < 0 )
996 sizeIndex = (int) bds.m_ViasDimensionsList.size() - 1;
997 }
998
999 bds.SetViaSizeIndex( sizeIndex );
1000 bds.UseCustomTrackViaSize( false );
1001
1003 }
1004
1005 return 0;
1006}
1007
1008
1010{
1011 if( m_inPlaceFootprint )
1012 return 0;
1013
1015
1016 FOOTPRINT* fp = aEvent.Parameter<FOOTPRINT*>();
1017 bool fromOtherCommand = fp != nullptr;
1019 BOARD_COMMIT commit( m_frame );
1020 BOARD* board = getModel<BOARD>();
1021 COMMON_SETTINGS* common_settings = Pgm().GetCommonSettings();
1022
1024
1025 m_frame->PushTool( aEvent );
1026
1027 auto setCursor =
1028 [&]()
1029 {
1030 m_frame->GetCanvas()->SetCurrentCursor( KICURSOR::PENCIL );
1031 };
1032
1033 auto cleanup =
1034 [&] ()
1035 {
1037 commit.Revert();
1038
1039 if( fromOtherCommand )
1040 {
1042
1043 if( undo )
1044 {
1047 delete undo;
1048 }
1049 }
1050
1051 fp = nullptr;
1052 m_placingFootprint = false;
1053 };
1054
1055 Activate();
1056 // Must be done after Activate() so that it gets set into the correct context
1057 controls->ShowCursor( true );
1058 // Set initial cursor
1059 setCursor();
1060
1061 VECTOR2I cursorPos = controls->GetCursorPosition();
1062 bool ignorePrimePosition = false;
1063 bool reselect = false;
1064
1065 // Prime the pump
1066 if( fp )
1067 {
1068 m_placingFootprint = true;
1069 fp->SetPosition( cursorPos );
1072 }
1073 else if( aEvent.HasPosition() )
1074 {
1075 m_toolMgr->PrimeTool( aEvent.Position() );
1076 }
1077 else if( common_settings->m_Input.immediate_actions && !aEvent.IsReactivate() )
1078 {
1079 m_toolMgr->PrimeTool( { 0, 0 } );
1080 ignorePrimePosition = true;
1081 }
1082
1083 // Main loop: keep receiving events
1084 while( TOOL_EVENT* evt = Wait() )
1085 {
1086 setCursor();
1087 cursorPos = controls->GetCursorPosition( !evt->DisableGridSnapping() );
1088
1089 if( reselect && fp )
1091
1092 if( evt->IsCancelInteractive() || ( fp && evt->IsAction( &ACTIONS::undo ) ) )
1093 {
1094 if( fp )
1095 {
1096 cleanup();
1097 }
1098 else
1099 {
1100 m_frame->PopTool( aEvent );
1101 break;
1102 }
1103 }
1104 else if( evt->IsActivate() )
1105 {
1106 if( fp )
1107 cleanup();
1108
1109 if( evt->IsMoveTool() )
1110 {
1111 // leave ourselves on the stack so we come back after the move
1112 break;
1113 }
1114 else
1115 {
1116 frame()->PopTool( aEvent );
1117 break;
1118 }
1119 }
1120 else if( evt->IsClick( BUT_LEFT ) )
1121 {
1122 if( !fp )
1123 {
1124 // Pick the footprint to be placed
1126
1127 if( fp == nullptr )
1128 continue;
1129
1130 // If we started with a hotkey which has a position then warp back to that.
1131 // Otherwise update to the current mouse position pinned inside the autoscroll
1132 // boundaries.
1133 if( evt->IsPrime() && !ignorePrimePosition )
1134 {
1135 cursorPos = evt->Position();
1136 getViewControls()->WarpMouseCursor( cursorPos, true );
1137 }
1138 else
1139 {
1141 cursorPos = getViewControls()->GetMousePosition();
1142 }
1143
1144 m_placingFootprint = true;
1145
1146 fp->SetLink( niluuid );
1147
1148 fp->SetFlags( IS_NEW ); // whatever
1149
1150 // Set parent so that clearance can be loaded
1151 fp->SetParent( board );
1153
1154 for( PAD* pad : fp->Pads() )
1155 {
1156 pad->SetLocalRatsnestVisible( m_frame->GetPcbNewSettings()->m_Display.m_ShowGlobalRatsnest );
1157
1158 // Pads in the library all have orphaned nets. Replace with Default.
1159 pad->SetNetCode( 0 );
1160 }
1161
1162 // Put it on FRONT layer,
1163 // (Can be stored flipped if the lib is an archive built from a board)
1164 if( fp->IsFlipped() )
1166
1167 fp->SetOrientation( ANGLE_0 );
1168 fp->SetPosition( cursorPos );
1169
1170 commit.Add( fp );
1172
1174 }
1175 else
1176 {
1178 commit.Push( _( "Place Footprint" ) );
1179 fp = nullptr; // to indicate that there is no footprint that we currently modify
1180 m_placingFootprint = false;
1181 }
1182 }
1183 else if( evt->IsClick( BUT_RIGHT ) )
1184 {
1185 m_menu->ShowContextMenu( selection() );
1186 }
1187 else if( fp && ( evt->IsMotion() || evt->IsAction( &ACTIONS::refreshPreview ) ) )
1188 {
1189 fp->SetPosition( cursorPos );
1190 selection().SetReferencePoint( cursorPos );
1191 getView()->Update( &selection() );
1192 getView()->Update( fp );
1193 }
1194 else if( fp && evt->IsAction( &PCB_ACTIONS::properties ) )
1195 {
1196 // Calling 'Properties' action clears the selection, so we need to restore it
1197 reselect = true;
1198 }
1199 else if( fp && ( ZONE_FILLER_TOOL::IsZoneFillAction( evt )
1200 || evt->IsAction( &ACTIONS::redo ) ) )
1201 {
1202 wxBell();
1203 }
1204 else
1205 {
1206 evt->SetPassEvent();
1207 }
1208
1209 // Enable autopanning and cursor capture only when there is a footprint to be placed
1210 controls->SetAutoPan( fp != nullptr );
1211 controls->CaptureCursor( fp != nullptr );
1212 }
1213
1214 controls->SetAutoPan( false );
1215 controls->CaptureCursor( false );
1216 m_frame->GetCanvas()->SetCurrentCursor( KICURSOR::ARROW );
1217
1218 return 0;
1219}
1220
1221
1223{
1224 return modifyLockSelected( TOGGLE );
1225}
1226
1227
1229{
1230 return modifyLockSelected( ON );
1231}
1232
1233
1235{
1236 return modifyLockSelected( OFF );
1237}
1238
1239
1241{
1243 const PCB_SELECTION& selection = selTool->GetSelection();
1244 BOARD_COMMIT commit( m_frame );
1245
1246 if( selection.Empty() )
1248
1249 // Resolve TOGGLE mode
1250 if( aMode == TOGGLE )
1251 {
1252 aMode = ON;
1253
1254 for( EDA_ITEM* item : selection )
1255 {
1256 if( !item->IsBOARD_ITEM() )
1257 continue;
1258
1259 if( static_cast<BOARD_ITEM*>( item )->IsLocked() )
1260 {
1261 aMode = OFF;
1262 break;
1263 }
1264 }
1265 }
1266
1267 for( EDA_ITEM* item : selection )
1268 {
1269 if( !item->IsBOARD_ITEM() )
1270 continue;
1271
1272 BOARD_ITEM* const board_item = static_cast<BOARD_ITEM*>( item );
1273
1274 // Disallow locking free pads - it's confusing and not persisted
1275 // through save/load anyway.
1276 if( board_item->Type() == PCB_PAD_T )
1277 continue;
1278
1279 PCB_GROUP* parent_group = board_item->GetParentGroup();
1280
1281 if( parent_group && parent_group->Type() == PCB_GENERATOR_T )
1282 {
1283 PCB_GENERATOR* generator = static_cast<PCB_GENERATOR*>( parent_group );
1284
1285 if( generator && commit.GetStatus( generator ) != CHT_MODIFY )
1286 {
1287 commit.Modify( generator );
1288
1289 if( aMode == ON )
1290 generator->SetLocked( true );
1291 else
1292 generator->SetLocked( false );
1293 }
1294 }
1295
1296 commit.Modify( board_item );
1297
1298 if( aMode == ON )
1299 board_item->SetLocked( true );
1300 else
1301 board_item->SetLocked( false );
1302 }
1303
1304 if( !commit.Empty() )
1305 {
1306 commit.Push( aMode == ON ? _( "Lock" ) : _( "Unlock" ) );
1307
1309 m_frame->OnModify();
1310 }
1311
1312 return 0;
1313}
1314
1315
1316static bool mergeZones( EDA_DRAW_FRAME* aFrame, BOARD_COMMIT& aCommit,
1317 std::vector<ZONE*>& aOriginZones, std::vector<ZONE*>& aMergedZones )
1318{
1319 aCommit.Modify( aOriginZones[0] );
1320
1321 for( unsigned int i = 1; i < aOriginZones.size(); i++ )
1322 {
1323 aOriginZones[0]->Outline()->BooleanAdd( *aOriginZones[i]->Outline(),
1325 }
1326
1327 aOriginZones[0]->Outline()->Simplify( SHAPE_POLY_SET::PM_FAST );
1328
1329 // We should have one polygon, possibly with holes. If we end up with two polygons (either
1330 // because the intersection was a single point or because the intersection was within one of
1331 // the zone's holes) then we can't merge.
1332 if( aOriginZones[0]->Outline()->IsSelfIntersecting()
1333 || aOriginZones[0]->Outline()->OutlineCount() > 1 )
1334 {
1335 DisplayErrorMessage( aFrame, _( "Zones have insufficient overlap for merging." ) );
1336 aCommit.Revert();
1337 return false;
1338 }
1339
1340 for( unsigned int i = 1; i < aOriginZones.size(); i++ )
1341 aCommit.Remove( aOriginZones[i] );
1342
1343 aMergedZones.push_back( aOriginZones[0] );
1344
1345 aOriginZones[0]->SetLocalFlags( 1 );
1346 aOriginZones[0]->HatchBorder();
1347 aOriginZones[0]->CacheTriangulation();
1348
1349 return true;
1350}
1351
1352
1354{
1355 const PCB_SELECTION& selection = m_toolMgr->GetTool<PCB_SELECTION_TOOL>()->GetSelection();
1356 BOARD* board = getModel<BOARD>();
1357 BOARD_COMMIT commit( m_frame );
1358
1359 if( selection.Size() < 2 )
1360 return 0;
1361
1362 int netcode = -1;
1363
1364 ZONE* firstZone = nullptr;
1365 std::vector<ZONE*> toMerge, merged;
1366
1367 for( EDA_ITEM* item : selection )
1368 {
1369 ZONE* curr_area = dynamic_cast<ZONE*>( item );
1370
1371 if( !curr_area )
1372 continue;
1373
1374 if( !firstZone )
1375 firstZone = curr_area;
1376
1377 netcode = curr_area->GetNetCode();
1378
1379 if( firstZone->GetNetCode() != netcode )
1380 {
1381 wxLogMessage( _( "Some zone netcodes did not match and were not merged." ) );
1382 continue;
1383 }
1384
1385 if( curr_area->GetAssignedPriority() != firstZone->GetAssignedPriority() )
1386 {
1387 wxLogMessage( _( "Some zone priorities did not match and were not merged." ) );
1388 continue;
1389 }
1390
1391 if( curr_area->GetIsRuleArea() != firstZone->GetIsRuleArea() )
1392 {
1393 wxLogMessage( _( "Some zones were rule areas and were not merged." ) );
1394 continue;
1395 }
1396
1397 if( curr_area->GetLayerSet() != firstZone->GetLayerSet() )
1398 {
1399 wxLogMessage( _( "Some zone layer sets did not match and were not merged." ) );
1400 continue;
1401 }
1402
1403 bool intersects = curr_area == firstZone;
1404
1405 for( ZONE* candidate : toMerge )
1406 {
1407 if( intersects )
1408 break;
1409
1410 if( board->TestZoneIntersection( curr_area, candidate ) )
1411 intersects = true;
1412 }
1413
1414 if( !intersects )
1415 {
1416 wxLogMessage( _( "Some zones did not intersect and were not merged." ) );
1417 continue;
1418 }
1419
1420 toMerge.push_back( curr_area );
1421 }
1422
1424
1425 if( !toMerge.empty() )
1426 {
1427 if( mergeZones( m_frame, commit, toMerge, merged ) )
1428 {
1429 commit.Push( _( "Merge Zones" ) );
1430
1431 for( EDA_ITEM* item : merged )
1433 }
1434 }
1435
1436 return 0;
1437}
1438
1439
1441{
1443 const PCB_SELECTION& selection = selTool->GetSelection();
1444
1445 // because this pops up the zone editor, it would be confusing to handle multiple zones,
1446 // so just handle single selections containing exactly one zone
1447 if( selection.Size() != 1 )
1448 return 0;
1449
1450 ZONE* oldZone = dynamic_cast<ZONE*>( selection[0] );
1451
1452 if( !oldZone )
1453 return 0;
1454
1455 ZONE_SETTINGS zoneSettings;
1456 zoneSettings << *oldZone;
1457 int dialogResult;
1458
1459 if( oldZone->GetIsRuleArea() )
1460 dialogResult = InvokeRuleAreaEditor( m_frame, &zoneSettings, board() );
1461 else if( oldZone->IsOnCopperLayer() )
1462 dialogResult = InvokeCopperZonesEditor( m_frame, &zoneSettings );
1463 else
1464 dialogResult = InvokeNonCopperZonesEditor( m_frame, &zoneSettings );
1465
1466 if( dialogResult != wxID_OK )
1467 return 0;
1468
1469 // duplicate the zone
1470 BOARD_COMMIT commit( m_frame );
1471
1472 std::unique_ptr<ZONE> newZone = std::make_unique<ZONE>( *oldZone );
1473 newZone->ClearSelected();
1474 newZone->UnFill();
1475 zoneSettings.ExportSetting( *newZone );
1476
1477 // If the new zone is on the same layer(s) as the initial zone,
1478 // offset it a bit so it can more easily be picked.
1479 if( oldZone->GetLayerSet() == zoneSettings.m_Layers )
1480 newZone->Move( VECTOR2I( pcbIUScale.IU_PER_MM, pcbIUScale.IU_PER_MM ) );
1481
1482 commit.Add( newZone.release() );
1483 commit.Push( _( "Duplicate Zone" ) );
1484
1485 return 0;
1486}
1487
1488
1490{
1491 doCrossProbePcbToSch( aEvent, false );
1492 return 0;
1493}
1494
1495
1497{
1498 doCrossProbePcbToSch( aEvent, true );
1499 return 0;
1500}
1501
1502
1504{
1505 // Don't get in an infinite loop PCB -> SCH -> PCB -> SCH -> ...
1507 return;
1508
1510 const PCB_SELECTION& selection = selTool->GetSelection();
1511 EDA_ITEM* focusItem = nullptr;
1512
1513 if( aEvent.Matches( EVENTS::PointSelectedEvent ) )
1514 focusItem = selection.GetLastAddedItem();
1515
1516 m_frame->SendSelectItemsToSch( selection.GetItems(), focusItem, aForce );
1517
1518 // Update 3D viewer highlighting
1519 m_frame->Update3DView( false, frame()->GetPcbNewSettings()->m_Display.m_Live3DRefresh );
1520}
1521
1522
1524{
1526
1527 const PCB_SELECTION& selection = selectionTool->RequestSelection(
1528 []( const VECTOR2I& aPt, GENERAL_COLLECTOR& aCollector, PCB_SELECTION_TOOL* sTool )
1529 {
1530 // Iterate from the back so we don't have to worry about removals.
1531 for( int i = aCollector.GetCount() - 1; i >= 0; --i )
1532 {
1533 if( !dynamic_cast<BOARD_CONNECTED_ITEM*>( aCollector[ i ] ) )
1534 aCollector.Remove( aCollector[ i ] );
1535 }
1536 },
1537 true /* prompt user regarding locked items */ );
1538
1539 int netCode = -1;
1540 wxString netName;
1541
1542 for( EDA_ITEM* item : selection )
1543 {
1544 NETINFO_ITEM* net = static_cast<BOARD_CONNECTED_ITEM*>( item )->GetNet();
1545
1546 if( !net->HasAutoGeneratedNetname() )
1547 {
1548 netCode = net->GetNetCode();
1549 netName = net->GetNetname();
1550 break;
1551 }
1552 }
1553
1554 if( netName.IsEmpty() )
1555 {
1556 m_frame->ShowInfoBarError( _( "Selection contains no items with labeled nets." ) );
1557 return 0;
1558 }
1559
1560 selectionTool->ClearSelection();
1562 canvas()->ForceRefresh();
1563
1564 DIALOG_ASSIGN_NETCLASS dlg( m_frame, netName, board()->GetNetClassAssignmentCandidates(),
1565 [this]( const std::vector<wxString>& aNetNames )
1566 {
1568 selTool->ClearSelection();
1569
1570 for( const wxString& curr_netName : aNetNames )
1571 {
1572 int curr_netCode = board()->GetNetInfo().GetNetItem( curr_netName )->GetNetCode();
1573
1574 if( curr_netCode > 0 )
1575 selTool->SelectAllItemsOnNet( curr_netCode );
1576 }
1577
1578 canvas()->ForceRefresh();
1580 } );
1581
1582 if( dlg.ShowModal() == wxID_OK )
1583 {
1585 // Refresh UI that depends on netclasses, such as the properties panel
1587 }
1588
1589 return 0;
1590}
1591
1592
1594{
1597
1598 if( selection.Empty() )
1599 {
1600 // Giant hack: by default we assign Edit Table to the same hotkey, so give the table
1601 // tool a chance to handle it if we can't.
1603 tableTool->EditTable( aEvent );
1604
1605 return 0;
1606 }
1607
1609
1610 if( !fp )
1611 return 0;
1612
1613 PCB_BASE_EDIT_FRAME* editFrame = getEditFrame<PCB_BASE_EDIT_FRAME>();
1614
1615 if( KIWAY_PLAYER* frame = editFrame->Kiway().Player( FRAME_FOOTPRINT_EDITOR, true ) )
1616 {
1617 FOOTPRINT_EDIT_FRAME* fp_editor = static_cast<FOOTPRINT_EDIT_FRAME*>( frame );
1618
1620 fp_editor->LoadFootprintFromBoard( fp );
1621 else if( aEvent.IsAction( &PCB_ACTIONS::editLibFpInFpEditor ) )
1622 fp_editor->LoadFootprintFromLibrary( fp->GetFPID() );
1623
1624 fp_editor->Show( true );
1625 fp_editor->Raise(); // Iconize( false );
1626 }
1627
1628 if( selection.IsHover() )
1630
1631 return 0;
1632}
1633
1634
1636 EDA_ITEM* originViewItem, const VECTOR2D& aPosition )
1637{
1638 aFrame->GetDesignSettings().SetAuxOrigin( VECTOR2I( aPosition ) );
1639 originViewItem->SetPosition( aPosition );
1640 aView->MarkDirty();
1641 aFrame->OnModify();
1642}
1643
1644
1646{
1648 {
1649 m_frame->SaveCopyInUndoList( m_placeOrigin.get(), UNDO_REDO::GRIDORIGIN );
1651 return 0;
1652 }
1653
1655
1656 // Deactivate other tools; particularly important if another PICKER is currently running
1657 Activate();
1658
1659 picker->SetClickHandler(
1660 [this] ( const VECTOR2D& pt ) -> bool
1661 {
1662 m_frame->SaveCopyInUndoList( m_placeOrigin.get(), UNDO_REDO::DRILLORIGIN );
1664 return false; // drill origin is a one-shot; don't continue with tool
1665 } );
1666
1668
1669 return 0;
1670}
1671
1672
1674{
1683
1688
1693
1694 if( ADVANCED_CFG::GetCfg().m_ShowPcbnewExportNetlist && m_frame
1696 {
1698 }
1699
1708
1709 // Track & via size control
1714
1715 // Zone actions
1718
1719 // Placing tools
1723
1726
1727 // Cross-select
1733
1734 // Other
1738
1740
1750}
1751
1752
1753const int BOARD_EDITOR_CONTROL::WIDTH_STEP = 100000;
const char * name
Definition: DXF_plotter.cpp:57
constexpr EDA_IU_SCALE pcbIUScale
Definition: base_units.h:108
KIFACE_BASE & Kiface()
Global KIFACE_BASE "get" accessor.
static bool mergeZones(EDA_DRAW_FRAME *aFrame, BOARD_COMMIT &aCommit, std::vector< ZONE * > &aOriginZones, std::vector< ZONE * > &aMergedZones)
static TOOL_ACTION updatePcbFromSchematic
Definition: actions.h:214
static TOOL_ACTION cancelInteractive
Definition: actions.h:65
static TOOL_ACTION revert
Definition: actions.h:55
static TOOL_ACTION saveAs
Definition: actions.h:52
static TOOL_ACTION pickerTool
Definition: actions.h:204
static TOOL_ACTION findPrevious
Definition: actions.h:112
static TOOL_ACTION plot
Definition: actions.h:58
static TOOL_ACTION open
Definition: actions.h:50
static TOOL_ACTION findNext
Definition: actions.h:111
static TOOL_ACTION pageSettings
Definition: actions.h:56
static TOOL_ACTION showSearch
Definition: actions.h:108
static TOOL_ACTION undo
Definition: actions.h:68
static TOOL_ACTION save
Definition: actions.h:51
static TOOL_ACTION redo
Definition: actions.h:69
static TOOL_ACTION updateSchematicFromPcb
Definition: actions.h:215
static TOOL_ACTION showProperties
Definition: actions.h:216
static TOOL_ACTION doNew
Definition: actions.h:47
static TOOL_ACTION saveCopy
Definition: actions.h:53
static TOOL_ACTION refreshPreview
Definition: actions.h:149
static TOOL_ACTION find
Definition: actions.h:109
Defines the structure of a menu based on ACTIONs.
Definition: action_menu.h:49
void SetTitle(const wxString &aTitle) override
Set title for the menu.
Definition: action_menu.cpp:92
void SetIcon(BITMAPS aIcon)
Assign an icon for the entry.
Definition: action_menu.cpp:78
wxMenuItem * Add(const wxString &aLabel, int aId, BITMAPS aIcon)
Add a wxWidgets-style entry to the menu.
TOOL_INTERACTIVE * m_tool
Associates tool actions with menu item IDs. Non-owning.
Definition: action_menu.h:278
static const ADVANCED_CFG & GetCfg()
Get the singleton instance's config, which is shared by all consumers.
static wxString m_DrawingSheetFileName
the name of the drawing sheet file, or empty to use the default drawing sheet
Definition: base_screen.h:85
virtual void Push(const wxString &aMessage=wxEmptyString, int aCommitFlags=0) override
Revert the commit by restoring the modified items state.
virtual void Revert() override
A base class derived from BOARD_ITEM for items that can be connected and have a net,...
NETINFO_ITEM * GetNet() const
Return #NET_INFO object for a given item.
Container for design settings for a BOARD object.
void UseCustomTrackViaSize(bool aEnabled)
Enables/disables custom track/via size settings.
void SetDiffPairIndex(unsigned aIndex)
std::shared_ptr< NET_SETTINGS > m_NetSettings
std::vector< DIFF_PAIR_DIMENSION > m_DiffPairDimensionsList
void SetTrackWidthIndex(unsigned aIndex)
Set the current track width list index to aIndex.
void SetAuxOrigin(const VECTOR2I &aOrigin)
void SetViaSizeIndex(unsigned aIndex)
Set the current via size list index to aIndex.
unsigned GetTrackWidthIndex() const
unsigned GetViaSizeIndex() const
void UseCustomDiffPairDimensions(bool aEnabled)
Enables/disables custom differential pair dimensions.
std::vector< int > m_TrackWidthList
unsigned GetDiffPairIndex() const
std::vector< VIA_DIMENSION > m_ViasDimensionsList
int ExportNetlist(const TOOL_EVENT &aEvent)
int UnlockSelected(const TOOL_EVENT &aEvent)
Run the drill origin tool for setting the origin for drill and pick-and-place files.
int Save(const TOOL_EVENT &aEvent)
int ImportNetlist(const TOOL_EVENT &aEvent)
int GenerateDrillFiles(const TOOL_EVENT &aEvent)
int ZoneMerge(const TOOL_EVENT &aEvent)
Duplicate a zone onto a layer (prompts for new layer)
int CrossProbeToSch(const TOOL_EVENT &aEvent)
Equivalent to the above, but initiated by the user.
int TogglePythonConsole(const TOOL_EVENT &aEvent)
static void DoSetDrillOrigin(KIGFX::VIEW *aView, PCB_BASE_FRAME *aFrame, EDA_ITEM *aItem, const VECTOR2D &aPoint)
int UpdatePCBFromSchematic(const TOOL_EVENT &aEvent)
std::unique_ptr< KIGFX::ORIGIN_VIEWITEM > m_placeOrigin
int ShowEeschema(const TOOL_EVENT &aEvent)
int SaveAs(const TOOL_EVENT &aEvent)
int AssignNetclass(const TOOL_EVENT &aEvent)
int ToggleNetInspector(const TOOL_EVENT &aEvent)
int UpdateSchematicFromPCB(const TOOL_EVENT &aEvent)
int ExplicitCrossProbeToSch(const TOOL_EVENT &aEvent)
Assign a netclass to a labelled net.
int ToggleSearch(const TOOL_EVENT &aEvent)
int DrillOrigin(const TOOL_EVENT &aEvent)
Low-level access (below undo) to setting the drill origin.
MODIFY_MODE
< How to modify a property for selected items.
int GenerateFabFiles(const TOOL_EVENT &aEvent)
int ViaSizeDec(const TOOL_EVENT &aEvent)
void Reset(RESET_REASON aReason) override
Bring the tool to a known, initial state.
int RepairBoard(const TOOL_EVENT &aEvent)
int ZoneDuplicate(const TOOL_EVENT &aEvent)
int ToggleLayersManager(const TOOL_EVENT &aEvent)
int ImportSpecctraSession(const TOOL_EVENT &aEvent)
bool Init() override
Init() is called once upon a registration of the tool.
int PlaceFootprint(const TOOL_EVENT &aEvent)
Display a dialog to select a footprint to be added and allows the user to set its position.
int BoardSetup(const TOOL_EVENT &aEvent)
int modifyLockSelected(MODIFY_MODE aMode)
Set up handlers for various events.
void setTransitions() override
This method is meant to be overridden in order to specify handlers for events.
int TrackWidthInc(const TOOL_EVENT &aEvent)
static const int WIDTH_STEP
How does line width change after one -/+ key press.
int ToggleLockSelected(const TOOL_EVENT &aEvent)
Lock selected items.
int LockSelected(const TOOL_EVENT &aEvent)
Unlock selected items.
int PageSettings(const TOOL_EVENT &aEvent)
int ExportSpecctraDSN(const TOOL_EVENT &aEvent)
int FindNext(const TOOL_EVENT &aEvent)
int ViaSizeInc(const TOOL_EVENT &aEvent)
int New(const TOOL_EVENT &aEvent)
int Find(const TOOL_EVENT &aEvent)
void doCrossProbePcbToSch(const TOOL_EVENT &aEvent, bool aForce)
int Plot(const TOOL_EVENT &aEvent)
int TrackWidthDec(const TOOL_EVENT &aEvent)
int Revert(const TOOL_EVENT &aEvent)
int Search(const TOOL_EVENT &aEvent)
int Open(const TOOL_EVENT &aEvent)
int SaveCopy(const TOOL_EVENT &aEvent)
int GeneratePosFile(const TOOL_EVENT &aEvent)
int EditFpInFpEditor(const TOOL_EVENT &aEvent)
Notify Eeschema about selected items.
int ToggleProperties(const TOOL_EVENT &aEvent)
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
Definition: board_item.h:79
virtual void SetLocked(bool aLocked)
Definition: board_item.h:328
PCB_GROUP * GetParentGroup() const
Definition: board_item.h:90
Information pertinent to a Pcbnew printed circuit board.
Definition: board.h:290
const NETINFO_LIST & GetNetInfo() const
Definition: board.h:871
EMBEDDED_FILES * GetEmbeddedFiles() override
Definition: board.cpp:2550
void Add(BOARD_ITEM *aItem, ADD_MODE aMode=ADD_MODE::INSERT, bool aSkipConnectivity=false) override
Removes an item from the container.
Definition: board.cpp:1003
void UpdateUserUnits(BOARD_ITEM *aItem, KIGFX::VIEW *aView)
Update any references within aItem (or its descendants) to the user units.
Definition: board.cpp:1335
NETINFO_ITEM * FindNet(int aNetcode) const
Search for a net with the given netcode.
Definition: board.cpp:1922
void SynchronizeNetsAndNetClasses(bool aResetTrackAndViaSizes)
Copy NETCLASS info to each NET, based on NET membership in a NETCLASS.
Definition: board.cpp:2055
const wxString & GetFileName() const
Definition: board.h:327
bool TestZoneIntersection(ZONE *aZone1, ZONE *aZone2)
Test for intersection of 2 copper areas.
int GetCount() const
Return the number of objects in the list.
Definition: collector.h:81
void Remove(int aIndex)
Remove the item at aIndex (first position is 0).
Definition: collector.h:109
COMMIT & Remove(EDA_ITEM *aItem, BASE_SCREEN *aScreen=nullptr)
Notify observers that aItem has been removed.
Definition: commit.h:92
COMMIT & Modify(EDA_ITEM *aItem, BASE_SCREEN *aScreen=nullptr)
Create an undo entry for an item that has been already modified.
Definition: commit.h:105
bool Empty() const
Returns status of an item.
Definition: commit.h:144
COMMIT & Add(EDA_ITEM *aItem, BASE_SCREEN *aScreen=nullptr)
Notify observers that aItem has been added.
Definition: commit.h:80
int GetStatus(EDA_ITEM *aItem, BASE_SCREEN *aScreen=nullptr)
Definition: commit.cpp:130
Store all of the related footprint information found in a netlist.
Definition: pcb_netlist.h:88
void SetFields(nlohmann::ordered_map< wxString, wxString > &aFields)
Definition: pcb_netlist.h:134
void AddNet(const wxString &aPinName, const wxString &aNetName, const wxString &aPinFunction, const wxString &aPinType)
Definition: pcb_netlist.h:106
void AddItem(const TOOL_ACTION &aAction, const SELECTION_CONDITION &aCondition, int aOrder=ANY_ORDER)
Add a menu entry to run a TOOL_ACTION on selected items.
void AddSeparator(int aOrder=ANY_ORDER)
Add a separator to the menu.
void AddMenu(ACTION_MENU *aMenu, const SELECTION_CONDITION &aCondition=SELECTION_CONDITIONS::ShowAlways, int aOrder=ANY_ORDER)
Add a submenu to the menu.
void SetWksFileName(const wxString &aFilename)
int ShowModal() override
Tool responsible for drawing graphical elements like lines, arcs, circles, etc.
Definition: drawing_tool.h:55
MODE GetDrawingMode() const
Return the current drawing mode of the DRAWING_TOOL or MODE::NONE if not currently in any drawing mod...
virtual PICKED_ITEMS_LIST * PopCommandFromUndoList()
Return the last command to undo and remove it from list, nothing is deleted.
void ShowInfoBarError(const wxString &aErrorMsg, bool aShowCloseButton=false, WX_INFOBAR::MESSAGE_TYPE aType=WX_INFOBAR::MESSAGE_TYPE::GENERIC)
Show the WX_INFOBAR displayed on the top of the canvas with a message and an error icon on the left o...
The base class for create windows for drawing purpose.
void ScriptingConsoleEnableDisable()
Toggles the scripting console visibility.
virtual void UpdateMsgPanel()
Redraw the message panel.
void ForceRefresh()
Force a redraw.
void SetCurrentCursor(KICURSOR aCursor)
Set the current cursor shape for this panel.
A base class for most all the KiCad significant classes used in schematics and boards.
Definition: eda_item.h:89
virtual void SetPosition(const VECTOR2I &aPos)
Definition: eda_item.h:244
void SetFlags(EDA_ITEM_FLAGS aMask)
Definition: eda_item.h:127
KICAD_T Type() const
Returns the type of object.
Definition: eda_item.h:101
virtual void SetParent(EDA_ITEM *aParent)
Definition: eda_item.h:104
A mix-in class (via multiple inheritance) that handles texts such as labels, parts,...
Definition: eda_text.h:80
static void FootprintFilter(const VECTOR2I &, GENERAL_COLLECTOR &aCollector, PCB_SELECTION_TOOL *sTool)
A selection filter which prunes the selection to contain only items of type #PCB_MODULE_T.
Definition: edit_tool.cpp:3086
static const TOOL_EVENT ClearedEvent
Definition: actions.h:294
static const TOOL_EVENT SelectedEvent
Definition: actions.h:292
static const TOOL_EVENT SelectedItemsModified
Selected items were moved, this can be very high frequency on the canvas, use with care.
Definition: actions.h:299
static const TOOL_EVENT PointSelectedEvent
Definition: actions.h:291
static const TOOL_EVENT UnselectedEvent
Definition: actions.h:293
Used for text file output.
Definition: richio.h:491
void LoadFootprintFromLibrary(LIB_ID aFPID)
bool LoadFootprintFromBoard(FOOTPRINT *aFootprint)
Load a footprint from the main board into the Footprint Editor.
void SetPosition(const VECTOR2I &aPos) override
Definition: footprint.cpp:2388
void SetLink(const KIID &aLink)
Definition: footprint.h:871
ZONES & Zones()
Definition: footprint.h:212
void SetOrientation(const EDA_ANGLE &aNewAngle)
Definition: footprint.cpp:2458
PCB_FIELD & Value()
read/write accessors:
Definition: footprint.h:658
std::deque< PAD * > & Pads()
Definition: footprint.h:206
bool IsFlipped() const
Definition: footprint.h:391
const LIB_ID & GetFPID() const
Definition: footprint.h:248
PCB_FIELD & Reference()
Definition: footprint.h:659
void Flip(const VECTOR2I &aCentre, FLIP_DIRECTION aFlipDirection) override
Flip this object, i.e.
Definition: footprint.cpp:2330
GROUPS & Groups()
Definition: footprint.h:215
PCB_FIELDS & Fields()
Definition: footprint.h:203
const wxString & GetValue() const
Definition: footprint.h:644
const wxString & GetReference() const
Definition: footprint.h:622
const KIID_PATH & GetPath() const
Definition: footprint.h:263
VECTOR2I GetPosition() const override
Definition: footprint.h:224
DRAWINGS & GraphicalItems()
Definition: footprint.h:209
Used when the right click button is pressed, or when the select tool is in effect.
Definition: collectors.h:202
A color representation with 4 components: red, green, blue, alpha.
Definition: color4d.h:104
An interface for classes handling user events controlling the view behavior such as zooming,...
virtual void CaptureCursor(bool aEnabled)
Force the cursor to stay within the drawing panel area.
virtual void ShowCursor(bool aEnabled)
Enable or disables display of cursor.
virtual void WarpMouseCursor(const VECTOR2D &aPosition, bool aWorldCoordinates=false, bool aWarpView=false)=0
If enabled (.
VECTOR2D GetCursorPosition() const
Return the current cursor position in world coordinates.
virtual VECTOR2D GetMousePosition(bool aWorldCoordinates=true) const =0
Return the current mouse pointer position.
virtual void SetAutoPan(bool aEnabled)
Turn on/off auto panning (this feature is used when there is a tool active (eg.
virtual void PinCursorInsideNonAutoscrollArea(bool aWarpMouseCursor)=0
An abstract base class for deriving all objects that can be added to a VIEW.
Definition: view_item.h:84
Hold a (potentially large) number of VIEW_ITEMs and renders them on a graphics device provided by the...
Definition: view.h:68
virtual void Add(VIEW_ITEM *aItem, int aDrawPriority=-1)
Add a VIEW_ITEM to the view.
Definition: view.cpp:299
virtual void Remove(VIEW_ITEM *aItem)
Remove a VIEW_ITEM from the view.
Definition: view.cpp:334
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...
Definition: view.cpp:1669
void MarkDirty()
Force redraw of view on the next rendering.
Definition: view.h:656
void UpdateAllItemsConditionally(int aUpdateFlags, std::function< bool(VIEW_ITEM *)> aCondition)
Update items in the view according to the given flags and condition.
Definition: view.cpp:1555
Definition: kiid.h:49
PROJECT & Prj() const
Return a reference to the PROJECT associated with this KIWAY.
KIWAY & Kiway() const
Return a reference to the KIWAY that this object has an opportunity to participate in.
Definition: kiway_holder.h:55
A wxFrame capable of the OpenProjectFiles function, meaning it can load a portion of a KiCad project.
Definition: kiway_player.h:65
virtual KIWAY_PLAYER * Player(FRAME_T aFrameType, bool doCreate=true, wxTopLevelWindow *aParent=nullptr)
Return the KIWAY_PLAYER* given a FRAME_T.
Definition: kiway.cpp:406
virtual void ExpressMail(FRAME_T aDestination, MAIL_T aCommand, std::string &aPayload, wxWindow *aSource=nullptr)
Send aPayload to aDestination from aSource.
Definition: kiway.cpp:527
Helper widget to add controls to a wxFileDialog to set netlist configuration options.
static wxWindow * Create(wxWindow *aParent)
ACTION_MENU * create() const override
< Return an instance of this class. It has to be overridden in inheriting classes.
LOCK_CONTEXT_MENU(TOOL_INTERACTIVE *aTool)
Handle the data for a net.
Definition: netinfo.h:56
bool HasAutoGeneratedNetname()
Definition: netinfo.h:129
const wxString & GetNetname() const
Definition: netinfo.h:114
int GetNetCode() const
Definition: netinfo.h:108
NETINFO_ITEM * GetNetItem(int aNetCode) const
Store information read from a netlist along with the flags used to update the NETLIST in the BOARD.
Definition: pcb_netlist.h:241
static constexpr PCB_LAYER_ID ALL_LAYERS
! Temporary layer identifier to identify code that is not padstack-aware
Definition: padstack.h:144
Definition: pad.h:54
DISPLAY_OPTIONS m_Display
FLIP_DIRECTION m_FlipDirection
static TOOL_ACTION zonesManager
Definition: pcb_actions.h:457
static TOOL_ACTION generateBOM
Definition: pcb_actions.h:447
static TOOL_ACTION zoneFillAll
Definition: pcb_actions.h:408
static TOOL_ACTION showLayersManager
Definition: pcb_actions.h:454
static TOOL_ACTION trackWidthDec
Definition: pcb_actions.h:398
static TOOL_ACTION generateDrillFiles
Definition: pcb_actions.h:441
static TOOL_ACTION selectionCursor
Select a single item under the cursor position.
Definition: pcb_actions.h:65
static TOOL_ACTION generateD356File
Definition: pcb_actions.h:446
static TOOL_ACTION trackViaSizeChanged
Definition: pcb_actions.h:402
static TOOL_ACTION exportSpecctraDSN
Definition: pcb_actions.h:438
static TOOL_ACTION trackWidthInc
Definition: pcb_actions.h:397
static TOOL_ACTION generateIPC2581File
Definition: pcb_actions.h:444
static TOOL_ACTION getAndPlace
Find an item and start moving.
Definition: pcb_actions.h:575
static TOOL_ACTION generateODBPPFile
Definition: pcb_actions.h:445
static TOOL_ACTION drawZoneCutout
Definition: pcb_actions.h:224
static TOOL_ACTION viaSizeDec
Definition: pcb_actions.h:400
static TOOL_ACTION zoneFill
Definition: pcb_actions.h:407
static TOOL_ACTION properties
Activation of the edit tool.
Definition: pcb_actions.h:180
static TOOL_ACTION editFpInFpEditor
Definition: pcb_actions.h:451
static TOOL_ACTION selectionClear
Clear the current selection.
Definition: pcb_actions.h:68
static TOOL_ACTION toggleLock
Definition: pcb_actions.h:527
static TOOL_ACTION drillResetOrigin
Definition: pcb_actions.h:543
static TOOL_ACTION viaSizeInc
Definition: pcb_actions.h:399
static TOOL_ACTION zoneUnfill
Definition: pcb_actions.h:410
static TOOL_ACTION generatePosFile
Definition: pcb_actions.h:442
static TOOL_ACTION drillOrigin
Definition: pcb_actions.h:542
static TOOL_ACTION assignNetClass
Definition: pcb_actions.h:404
static TOOL_ACTION repairBoard
Definition: pcb_actions.h:549
static TOOL_ACTION showNetInspector
Definition: pcb_actions.h:455
static TOOL_ACTION generateGerbers
Definition: pcb_actions.h:440
static TOOL_ACTION generateReportFile
Definition: pcb_actions.h:443
static TOOL_ACTION zoneDuplicate
Duplicate zone onto another layer.
Definition: pcb_actions.h:415
static TOOL_ACTION importNetlist
Definition: pcb_actions.h:435
static TOOL_ACTION drawSimilarZone
Definition: pcb_actions.h:225
static TOOL_ACTION boardSetup
Definition: pcb_actions.h:421
static TOOL_ACTION showEeschema
Definition: pcb_actions.h:546
static TOOL_ACTION zoneUnfillAll
Definition: pcb_actions.h:411
static TOOL_ACTION selectItem
Select an item (specified as the event parameter).
Definition: pcb_actions.h:71
static TOOL_ACTION selectNet
Select all connections belonging to a single net.
Definition: pcb_actions.h:96
static TOOL_ACTION editLibFpInFpEditor
Definition: pcb_actions.h:452
static TOOL_ACTION zoneMerge
Definition: pcb_actions.h:412
static TOOL_ACTION unlock
Definition: pcb_actions.h:529
static TOOL_ACTION placeFootprint
Definition: pcb_actions.h:228
static TOOL_ACTION showPythonConsole
Definition: pcb_actions.h:456
static TOOL_ACTION importSpecctraSession
Definition: pcb_actions.h:437
static TOOL_ACTION selectOnSchematic
Select symbols/pins on schematic corresponding to selected footprints/pads.
Definition: pcb_actions.h:114
static TOOL_ACTION lock
Definition: pcb_actions.h:528
Common, abstract interface for edit frames.
void SaveCopyInUndoList(EDA_ITEM *aItemToCopy, UNDO_REDO aTypeCommand) override
Create a new entry in undo list of commands.
Definition: undo_redo.cpp:163
void ClearListAndDeleteItems(PICKED_ITEMS_LIST *aList)
Definition: undo_redo.cpp:647
void RollbackFromUndo()
Perform an undo of the last edit without logging a corresponding redo.
Definition: undo_redo.cpp:663
void PutDataInPreviousState(PICKED_ITEMS_LIST *aList)
Used in undo or redo command.
Definition: undo_redo.cpp:258
Base PCB main window class for Pcbnew, Gerbview, and CvPcb footprint viewer.
PCBNEW_SETTINGS * GetPcbNewSettings() const
void OnModify() override
Must be called after a change in order to set the "modify" flag and update other data structures and ...
FOOTPRINT * SelectFootprintFromLibrary(LIB_ID aPreselect=LIB_ID())
Open a dialog to select a footprint.
PCB_DRAW_PANEL_GAL * GetCanvas() const override
Return a pointer to GAL-based canvas of given EDA draw frame.
BOARD * GetBoard() const
virtual BOARD_DESIGN_SETTINGS & GetDesignSettings() const
Returns the BOARD_DESIGN_SETTINGS for the open project.
virtual void Update3DView(bool aMarkDirty, bool aRefresh, const wxString *aTitle=nullptr)
Update the 3D view, if the viewer is opened by this frame.
virtual KIGFX::PCB_VIEW * GetView() const override
Return a pointer to the #VIEW instance used in the panel.
void SetLastPath(LAST_PATH_TYPE aType, const wxString &aLastPath)
Set the path of the last file successfully read.
void FindNext(bool reverse=false)
Find the next item using our existing search parameters.
TOOL_ACTION * GetExportNetlistAction()
void GenIPC2581File(wxCommandEvent &event)
Create and IPC2581 output file.
void OnModify() override
Must be called after a board change to set the modified flag.
void RecreateBOMFileFromBoard(wxCommandEvent &aEvent)
Create a BOM file from the current loaded board.
void GenD356File(wxCommandEvent &event)
wxString GetLastPath(LAST_PATH_TYPE aType)
Get the last path for a particular type.
bool Files_io_from_id(int aId)
Read and write board files according to aId.
void GenODBPPFiles(wxCommandEvent &event)
Create and Generate ODB++ output files.
void ShowFindDialog()
Show the Find dialog.
bool FetchNetlistFromSchematic(NETLIST &aNetlist, const wxString &aAnnotateMessage)
void SendSelectItemsToSch(const std::deque< EDA_ITEM * > &aItems, EDA_ITEM *aFocusItem, bool aForce)
Send a message to the schematic editor to try to find schematic counterparts of specified PCB items a...
void GenFootprintsReport(wxCommandEvent &event)
Call DoGenFootprintsReport to create a footprint report file.
void ToPlotter(int aID)
Open a dialog frame to create plot and drill files relative to the current board.
A set of BOARD_ITEMs (i.e., without duplicates).
Definition: pcb_group.h:52
void SetLocked(bool aLocked) override
Definition: pcb_group.cpp:184
Generic tool for picking an item.
static bool HasUnlockedItems(const SELECTION &aSelection)
Test if any selected items are unlocked.
static bool HasLockedItems(const SELECTION &aSelection)
Test if any selected items are locked.
The selection tool: currently supports:
PCB_SELECTION & RequestSelection(CLIENT_SELECTION_FILTER aClientFilter, bool aConfirmLockedItems=false)
Return the current selection, filtered according to aClientFilter.
int ClearSelection(const TOOL_EVENT &aEvent)
PCB_SELECTION & GetSelection()
void SelectAllItemsOnNet(int aNetCode, bool aSelect=true)
Select all items with the given net code.
T * frame() const
KIGFX::VIEW_CONTROLS * controls() const
BOARD * board() const
PCB_DRAW_PANEL_GAL * canvas() const
const PCB_SELECTION & selection() const
FOOTPRINT * footprint() const
virtual void SetWidth(int aWidth)
Definition: pcb_track.h:115
virtual int GetWidth() const
Definition: pcb_track.h:116
virtual COMMON_SETTINGS * GetCommonSettings() const
Definition: pgm_base.cpp:679
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 SetClickHandler(CLICK_HANDLER aHandler)
Set a handler for mouse click event.
Definition: picker_tool.h:73
ROUTER_MODE Mode() const
Definition: pns_router.h:141
RouterState GetState() const
Definition: pns_router.h:143
ROUTER * Router() const
virtual const wxString GetProjectFullName() const
Return the full path and name of the project.
Definition: project.cpp:129
static bool NotEmpty(const SELECTION &aSelection)
Test if there are any items selected.
static bool ShowAlways(const SELECTION &aSelection)
The default condition function (always returns true).
static SELECTION_CONDITION OnlyTypes(std::vector< KICAD_T > aTypes)
Create a functor that tests if the selected items are only of given types.
T * FirstOfKind() const
Definition: selection.h:188
const std::deque< EDA_ITEM * > GetItems() const
Definition: selection.h:121
EDA_ITEM * GetLastAddedItem() const
Definition: selection.h:126
bool IsHover() const
Definition: selection.h:84
int Size() const
Returns the number of selected parts.
Definition: selection.h:116
void SetReferencePoint(const VECTOR2I &aP)
Definition: selection.cpp:180
bool Empty() const
Checks if there is anything selected.
Definition: selection.h:110
virtual void PopTool(const TOOL_EVENT &aEvent)
Pops a tool from the stack.
virtual void PushTool(const TOOL_EVENT &aEvent)
NB: the definition of "tool" is different at the user level.
bool ToolStackIsEmpty()
Definition: tools_holder.h:125
bool IsCurrentTool(const TOOL_ACTION &aAction) const
TOOL_EVENT MakeEvent() const
Return the event associated with the action (i.e.
KIGFX::VIEW_CONTROLS * getViewControls() const
Return the instance of VIEW_CONTROLS object used in the application.
Definition: tool_base.cpp:42
TOOL_MANAGER * m_toolMgr
Definition: tool_base.h:218
KIGFX::VIEW * getView() const
Returns the instance of #VIEW object used in the application.
Definition: tool_base.cpp:36
bool IsToolActive() const
Definition: tool_base.cpp:31
RESET_REASON
Determine the reason of reset for a tool.
Definition: tool_base.h:78
@ REDRAW
Full drawing refresh.
Definition: tool_base.h:83
@ MODEL_RELOAD
Model changes (the sheet for a schematic)
Definition: tool_base.h:80
@ GAL_SWITCH
Rendering engine changes.
Definition: tool_base.h:82
Generic, UI-independent tool event.
Definition: tool_event.h:167
bool HasPosition() const
Definition: tool_event.h:256
bool Matches(const TOOL_EVENT &aEvent) const
Test whether two events match in terms of category & action or command.
Definition: tool_event.h:384
const VECTOR2D Position() const
Returns the point where dragging has started.
Definition: tool_event.h:285
bool IsReactivate() const
Definition: tool_event.h:268
bool IsAction(const TOOL_ACTION *aAction) const
Test if the event contains an action issued upon activation of the given TOOL_ACTION.
Definition: tool_event.cpp:82
T Parameter() const
Return a parameter assigned to the event.
Definition: tool_event.h:460
void Go(int(T::*aStateFunc)(const TOOL_EVENT &), const TOOL_EVENT_LIST &aConditions=TOOL_EVENT(TC_ANY, TA_ANY))
Define which state (aStateFunc) to go when a certain event arrives (aConditions).
TOOL_MENU & GetToolMenu()
std::unique_ptr< TOOL_MENU > m_menu
The functions below are not yet implemented - their interface may change.
TOOL_EVENT * Wait(const TOOL_EVENT_LIST &aEventList=TOOL_EVENT(TC_ANY, TA_ANY))
Suspend execution of the tool until an event specified in aEventList arrives.
void Activate()
Run the tool.
bool ProcessEvent(const TOOL_EVENT &aEvent)
Propagate an event to tools that requested events of matching type(s).
void PostEvent(const TOOL_EVENT &aEvent)
Put an event to the event queue to be processed at the end of event processing cycle.
bool RunAction(const std::string &aActionName, T aParam)
Run the specified action immediately, pausing the current action to run the new one.
Definition: tool_manager.h:150
void PrimeTool(const VECTOR2D &aPosition)
"Prime" a tool by sending a cursor left-click event with the mouse position set to the passed in posi...
bool PostAction(const std::string &aActionName, T aParam)
Run the specified action after the current action (coroutine) ends.
Definition: tool_manager.h:235
Manage a CONDITIONAL_MENU and some number of CONTEXT_MENUs as sub-menus.
Definition: tool_menu.h:43
CONDITIONAL_MENU & GetMenu()
Definition: tool_menu.cpp:44
void RegisterSubMenu(std::shared_ptr< ACTION_MENU > aSubMenu)
Store a submenu of this menu model.
Definition: tool_menu.cpp:50
ACTION_MENU * create() const override
< Return an instance of this class. It has to be overridden in inheriting classes.
static bool IsZoneFillAction(const TOOL_EVENT *aEvent)
ZONE_SETTINGS handles zones parameters.
Definition: zone_settings.h:78
void ExportSetting(ZONE &aTarget, bool aFullExport=true) const
Function ExportSetting copy settings to a given zone.
Handle a list of polygons defining a copper zone.
Definition: zone.h:73
bool GetIsRuleArea() const
Accessors to parameters used in Rule Area zones:
Definition: zone.h:724
virtual LSET GetLayerSet() const override
Return a std::bitset of all layers on which the item physically resides.
Definition: zone.h:133
bool IsOnCopperLayer() const override
Definition: zone.cpp:475
unsigned GetAssignedPriority() const
Definition: zone.h:123
@ CHT_MODIFY
Definition: commit.h:44
void DisplayInfoMessage(wxWindow *aParent, const wxString &aMessage, const wxString &aExtraInfo)
Display an informational message box with aMessage.
Definition: confirm.cpp:222
void DisplayErrorMessage(wxWindow *aParent, const wxString &aText, const wxString &aExtraInfo)
Display an error message with aMessage.
Definition: confirm.cpp:195
This file is part of the common library.
int InvokeCopperZonesEditor(PCB_BASE_FRAME *aCaller, ZONE_SETTINGS *aSettings, CONVERT_SETTINGS *aConvertSettings)
Function InvokeCopperZonesEditor invokes up a modal dialog window for copper zone editing.
int InvokeNonCopperZonesEditor(PCB_BASE_FRAME *aParent, ZONE_SETTINGS *aSettings, CONVERT_SETTINGS *aConvertSettings)
Function InvokeNonCopperZonesEditor invokes up a modal dialog window for non-copper zone editing.
int InvokeRuleAreaEditor(PCB_BASE_FRAME *aCaller, ZONE_SETTINGS *aZoneSettings, BOARD *aBoard, CONVERT_SETTINGS *aConvertSettings)
Function InvokeRuleAreaEditor invokes up a modal dialog window for copper zone editing.
#define _(s)
static constexpr EDA_ANGLE ANGLE_0
Definition: eda_angle.h:401
#define IS_NEW
New item, just created.
@ FRAME_SCH
Definition: frame_type.h:34
@ FRAME_FOOTPRINT_EDITOR
Definition: frame_type.h:43
static const std::string SpecctraDsnFileExtension
static const std::string SpecctraSessionFileExtension
static wxString SpecctraSessionFileWildcard()
static wxString SpecctraDsnFileWildcard()
@ ID_NEW_BOARD
Definition: id.h:75
@ ID_SAVE_BOARD
Definition: id.h:76
@ ID_LOAD_FILE
Definition: id.h:74
@ ID_GEN_PLOT_GERBER
Definition: id.h:93
@ ID_GEN_PLOT
Definition: id.h:90
@ ID_SAVE_BOARD_AS
Definition: id.h:77
KIID niluuid(0)
@ MAIL_SCH_UPDATE
Definition: mail_type.h:47
@ REPAINT
Item needs to be redrawn.
Definition: view_item.h:57
@ GEOMETRY
Position or shape has changed.
Definition: view_item.h:54
@ PNS_MODE_ROUTE_DIFF_PAIR
Definition: pns_router.h:64
#define MAX_PAGE_SIZE_PCBNEW_MILS
Definition: page_info.h:39
@ ID_REVERT_BOARD
Definition: pcbnew_id.h:18
@ ID_COPY_BOARD_AS
Definition: pcbnew_id.h:17
PGM_BASE & Pgm()
The global Program "get" accessor.
Definition: pgm_base.cpp:1060
see class PGM_BASE
@ LAST_PATH_SPECCTRADSN
Definition: project_file.h:54
std::vector< FAB_LAYER_COLOR > dummy
const double IU_PER_MM
Definition: base_units.h:76
const double IU_PER_MILS
Definition: base_units.h:77
Container to handle a stock of specific vias each with unique diameter and drill sizes in the BOARD c...
@ BUT_LEFT
Definition: tool_event.h:131
@ BUT_RIGHT
Definition: tool_event.h:132
@ PCB_GENERATOR_T
class PCB_GENERATOR, generator on a layer
Definition: typeinfo.h:91
@ PCB_VIA_T
class PCB_VIA, a via (like a track segment on a copper layer)
Definition: typeinfo.h:97
@ PCB_ZONE_T
class ZONE, a copper pour area
Definition: typeinfo.h:107
@ PCB_PAD_T
class PAD, a pad in a footprint
Definition: typeinfo.h:87
VECTOR2< int32_t > VECTOR2I
Definition: vector2d.h:691
wxString AddFileExtListToFilter(const std::vector< std::string > &aExts)
Build the wildcard extension file dialog wildcard filter to add to the base message dialog.
Definition of file extensions used in Kicad.