KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
panel_design_block_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 The KiCad Developers, see AUTHORS.txt for contributors.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, you may find one here:
18 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
19 * or you may search the http://www.gnu.org website for the version 2 license,
20 * or you may write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
22 */
23
24#include <pgm_base.h>
25#include <design_block.h>
26#include <design_block_pane.h>
30#include <kiface_base.h>
31#include <kiway_holder.h>
32#include <eda_draw_frame.h>
33#include <widgets/lib_tree.h>
38#include <string_utils.h>
39#include <wx/log.h>
40#include <wx/panel.h>
41#include <wx/sizer.h>
42#include <wx/splitter.h>
43#include <wx/timer.h>
44#include <wx/wxhtml.h>
45#include <wx/msgdlg.h>
47
48
50
51
53 std::vector<LIB_ID>& aHistoryList,
54 std::function<void()> aSelectHandler,
55 TOOL_INTERACTIVE* aContextMenuTool ) :
56
57 wxPanel( aParent, wxID_ANY, wxDefaultPosition, wxDefaultSize ),
58 m_dbl_click_timer( nullptr ),
59 m_open_libs_timer( nullptr ),
60 m_vsplitter( nullptr ),
61 m_tree( nullptr ),
62 m_preview( nullptr ),
63 m_parent( aParent ),
64 m_frame( aFrame ),
65 m_selectHandler( std::move( aSelectHandler ) ),
66 m_historyList( aHistoryList )
67{
69
70 // Load design block files:
71 WX_PROGRESS_REPORTER* progressReporter =
72 new WX_PROGRESS_REPORTER( aParent, _( "Loading Design Block Libraries" ), 1 );
73 DESIGN_BLOCK_LIB_TABLE::GetGlobalList().ReadDesignBlockFiles( libs, nullptr, progressReporter );
74
75 // Force immediate deletion of the WX_PROGRESS_REPORTER. Do not use Destroy(), or use
76 // Destroy() followed by wxSafeYield() because on Windows, APP_PROGRESS_DIALOG and
77 // WX_PROGRESS_REPORTER have some side effects on the event loop manager. For instance, a
78 // subsequent call to ShowModal() or ShowQuasiModal() for a dialog following the use of a
79 // WX_PROGRESS_REPORTER results in incorrect modal or quasi modal behavior.
80 delete progressReporter;
81
82 if( DESIGN_BLOCK_LIB_TABLE::GetGlobalList().GetErrorCount() )
83 displayErrors( aFrame );
84
86 m_frame, libs, m_frame->config()->m_DesignBlockChooserPanel.tree, aContextMenuTool );
87
88 // -------------------------------------------------------------------------------------
89 // Construct the actual panel
90 //
91
92 wxBoxSizer* sizer = new wxBoxSizer( wxVERTICAL );
93
94 m_vsplitter = new wxSplitterWindow( this, wxID_ANY, wxDefaultPosition, wxDefaultSize,
95 wxSP_LIVE_UPDATE | wxSP_NOBORDER | wxSP_3DSASH );
96
97
98 // Avoid the splitter window being assigned as the parent to additional windows.
99 m_vsplitter->SetExtraStyle( wxWS_EX_TRANSIENT );
100
101 wxPanel* treePanel = new wxPanel( m_vsplitter );
102 wxBoxSizer* treeSizer = new wxBoxSizer( wxVERTICAL );
103 treePanel->SetSizer( treeSizer );
104
105 m_detailsPanel = new wxPanel( m_vsplitter );
106 m_detailsSizer = new wxBoxSizer( wxVERTICAL );
107 m_detailsPanel->SetSizer( m_detailsSizer );
108
109 m_detailsPanel->Layout();
111
112 m_vsplitter->SetSashGravity( 0.5 );
113 m_vsplitter->SetMinimumPaneSize( 20 );
114 m_vsplitter->SplitHorizontally( treePanel, m_detailsPanel );
115
116 sizer->Add( m_vsplitter, 1, wxEXPAND, 5 );
117
118
119 m_tree = new LIB_TREE( treePanel, wxT( "design_blocks" ), libs, m_adapter, LIB_TREE::FLAGS::ALL_WIDGETS, nullptr );
120
121 treeSizer->Add( m_tree, 1, wxEXPAND, 5 );
122 treePanel->Layout();
123 treeSizer->Fit( treePanel );
124
125 RefreshLibs();
126 m_adapter->FinishTreeInitialization();
127
129
130 m_dbl_click_timer = new wxTimer( this );
131 m_open_libs_timer = new wxTimer( this );
132
133 SetSizer( sizer );
134
135 Layout();
136
137 Bind( wxEVT_TIMER, &PANEL_DESIGN_BLOCK_CHOOSER::onCloseTimer, this, m_dbl_click_timer->GetId() );
138 Bind( wxEVT_TIMER, &PANEL_DESIGN_BLOCK_CHOOSER::onOpenLibsTimer, this, m_open_libs_timer->GetId() );
139 Bind( EVT_LIBITEM_CHOSEN, &PANEL_DESIGN_BLOCK_CHOOSER::onDesignBlockChosen, this );
140 Bind( wxEVT_CHAR_HOOK, &PANEL_DESIGN_BLOCK_CHOOSER::OnChar, this );
141
142 // Open the user's previously opened libraries on timer expiration.
143 // This is done on a timer because we need a gross hack to keep GTK from garbling the
144 // display. Must be longer than the search debounce timer.
145 m_open_libs_timer->StartOnce( 300 );
146}
147
148
150{
151 Unbind( wxEVT_TIMER, &PANEL_DESIGN_BLOCK_CHOOSER::onCloseTimer, this );
152 Unbind( EVT_LIBITEM_SELECTED, &PANEL_DESIGN_BLOCK_CHOOSER::onDesignBlockSelected, this );
153 Unbind( EVT_LIBITEM_CHOSEN, &PANEL_DESIGN_BLOCK_CHOOSER::onDesignBlockChosen, this );
154 Unbind( wxEVT_CHAR_HOOK, &PANEL_DESIGN_BLOCK_CHOOSER::OnChar, this );
155
156 // Stop the timer during destruction early to avoid potential race conditions (that do happen)
157 m_dbl_click_timer->Stop();
158 m_open_libs_timer->Stop();
159 delete m_dbl_click_timer;
160 delete m_open_libs_timer;
161}
162
163
165{
167
168 if( APP_SETTINGS_BASE* cfg = m_frame->config() )
169 {
170 // Save any changes to column widths, etc.
171 m_adapter->SaveSettings();
172
173 cfg->m_DesignBlockChooserPanel.width = GetParent()->GetSize().x;
174 cfg->m_DesignBlockChooserPanel.height = GetParent()->GetSize().y;
175 cfg->m_DesignBlockChooserPanel.sash_pos_v = m_vsplitter->GetSashPosition();
176 cfg->m_DesignBlockChooserPanel.sort_mode = m_tree->GetSortMode();
177 }
178}
179
180
182{
183 if( m_tree )
185}
186
187
189{
190 m_preview = aPreview;
191 m_detailsSizer->Add( m_preview, 1, wxEXPAND, 5 );
192 Layout();
193}
194
195
196void PANEL_DESIGN_BLOCK_CHOOSER::OnChar( wxKeyEvent& aEvent )
197{
198 if( aEvent.GetKeyCode() == WXK_ESCAPE )
199 {
200 wxObject* eventSource = aEvent.GetEventObject();
201
202 if( wxTextCtrl* textCtrl = dynamic_cast<wxTextCtrl*>( eventSource ) )
203 {
204 // First escape cancels search string value
205 if( textCtrl->GetValue() == m_tree->GetSearchString() && !m_tree->GetSearchString().IsEmpty() )
206 {
207 m_tree->SetSearchString( wxEmptyString );
208 return;
209 }
210 }
211 }
212 else
213 {
214 aEvent.Skip();
215 }
216}
217
218
220{
221 if( APP_SETTINGS_BASE* cfg = m_frame->config() )
222 {
223 auto horizPixelsFromDU =
224 [&]( int x ) -> int
225 {
226 wxSize sz( x, 0 );
227 return GetParent()->ConvertDialogToPixels( sz ).x;
228 };
229
230 APP_SETTINGS_BASE::PANEL_DESIGN_BLOCK_CHOOSER& panelCfg = cfg->m_DesignBlockChooserPanel;
231
232 int w = panelCfg.width > 40 ? panelCfg.width : horizPixelsFromDU( 440 );
233 int h = panelCfg.height > 40 ? panelCfg.height : horizPixelsFromDU( 340 );
234
235 GetParent()->SetSize( wxSize( w, h ) );
236 GetParent()->Layout();
237
238 // We specify the width of the right window (m_design_block_view_panel), because specify
239 // the width of the left window does not work as expected when SetSashGravity() is called
240
241 if( panelCfg.sash_pos_h < 0 )
242 panelCfg.sash_pos_h = horizPixelsFromDU( 220 );
243
244 if( panelCfg.sash_pos_v < 0 )
245 panelCfg.sash_pos_v = horizPixelsFromDU( 230 );
246
247 if( m_vsplitter )
248 m_vsplitter->SetSashPosition( panelCfg.sash_pos_v );
249
250 m_adapter->SetSortMode( (LIB_TREE_MODEL_ADAPTER::SORT_MODE) panelCfg.sort_mode );
251 }
252}
253
254
256{
257 // Unselect before syncing to avoid null reference in the adapter
258 // if a selected item is removed during the sync
259 m_tree->Unselect();
260
262
263 // Clear all existing libraries then re-add
264 adapter->ClearLibraries();
265
266 // Read the libraries from disk if they've changed
268 adapter->SetLibTable( fpTable );
269
270 // Sync FOOTPRINT_INFO list to the libraries on disk
271 if( aProgress )
272 {
273 WX_PROGRESS_REPORTER progressReporter( this, _( "Updating Design Block Libraries" ), 2 );
274 DESIGN_BLOCK_LIB_TABLE::GetGlobalList().ReadDesignBlockFiles( fpTable, nullptr, &progressReporter );
275 progressReporter.Show( false );
276 }
277 else
278 {
279 DESIGN_BLOCK_LIB_TABLE::GetGlobalList().ReadDesignBlockFiles( fpTable, nullptr, nullptr );
280 }
281
283
284 if( !m_historyList.empty() )
285 adapter->SetPreselectNode( m_historyList[0], 0 );
286
287 adapter->AddLibraries( m_frame );
288
289 m_tree->Regenerate( true );
290}
291
292
294{
295 m_adapter->SetPreselectNode( aPreselect, 0 );
296}
297
298
300{
301 return m_tree->GetSelectedLibId( aUnit );
302}
303
304
306{
307 m_tree->CenterLibId( aLibId );
308 m_tree->SelectLibId( aLibId );
309}
310
311
313{
314 // Hack because of eaten MouseUp event. See PANEL_DESIGN_BLOCK_CHOOSER::onDesignBlockChosen
315 // for the beginning of this spaghetti noodle.
316
317 wxMouseState state = wxGetMouseState();
318
319 if( state.LeftIsDown() )
320 {
321 // Mouse hasn't been raised yet, so fire the timer again. Otherwise the
322 // purpose of this timer is defeated.
324 }
325 else
326 {
330 }
331}
332
333
335{
336 if( APP_SETTINGS_BASE* cfg = m_frame->config() )
337 m_adapter->OpenLibs( cfg->m_LibTree.open_libs );
338
339 // Bind this now se we don't spam the event queue with EVT_LIBITEM_SELECTED events during
340 // the initial load.
341 Bind( EVT_LIBITEM_SELECTED, &PANEL_DESIGN_BLOCK_CHOOSER::onDesignBlockSelected, this );
342}
343
344
346{
347 if( GetSelectedLibId().IsValid() )
349}
350
351
353{
355 {
356 // Got a selection. We can't just end the modal dialog here, because wx leaks some events
357 // back to the parent window (in particular, the MouseUp following a double click).
358 //
359 // NOW, here's where it gets really fun. wxTreeListCtrl eats MouseUp. This isn't really
360 // feasible to bypass without a fully custom wxDataViewCtrl implementation, and even then
361 // might not be fully possible (docs are vague). To get around this, we use a one-shot
362 // timer to schedule the dialog close.
363 //
364 // See PANEL_DESIGN_BLOCK_CHOOSER::onCloseTimer for the other end of this spaghetti noodle.
366 }
367}
368
370{
371 LIB_ID savedId = GetSelectedLibId();
372
373 m_tree->Unselect();
374
375 // Remove duplicates
376 for( int i = (int) m_historyList.size() - 1; i >= 0; --i )
377 {
378 if( m_historyList[i] == aLibId )
379 m_historyList.erase( m_historyList.begin() + i );
380 }
381
382 // Add the new name at the beginning of the history list
383 m_historyList.insert( m_historyList.begin(), aLibId );
384
385 // Remove extra names
386 while( m_historyList.size() >= 8 )
387 m_historyList.pop_back();
388
390 m_tree->Regenerate( true );
391
392 SelectLibId( savedId );
393}
394
395
397{
398 m_adapter->RemoveGroup( true, false );
399
400 // Build the history list
401 std::vector<LIB_TREE_ITEM*> historyInfos;
402
403 for( const LIB_ID& lib : m_historyList )
404 {
406 lib.GetLibItemName() );
407
408 // this can be null, for example, if the design block has been deleted from a library.
409 if( fp_info != nullptr )
410 historyInfos.push_back( fp_info );
411 }
412
413 m_adapter->DoAddLibrary( wxT( "-- " ) + _( "Recently Used" ) + wxT( " --" ), wxEmptyString,
414 historyInfos, false, true )
415 .m_IsRecentlyUsedGroup = true;
416}
417
418
419void PANEL_DESIGN_BLOCK_CHOOSER::displayErrors( wxTopLevelWindow* aWindow )
420{
421 // @todo: go to a more HTML !<table>! ? centric output, possibly with recommendations
422 // for remedy of errors. Add numeric error codes to PARSE_ERROR, and switch on them for
423 // remedies, etc. Full access is provided to everything in every exception!
424
425 HTML_MESSAGE_BOX dlg( aWindow, _( "Load Error" ) );
426
427 dlg.MessageSet( _( "Errors were encountered loading design blocks:" ) );
428
429 wxString msg;
430
431 while( std::unique_ptr<IO_ERROR> error = DESIGN_BLOCK_LIB_TABLE::GetGlobalList().PopError() )
432 {
433 wxString tmp = EscapeHTML( error->Problem() );
434
435 // Preserve new lines in error messages so queued errors don't run together.
436 tmp.Replace( wxS( "\n" ), wxS( "<BR>" ) );
437 msg += wxT( "<p>" ) + tmp + wxT( "</p>" );
438 }
439
440 dlg.AddHTML_Text( msg );
441
442 dlg.ShowModal();
443}
APP_SETTINGS_BASE is a settings class that should be derived for each standalone KiCad application.
Definition: app_settings.h:92
PANEL_DESIGN_BLOCK_CHOOSER m_DesignBlockChooserPanel
Definition: app_settings.h:197
static DESIGN_BLOCK_LIST_IMPL & GetGlobalList()
bool ReadDesignBlockFiles(DESIGN_BLOCK_LIB_TABLE *aTable, const wxString *aNickname=nullptr, PROGRESS_REPORTER *aProgressReporter=nullptr) override
Read all the design blocks provided by the combination of aTable and aNickname.
DESIGN_BLOCK_INFO * GetDesignBlockInfo(const wxString &aDesignBlockName)
Get info for a design block by id.
DESIGN_BLOCK * GetDesignBlock(const LIB_ID &aLibId, bool aUseCacheLib, bool aShowErrorMsg)
Load design block from design block library table.
virtual void DisplayDesignBlock(DESIGN_BLOCK *aDesignBlock)=0
Set the currently displayed design block.
static wxObjectDataPtr< LIB_TREE_MODEL_ADAPTER > Create(EDA_BASE_FRAME *aParent, LIB_TABLE *aLibs, APP_SETTINGS_BASE::LIB_TREE &aSettings, TOOL_INTERACTIVE *aContextMenuTool)
Factory function: create a model adapter in a reference-counting container.
void SetLibTable(DESIGN_BLOCK_LIB_TABLE *aLibs)
int ShowModal() override
virtual APP_SETTINGS_BASE * config() const
Return the settings object used in SaveSettings(), and is overloaded in KICAD_MANAGER_FRAME.
The base class for create windows for drawing purpose.
virtual EDA_DRAW_PANEL_GAL * GetCanvas() const
Return a pointer to GAL-based canvas of given EDA draw frame.
void SetFocus() override
void MessageSet(const wxString &message)
Add a message (in bold) to message list.
void AddHTML_Text(const wxString &message)
Add HTML text (without any change) to message list.
PROJECT & Prj() const
Return a reference to the PROJECT associated with this KIWAY.
A logical library item identifier and consists of various portions much like a URI.
Definition: lib_id.h:49
bool IsValid() const
Check if this LID_ID is valid.
Definition: lib_id.h:172
A mix-in to provide polymorphism between items stored in libraries (symbols, aliases and footprints).
Definition: lib_tree_item.h:41
void SetPreselectNode(const LIB_ID &aLibId, int aUnit)
Set the symbol name to be selected if there are no search results.
Widget displaying a tree of symbols with optional search text control and description panel.
Definition: lib_tree.h:49
void CenterLibId(const LIB_ID &aLibId)
Ensure that an item is visible (preferably centered).
Definition: lib_tree.cpp:368
void ShowChangedLanguage()
Definition: lib_tree.cpp:291
void SelectLibId(const LIB_ID &aLibId)
Select an item in the tree widget.
Definition: lib_tree.cpp:362
LIB_TREE_MODEL_ADAPTER::SORT_MODE GetSortMode() const
Definition: lib_tree.h:155
wxString GetSearchString() const
Definition: lib_tree.cpp:406
void Unselect()
Unselect currently selected item in wxDataViewCtrl.
Definition: lib_tree.cpp:374
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:400
void Regenerate(bool aKeepState)
Regenerate the tree.
Definition: lib_tree.cpp:441
DESIGN_BLOCK_PREVIEW_WIDGET * m_preview
std::function< void()> m_selectHandler
void onOpenLibsTimer(wxTimerEvent &aEvent)
void addDesignBlockToHistory(const LIB_ID &aLibId)
PANEL_DESIGN_BLOCK_CHOOSER(EDA_DRAW_FRAME *aFrame, DESIGN_BLOCK_PANE *aParent, std::vector< LIB_ID > &aHistoryList, std::function< void()> aSelectHandler, TOOL_INTERACTIVE *aContextMenuTool)
Panel for using design blocks.
void SetPreselect(const LIB_ID &aPreselect)
void onCloseTimer(wxTimerEvent &aEvent)
void displayErrors(wxTopLevelWindow *aWindow)
LIB_ID GetSelectedLibId(int *aUnit=nullptr) const
To be called after this dialog returns from ShowModal().
void SetPreviewWidget(DESIGN_BLOCK_PREVIEW_WIDGET *aPreview)
void RefreshLibs(bool aProgress=false)
wxObjectDataPtr< LIB_TREE_MODEL_ADAPTER > m_adapter
void onDesignBlockSelected(wxCommandEvent &aEvent)
void onDesignBlockChosen(wxCommandEvent &aEvent)
Handle the selection of an item.
void SelectLibId(const LIB_ID &aLibId)
virtual DESIGN_BLOCK_LIB_TABLE * DesignBlockLibs()
Return the table of design block libraries.
Definition: project.cpp:429
Multi-thread safe progress reporter dialog, intended for use of tasks that parallel reporting back of...
#define _(s)
STL namespace.
see class PGM_BASE
wxString EscapeHTML(const wxString &aString)
Return a new wxString escaped for embedding in HTML.