KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
footprint_chooser_frame.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) 2023 CERN
5 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, you may find one here:
19 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
20 * or you may search the http://www.gnu.org website for the version 2 license,
21 * or you may write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
23 */
24
25#include <pgm_base.h>
26#include <kiface_base.h>
27#include <kiway.h>
28#include <kiway_express.h>
29#include <board.h>
30#include <wx/button.h>
31#include <wx/checkbox.h>
32#include <kiplatform/ui.h>
33#include <lset.h>
38#include <tool/tool_manager.h>
40#include <tool/common_tools.h>
41#include <tool/zoom_tool.h>
43#include <tools/pcb_actions.h>
46#include "wx/display.h"
49#include <project_pcb.h>
53
54
55static wxArrayString s_FootprintHistoryList;
56static unsigned s_FootprintHistoryMaxCount = 8;
57
58static void AddFootprintToHistory( const wxString& aName )
59{
60 // Remove duplicates
61 for( int ii = (int) s_FootprintHistoryList.GetCount() - 1; ii >= 0; --ii )
62 {
63 if( s_FootprintHistoryList[ ii ] == aName )
64 s_FootprintHistoryList.RemoveAt( (size_t) ii );
65 }
66
67 // Add the new name at the beginning of the history list
68 s_FootprintHistoryList.Insert( aName, 0 );
69
70 // Remove extra names
72 s_FootprintHistoryList.RemoveAt( s_FootprintHistoryList.GetCount() - 1 );
73}
74
75
76BEGIN_EVENT_TABLE( FOOTPRINT_CHOOSER_FRAME, PCB_BASE_FRAME )
78 EVT_BUTTON( wxID_OK, FOOTPRINT_CHOOSER_FRAME::OnOK )
79 EVT_BUTTON( wxID_CANCEL, FOOTPRINT_CHOOSER_FRAME::closeFootprintChooser )
81END_EVENT_TABLE()
82
83
84#define MODAL_FRAME ( wxRESIZE_BORDER | wxSYSTEM_MENU | wxCAPTION | wxCLOSE_BOX | wxCLIP_CHILDREN \
85 | wxWANTS_CHARS | wxFRAME_NO_TASKBAR | wxFRAME_FLOAT_ON_PARENT )
86
87
89 PCB_BASE_FRAME( aKiway, aParent, FRAME_FOOTPRINT_CHOOSER, _( "Footprint Chooser" ),
90 wxDefaultPosition, wxDefaultSize, MODAL_FRAME,
92 m_filterByPinCount( nullptr ),
93 m_filterByFPFilters( nullptr ),
94 m_boardAdapter(),
95 m_currentCamera( m_trackBallCamera ),
96 m_trackBallCamera( 2 * RANGE_SCALE_3D ),
97 m_pinCount( 0 ),
98 m_firstPaintEvent( true )
99{
100 SetModal( true );
101
102 m_showFpMode = true;
103 m_show3DMode = false;
104 m_messagePanel->Hide();
105
106 wxPanel* bottomPanel = new wxPanel( this );
107 wxBoxSizer* bottomSizer = new wxBoxSizer( wxVERTICAL );
108 wxBoxSizer* frameSizer = new wxBoxSizer( wxVERTICAL );
109
111 // Filter
112 [this]( LIB_TREE_NODE& aNode ) -> bool
113 {
114 return filterFootprint( aNode );
115 },
116 // Accept handler
117 [this]()
118 {
119 wxCommandEvent dummy;
120 OnOK( dummy );
121 },
122 // Escape handler
123 [this]()
124 {
125 DismissModal( false );
126 } );
127
128 frameSizer->Add( m_chooserPanel, 1, wxEXPAND );
129
131 SetBoard( new BOARD() );
132
133 // This board will only be used to hold a footprint for viewing
134 GetBoard()->SetBoardUse( BOARD_USE::FPHOLDER );
135
136 build3DCanvas(); // must be called after creating m_chooserPanel
138
139 // buttonsSizer contains the BITMAP buttons
140 wxBoxSizer* buttonsSizer = new wxBoxSizer( wxHORIZONTAL );
141
142 buttonsSizer->Add( 0, 0, 1, 0, 5 ); // Add spacer to right-align buttons
143
144 BITMAP_BUTTON* separator = new BITMAP_BUTTON( bottomPanel, wxID_ANY, wxNullBitmap );
145 separator->SetIsSeparator();
146 buttonsSizer->Add( separator, 0, wxRIGHT | wxALIGN_CENTER_VERTICAL, 1 );
147
148 m_grButton3DView = new BITMAP_BUTTON( bottomPanel, wxID_ANY, wxNullBitmap );
150 m_grButton3DView->SetBitmap( KiBitmapBundle( BITMAPS::shape_3d ) );
152 buttonsSizer->Add( m_grButton3DView, 0, wxRIGHT | wxALIGN_CENTER_VERTICAL, 1 );
153
154 m_grButtonFpView = new BITMAP_BUTTON( bottomPanel, wxID_ANY, wxNullBitmap );
156 m_grButtonFpView->SetBitmap( KiBitmapBundle( BITMAPS::module ) );
158 buttonsSizer->Add( m_grButtonFpView, 0, wxRIGHT | wxALIGN_CENTER_VERTICAL, 1 );
159
160 separator = new BITMAP_BUTTON( bottomPanel, wxID_ANY, wxNullBitmap );
161 separator->SetIsSeparator();
162 buttonsSizer->Add( separator, 0, wxRIGHT | wxALIGN_CENTER_VERTICAL, 1 );
163
164 m_show3DViewer = new wxCheckBox( bottomPanel, wxID_ANY, _( "Show 3D viewer in own window" ) );
165 buttonsSizer->Add( m_show3DViewer, 0, wxALL | wxALIGN_CENTER_VERTICAL, 3 );
166
167 wxStdDialogButtonSizer* sdbSizer = new wxStdDialogButtonSizer();
168 wxButton* okButton = new wxButton( bottomPanel, wxID_OK );
169 wxButton* cancelButton = new wxButton( bottomPanel, wxID_CANCEL );
170
171 sdbSizer->AddButton( okButton );
172 sdbSizer->AddButton( cancelButton );
173 sdbSizer->Realize();
174
175 buttonsSizer->Add( 20, 0, 0, 0, 5 ); // Add spacer
176 buttonsSizer->Add( sdbSizer, 0, wxALL | wxALIGN_CENTER_VERTICAL, 5 );
177 bottomSizer->Add( buttonsSizer, 0, wxEXPAND, 5 );
178
179 bottomPanel->SetSizer( bottomSizer );
180 frameSizer->Add( bottomPanel, 0, wxEXPAND );
181
182 SetSizer( frameSizer );
183
184 SetTitle( GetTitle() + wxString::Format( _( " (%d items loaded)" ),
186
187 Layout();
189
190 // Create the manager and dispatcher & route draw panel events to the dispatcher
193 GetCanvas()->GetViewControls(), GetViewerSettingsBase(), this );
194 m_actions = new PCB_ACTIONS();
197
198 m_toolManager->RegisterTool( new COMMON_TOOLS ); // for std context menus (zoom & grid)
199 m_toolManager->RegisterTool( new PCB_PICKER_TOOL ); // for setting grid origin
203
204 m_toolManager->GetTool<PCB_VIEWER_TOOLS>()->SetFootprintFrame( true );
205 m_toolManager->GetTool<PCB_VIEWER_TOOLS>()->SetIsDefaultTool( true );
206
208
210
211 // Connect Events
212 m_grButton3DView->Connect( wxEVT_COMMAND_BUTTON_CLICKED ,
213 wxCommandEventHandler( FOOTPRINT_CHOOSER_FRAME::on3DviewReq ),
214 nullptr, this );
215
216 m_grButtonFpView->Connect( wxEVT_COMMAND_BUTTON_CLICKED ,
217 wxCommandEventHandler( FOOTPRINT_CHOOSER_FRAME::onFpViewReq ),
218 nullptr, this );
219
220 m_show3DViewer->Connect( wxEVT_COMMAND_CHECKBOX_CLICKED ,
222 nullptr, this );
223
224 Connect( FP_SELECTION_EVENT, // custom event fired by a PANEL_FOOTPRINT_CHOOSER
225 wxCommandEventHandler( FOOTPRINT_CHOOSER_FRAME::onFpChanged ), nullptr, this );
226
227 // Needed on Linux to fix the position of widgets in bottomPanel
228 PostSizeEvent();
229}
230
231
233{
234 // Work around assertion firing when we try to LockCtx on a hidden 3D canvas during dtor
235 wxCloseEvent dummy;
236 m_preview3DCanvas->Show();
238
239 // Disconnect Events
240 m_grButton3DView->Disconnect( wxEVT_COMMAND_BUTTON_CLICKED,
241 wxCommandEventHandler( FOOTPRINT_CHOOSER_FRAME::on3DviewReq ),
242 nullptr, this );
243 m_grButtonFpView->Disconnect( wxEVT_COMMAND_BUTTON_CLICKED,
244 wxCommandEventHandler( FOOTPRINT_CHOOSER_FRAME::onFpViewReq ),
245 nullptr, this );
246
247 m_show3DViewer->Disconnect( wxEVT_COMMAND_CHECKBOX_CLICKED ,
249 nullptr, this );
250
251 Disconnect( FP_SELECTION_EVENT,
252 wxCommandEventHandler( FOOTPRINT_CHOOSER_FRAME::onFpChanged ), nullptr, this );
253
254 if( PCBNEW_SETTINGS* cfg = dynamic_cast<PCBNEW_SETTINGS*>( Kiface().KifaceSettings() ) )
255 {
257 cfg->m_FootprintChooser.use_fp_filters = m_filterByFPFilters->GetValue();
258
260 cfg->m_FootprintChooser.filter_on_pin_count = m_filterByPinCount->GetValue();
261 }
262}
263
264
266{
267 if( aEvent.IsChecked() )
268 {
270 Show3DViewerFrame(); // show external 3D viewer
271 }
272 else
273 {
274 // Close the external 3D viewer frame, if it is still enabled
276
277 if( viewer3D )
278 viewer3D->Close( true );
279 }
280
282}
283
284
286{
287 bool do_reload_board = true; // reload board flag
288
289 // At EDA_3D_VIEWER_FRAME creation, the current board is loaded, so disable loading
290 // the current board if the 3D frame is not yet created
291 if( Get3DViewerFrame() == nullptr )
292 do_reload_board = false;
293
295
296 // A stronger version of Raise() which promotes the window to its parent's level.
297 KIPLATFORM::UI::ReparentModal( draw3DFrame );
298
299 // And load or update the current board (if needed)
300 if( do_reload_board )
301 Update3DView( true, true );
302}
303
304
306 bool aRefresh, const wxString* aTitle )
307{
309 wxString footprintName;
310
311 if( fpID.IsValid() )
312 footprintName << fpID.Format();
313
314 wxString title = _( "3D Viewer" ) + wxT( " \u2014 " ) + footprintName;
315 PCB_BASE_FRAME::Update3DView( aMarkDirty, aRefresh, &title );
316}
317
318
320{
322 return m_filterByPinCount->GetValue();
323
324 if( PCBNEW_SETTINGS* cfg = dynamic_cast<PCBNEW_SETTINGS*>( Kiface().KifaceSettings() ) )
325 return cfg->m_FootprintChooser.filter_on_pin_count;
326
327 return false;
328}
329
330
332{
334 return m_filterByFPFilters->GetValue();
335
336 if( PCBNEW_SETTINGS* cfg = dynamic_cast<PCBNEW_SETTINGS*>( Kiface().KifaceSettings() ) )
337 return cfg->m_FootprintChooser.use_fp_filters;
338
339 return false;
340}
341
342
344{
345 if( aNode.m_Type == LIB_TREE_NODE::TYPE::LIBRARY )
346 {
347 // Normally lib nodes get scored by the max of their children's scores. However, if a
348 // lib node *has* no children then the scorer will call the filter on the lib node itself,
349 // and we just want to return true if we're not filtering at all.
350 return !filterByPinCount() && !filterByFPFilters();
351 }
352
353 auto patternMatch =
354 []( LIB_ID& id, std::vector<std::unique_ptr<EDA_PATTERN_MATCH>>& filters ) -> bool
355 {
356 // The matching is case insensitive
357 wxString name;
358
359 for( const std::unique_ptr<EDA_PATTERN_MATCH>& filter : filters )
360 {
361 name.Empty();
362
363 // If the filter contains a ':' then include the library name in the pattern
364 if( filter->GetPattern().Contains( wxS( ":" ) ) )
365 name = id.GetUniStringLibNickname().Lower() + wxS( ":" );
366
367 name += id.GetUniStringLibItemName().Lower();
368
369 if( filter->Find( name ) )
370 return true;
371 }
372
373 return false;
374 };
375
376 if( m_pinCount > 0 && filterByPinCount() )
377 {
378 if( aNode.m_PinCount != m_pinCount )
379 return false;
380 }
381
382 if( !m_fpFilters.empty() && filterByFPFilters() )
383 {
384 if( !patternMatch( aNode.m_LibId, m_fpFilters ) )
385 return false;
386 }
387
388 return true;
389}
390
391
393{
394 // Only dismiss a modal frame once, so that the return values set by
395 // the prior DismissModal() are not bashed for ShowModal().
396 if( !IsDismissed() )
397 DismissModal( false );
398
399 // window to be destroyed by the caller of KIWAY_PLAYER::ShowModal()
400}
401
402
404{
405 PCBNEW_SETTINGS* cfg = dynamic_cast<PCBNEW_SETTINGS*>( aCfg );
406 wxCHECK_MSG( cfg, nullptr, wxT( "config not existing" ) );
407
408 return &cfg->m_FootprintViewer;
409}
410
411
413{
415
416 if( cfg )
417 return Pgm().GetSettingsManager().GetColorSettings( cfg->m_ColorTheme );
418 else
420}
421
422
423static wxRect s_dialogRect( 0, 0, 0, 0 );
424
425
427{
428 const std::string& payload = mail.GetPayload();
429
430 switch( mail.Command() )
431 {
433 {
434 wxSizer* filtersSizer = m_chooserPanel->GetFiltersSizer();
435 wxWindow* filtersWindow = filtersSizer->GetContainingWindow();
436 wxString msg;
437
438 m_pinCount = 0;
439 m_fpFilters.clear();
440
441 /*
442 * Symbol netlist format:
443 * pinNumber pinName <tab> pinNumber pinName...
444 * fpFilter fpFilter...
445 */
446 std::map<wxString, wxString> pinNames;
447 std::vector<std::string> strings = split( payload, "\r" );
448
449 if( strings.size() >= 1 && !strings[0].empty() )
450 {
451 for( const wxString& pin : wxSplit( strings[0], '\t' ) )
452 pinNames[ pin.BeforeFirst( ' ' ) ] = pin.AfterFirst( ' ' );
453
454 m_pinCount = pinNames.size();
455
456 if( m_pinCount > 0 )
457 {
458 msg.Printf( _( "Filter by pin count (%d)" ), m_pinCount );
459 m_filterByPinCount = new wxCheckBox( filtersWindow, wxID_ANY, msg );
460
461 m_filterByPinCount->Bind( wxEVT_CHECKBOX,
462 [&]( wxCommandEvent& evt )
463 {
465 } );
466
467 if( PCBNEW_SETTINGS* cfg = dynamic_cast<PCBNEW_SETTINGS*>( Kiface().KifaceSettings() ) )
468 m_filterByPinCount->SetValue( cfg->m_FootprintChooser.filter_on_pin_count );
469 }
470 }
471
472 if( strings.size() >= 2 && !strings[1].empty() )
473 {
474 for( const wxString& filter : wxSplit( strings[1], ' ' ) )
475 {
476 m_fpFilters.push_back( std::make_unique<EDA_PATTERN_MATCH_WILDCARD_ANCHORED>() );
477 m_fpFilters.back()->SetPattern( filter.Lower() );
478 }
479
480 msg.Printf( _( "Apply footprint filters (%s)" ), strings[1] );
481 m_filterByFPFilters = new wxCheckBox( filtersWindow, wxID_ANY, msg );
482
483 m_filterByFPFilters->Bind( wxEVT_CHECKBOX,
484 [&]( wxCommandEvent& evt )
485 {
487 } );
488
489 if( PCBNEW_SETTINGS* cfg = dynamic_cast<PCBNEW_SETTINGS*>( Kiface().KifaceSettings() ) )
490 m_filterByFPFilters->SetValue( cfg->m_FootprintChooser.use_fp_filters );
491 }
492
494 m_chooserPanel->GetFiltersSizer()->Add( m_filterByFPFilters, 0, wxEXPAND|wxBOTTOM, 4 );
495
497 m_chooserPanel->GetFiltersSizer()->Add( m_filterByPinCount, 0, wxEXPAND|wxBOTTOM, 4 );
498
500
501 // Save the wxFormBuilder size of the dialog...
502 if( s_dialogRect.GetSize().x == 0 || s_dialogRect.GetSize().y == 0 )
503 s_dialogRect = wxRect( wxWindow::GetPosition(), wxWindow::GetSize() );
504
505 // ... and then give it a kick to get it to layout the new items
506 GetSizer()->SetSizeHints( this );
507 break;
508 }
509
510 default:
511 break;
512 }
513}
514
515
517{
518 return static_cast<FOOTPRINT_PREVIEW_PANEL*>( m_chooserPanel->GetViewerPanel()->GetPreviewPanel() )->GetCurrentFootprint();
519}
520
521
522bool FOOTPRINT_CHOOSER_FRAME::ShowModal( wxString* aFootprint, wxWindow* aParent )
523{
524 if( aFootprint && !aFootprint->IsEmpty() )
525 {
526 LIB_ID fpid;
527
528 fpid.Parse( *aFootprint, true );
529
530 if( fpid.IsValid() )
532 }
533
534 return KIWAY_PLAYER::ShowModal( aFootprint, aParent );
535}
536
537
538void FOOTPRINT_CHOOSER_FRAME::SetPosition( const wxPoint& aNewPosition )
539{
540 PCB_BASE_FRAME::SetPosition( aNewPosition );
541
542 s_dialogRect.SetPosition( aNewPosition );
543}
544
545
547{
548 bool ret;
549
550 // Show or hide the window. If hiding, save current position and size.
551 // If showing, use previous position and size.
552 if( show )
553 {
554#ifndef __WINDOWS__
555 PCB_BASE_FRAME::Raise(); // Needed on OS X and some other window managers (i.e. Unity)
556#endif
557 ret = PCB_BASE_FRAME::Show( show );
558
559 // returns a zeroed-out default wxRect if none existed before.
560 wxRect savedDialogRect = s_dialogRect;
561
562 if( savedDialogRect.GetSize().x != 0 && savedDialogRect.GetSize().y != 0 )
563 {
564 SetSize( savedDialogRect.GetPosition().x, savedDialogRect.GetPosition().y,
565 std::max( wxWindow::GetSize().x, savedDialogRect.GetSize().x ),
566 std::max( wxWindow::GetSize().y, savedDialogRect.GetSize().y ),
567 0 );
568 }
569
570 // Be sure that the dialog appears in a visible area
571 // (the dialog position might have been stored at the time when it was
572 // shown on another display)
573 if( wxDisplay::GetFromWindow( this ) == wxNOT_FOUND )
574 Centre();
575 }
576 else
577 {
578 s_dialogRect = wxRect( wxWindow::GetPosition(), wxWindow::GetSize() );
579 ret = PCB_BASE_FRAME::Show( show );
580 }
581
582 return ret;
583}
584
585
586void FOOTPRINT_CHOOSER_FRAME::OnPaint( wxPaintEvent& aEvent )
587{
589 {
592
593 m_firstPaintEvent = false;
594 }
595
596 aEvent.Skip();
597}
598
599
600void FOOTPRINT_CHOOSER_FRAME::OnOK( wxCommandEvent& aEvent )
601{
603
604 if( fpID.IsValid() )
605 {
606 wxString footprint = fpID.Format();
607
608 AddFootprintToHistory( footprint );
609 DismissModal( true, footprint );
610 }
611 else
612 {
613 DismissModal( false );
614 }
615}
616
617
619{
620 Close( false );
621}
622
623
624void FOOTPRINT_CHOOSER_FRAME::onFpChanged( wxCommandEvent& event )
625{
626 updateViews();
627
629}
630
631
633{
634 // Create the dummy board used by the 3D canvas
636 m_dummyBoard->SetProject( &Prj(), true );
637
638 // This board will only be used to hold a footprint for viewing
639 m_dummyBoard->SetBoardUse( BOARD_USE::FPHOLDER );
640
643 m_boardAdapter.m_IsPreviewer = true; // Force display 3D models, regardless the 3D viewer options
644
647
648 m_boardAdapter.m_Cfg = cfg;
649
650 // Build the 3D canvas
652 OGL_ATT_LIST::GetAttributesList( ANTIALIASING_MODE::AA_8X ),
655
656 m_chooserPanel->m_RightPanelSizer->Add( m_preview3DCanvas, 1, wxEXPAND, 5 );
657 m_chooserPanel->m_RightPanel->Layout();
658
660 dummy_bds.SetBoardThickness( pcbIUScale.mmToIU( 1.6 ) );
663 dummy_board_stackup.RemoveAll();
664 dummy_board_stackup.BuildDefaultStackupList( &dummy_bds, 2 );
665}
666
667
668void FOOTPRINT_CHOOSER_FRAME::on3DviewReq( wxCommandEvent& event )
669{
670 if( m_show3DMode == true )
671 {
672 if( m_showFpMode == true )
673 {
674 m_show3DMode = false;
677 }
678 }
679 else
680 {
681 if( m_show3DViewer->IsChecked() )
682 {
684 }
685 else
686 {
687 // Close 3D viewer frame, if it is still enabled
689 if( viewer3D )
690 viewer3D->Close( true );
691 }
692
693 m_show3DMode = true;
696 }
697}
698
699
700void FOOTPRINT_CHOOSER_FRAME::onFpViewReq( wxCommandEvent& event )
701{
702 if( m_showFpMode == true )
703 {
704 if( m_show3DMode == true )
705 {
706 m_showFpMode = false;
709 }
710 }
711 else
712 {
713 m_showFpMode = true;
716 }
717}
718
719
721{
723 bool reloadFp = viewer3D || m_preview3DCanvas->IsShown();
724
725 if( reloadFp )
726 {
728
731
732 }
733
734 if( m_preview3DCanvas->IsShown() )
735 {
738 }
739
740 if( viewer3D )
741 {
742 Update3DView( true, true );
743 }
744
745 m_chooserPanel->m_RightPanel->Layout();
746 m_chooserPanel->m_RightPanel->Refresh();
747}
748
750{
752 viewFpPanel->Show( m_showFpMode );
754
755 updateViews();
756}
757
758
760{
762
764 PCB_EDITOR_CONDITIONS cond( this );
765
766 wxASSERT( mgr );
767
768 // clang-format off
769#define CHECK( x ) ACTION_CONDITIONS().Check( x )
770
773
774 mgr->SetConditions( ACTIONS::millimetersUnits, CHECK( cond.Units( EDA_UNITS::MM ) ) );
775 mgr->SetConditions( ACTIONS::inchesUnits, CHECK( cond.Units( EDA_UNITS::INCH ) ) );
776 mgr->SetConditions( ACTIONS::milsUnits, CHECK( cond.Units( EDA_UNITS::MILS ) ) );
777
782
783#undef CHECK
784 // clang-format on
785}
786
787
const char * name
Definition: DXF_plotter.cpp:59
constexpr EDA_IU_SCALE pcbIUScale
Definition: base_units.h:108
KIFACE_BASE & Kiface()
Global KIFACE_BASE "get" accessor.
wxBitmapBundle KiBitmapBundle(BITMAPS aBitmap, int aMinHeight)
Definition: bitmap.cpp:110
#define RANGE_SCALE_3D
This defines the range that all coord will have to be rendered.
Definition: board_adapter.h:66
static TOOL_ACTION toggleGrid
Definition: actions.h:198
static TOOL_ACTION millimetersUnits
Definition: actions.h:206
static TOOL_ACTION milsUnits
Definition: actions.h:205
static TOOL_ACTION inchesUnits
Definition: actions.h:204
static TOOL_ACTION toggleCursorStyle
Definition: actions.h:151
static TOOL_ACTION measureTool
Definition: actions.h:247
Manage TOOL_ACTION objects.
void SetConditions(const TOOL_ACTION &aAction, const ACTION_CONDITIONS &aConditions)
Set the conditions the UI elements for activating a specific tool action should use for determining t...
APP_SETTINGS_BASE is a settings class that should be derived for each standalone KiCad application.
Definition: app_settings.h:92
A bitmap button widget that behaves like an AUI toolbar item's button when it is drawn.
Definition: bitmap_button.h:42
void SetIsRadioButton()
bool IsChecked() const
void Check(bool aCheck=true)
Check the control.
void SetIsSeparator()
Render button as a toolbar separator.
void SetBitmap(const wxBitmapBundle &aBmp)
Set the bitmap shown when the button is enabled.
bool m_IsPreviewer
true if we're in a 3D preview panel, false for the standard 3D viewer
void SetBoard(BOARD *aBoard) noexcept
Set current board to be rendered.
EDA_3D_VIEWER_SETTINGS * m_Cfg
Container for design settings for a BOARD object.
void SetEnabledLayers(const LSET &aMask)
Change the bit-mask of enabled layers to aMask.
BOARD_STACKUP & GetStackupDescriptor()
void SetBoardThickness(int aThickness)
Abstract interface for BOARD_ITEMs capable of storing other items inside.
Manage layers needed to make a physical board.
void RemoveAll()
Delete all items in list and clear the list.
void BuildDefaultStackupList(const BOARD_DESIGN_SETTINGS *aSettings, int aActiveCopperLayersCount=0)
Create a default stackup, according to the current BOARD_DESIGN_SETTINGS settings.
Information pertinent to a Pcbnew printed circuit board.
Definition: board.h:297
void Add(BOARD_ITEM *aItem, ADD_MODE aMode=ADD_MODE::INSERT, bool aSkipConnectivity=false) override
Removes an item from the container.
Definition: board.cpp:1060
void SetBoardUse(BOARD_USE aUse)
Set what the board is going to be used for.
Definition: board.h:309
void SetProject(PROJECT *aProject, bool aReferenceOnly=false)
Link a board to a given project.
Definition: board.cpp:195
void DeleteAllFootprints()
Remove all footprints from the deque and free the memory associated with them.
Definition: board.cpp:1477
BOARD_DESIGN_SETTINGS & GetDesignSettings() const
Definition: board.cpp:946
Color settings are a bit different than most of the settings objects in that there can be more than o...
Handles action that are shared between different applications.
Definition: common_tools.h:38
Implement a canvas based on a wxGLCanvas.
Definition: eda_3d_canvas.h:51
void ReloadRequest(BOARD *aBoard=nullptr, S3D_CACHE *aCachePointer=nullptr)
void OnCloseWindow(wxCloseEvent &event)
void Request_refresh(bool aRedrawImmediately=true)
Schedule a refresh update of the canvas.
Create and handle a window for the 3d viewer connected to a Kiway and a pcbboard.
virtual void setupUIConditions()
Setup the UI conditions for the various actions and their controls in this frame.
EDA_MSG_PANEL * m_messagePanel
void SetCanvas(EDA_DRAW_PANEL_GAL *aPanel)
void SetEventDispatcher(TOOL_DISPATCHER *aEventDispatcher)
Set a dispatcher that processes events and forwards them to tools.
SELECTION_CONDITION Units(EDA_UNITS aUnit)
Create a functor that tests if the frame has the specified units.
SELECTION_CONDITION GridVisible()
Create a functor testing if the grid is visible in a frame.
SELECTION_CONDITION FullscreenCursor()
Create a functor testing if the cursor is full screen in a frame.
void onFpViewReq(wxCommandEvent &event)
void updateViews()
Must be called after loading a new footprint: update footprint and/or 3D views.
WINDOW_SETTINGS * GetWindowSettings(APP_SETTINGS_BASE *aCfg) override
Return a pointer to the window settings for this frame.
void closeFootprintChooser(wxCommandEvent &aEvent)
bool filterFootprint(LIB_TREE_NODE &aNode)
void on3DviewReq(wxCommandEvent &event)
void onFpChanged(wxCommandEvent &event)
FOOTPRINT_CHOOSER_FRAME(KIWAY *aKiway, wxWindow *aParent)
bool ShowModal(wxString *aFootprint, wxWindow *aParent) override
void OnPaint(wxPaintEvent &aEvent)
BOARD_ITEM_CONTAINER * GetModel() const override
void setupUIConditions() override
Setup the UI conditions for the various actions and their controls in this frame.
bool Show(bool show) override
void OnOK(wxCommandEvent &aEvent)
void updatePanelsVisibility()
Show hide footprint view panel and/or 3d view panel according to the options (display 3D shapes and u...
void SetPosition(const wxPoint &aNewPosition)
Force the position of the dialog to a new position.
void KiwayMailIn(KIWAY_EXPRESS &mail) override
Receive KIWAY_EXPRESS messages from other players.
void Update3DView(bool aMarkDirty, bool aRefresh, const wxString *aTitle=nullptr) override
Update the 3D view, if the viewer is opened by this frame.
std::vector< std::unique_ptr< EDA_PATTERN_MATCH > > m_fpFilters
void onExternalViewer3DEnable(wxCommandEvent &aEvent)
COLOR_SETTINGS * GetColorSettings(bool aForceRefresh) const override
Helper to retrieve the current color settings.
PANEL_FOOTPRINT_CHOOSER * m_chooserPanel
Selection tool for the footprint viewer in CvPcb.
virtual EDA_DRAW_PANEL_GAL * GetCanvas()=0
Get the GAL canvas.
Panel that renders a single footprint via Cairo GAL, meant to be exported through Kiface.
void SetPinFunctions(const std::map< wxString, wxString > &aPinFunctions)
Set the pin functions from the symbol's netlist.
FOOTPRINT_PREVIEW_PANEL_BASE * GetPreviewPanel()
EDA_ITEM * Clone() const override
Invoke a function on all children.
Definition: footprint.cpp:2178
Carry a payload from one KIWAY_PLAYER to another within a PROJECT.
Definition: kiway_express.h:40
std::string & GetPayload()
Return the payload, which can be any text but it typically self identifying s-expression.
Definition: kiway_express.h:58
MAIL_T Command()
Returns the MAIL_T associated with this mail.
Definition: kiway_express.h:50
virtual bool ShowModal(wxString *aResult=nullptr, wxWindow *aResultantFocusWindow=nullptr)
Show this wxFrame as if it were a modal dialog, with all other instantiated wxFrames disabled until t...
bool IsDismissed()
void SetModal(bool aIsModal)
Definition: kiway_player.h:155
void DismissModal(bool aRetVal, const wxString &aResult=wxEmptyString)
A minimalistic software bus for communications between various DLLs/DSOs (DSOs) within the same KiCad...
Definition: kiway.h:285
A logical library item identifier and consists of various portions much like a URI.
Definition: lib_id.h:49
int Parse(const UTF8 &aId, bool aFix=false)
Parse LIB_ID with the information from aId.
Definition: lib_id.cpp:52
bool IsValid() const
Check if this LID_ID is valid.
Definition: lib_id.h:172
UTF8 Format() const
Definition: lib_id.cpp:119
Model class in the component selector Model-View-Adapter (mediated MVC) architecture.
enum TYPE m_Type
static LSET FrontMask()
Return a mask holding all technical layers and the external CU layer on front side.
Definition: lset.cpp:683
static LSET BackMask()
Return a mask holding all technical layers and the external CU layer on back side.
Definition: lset.cpp:690
static const wxGLAttributes GetAttributesList(ANTIALIASING_MODE aAntiAliasingMode, bool aAlpha=false)
Get a list of attributes to pass to wxGLCanvas.
wxWindow * GetFocusTarget() const
FOOTPRINT_PREVIEW_WIDGET * GetViewerPanel() const
void SetPreselect(const LIB_ID &aPreselect)
LIB_ID GetSelectedLibId() const
To be called after this dialog returns from ShowModal().
WINDOW_SETTINGS m_FootprintViewer
Gather all the actions that are shared by tools.
Definition: pcb_actions.h:51
static TOOL_ACTION padDisplayMode
Definition: pcb_actions.h:317
static TOOL_ACTION graphicsOutlines
Display footprint graphics as outlines.
Definition: pcb_actions.h:492
static TOOL_ACTION textOutlines
Display texts as lines.
Definition: pcb_actions.h:495
static TOOL_ACTION showPadNumbers
Definition: pcb_actions.h:324
Base PCB main window class for Pcbnew, Gerbview, and CvPcb footprint viewer.
virtual PCB_VIEWERS_SETTINGS_BASE * GetViewerSettingsBase() const
PCB_DRAW_PANEL_GAL * GetCanvas() const override
Return a pointer to GAL-based canvas of given EDA draw frame.
virtual void SetBoard(BOARD *aBoard, PROGRESS_REPORTER *aReporter=nullptr)
Set the #m_Pcb member in such as way as to ensure deleting any previous BOARD.
BOARD * GetBoard() const
EDA_3D_VIEWER_FRAME * CreateAndShow3D_Frame()
Show the 3D view frame.
EDA_3D_VIEWER_FRAME * Get3DViewerFrame()
virtual void Update3DView(bool aMarkDirty, bool aRefresh, const wxString *aTitle=nullptr)
Update the 3D view, if the viewer is opened by this frame.
Group generic conditions for PCB editor states.
SELECTION_CONDITION PadFillDisplay()
Create a functor that tests if the frame fills the pads.
SELECTION_CONDITION GraphicsFillDisplay()
Create a functor that tests if the frame fills graphics items.
SELECTION_CONDITION PadNumbersDisplay()
Create a functor that tests if the pad numbers are displayed.
SELECTION_CONDITION TextFillDisplay()
Create a functor that tests if the frame fills text items.
Generic tool for picking an item.
Tool useful for viewing footprints.
virtual SETTINGS_MANAGER & GetSettingsManager() const
Definition: pgm_base.h:125
static S3D_CACHE * Get3DCacheManager(PROJECT *aProject, bool updateProjDir=false)
Return a pointer to an instance of the 3D cache manager.
Definition: project_pcb.cpp:77
COLOR_SETTINGS * GetColorSettings(const wxString &aName="user")
Retrieve a color settings object that applications can read colors from.
T * GetAppSettings(const wxString &aFilename)
Return a handle to the a given settings by type.
TOOL_MANAGER * m_toolManager
Definition: tools_holder.h:171
TOOL_DISPATCHER * m_toolDispatcher
Definition: tools_holder.h:173
TOOL_MANAGER * GetToolManager() const
Return the MVC controller.
Definition: tools_holder.h:55
ACTIONS * m_actions
Definition: tools_holder.h:172
Master controller class:
Definition: tool_manager.h:62
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
ACTION_MANAGER * GetActionManager() const
Definition: tool_manager.h:306
void RegisterTool(TOOL_BASE *aTool)
Add a tool to the manager set and sets it up.
void SetEnvironment(EDA_ITEM *aModel, KIGFX::VIEW *aView, KIGFX::VIEW_CONTROLS *aViewControls, APP_SETTINGS_BASE *aSettings, TOOLS_HOLDER *aFrame)
Set the work environment (model, view, view controls and the parent window).
void InitTools()
Initialize all registered tools.
#define CHECK(x)
#define _(s)
Declaration of the eda_3d_viewer class.
#define FOOTPRINT_CHOOSER_FRAME_NAME
static wxRect s_dialogRect(0, 0, 0, 0)
static wxArrayString s_FootprintHistoryList
static unsigned s_FootprintHistoryMaxCount
static void AddFootprintToHistory(const wxString &aName)
#define MODAL_FRAME
@ FRAME_FOOTPRINT_CHOOSER
Definition: frame_type.h:44
PROJECT & Prj()
Definition: kicad.cpp:597
@ MAIL_SYMBOL_NETLIST
Definition: mail_type.h:45
void FixupCancelButtonCmdKeyCollision(wxWindow *aWindow)
Definition: wxgtk/ui.cpp:151
void ForceFocus(wxWindow *aWindow)
Pass the current focus to the window.
Definition: wxgtk/ui.cpp:124
void ReparentModal(wxNonOwnedWindow *aWindow)
Move a window's parent to be the top-level window and force the window to be on top.
Definition: wxgtk/ui.cpp:145
PGM_BASE & Pgm()
The global program "get" accessor.
Definition: pgm_base.cpp:1071
see class PGM_BASE
std::vector< FAB_LAYER_COLOR > dummy
static std::vector< std::string > split(const std::string &aStr, const std::string &aDelim)
Split the input string into a vector of output strings.
Definition: string_utils.h:322
constexpr int mmToIU(double mm) const
Definition: base_units.h:88
Store the common settings that are saved and loaded for each window / frame.
Definition: app_settings.h:74