KiCad PCB EDA Suite
Loading...
Searching...
No Matches
panel_symbol_chooser.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 Henner Zeller <[email protected]>
5 * Copyright (C) 2016-2024 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 <symbol_library.h> // For SYMBOL_LIBRARY_FILTER
28#include <kiface_base.h>
29#include <sch_base_frame.h>
30#include <project_sch.h>
31#include <widgets/lib_tree.h>
37#include <eeschema_settings.h>
39#include <wx/button.h>
40#include <wx/clipbrd.h>
41#include <wx/panel.h>
42#include <wx/sizer.h>
43#include <wx/splitter.h>
44#include <wx/timer.h>
45#include <wx/wxhtml.h>
46#include <wx/log.h>
47
48
51
52
54 const SYMBOL_LIBRARY_FILTER* aFilter,
55 std::vector<PICKED_SYMBOL>& aHistoryList,
56 std::vector<PICKED_SYMBOL>& aAlreadyPlaced,
57 bool aAllowFieldEdits, bool aShowFootprints,
58 std::function<void()> aAcceptHandler,
59 std::function<void()> aEscapeHandler ) :
60 wxPanel( aParent, wxID_ANY, wxDefaultPosition, wxDefaultSize ),
61 m_symbol_preview( nullptr ),
62 m_hsplitter( nullptr ),
63 m_vsplitter( nullptr ),
64 m_fp_sel_ctrl( nullptr ),
65 m_fp_preview( nullptr ),
66 m_tree( nullptr ),
67 m_details( nullptr ),
68 m_frame( aFrame ),
69 m_acceptHandler( std::move( aAcceptHandler ) ),
70 m_escapeHandler( std::move( aEscapeHandler ) ),
71 m_showPower( false ),
72 m_allow_field_edits( aAllowFieldEdits ),
73 m_show_footprints( aShowFootprints )
74{
78
79 // Make sure settings are loaded before we start running multi-threaded symbol loaders
82
84 SYMBOL_TREE_MODEL_ADAPTER* adapter = static_cast<SYMBOL_TREE_MODEL_ADAPTER*>( m_adapter.get() );
85 bool loaded = false;
86
87 if( aFilter )
88 {
89 const wxArrayString& liblist = aFilter->GetAllowedLibList();
90
91 for( const wxString& nickname : liblist )
92 {
93 if( libs->HasLibrary( nickname, true ) )
94 {
95 loaded = true;
96
97 bool pinned = alg::contains( session.pinned_symbol_libs, nickname )
98 || alg::contains( project.m_PinnedSymbolLibs, nickname );
99
100 if( libs->FindRow( nickname )->GetIsVisible() )
101 adapter->AddLibrary( nickname, pinned );
102 }
103 }
104
105 adapter->AssignIntrinsicRanks();
106
107 if( aFilter->GetFilterPowerSymbols() )
108 {
109 // HACK ALERT: when loading symbols we presume that *any* filter is a power symbol
110 // filter. So the filter only needs to return true for libraries.
111 static std::function<bool( LIB_TREE_NODE& )> powerFilter =
112 []( LIB_TREE_NODE& aNode ) -> bool
113 {
114 return true;
115 };
116
117 adapter->SetFilter( &powerFilter );
118
119 m_showPower = true;
120 m_show_footprints = false;
121 }
122 }
123
124 std::vector<LIB_SYMBOL> history_list_storage;
125 std::vector<LIB_TREE_ITEM*> history_list;
126 std::vector<LIB_SYMBOL> already_placed_storage;
127 std::vector<LIB_TREE_ITEM*> already_placed;
128
129 // Lambda to encapsulate the common logic
130 auto processList =
131 [&]( const std::vector<PICKED_SYMBOL>& inputList,
132 std::vector<LIB_SYMBOL>& storageList,
133 std::vector<LIB_TREE_ITEM*>& resultList )
134 {
135 storageList.reserve( inputList.size() );
136
137 for( const PICKED_SYMBOL& i : inputList )
138 {
139 LIB_SYMBOL* symbol = m_frame->GetLibSymbol( i.LibId );
140
141 if( symbol )
142 {
143 storageList.emplace_back( *symbol );
144
145 for( const std::pair<int, wxString>& fieldDef : i.Fields )
146 {
147 SCH_FIELD* field = storageList.back().GetFieldById( fieldDef.first );
148
149 if( field )
150 field->SetText( fieldDef.second );
151 }
152
153 resultList.push_back( &storageList.back() );
154 }
155 }
156 };
157
158 // Sort the already placed list since it is potentially from multiple sessions,
159 // but not the most recent list since we want this listed by most recent usage.
160 std::sort( aAlreadyPlaced.begin(), aAlreadyPlaced.end(),
161 []( PICKED_SYMBOL const& a, PICKED_SYMBOL const& b )
162 {
163 return a.LibId.GetLibItemName() < b.LibId.GetLibItemName();
164 } );
165
166 processList( aHistoryList, history_list_storage, history_list );
167 processList( aAlreadyPlaced, already_placed_storage, already_placed );
168
169 adapter->DoAddLibrary( wxT( "-- " ) + _( "Recently Used" ) + wxT( " --" ), wxEmptyString,
170 history_list, false, true );
171
172 if( !aHistoryList.empty() )
173 adapter->SetPreselectNode( aHistoryList[0].LibId, aHistoryList[0].Unit );
174
175 adapter->DoAddLibrary( wxT( "-- " ) + _( "Already Placed" ) + wxT( " --" ), wxEmptyString,
176 already_placed, false, true );
177
178 const std::vector< wxString > libNicknames = libs->GetLogicalLibs();
179
180 if( !loaded )
181 {
182 if( !adapter->AddLibraries( libNicknames, m_frame ) )
183 {
184 // loading cancelled by user
186 }
187 }
188
189 // -------------------------------------------------------------------------------------
190 // Construct the actual panel
191 //
192
193 wxBoxSizer* sizer = new wxBoxSizer( wxVERTICAL );
194
195 // Use a slightly different layout, with a details pane spanning the entire window,
196 // if we're not showing footprints.
198 {
199 m_hsplitter = new wxSplitterWindow( this, wxID_ANY, wxDefaultPosition, wxDefaultSize,
200 wxSP_LIVE_UPDATE | wxSP_NOBORDER | wxSP_3DSASH );
201
202 //Avoid the splitter window being assigned as the Parent to additional windows
203 m_hsplitter->SetExtraStyle( wxWS_EX_TRANSIENT );
204
205 sizer->Add( m_hsplitter, 1, wxEXPAND, 5 );
206 }
207 else
208 {
209 m_vsplitter = new wxSplitterWindow( this, wxID_ANY, wxDefaultPosition, wxDefaultSize,
210 wxSP_LIVE_UPDATE | wxSP_NOBORDER | wxSP_3DSASH );
211
212 m_hsplitter = new wxSplitterWindow( m_vsplitter, wxID_ANY, wxDefaultPosition, wxDefaultSize,
213 wxSP_LIVE_UPDATE | wxSP_NOBORDER | wxSP_3DSASH );
214
215 // Avoid the splitter window being assigned as the parent to additional windows.
216 m_vsplitter->SetExtraStyle( wxWS_EX_TRANSIENT );
217 m_hsplitter->SetExtraStyle( wxWS_EX_TRANSIENT );
218
219 wxPanel* detailsPanel = new wxPanel( m_vsplitter );
220 wxBoxSizer* detailsSizer = new wxBoxSizer( wxVERTICAL );
221 detailsPanel->SetSizer( detailsSizer );
222
223 m_details = new HTML_WINDOW( detailsPanel, wxID_ANY, wxDefaultPosition, wxDefaultSize );
224 detailsSizer->Add( m_details, 1, wxEXPAND | wxLEFT | wxRIGHT | wxBOTTOM, 5 );
225 detailsPanel->Layout();
226 detailsSizer->Fit( detailsPanel );
227
228 m_vsplitter->SetSashGravity( 0.5 );
229 m_vsplitter->SetMinimumPaneSize( 20 );
230 m_vsplitter->SplitHorizontally( m_hsplitter, detailsPanel );
231
232 sizer->Add( m_vsplitter, 1, wxEXPAND | wxBOTTOM, 5 );
233 }
234
235 wxPanel* treePanel = new wxPanel( m_hsplitter );
236 wxBoxSizer* treeSizer = new wxBoxSizer( wxVERTICAL );
237 treePanel->SetSizer( treeSizer );
238
239 m_tree = new LIB_TREE( treePanel, m_showPower ? wxT( "power" ) : wxT( "symbols" ),
241
242 treeSizer->Add( m_tree, 1, wxALL | wxEXPAND, 5 );
243 treePanel->Layout();
244 treeSizer->Fit( treePanel );
245
246 m_adapter->FinishTreeInitialization();
247
248 if( m_showPower )
250 else
252
253 m_hsplitter->SetSashGravity( 0.8 );
254 m_hsplitter->SetMinimumPaneSize( 20 );
255 m_hsplitter->SplitVertically( treePanel, constructRightPanel( m_hsplitter ) );
256
257 m_dbl_click_timer = new wxTimer( this );
258 m_open_libs_timer = new wxTimer( this );
259
260 SetSizer( sizer );
261
262 Layout();
263
264 Bind( wxEVT_TIMER, &PANEL_SYMBOL_CHOOSER::onCloseTimer, this, m_dbl_click_timer->GetId() );
265 Bind( wxEVT_TIMER, &PANEL_SYMBOL_CHOOSER::onOpenLibsTimer, this, m_open_libs_timer->GetId() );
266 Bind( EVT_LIBITEM_SELECTED, &PANEL_SYMBOL_CHOOSER::onSymbolSelected, this );
267 Bind( EVT_LIBITEM_CHOSEN, &PANEL_SYMBOL_CHOOSER::onSymbolChosen, this );
268 Bind( wxEVT_CHAR_HOOK, &PANEL_SYMBOL_CHOOSER::OnChar, this );
269
270 if( m_fp_sel_ctrl )
271 {
272 m_fp_sel_ctrl->Bind( EVT_FOOTPRINT_SELECTED, &PANEL_SYMBOL_CHOOSER::onFootprintSelected,
273 this );
274 }
275
276 if( m_details )
277 {
278 m_details->Connect( wxEVT_CHAR_HOOK,
279 wxKeyEventHandler( PANEL_SYMBOL_CHOOSER::OnDetailsCharHook ),
280 nullptr, this );
281 }
282
283 // Open the user's previously opened libraries on timer expiration.
284 // This is done on a timer because we need a gross hack to keep GTK from garbling the
285 // display. Must be longer than the search debounce timer.
286 m_open_libs_timer->StartOnce( 300 );
287}
288
289
291{
292 Unbind( wxEVT_TIMER, &PANEL_SYMBOL_CHOOSER::onCloseTimer, this );
293 Unbind( EVT_LIBITEM_SELECTED, &PANEL_SYMBOL_CHOOSER::onSymbolSelected, this );
294 Unbind( EVT_LIBITEM_CHOSEN, &PANEL_SYMBOL_CHOOSER::onSymbolChosen, this );
295 Unbind( wxEVT_CHAR_HOOK, &PANEL_SYMBOL_CHOOSER::OnChar, this );
296
297 // Stop the timer during destruction early to avoid potential race conditions (that do happen)
298 m_dbl_click_timer->Stop();
299 m_open_libs_timer->Stop();
300 delete m_dbl_click_timer;
301 delete m_open_libs_timer;
302
303 if( m_showPower )
305 else
307
308 if( m_fp_sel_ctrl )
309 {
310 m_fp_sel_ctrl->Unbind( EVT_FOOTPRINT_SELECTED, &PANEL_SYMBOL_CHOOSER::onFootprintSelected,
311 this );
312 }
313
314 if( m_details )
315 {
316 m_details->Disconnect( wxEVT_CHAR_HOOK,
317 wxKeyEventHandler( PANEL_SYMBOL_CHOOSER::OnDetailsCharHook ),
318 nullptr, this );
319 }
320
321 if( EESCHEMA_SETTINGS* cfg = dynamic_cast<EESCHEMA_SETTINGS*>( Kiface().KifaceSettings() ) )
322 {
323 // Save any changes to column widths, etc.
324 m_adapter->SaveSettings();
325
326 cfg->m_SymChooserPanel.width = GetParent()->GetSize().x;
327 cfg->m_SymChooserPanel.height = GetParent()->GetSize().y;
328
329 cfg->m_SymChooserPanel.sash_pos_h = m_hsplitter->GetSashPosition();
330
331 if( m_vsplitter )
332 cfg->m_SymChooserPanel.sash_pos_v = m_vsplitter->GetSashPosition();
333
334 cfg->m_SymChooserPanel.sort_mode = m_tree->GetSortMode();
335 }
336}
337
338
339void PANEL_SYMBOL_CHOOSER::OnChar( wxKeyEvent& aEvent )
340{
341 if( aEvent.GetKeyCode() == WXK_ESCAPE )
342 {
343 wxObject* eventSource = aEvent.GetEventObject();
344
345 if( wxTextCtrl* textCtrl = dynamic_cast<wxTextCtrl*>( eventSource ) )
346 {
347 // First escape cancels search string value
348 if( textCtrl->GetValue() == m_tree->GetSearchString()
349 && !m_tree->GetSearchString().IsEmpty() )
350 {
351 m_tree->SetSearchString( wxEmptyString );
352 return;
353 }
354 }
355
357 }
358 else
359 {
360 aEvent.Skip();
361 }
362}
363
364
365wxPanel* PANEL_SYMBOL_CHOOSER::constructRightPanel( wxWindow* aParent )
366{
368
369 if( m_frame->GetCanvas() )
370 {
371 backend = m_frame->GetCanvas()->GetBackend();
372 }
373 else
374 {
377 }
378
379 wxPanel* panel = new wxPanel( aParent );
380 wxBoxSizer* sizer = new wxBoxSizer( wxVERTICAL );
381
382 m_symbol_preview = new SYMBOL_PREVIEW_WIDGET( panel, &m_frame->Kiway(), true, backend );
383 m_symbol_preview->SetLayoutDirection( wxLayout_LeftToRight );
384
386 {
388
389 sizer->Add( m_symbol_preview, 11, wxEXPAND | wxALL, 5 );
390
391 if ( fp_list )
392 {
394 m_fp_sel_ctrl = new FOOTPRINT_SELECT_WIDGET( m_frame, panel, fp_list, true );
395
398 }
399
400 if( m_fp_sel_ctrl )
401 sizer->Add( m_fp_sel_ctrl, 0, wxEXPAND | wxLEFT | wxRIGHT | wxBOTTOM, 5 );
402
403 if( m_fp_preview )
404 sizer->Add( m_fp_preview, 10, wxEXPAND | wxLEFT | wxRIGHT | wxBOTTOM, 5 );
405 }
406 else
407 {
408 sizer->Add( m_symbol_preview, 1, wxEXPAND | wxALL, 5 );
409 }
410
411 panel->SetSizer( sizer );
412 panel->Layout();
413 sizer->Fit( panel );
414
415 return panel;
416}
417
418
420{
421 if( EESCHEMA_SETTINGS* cfg = dynamic_cast<EESCHEMA_SETTINGS*>( Kiface().KifaceSettings() ) )
422 {
423 auto horizPixelsFromDU =
424 [&]( int x ) -> int
425 {
426 wxSize sz( x, 0 );
427 return GetParent()->ConvertDialogToPixels( sz ).x;
428 };
429
430 EESCHEMA_SETTINGS::PANEL_SYM_CHOOSER& panelCfg = cfg->m_SymChooserPanel;
431
432 int w = panelCfg.width > 40 ? panelCfg.width : horizPixelsFromDU( 440 );
433 int h = panelCfg.height > 40 ? panelCfg.height : horizPixelsFromDU( 340 );
434
435 GetParent()->SetSize( wxSize( w, h ) );
436 GetParent()->Layout();
437
438 // We specify the width of the right window (m_symbol_view_panel), because specify
439 // the width of the left window does not work as expected when SetSashGravity() is called
440
441 if( panelCfg.sash_pos_h < 0 )
442 panelCfg.sash_pos_h = horizPixelsFromDU( 220 );
443
444 if( panelCfg.sash_pos_v < 0 )
445 panelCfg.sash_pos_v = horizPixelsFromDU( 230 );
446
447 m_hsplitter->SetSashPosition( panelCfg.sash_pos_h );
448
449 if( m_vsplitter )
450 m_vsplitter->SetSashPosition( panelCfg.sash_pos_v );
451
452 m_adapter->SetSortMode( (LIB_TREE_MODEL_ADAPTER::SORT_MODE) panelCfg.sort_mode );
453 }
454
456 {
457 // This hides the GAL panel and shows the status label
458 m_fp_preview->SetStatusText( wxEmptyString );
459 }
460
461 if( m_fp_sel_ctrl )
463}
464
465
467{
468 if( m_details && e.GetKeyCode() == 'C' && e.ControlDown() &&
469 !e.AltDown() && !e.ShiftDown() && !e.MetaDown() )
470 {
471 wxString txt = m_details->SelectionToText();
472 wxLogNull doNotLog; // disable logging of failed clipboard actions
473
474 if( wxTheClipboard->Open() )
475 {
476 wxTheClipboard->SetData( new wxTextDataObject( txt ) );
477 wxTheClipboard->Flush(); // Allow data to be available after closing KiCad
478 wxTheClipboard->Close();
479 }
480 }
481 else
482 {
483 e.Skip();
484 }
485}
486
487
489{
490 m_adapter->SetPreselectNode( aPreselect, 0 );
491}
492
493
495{
496 return m_tree->GetSelectedLibId( aUnit );
497}
498
499
500void PANEL_SYMBOL_CHOOSER::onCloseTimer( wxTimerEvent& aEvent )
501{
502 // Hack because of eaten MouseUp event. See PANEL_SYMBOL_CHOOSER::onSymbolChosen
503 // for the beginning of this spaghetti noodle.
504
505 wxMouseState state = wxGetMouseState();
506
507 if( state.LeftIsDown() )
508 {
509 // Mouse hasn't been raised yet, so fire the timer again. Otherwise the
510 // purpose of this timer is defeated.
512 }
513 else
514 {
516 }
517}
518
519
520void PANEL_SYMBOL_CHOOSER::onOpenLibsTimer( wxTimerEvent& aEvent )
521{
522 if( EESCHEMA_SETTINGS* cfg = dynamic_cast<EESCHEMA_SETTINGS*>( Kiface().KifaceSettings() ) )
523 m_adapter->OpenLibs( cfg->m_LibTree.open_libs );
524}
525
526
528{
530 return;
531
532 LIB_SYMBOL* symbol = nullptr;
533
534 try
535 {
536 symbol = PROJECT_SCH::SchSymbolLibTable( &m_frame->Prj() )->LoadSymbol( aLibId );
537 }
538 catch( const IO_ERROR& ioe )
539 {
540 wxLogError( _( "Error loading symbol %s from library '%s'." ) + wxS( "\n%s" ),
541 aLibId.GetLibItemName().wx_str(),
542 aLibId.GetLibNickname().wx_str(),
543 ioe.What() );
544 }
545
546 if( !symbol )
547 return;
548
549 SCH_FIELD* fp_field = symbol->GetFieldById( FOOTPRINT_FIELD );
550 wxString fp_name = fp_field ? fp_field->GetFullText() : wxString( "" );
551
552 showFootprint( fp_name );
553}
554
555
556void PANEL_SYMBOL_CHOOSER::showFootprint( wxString const& aFootprint )
557{
559 return;
560
561 if( aFootprint == wxEmptyString )
562 {
563 m_fp_preview->SetStatusText( _( "No footprint specified" ) );
564 }
565 else
566 {
567 LIB_ID lib_id;
568
569 if( lib_id.Parse( aFootprint ) == -1 && lib_id.IsValid() )
570 {
573 }
574 else
575 {
576 m_fp_preview->SetStatusText( _( "Invalid footprint specified" ) );
577 }
578 }
579}
580
581
583{
584 if( !m_fp_sel_ctrl )
585 return;
586
588
589 LIB_SYMBOL* symbol = nullptr;
590
591 if( aLibId.IsValid() )
592 {
593 try
594 {
595 symbol = PROJECT_SCH::SchSymbolLibTable( &m_frame->Prj() )->LoadSymbol( aLibId );
596 }
597 catch( const IO_ERROR& ioe )
598 {
599 wxLogError( _( "Error loading symbol %s from library '%s'." ) + wxS( "\n%s" ),
600 aLibId.GetLibItemName().wx_str(),
601 aLibId.GetLibNickname().wx_str(),
602 ioe.What() );
603 }
604 }
605
606 if( symbol != nullptr )
607 {
608 int pinCount = symbol->GetPins( 0 /* all units */, 1 /* single bodyStyle */ ).size();
609 SCH_FIELD* fp_field = symbol->GetFieldById( FOOTPRINT_FIELD );
610 wxString fp_name = fp_field ? fp_field->GetFullText() : wxString( "" );
611
612 m_fp_sel_ctrl->FilterByPinCount( pinCount );
617 }
618 else
619 {
621 m_fp_sel_ctrl->Disable();
622 }
623}
624
625
626void PANEL_SYMBOL_CHOOSER::onFootprintSelected( wxCommandEvent& aEvent )
627{
628 m_fp_override = aEvent.GetString();
629
630 alg::delete_if( m_field_edits, []( std::pair<int, wxString> const& i )
631 {
632 return i.first == FOOTPRINT_FIELD;
633 } );
634
635 m_field_edits.emplace_back( std::make_pair( FOOTPRINT_FIELD, m_fp_override ) );
636
638}
639
640
641void PANEL_SYMBOL_CHOOSER::onSymbolSelected( wxCommandEvent& aEvent )
642{
644
645 if( node && node->m_LibId.IsValid() )
646 {
648
649 if( !node->m_Footprint.IsEmpty() )
650 showFootprint( node->m_Footprint );
651 else
652 showFootprintFor( node->m_LibId );
653
655 }
656 else
657 {
658 m_symbol_preview->SetStatusText( _( "No symbol selected" ) );
659
661 m_fp_preview->SetStatusText( wxEmptyString );
662
664 }
665}
666
667
668void PANEL_SYMBOL_CHOOSER::onSymbolChosen( wxCommandEvent& aEvent )
669{
671 {
672 // Got a selection. We can't just end the modal dialog here, because wx leaks some events
673 // back to the parent window (in particular, the MouseUp following a double click).
674 //
675 // NOW, here's where it gets really fun. wxTreeListCtrl eats MouseUp. This isn't really
676 // feasible to bypass without a fully custom wxDataViewCtrl implementation, and even then
677 // might not be fully possible (docs are vague). To get around this, we use a one-shot
678 // timer to schedule the dialog close.
679 //
680 // See PANEL_SYMBOL_CHOOSER::onCloseTimer for the other end of this spaghetti noodle.
682 }
683}
KIFACE_BASE & Kiface()
Global KIFACE_BASE "get" accessor.
GAL_TYPE GetBackend() const
Return the type of backend currently used by GAL canvas.
Holds a list of FOOTPRINT_INFO objects, along with a list of IO_ERRORs or PARSE_ERRORs that were thro...
static FOOTPRINT_LIST * GetInstance(KIWAY &aKiway)
Factory function to return a FOOTPRINT_LIST via Kiway.
void DisplayFootprint(const LIB_ID &aFPID)
Set the currently displayed footprint.
void SetUserUnits(EDA_UNITS aUnits)
Set the units for the preview.
bool IsInitialized() const
Return whether the widget initialized properly.
void SetStatusText(const wxString &aText)
Set the contents of the status label and display it.
void ClearStatus()
Clear the contents of the status label and hide it.
virtual bool Enable(bool aEnable=true) override
Enable or disable the control for input.
void FilterByFootprintFilters(const wxArrayString &aFilters, bool aZeroFilters)
Filter by footprint filter list.
void SetDefaultFootprint(const wxString &aFp)
Set the default footprint for a part.
void FilterByPinCount(int aPinCount)
Filter by pin count.
bool UpdateList()
Update the contents of the list to match the filters.
void ClearFilters()
Clear all filters.
void Load(KIWAY &aKiway, PROJECT &aProject)
Start loading.
Add dark theme support to wxHtmlWindow.
Definition: html_window.h:34
Hold an error message and may be used when throwing exceptions containing meaningful error messages.
Definition: ki_exception.h:77
virtual const wxString What() const
A composite of Problem() and Where()
Definition: exceptions.cpp:30
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 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:51
bool IsValid() const
Check if this LID_ID is valid.
Definition: lib_id.h:172
const UTF8 & GetLibItemName() const
Definition: lib_id.h:102
const UTF8 & GetLibNickname() const
Return the logical library name portion of a LIB_ID.
Definition: lib_id.h:87
Define a library symbol object.
Definition: lib_symbol.h:77
std::vector< SCH_PIN * > GetPins(int aUnit=0, int aBodyStyle=0) const
Return a list of pin object pointers from the draw item list.
Definition: lib_symbol.cpp:982
SCH_FIELD * GetFieldById(int aId) const
Return pointer to the requested field.
wxArrayString GetFPFilters() const
Definition: lib_symbol.h:205
bool GetIsVisible() const
std::vector< wxString > GetLogicalLibs()
Return the logical library names, all of them that are pertinent to a look up done on this LIB_TABLE.
bool HasLibrary(const wxString &aNickname, bool aCheckEnabled=false) const
Test for the existence of aNickname in the library table.
void SetPreselectNode(const LIB_ID &aLibId, int aUnit)
Set the symbol name to be selected if there are no search results.
void DoAddLibrary(const wxString &aNodeName, const wxString &aDesc, const std::vector< LIB_TREE_ITEM * > &aItemList, bool pinned, bool presorted)
Add the given list of symbols by alias.
void AssignIntrinsicRanks()
Sort the tree and assign ranks after adding libraries.
void SetFilter(std::function< bool(LIB_TREE_NODE &aNode)> *aFilter)
Set the symbol filter type.
Model class in the component selector Model-View-Adapter (mediated MVC) architecture.
wxString m_Footprint
Widget displaying a tree of symbols with optional search text control and description panel....
Definition: lib_tree.h:49
LIB_TREE_NODE * GetCurrentTreeNode() const
Definition: lib_tree.cpp:332
LIB_TREE_MODEL_ADAPTER::SORT_MODE GetSortMode() const
Definition: lib_tree.h:141
wxString GetSearchString() const
Definition: lib_tree.cpp:385
LIB_ID GetSelectedLibId(int *aUnit=nullptr) const
For multi-unit symbols, if the user selects the symbol itself rather than picking an individual unit,...
Definition: lib_tree.cpp:301
@ ALL_WIDGETS
Definition: lib_tree.h:58
void SetSearchString(const wxString &aSearchString)
Save/restore search string.
Definition: lib_tree.cpp:379
PANEL_SYMBOL_CHOOSER(SCH_BASE_FRAME *aFrame, wxWindow *aParent, const SYMBOL_LIBRARY_FILTER *aFilter, std::vector< PICKED_SYMBOL > &aHistoryList, std::vector< PICKED_SYMBOL > &aAlreadyPlaced, bool aAllowFieldEdits, bool aShowFootprints, std::function< void()> aAcceptHandler, std::function< void()> aEscapeHandler)
Create dialog to choose symbol.
SYMBOL_PREVIEW_WIDGET * m_symbol_preview
void onSymbolSelected(wxCommandEvent &aEvent)
void showFootprintFor(const LIB_ID &aLibId)
Look up the footprint for a given symbol specified in the LIB_ID and display it.
wxSplitterWindow * m_hsplitter
FOOTPRINT_SELECT_WIDGET * m_fp_sel_ctrl
std::function< void()> m_escapeHandler
void OnDetailsCharHook(wxKeyEvent &aEvt)
static wxString g_symbolSearchString
void onCloseTimer(wxTimerEvent &aEvent)
wxSplitterWindow * m_vsplitter
std::vector< std::pair< int, wxString > > m_field_edits
void showFootprint(const wxString &aFootprint)
Display the given footprint by name.
void populateFootprintSelector(const LIB_ID &aLibId)
Populate the footprint selector for a given alias.
void onOpenLibsTimer(wxTimerEvent &aEvent)
void onFootprintSelected(wxCommandEvent &aEvent)
static wxString g_powerSearchString
void OnChar(wxKeyEvent &aEvent)
void SetPreselect(const LIB_ID &aPreselect)
std::function< void()> m_acceptHandler
static constexpr int DBLCLICK_DELAY
FOOTPRINT_PREVIEW_WIDGET * m_fp_preview
wxObjectDataPtr< LIB_TREE_MODEL_ADAPTER > m_adapter
LIB_ID GetSelectedLibId(int *aUnit=nullptr) const
To be called after this dialog returns from ShowModal().
void onSymbolChosen(wxCommandEvent &aEvent)
Handle the selection of an item.
wxPanel * constructRightPanel(wxWindow *aParent)
virtual COMMON_SETTINGS * GetCommonSettings() const
Definition: pgm_base.cpp:678
virtual SETTINGS_MANAGER & GetSettingsManager() const
Definition: pgm_base.h:142
The backing store for a PROJECT, in JSON format.
Definition: project_file.h:70
static SYMBOL_LIB_TABLE * SchSymbolLibTable(PROJECT *aProject)
Accessor for project symbol library table.
virtual PROJECT_FILE & GetProjectFile() const
Definition: project.h:166
A shim class between EDA_DRAW_FRAME and several derived classes: SYMBOL_EDIT_FRAME,...
SCH_DRAW_PANEL * GetCanvas() const override
Return a pointer to GAL-based canvas of given EDA draw frame.
LIB_SYMBOL * GetLibSymbol(const LIB_ID &aLibId, bool aUseCacheLib=false, bool aShowErrorMsg=false)
Load symbol from symbol library table.
Instances are attached to a symbol or sheet and provide a place for the symbol's value,...
Definition: sch_field.h:51
wxString GetFullText(int unit=1) const
Return the text of a field.
Definition: sch_field.cpp:305
void SetText(const wxString &aText) override
Definition: sch_field.cpp:1138
T * GetAppSettings()
Returns a handle to the a given settings by type If the settings have already been loaded,...
Helper object to filter a list of libraries.
const wxArrayString & GetAllowedLibList() const
LIB_SYMBOL * LoadSymbol(const wxString &aNickname, const wxString &aName)
Load a LIB_SYMBOL having aName from the library given by aNickname.
SYMBOL_LIB_TABLE_ROW * FindRow(const wxString &aNickName, bool aCheckIfEnabled=false)
Return an SYMBOL_LIB_TABLE_ROW if aNickName is found in this table or in any chained fallBack table f...
void SetStatusText(const wxString &aText)
Set the contents of the status label and display it.
void DisplaySymbol(const LIB_ID &aSymbolID, int aUnit, int aBodyStyle=0)
Set the currently displayed symbol.
static wxObjectDataPtr< LIB_TREE_MODEL_ADAPTER > Create(EDA_BASE_FRAME *aParent, LIB_TABLE *aLibs)
Factory function: create a model adapter in a reference-counting container.
bool AddLibraries(const std::vector< wxString > &aNicknames, SCH_BASE_FRAME *aFrame)
Add all the libraries in a SYMBOL_LIB_TABLE to the model.
void AddLibrary(wxString const &aLibNickname, bool pinned)
EDA_UNITS GetUserUnits() const
wxString wx_str() const
Definition: utf8.cpp:45
#define _(s)
void delete_if(_Container &__c, _Function &&__f)
Deletes all values from __c for which __f returns true.
Definition: kicad_algo.h:174
bool contains(const _Container &__container, _Value __value)
Returns true if the container contains the given value.
Definition: kicad_algo.h:100
STL namespace.
PGM_BASE & Pgm()
The global Program "get" accessor.
Definition: pgm_base.cpp:1059
see class PGM_BASE
std::vector< wxString > pinned_symbol_libs
Definition for symbol library class.
@ FOOTPRINT_FIELD
Field Name Module PCB, i.e. "16DIP300".