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
47
50
51
53 const SYMBOL_LIBRARY_FILTER* aFilter,
54 std::vector<PICKED_SYMBOL>& aHistoryList,
55 std::vector<PICKED_SYMBOL>& aAlreadyPlaced,
56 bool aAllowFieldEdits, bool aShowFootprints,
57 std::function<void()> aAcceptHandler,
58 std::function<void()> aEscapeHandler ) :
59 wxPanel( aParent, wxID_ANY, wxDefaultPosition, wxDefaultSize ),
60 m_symbol_preview( nullptr ),
61 m_hsplitter( nullptr ),
62 m_vsplitter( nullptr ),
63 m_fp_sel_ctrl( nullptr ),
64 m_fp_preview( nullptr ),
65 m_tree( nullptr ),
66 m_details( nullptr ),
67 m_frame( aFrame ),
68 m_acceptHandler( std::move( aAcceptHandler ) ),
69 m_escapeHandler( std::move( aEscapeHandler ) ),
70 m_showPower( false ),
71 m_allow_field_edits( aAllowFieldEdits ),
72 m_show_footprints( aShowFootprints )
73{
77
78 // Make sure settings are loaded before we start running multi-threaded symbol loaders
81
83 SYMBOL_TREE_MODEL_ADAPTER* adapter = static_cast<SYMBOL_TREE_MODEL_ADAPTER*>( m_adapter.get() );
84 bool loaded = false;
85
86 if( aFilter )
87 {
88 const wxArrayString& liblist = aFilter->GetAllowedLibList();
89
90 for( const wxString& nickname : liblist )
91 {
92 if( libs->HasLibrary( nickname, true ) )
93 {
94 loaded = true;
95
96 bool pinned = alg::contains( session.pinned_symbol_libs, nickname )
97 || alg::contains( project.m_PinnedSymbolLibs, nickname );
98
99 if( libs->FindRow( nickname )->GetIsVisible() )
100 adapter->AddLibrary( nickname, pinned );
101 }
102 }
103
104 adapter->AssignIntrinsicRanks();
105
106 if( aFilter->GetFilterPowerSymbols() )
107 {
108 // HACK ALERT: when loading symbols we presume that *any* filter is a power symbol
109 // filter. So the filter only needs to return true for libraries.
110 static std::function<bool( LIB_TREE_NODE& )> powerFilter =
111 []( LIB_TREE_NODE& aNode ) -> bool
112 {
113 return true;
114 };
115
116 adapter->SetFilter( &powerFilter );
117
118 m_showPower = true;
119 m_show_footprints = false;
120 }
121 }
122
123 std::vector<LIB_SYMBOL> history_list_storage;
124 std::vector<LIB_TREE_ITEM*> history_list;
125 std::vector<LIB_SYMBOL> already_placed_storage;
126 std::vector<LIB_TREE_ITEM*> already_placed;
127
128 // Lambda to encapsulate the common logic
129 auto processList =
130 [&]( const std::vector<PICKED_SYMBOL>& inputList,
131 std::vector<LIB_SYMBOL>& storageList,
132 std::vector<LIB_TREE_ITEM*>& resultList )
133 {
134 storageList.reserve( inputList.size() );
135
136 for( const PICKED_SYMBOL& i : inputList )
137 {
138 LIB_SYMBOL* symbol = m_frame->GetLibSymbol( i.LibId );
139
140 if( symbol )
141 {
142 storageList.emplace_back( *symbol );
143
144 for( const std::pair<int, wxString>& fieldDef : i.Fields )
145 {
146 SCH_FIELD* field = storageList.back().GetFieldById( fieldDef.first );
147
148 if( field )
149 field->SetText( fieldDef.second );
150 }
151
152 resultList.push_back( &storageList.back() );
153 }
154 }
155 };
156
157 // Sort the already placed list since it is potentially from multiple sessions,
158 // but not the most recent list since we want this listed by most recent usage.
159 std::sort( aAlreadyPlaced.begin(), aAlreadyPlaced.end(),
160 []( PICKED_SYMBOL const& a, PICKED_SYMBOL const& b )
161 {
162 return a.LibId.GetLibItemName() < b.LibId.GetLibItemName();
163 } );
164
165 processList( aHistoryList, history_list_storage, history_list );
166 processList( aAlreadyPlaced, already_placed_storage, already_placed );
167
168 adapter->DoAddLibrary( wxT( "-- " ) + _( "Recently Used" ) + wxT( " --" ), wxEmptyString,
169 history_list, false, true );
170
171 if( !aHistoryList.empty() )
172 adapter->SetPreselectNode( aHistoryList[0].LibId, aHistoryList[0].Unit );
173
174 adapter->DoAddLibrary( wxT( "-- " ) + _( "Already Placed" ) + wxT( " --" ), wxEmptyString,
175 already_placed, false, true );
176
177 const std::vector< wxString > libNicknames = libs->GetLogicalLibs();
178
179 if( !loaded )
180 {
181 if( !adapter->AddLibraries( libNicknames, m_frame ) )
182 {
183 // loading cancelled by user
185 }
186 }
187
188 // -------------------------------------------------------------------------------------
189 // Construct the actual panel
190 //
191
192 wxBoxSizer* sizer = new wxBoxSizer( wxVERTICAL );
193
194 // Use a slightly different layout, with a details pane spanning the entire window,
195 // if we're not showing footprints.
197 {
198 m_hsplitter = new wxSplitterWindow( this, wxID_ANY, wxDefaultPosition, wxDefaultSize,
199 wxSP_LIVE_UPDATE | wxSP_NOBORDER | wxSP_3DSASH );
200
201 //Avoid the splitter window being assigned as the Parent to additional windows
202 m_hsplitter->SetExtraStyle( wxWS_EX_TRANSIENT );
203
204 sizer->Add( m_hsplitter, 1, wxEXPAND, 5 );
205 }
206 else
207 {
208 m_vsplitter = new wxSplitterWindow( this, wxID_ANY, wxDefaultPosition, wxDefaultSize,
209 wxSP_LIVE_UPDATE | wxSP_NOBORDER | wxSP_3DSASH );
210
211 m_hsplitter = new wxSplitterWindow( m_vsplitter, wxID_ANY, wxDefaultPosition, wxDefaultSize,
212 wxSP_LIVE_UPDATE | wxSP_NOBORDER | wxSP_3DSASH );
213
214 // Avoid the splitter window being assigned as the parent to additional windows.
215 m_vsplitter->SetExtraStyle( wxWS_EX_TRANSIENT );
216 m_hsplitter->SetExtraStyle( wxWS_EX_TRANSIENT );
217
218 wxPanel* detailsPanel = new wxPanel( m_vsplitter );
219 wxBoxSizer* detailsSizer = new wxBoxSizer( wxVERTICAL );
220 detailsPanel->SetSizer( detailsSizer );
221
222 m_details = new HTML_WINDOW( detailsPanel, wxID_ANY, wxDefaultPosition, wxDefaultSize );
223 detailsSizer->Add( m_details, 1, wxEXPAND | wxLEFT | wxRIGHT | wxBOTTOM, 5 );
224 detailsPanel->Layout();
225 detailsSizer->Fit( detailsPanel );
226
227 m_vsplitter->SetSashGravity( 0.5 );
228 m_vsplitter->SetMinimumPaneSize( 20 );
229 m_vsplitter->SplitHorizontally( m_hsplitter, detailsPanel );
230
231 sizer->Add( m_vsplitter, 1, wxEXPAND | wxBOTTOM, 5 );
232 }
233
234 wxPanel* treePanel = new wxPanel( m_hsplitter );
235 wxBoxSizer* treeSizer = new wxBoxSizer( wxVERTICAL );
236 treePanel->SetSizer( treeSizer );
237
238 m_tree = new LIB_TREE( treePanel, m_showPower ? wxT( "power" ) : wxT( "symbols" ),
240
241 treeSizer->Add( m_tree, 1, wxALL | wxEXPAND, 5 );
242 treePanel->Layout();
243 treeSizer->Fit( treePanel );
244
245 m_adapter->FinishTreeInitialization();
246
247 if( m_showPower )
249 else
251
252 m_hsplitter->SetSashGravity( 0.8 );
253 m_hsplitter->SetMinimumPaneSize( 20 );
254 m_hsplitter->SplitVertically( treePanel, constructRightPanel( m_hsplitter ) );
255
256 m_dbl_click_timer = new wxTimer( this );
257 m_open_libs_timer = new wxTimer( this );
258
259 SetSizer( sizer );
260
261 Layout();
262
263 Bind( wxEVT_TIMER, &PANEL_SYMBOL_CHOOSER::onCloseTimer, this, m_dbl_click_timer->GetId() );
264 Bind( wxEVT_TIMER, &PANEL_SYMBOL_CHOOSER::onOpenLibsTimer, this, m_open_libs_timer->GetId() );
265 Bind( EVT_LIBITEM_SELECTED, &PANEL_SYMBOL_CHOOSER::onSymbolSelected, this );
266 Bind( EVT_LIBITEM_CHOSEN, &PANEL_SYMBOL_CHOOSER::onSymbolChosen, this );
267 Bind( wxEVT_CHAR_HOOK, &PANEL_SYMBOL_CHOOSER::OnChar, this );
268
269 if( m_fp_sel_ctrl )
270 {
271 m_fp_sel_ctrl->Bind( EVT_FOOTPRINT_SELECTED, &PANEL_SYMBOL_CHOOSER::onFootprintSelected,
272 this );
273 }
274
275 if( m_details )
276 {
277 m_details->Connect( wxEVT_CHAR_HOOK,
278 wxKeyEventHandler( PANEL_SYMBOL_CHOOSER::OnDetailsCharHook ),
279 nullptr, this );
280 }
281
282 // Open the user's previously opened libraries on timer expiration.
283 // This is done on a timer because we need a gross hack to keep GTK from garbling the
284 // display. Must be longer than the search debounce timer.
285 m_open_libs_timer->StartOnce( 300 );
286}
287
288
290{
291 Unbind( wxEVT_TIMER, &PANEL_SYMBOL_CHOOSER::onCloseTimer, this );
292 Unbind( EVT_LIBITEM_SELECTED, &PANEL_SYMBOL_CHOOSER::onSymbolSelected, this );
293 Unbind( EVT_LIBITEM_CHOSEN, &PANEL_SYMBOL_CHOOSER::onSymbolChosen, this );
294 Unbind( wxEVT_CHAR_HOOK, &PANEL_SYMBOL_CHOOSER::OnChar, this );
295
296 // Stop the timer during destruction early to avoid potential race conditions (that do happen)
297 m_dbl_click_timer->Stop();
298 m_open_libs_timer->Stop();
299 delete m_dbl_click_timer;
300 delete m_open_libs_timer;
301
302 if( m_showPower )
304 else
306
307 if( m_fp_sel_ctrl )
308 {
309 m_fp_sel_ctrl->Unbind( EVT_FOOTPRINT_SELECTED, &PANEL_SYMBOL_CHOOSER::onFootprintSelected,
310 this );
311 }
312
313 if( m_details )
314 {
315 m_details->Disconnect( wxEVT_CHAR_HOOK,
316 wxKeyEventHandler( PANEL_SYMBOL_CHOOSER::OnDetailsCharHook ),
317 nullptr, this );
318 }
319
320 if( EESCHEMA_SETTINGS* cfg = dynamic_cast<EESCHEMA_SETTINGS*>( Kiface().KifaceSettings() ) )
321 {
322 // Save any changes to column widths, etc.
323 m_adapter->SaveSettings();
324
325 cfg->m_SymChooserPanel.width = GetParent()->GetSize().x;
326 cfg->m_SymChooserPanel.height = GetParent()->GetSize().y;
327
328 cfg->m_SymChooserPanel.sash_pos_h = m_hsplitter->GetSashPosition();
329
330 if( m_vsplitter )
331 cfg->m_SymChooserPanel.sash_pos_v = m_vsplitter->GetSashPosition();
332
333 cfg->m_SymChooserPanel.sort_mode = m_tree->GetSortMode();
334 }
335}
336
337
338void PANEL_SYMBOL_CHOOSER::OnChar( wxKeyEvent& aEvent )
339{
340 if( aEvent.GetKeyCode() == WXK_ESCAPE )
341 {
342 wxObject* eventSource = aEvent.GetEventObject();
343
344 if( wxTextCtrl* textCtrl = dynamic_cast<wxTextCtrl*>( eventSource ) )
345 {
346 // First escape cancels search string value
347 if( textCtrl->GetValue() == m_tree->GetSearchString()
348 && !m_tree->GetSearchString().IsEmpty() )
349 {
350 m_tree->SetSearchString( wxEmptyString );
351 return;
352 }
353 }
354
356 }
357 else
358 {
359 aEvent.Skip();
360 }
361}
362
363
364wxPanel* PANEL_SYMBOL_CHOOSER::constructRightPanel( wxWindow* aParent )
365{
367
368 if( m_frame->GetCanvas() )
369 {
370 backend = m_frame->GetCanvas()->GetBackend();
371 }
372 else
373 {
376 }
377
378 wxPanel* panel = new wxPanel( aParent );
379 wxBoxSizer* sizer = new wxBoxSizer( wxVERTICAL );
380
381 m_symbol_preview = new SYMBOL_PREVIEW_WIDGET( panel, &m_frame->Kiway(), true, backend );
382 m_symbol_preview->SetLayoutDirection( wxLayout_LeftToRight );
383
385 {
387
388 sizer->Add( m_symbol_preview, 11, wxEXPAND | wxALL, 5 );
389
390 if ( fp_list )
391 {
393 m_fp_sel_ctrl = new FOOTPRINT_SELECT_WIDGET( m_frame, panel, fp_list, true );
394
397 }
398
399 if( m_fp_sel_ctrl )
400 sizer->Add( m_fp_sel_ctrl, 0, wxEXPAND | wxLEFT | wxRIGHT | wxBOTTOM, 5 );
401
402 if( m_fp_preview )
403 sizer->Add( m_fp_preview, 10, wxEXPAND | wxLEFT | wxRIGHT | wxBOTTOM, 5 );
404 }
405 else
406 {
407 sizer->Add( m_symbol_preview, 1, wxEXPAND | wxALL, 5 );
408 }
409
410 panel->SetSizer( sizer );
411 panel->Layout();
412 sizer->Fit( panel );
413
414 return panel;
415}
416
417
419{
420 if( EESCHEMA_SETTINGS* cfg = dynamic_cast<EESCHEMA_SETTINGS*>( Kiface().KifaceSettings() ) )
421 {
422 auto horizPixelsFromDU =
423 [&]( int x ) -> int
424 {
425 wxSize sz( x, 0 );
426 return GetParent()->ConvertDialogToPixels( sz ).x;
427 };
428
429 EESCHEMA_SETTINGS::PANEL_SYM_CHOOSER& panelCfg = cfg->m_SymChooserPanel;
430
431 int w = panelCfg.width > 40 ? panelCfg.width : horizPixelsFromDU( 440 );
432 int h = panelCfg.height > 40 ? panelCfg.height : horizPixelsFromDU( 340 );
433
434 GetParent()->SetSize( wxSize( w, h ) );
435 GetParent()->Layout();
436
437 // We specify the width of the right window (m_symbol_view_panel), because specify
438 // the width of the left window does not work as expected when SetSashGravity() is called
439
440 if( panelCfg.sash_pos_h < 0 )
441 panelCfg.sash_pos_h = horizPixelsFromDU( 220 );
442
443 if( panelCfg.sash_pos_v < 0 )
444 panelCfg.sash_pos_v = horizPixelsFromDU( 230 );
445
446 m_hsplitter->SetSashPosition( panelCfg.sash_pos_h );
447
448 if( m_vsplitter )
449 m_vsplitter->SetSashPosition( panelCfg.sash_pos_v );
450
451 m_adapter->SetSortMode( (LIB_TREE_MODEL_ADAPTER::SORT_MODE) panelCfg.sort_mode );
452 }
453
455 {
456 // This hides the GAL panel and shows the status label
457 m_fp_preview->SetStatusText( wxEmptyString );
458 }
459
460 if( m_fp_sel_ctrl )
462}
463
464
466{
467 if( m_details && e.GetKeyCode() == 'C' && e.ControlDown() &&
468 !e.AltDown() && !e.ShiftDown() && !e.MetaDown() )
469 {
470 wxString txt = m_details->SelectionToText();
471 wxLogNull doNotLog; // disable logging of failed clipboard actions
472
473 if( wxTheClipboard->Open() )
474 {
475 wxTheClipboard->SetData( new wxTextDataObject( txt ) );
476 wxTheClipboard->Flush(); // Allow data to be available after closing KiCad
477 wxTheClipboard->Close();
478 }
479 }
480 else
481 {
482 e.Skip();
483 }
484}
485
486
488{
489 m_adapter->SetPreselectNode( aPreselect, 0 );
490}
491
492
494{
495 return m_tree->GetSelectedLibId( aUnit );
496}
497
498
499void PANEL_SYMBOL_CHOOSER::onCloseTimer( wxTimerEvent& aEvent )
500{
501 // Hack because of eaten MouseUp event. See PANEL_SYMBOL_CHOOSER::onSymbolChosen
502 // for the beginning of this spaghetti noodle.
503
504 wxMouseState state = wxGetMouseState();
505
506 if( state.LeftIsDown() )
507 {
508 // Mouse hasn't been raised yet, so fire the timer again. Otherwise the
509 // purpose of this timer is defeated.
511 }
512 else
513 {
515 }
516}
517
518
519void PANEL_SYMBOL_CHOOSER::onOpenLibsTimer( wxTimerEvent& aEvent )
520{
521 if( EESCHEMA_SETTINGS* cfg = dynamic_cast<EESCHEMA_SETTINGS*>( Kiface().KifaceSettings() ) )
522 m_adapter->OpenLibs( cfg->m_LibTree.open_libs );
523}
524
525
527{
529 return;
530
531 LIB_SYMBOL* symbol = nullptr;
532
533 try
534 {
535 symbol = PROJECT_SCH::SchSymbolLibTable( &m_frame->Prj() )->LoadSymbol( aLibId );
536 }
537 catch( const IO_ERROR& ioe )
538 {
539 wxLogError( _( "Error loading symbol %s from library '%s'." ) + wxS( "\n%s" ),
540 aLibId.GetLibItemName().wx_str(),
541 aLibId.GetLibNickname().wx_str(),
542 ioe.What() );
543 }
544
545 if( !symbol )
546 return;
547
548 SCH_FIELD* fp_field = symbol->GetFieldById( FOOTPRINT_FIELD );
549 wxString fp_name = fp_field ? fp_field->GetFullText() : wxString( "" );
550
551 showFootprint( fp_name );
552}
553
554
555void PANEL_SYMBOL_CHOOSER::showFootprint( wxString const& aFootprint )
556{
558 return;
559
560 if( aFootprint == wxEmptyString )
561 {
562 m_fp_preview->SetStatusText( _( "No footprint specified" ) );
563 }
564 else
565 {
566 LIB_ID lib_id;
567
568 if( lib_id.Parse( aFootprint ) == -1 && lib_id.IsValid() )
569 {
572 }
573 else
574 {
575 m_fp_preview->SetStatusText( _( "Invalid footprint specified" ) );
576 }
577 }
578}
579
580
582{
583 if( !m_fp_sel_ctrl )
584 return;
585
587
588 LIB_SYMBOL* symbol = nullptr;
589
590 if( aLibId.IsValid() )
591 {
592 try
593 {
594 symbol = PROJECT_SCH::SchSymbolLibTable( &m_frame->Prj() )->LoadSymbol( aLibId );
595 }
596 catch( const IO_ERROR& ioe )
597 {
598 wxLogError( _( "Error loading symbol %s from library '%s'." ) + wxS( "\n%s" ),
599 aLibId.GetLibItemName().wx_str(),
600 aLibId.GetLibNickname().wx_str(),
601 ioe.What() );
602 }
603 }
604
605 if( symbol != nullptr )
606 {
607 int pinCount = symbol->GetPins( 0 /* all units */, 1 /* single bodyStyle */ ).size();
608 SCH_FIELD* fp_field = symbol->GetFieldById( FOOTPRINT_FIELD );
609 wxString fp_name = fp_field ? fp_field->GetFullText() : wxString( "" );
610
611 m_fp_sel_ctrl->FilterByPinCount( pinCount );
616 }
617 else
618 {
620 m_fp_sel_ctrl->Disable();
621 }
622}
623
624
625void PANEL_SYMBOL_CHOOSER::onFootprintSelected( wxCommandEvent& aEvent )
626{
627 m_fp_override = aEvent.GetString();
628
629 alg::delete_if( m_field_edits, []( std::pair<int, wxString> const& i )
630 {
631 return i.first == FOOTPRINT_FIELD;
632 } );
633
634 m_field_edits.emplace_back( std::make_pair( FOOTPRINT_FIELD, m_fp_override ) );
635
637}
638
639
640void PANEL_SYMBOL_CHOOSER::onSymbolSelected( wxCommandEvent& aEvent )
641{
643
644 if( node && node->m_LibId.IsValid() )
645 {
647
648 if( !node->m_Footprint.IsEmpty() )
649 showFootprint( node->m_Footprint );
650 else
651 showFootprintFor( node->m_LibId );
652
654 }
655 else
656 {
657 m_symbol_preview->SetStatusText( _( "No symbol selected" ) );
658
660 m_fp_preview->SetStatusText( wxEmptyString );
661
663 }
664}
665
666
667void PANEL_SYMBOL_CHOOSER::onSymbolChosen( wxCommandEvent& aEvent )
668{
670 {
671 // Got a selection. We can't just end the modal dialog here, because wx leaks some events
672 // back to the parent window (in particular, the MouseUp following a double click).
673 //
674 // NOW, here's where it gets really fun. wxTreeListCtrl eats MouseUp. This isn't really
675 // feasible to bypass without a fully custom wxDataViewCtrl implementation, and even then
676 // might not be fully possible (docs are vague). To get around this, we use a one-shot
677 // timer to schedule the dialog close.
678 //
679 // See PANEL_SYMBOL_CHOOSER::onCloseTimer for the other end of this spaghetti noodle.
681 }
682}
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".