42#include <wx/splitter.h>
53 std::vector<LIB_ID>& aHistoryList,
54 std::function<
void()> aSelectHandler,
57 wxPanel( aParent, wxID_ANY, wxDefaultPosition, wxDefaultSize ),
58 m_dbl_click_timer( nullptr ),
59 m_open_libs_timer( nullptr ),
60 m_vsplitter( nullptr ),
65 m_selectHandler(
std::
move( aSelectHandler ) ),
66 m_historyList( aHistoryList )
80 delete progressReporter;
92 wxBoxSizer* sizer =
new wxBoxSizer( wxVERTICAL );
94 m_vsplitter =
new wxSplitterWindow(
this, wxID_ANY, wxDefaultPosition, wxDefaultSize,
95 wxSP_LIVE_UPDATE | wxSP_NOBORDER | wxSP_3DSASH );
102 wxBoxSizer* treeSizer =
new wxBoxSizer( wxVERTICAL );
103 treePanel->SetSizer( treeSizer );
121 treeSizer->Add(
m_tree, 1, wxEXPAND, 5 );
123 treeSizer->Fit( treePanel );
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();
198 if( aEvent.GetKeyCode() == WXK_ESCAPE )
200 wxObject* eventSource = aEvent.GetEventObject();
202 if( wxTextCtrl* textCtrl =
dynamic_cast<wxTextCtrl*
>( eventSource ) )
223 auto horizPixelsFromDU =
227 return GetParent()->ConvertDialogToPixels( sz ).x;
232 int w = panelCfg.
width > 40 ? panelCfg.
width : horizPixelsFromDU( 440 );
233 int h = panelCfg.
height > 40 ? panelCfg.
height : horizPixelsFromDU( 340 );
235 GetParent()->SetSize( wxSize( w, h ) );
236 GetParent()->Layout();
242 panelCfg.
sash_pos_h = horizPixelsFromDU( 220 );
245 panelCfg.
sash_pos_v = horizPixelsFromDU( 230 );
275 progressReporter.Show(
false );
295 m_adapter->SetPreselectNode( aPreselect, 0 );
317 wxMouseState state = wxGetMouseState();
319 if( state.LeftIsDown() )
337 m_adapter->OpenLibs( cfg->m_LibTree.open_libs );
401 std::vector<LIB_TREE_ITEM*> historyInfos;
406 lib.GetLibItemName() );
409 if( fp_info !=
nullptr )
410 historyInfos.push_back( fp_info );
413 m_adapter->DoAddLibrary( wxT(
"-- " ) +
_(
"Recently Used" ) + wxT(
" --" ), wxEmptyString,
414 historyInfos,
false,
true )
415 .m_IsRecentlyUsedGroup =
true;
427 dlg.
MessageSet(
_(
"Errors were encountered loading design blocks:" ) );
433 wxString tmp =
EscapeHTML( error->Problem() );
436 tmp.Replace( wxS(
"\n" ), wxS(
"<BR>" ) );
437 msg += wxT(
"<p>" ) + tmp + wxT(
"</p>" );
APP_SETTINGS_BASE is a settings class that should be derived for each standalone KiCad application.
PANEL_DESIGN_BLOCK_CHOOSER m_DesignBlockChooserPanel
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.
void AddLibraries(EDA_BASE_FRAME *aParent)
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)
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 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.
bool IsValid() const
Check if this LID_ID is valid.
A mix-in to provide polymorphism between items stored in libraries (symbols, aliases and footprints).
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.
void CenterLibId(const LIB_ID &aLibId)
Ensure that an item is visible (preferably centered).
void ShowChangedLanguage()
void SelectLibId(const LIB_ID &aLibId)
Select an item in the tree widget.
LIB_TREE_MODEL_ADAPTER::SORT_MODE GetSortMode() const
wxString GetSearchString() const
void Unselect()
Unselect currently selected item in wxDataViewCtrl.
LIB_ID GetSelectedLibId(int *aUnit=nullptr) const
For multi-unit symbols, if the user selects the symbol itself rather than picking an individual unit,...
void SetSearchString(const wxString &aSearchString)
Save/restore search string.
void Regenerate(bool aKeepState)
Regenerate the tree.
static wxString g_designBlockSearchString
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.
wxTimer * m_dbl_click_timer
DESIGN_BLOCK_PANE * m_parent
void SetPreselect(const LIB_ID &aPreselect)
void onCloseTimer(wxTimerEvent &aEvent)
wxSplitterWindow * m_vsplitter
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 OnChar(wxKeyEvent &aEvent)
wxBoxSizer * m_detailsSizer
static constexpr int DBLCLICK_DELAY
~PANEL_DESIGN_BLOCK_CHOOSER()
void rebuildHistoryNode()
void ShowChangedLanguage()
void RefreshLibs(bool aProgress=false)
std::vector< LIB_ID > m_historyList
wxObjectDataPtr< LIB_TREE_MODEL_ADAPTER > m_adapter
wxTimer * m_open_libs_timer
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.
Multi-thread safe progress reporter dialog, intended for use of tasks that parallel reporting back of...
wxString EscapeHTML(const wxString &aString)
Return a new wxString escaped for embedding in HTML.