KiCad PCB EDA Suite
Loading...
Searching...
No Matches
lib_tree_model_adapter.h
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) 2017 Chris Pavlina <[email protected]>
5 * Copyright (C) 2014 Henner Zeller <[email protected]>
6 * Copyright (C) 2023 CERN
7 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
8 *
9 * This program is free software: you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the
11 * Free Software Foundation, either version 3 of the License, or (at your
12 * option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program. If not, see <https://www.gnu.org/licenses/>.
21 */
22
23#ifndef LIB_TREE_MODEL_ADAPTER_H
24#define LIB_TREE_MODEL_ADAPTER_H
25
26#include <lib_id.h>
27#include <lib_tree_model.h>
29#include <wx/hashmap.h>
30#include <wx/dataview.h>
31#include <wx/headerctrl.h>
32#include <vector>
33#include <functional>
34#include <set>
35#include <map>
36
94
95#include <project.h>
96
97;
98class TOOL_DISPATCHER;
100class EDA_BASE_FRAME;
101
102
103class LIB_TREE_MODEL_ADAPTER: public wxDataViewModel
104{
105public:
110 static const wxString GetPinningSymbol()
111 {
112 return wxString::FromUTF8( "☆ " );
113 }
114
117 static constexpr int MAX_COL_WIDTH = 100000;
118
122 static bool IsValidColumnWidth( int aWidth );
123
124public:
130
140
146
151 void SaveSettings();
152
156 void SetFilter( std::function<bool( LIB_TREE_NODE& aNode )>* aFilter ) { m_filter = aFilter; }
157
161 std::function<bool( LIB_TREE_NODE& aNode )>* GetFilter() const { return m_filter; }
162
163 void SetSortMode( SORT_MODE aMode ) { m_sort_mode = aMode; }
165
172 void ShowUnits( bool aShow );
173
181 void SetPreselectNode( const LIB_ID& aLibId, int aUnit );
182
191 LIB_TREE_NODE_LIBRARY& DoAddLibrary( const wxString& aNodeName, const wxString& aDesc,
192 const std::vector<LIB_TREE_ITEM*>& aItemList,
193 bool pinned, bool presorted );
194
198 void RemoveGroup( bool aRecentlyUsedGroup, bool aAlreadyPlacedGroup );
199
200 std::vector<wxString> GetAvailableColumns() const { return m_availableColumns; }
201
202 std::vector<wxString> GetShownColumns() const { return m_shownColumns; }
203
204 std::vector<wxString> GetOpenLibs() const;
205 void OpenLibs( const std::vector<wxString>& aLibs );
206
208 void RegisterLazyLoadHandler( std::function<void()>&& aHandler )
209 {
210 m_lazyLoadHandler = aHandler;
211 }
212
217 void SetShownColumns( const std::vector<wxString>& aColumnNames );
218
223 {
224 m_tree.AssignIntrinsicRanks( m_shownColumns );
225
226 for( const std::unique_ptr<LIB_TREE_NODE>& child : m_tree.m_Children )
227 child->AssignIntrinsicRanks( m_shownColumns );
228 }
229
236 void UpdateSearchString( const wxString& aSearch, bool aState );
237
244 void AttachTo( wxDataViewCtrl* aDataViewCtrl );
245
251
260 LIB_ID GetAliasFor( const wxDataViewItem& aSelection ) const;
261
271 int GetUnitFor( const wxDataViewItem& aSelection ) const;
272
281 LIB_TREE_NODE::TYPE GetTypeFor( const wxDataViewItem& aSelection ) const;
282
283 LIB_TREE_NODE* GetTreeNodeFor( const wxDataViewItem& aSelection ) const;
284
285 virtual wxString GenerateInfo( const LIB_ID& aLibId, int aUnit ) { return wxEmptyString; }
286
287 virtual bool HasPreview( const wxDataViewItem& aItem ) { return false; }
288 virtual void ShowPreview( wxWindow* aParent, const wxDataViewItem& aItem ) {}
289 virtual void ShutdownPreview( wxWindow* aParent ) {}
290
292
296 int GetItemCount() const;
297
301 virtual int GetLibrariesCount() const
302 {
303 return (int) m_tree.m_Children.size();
304 }
305
312 wxDataViewItem FindItem( const LIB_ID& aLibId );
313
314 virtual wxDataViewItem GetCurrentDataViewItem();
315
321 unsigned int GetChildren( const wxDataViewItem& aItem, wxDataViewItemArray& aChildren ) const override;
322
323 // Freezing/Thawing. Used when updating the table model so that we don't try and fetch
324 // values during updating. Primarily a problem on OSX which doesn't pay attention to the
325 // wxDataViewCtrl's freeze count when updating the keyWindow.
326 void Freeze() { m_freeze++; }
327 void Thaw() { m_freeze--; }
328 bool IsFrozen() const { return m_freeze; }
329
330 void RefreshTree();
331
332 // Allows subclasses to nominate a context menu handler.
333 virtual TOOL_INTERACTIVE* GetContextMenuTool() { return nullptr; }
334
335 void PinLibrary( LIB_TREE_NODE* aTreeNode );
336 void UnpinLibrary( LIB_TREE_NODE* aTreeNode );
337
338 void ShowChangedLanguage();
339
340protected:
344 static wxDataViewItem ToItem( const LIB_TREE_NODE* aNode );
345
349 static LIB_TREE_NODE* ToNode( wxDataViewItem aItem );
350
358 LIB_TREE_MODEL_ADAPTER( EDA_BASE_FRAME* aParent, const wxString& aPinnedKey,
359 APP_SETTINGS_BASE::LIB_TREE& aSettingsStruct );
360
361 LIB_TREE_NODE_LIBRARY& DoAddLibraryNode( const wxString& aNodeName, const wxString& aDesc,
362 bool pinned );
363
364 virtual void loadColumnConfig();
365
369 bool HasContainerColumns( const wxDataViewItem& aItem ) const override;
370
374 bool IsContainer( const wxDataViewItem& aItem ) const override;
375
381 wxDataViewItem GetParent( const wxDataViewItem& aItem ) const override;
382
383 unsigned int GetColumnCount() const override { return m_columns.size(); }
384
388 wxString GetColumnType( unsigned int aCol ) const override { return "string"; }
389
397 void GetValue( wxVariant& aVariant, const wxDataViewItem& aItem, unsigned int aCol ) const override;
398
402 bool SetValue( const wxVariant& aVariant, const wxDataViewItem& aItem, unsigned int aCol ) override
403 {
404 return false;
405 }
406
415 bool GetAttr( const wxDataViewItem& aItem, unsigned int aCol, wxDataViewItemAttr& aAttr ) const override;
416
418
419 void resortTree();
420
428 {
429 public:
430 explicit ResetTreeView( LIB_TREE_MODEL_ADAPTER& aAdapter ) :
431 m_adapter( aAdapter )
432 {
433 m_adapter.Freeze();
434 m_adapter.BeforeReset();
435 }
436
438 {
439 m_adapter.AfterReset();
440 m_adapter.Thaw();
441 }
442
443 ResetTreeView( const ResetTreeView& ) = delete;
445
446 private:
448 };
449
450private:
454 const LIB_TREE_NODE* showResults();
455
456 wxDataViewColumn* doAddColumn( const wxString& aHeader, bool aTranslate = true );
457
458protected:
459 void addColumnIfNecessary( const wxString& aHeader );
460
461 void recreateColumns();
463
464protected:
467
469 std::map<unsigned, wxString> m_colIdxMap;
470 std::vector<wxString> m_availableColumns;
471 std::map<wxString, int> m_colWidths;
472 std::vector<wxString> m_shownColumns; // Stored in display order
473 wxDataViewCtrl* m_widget;
474 std::function<void()> m_lazyLoadHandler;
475
476private:
482
483 std::function<bool( LIB_TREE_NODE& aNode )>* m_filter;
484
485 std::vector<wxDataViewColumn*> m_columns;
486 std::map<wxString, wxDataViewColumn*> m_colNameMap;
487};
488
489#endif // LIB_TREE_MODEL_ADAPTER_H
490
The base frame for deriving all KiCad main window classes.
A logical library item identifier and consists of various portions much like a URI.
Definition lib_id.h:45
ResetTreeView(const ResetTreeView &)=delete
ResetTreeView(LIB_TREE_MODEL_ADAPTER &aAdapter)
ResetTreeView & operator=(const ResetTreeView &)=delete
wxString GetColumnType(unsigned int aCol) const override
Return the type of data stored in the column as indicated by wxVariant::GetType()
LIB_TREE_MODEL_ADAPTER(EDA_BASE_FRAME *aParent, const wxString &aPinnedKey, APP_SETTINGS_BASE::LIB_TREE &aSettingsStruct)
Create the adapter.
std::vector< wxString > GetOpenLibs() const
int GetUnitFor(const wxDataViewItem &aSelection) const
Return the unit for the given item.
static bool IsValidColumnWidth(int aWidth)
LIB_TREE_NODE::TYPE GetTypeFor(const wxDataViewItem &aSelection) const
Return node type for the given item.
void SetSortMode(SORT_MODE aMode)
APP_SETTINGS_BASE::LIB_TREE & m_cfg
bool GetAttr(const wxDataViewItem &aItem, unsigned int aCol, wxDataViewItemAttr &aAttr) const override
Get any formatting for an item.
std::map< wxString, int > m_colWidths
const LIB_TREE_NODE * showResults()
Find and expand successful search results.
void FinishTreeInitialization()
A final-stage initialization to be called after the window hierarchy has been realized and the window...
void addColumnIfNecessary(const wxString &aHeader)
void PinLibrary(LIB_TREE_NODE *aTreeNode)
virtual PROJECT::LIB_TYPE_T getLibType()=0
virtual void ShutdownPreview(wxWindow *aParent)
virtual TOOL_INTERACTIVE * GetContextMenuTool()
virtual wxString GenerateInfo(const LIB_ID &aLibId, int aUnit)
void RegisterLazyLoadHandler(std::function< void()> &&aHandler)
Registers a function to be called whenever new lazy-loaded library content is available.
virtual wxDataViewItem GetCurrentDataViewItem()
void SetPreselectNode(const LIB_ID &aLibId, int aUnit)
Set the symbol name to be selected if there are no search results.
static LIB_TREE_NODE * ToNode(wxDataViewItem aItem)
Convert wxDataViewItem -> #SYM_TREE_NODE.
LIB_ID GetAliasFor(const wxDataViewItem &aSelection) const
Return the alias for the given item.
TOOL_DISPATCHER * GetToolDispatcher() const
void AttachTo(wxDataViewCtrl *aDataViewCtrl)
Attach to a wxDataViewCtrl and initialize it.
void SetShownColumns(const std::vector< wxString > &aColumnNames)
Sets which columns are shown in the widget.
std::function< void()> m_lazyLoadHandler
static wxDataViewItem ToItem(const LIB_TREE_NODE *aNode)
Convert #SYM_TREE_NODE -> wxDataViewItem.
bool IsContainer(const wxDataViewItem &aItem) const override
Check whether an item can have children.
static const wxString GetPinningSymbol()
void AssignIntrinsicRanks()
Sort the tree and assign ranks after adding libraries.
void ShowUnits(bool aShow)
Whether or not to show units.
LIB_TREE_NODE * GetTreeNodeFor(const wxDataViewItem &aSelection) const
unsigned int GetChildren(const wxDataViewItem &aItem, wxDataViewItemArray &aChildren) const override
Populate a list of all the children of an item.
void SaveSettings()
Save the column widths to the config file.
TREE_COLS
This enum defines the order of the default columns in the tree view.
@ NUM_COLS
The number of default tree columns.
@ NAME_COL
Library or library item name column.
@ DESC_COL
Library or library description column.
std::function< bool(LIB_TREE_NODE &aNode)> * GetFilter() const
Return the active filter.
std::map< unsigned, wxString > m_colIdxMap
wxDataViewColumn * doAddColumn(const wxString &aHeader, bool aTranslate=true)
virtual bool HasPreview(const wxDataViewItem &aItem)
std::vector< wxDataViewColumn * > m_columns
virtual int GetLibrariesCount() const
Return the number of libraries loaded in the tree.
std::vector< wxString > GetShownColumns() const
int GetItemCount() const
Return the number of symbols loaded in the tree.
std::vector< wxString > m_shownColumns
void RemoveGroup(bool aRecentlyUsedGroup, bool aAlreadyPlacedGroup)
Remove one of the system groups from the library.
void GetValue(wxVariant &aVariant, const wxDataViewItem &aItem, unsigned int aCol) const override
Get the value of an item.
void UnpinLibrary(LIB_TREE_NODE *aTreeNode)
std::map< wxString, wxDataViewColumn * > m_colNameMap
bool HasContainerColumns(const wxDataViewItem &aItem) const override
Check whether a container has columns too.
bool SetValue(const wxVariant &aVariant, const wxDataViewItem &aItem, unsigned int aCol) override
Set the value of an item.
wxDataViewItem GetParent(const wxDataViewItem &aItem) const override
Get the parent of an item.
LIB_TREE_NODE_LIBRARY & DoAddLibraryNode(const wxString &aNodeName, const wxString &aDesc, bool pinned)
std::vector< wxString > m_availableColumns
unsigned int GetColumnCount() const override
std::vector< wxString > GetAvailableColumns() const
static constexpr int MAX_COL_WIDTH
Upper bound for a persisted column width; larger values are treated as corrupt settings.
virtual void ShowPreview(wxWindow *aParent, const wxDataViewItem &aItem)
LIB_TREE_NODE_LIBRARY & 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 SetFilter(std::function< bool(LIB_TREE_NODE &aNode)> *aFilter)
Set the filter.
wxDataViewItem FindItem(const LIB_ID &aLibId)
Returns tree item corresponding to part.
void UpdateSearchString(const wxString &aSearch, bool aState)
Set the search string provided by the user.
std::function< bool(LIB_TREE_NODE &aNode)> * m_filter
void OpenLibs(const std::vector< wxString > &aLibs)
Node type: library.
Node type: root.
Model class in the component selector Model-View-Adapter (mediated MVC) architecture.