KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
lib_tree.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) 2014 Henner Zeller <h.zeller@acm.org>
5 * Copyright The 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#ifndef LIB_TREE_H
26#define LIB_TREE_H
27
28#include <wx/panel.h>
29#include <wx/timer.h>
31#include <widgets/html_window.h>
33
34class wxTextCtrl;
35class wxHtmlLinkEvent;
36class wxSearchCtrl;
37class wxTimer;
38class wxTimerEvent;
39class wxPopupWindow;
41class ACTION_MENU;
42class LIB_ID;
43class LIB_TABLE;
44
48class LIB_TREE : public wxPanel
49{
50public:
52 enum FLAGS
53 {
54 FLAGS_NONE = 0x00,
55 SEARCH = 0x01,
56 FILTERS = 0x02,
57 DETAILS = 0x04,
59 MULTISELECT = 0x10
60 };
61
74 LIB_TREE( wxWindow* aParent, const wxString& aRecentSearchesKey, LIB_TABLE* aLibTable,
75 wxObjectDataPtr<LIB_TREE_MODEL_ADAPTER>& aAdapter, int aFlags = ALL_WIDGETS,
76 HTML_WINDOW* aDetails = nullptr );
77
78 ~LIB_TREE() override;
79
89 LIB_ID GetSelectedLibId( int* aUnit = nullptr ) const;
90
92 {
93 return m_tree_ctrl->GetSelectedItemsCount();
94 }
95
104 int GetSelectedLibIds( std::vector<LIB_ID>& aSelection,
105 std::vector<int>* aUnit = nullptr ) const;
106
113
120 int GetSelectedTreeNodes( std::vector<LIB_TREE_NODE*>& aSelection ) const;
121
125 void SelectLibId( const LIB_ID& aLibId );
126
130 void CenterLibId( const LIB_ID& aLibId );
131
135 void Unselect();
136
140 void ExpandLibId( const LIB_ID& aLibId );
141
142 void ExpandAll();
143 void CollapseAll();
144
148 void SetSearchString( const wxString& aSearchString );
149 wxString GetSearchString() const;
150
154 void SetSortMode( LIB_TREE_MODEL_ADAPTER::SORT_MODE aMode ) { m_adapter->SetSortMode( aMode ); }
155 LIB_TREE_MODEL_ADAPTER::SORT_MODE GetSortMode() const { return m_adapter->GetSortMode(); }
156
160 void Regenerate( bool aKeepState );
161
165 void RefreshLibTree();
166
167 wxWindow* GetFocusTarget();
168
169 wxSizer* GetFiltersSizer() { return m_filtersSizer; }
170
175
176 void ShowChangedLanguage();
177
178 void BlockPreview( bool aBlock )
179 {
180 m_previewDisabled = aBlock;
181 }
182
183protected:
187 void toggleExpand( const wxDataViewItem& aTreeId );
188
192 void selectIfValid( const wxDataViewItem& aTreeId );
193
194 void centerIfValid( const wxDataViewItem& aTreeId );
195
196 void expandIfValid( const wxDataViewItem& aTreeId );
197
202 void postPreselectEvent();
203
207 void postSelectEvent();
208
212 struct STATE
213 {
215 std::vector<wxDataViewItem> expanded;
216
219 };
220
224 STATE getState() const;
225
229 void setState( const STATE& aState );
230
232
233 void showPreview( wxDataViewItem aItem );
234 void hidePreview();
235 void destroyPreview();
236
237 void onQueryText( wxCommandEvent& aEvent );
238 void onQueryCharHook( wxKeyEvent& aEvent );
239 void onQueryMouseMoved( wxMouseEvent& aEvent );
240
241 void onTreeSelect( wxDataViewEvent& aEvent );
242 void onTreeActivate( wxDataViewEvent& aEvent );
243 void onTreeCharHook( wxKeyEvent& aEvent );
244
245 void onIdle( wxIdleEvent& aEvent );
246 void onHoverTimer( wxTimerEvent& aEvent );
247
248 void onDetailsLink( wxHtmlLinkEvent& aEvent );
249 void onPreselect( wxCommandEvent& aEvent );
250 void onItemContextMenu( wxDataViewEvent& aEvent );
251 void onHeaderContextMenu( wxDataViewEvent& aEvent );
252
253 void onDebounceTimer( wxTimerEvent& aEvent );
254
255protected:
256 wxObjectDataPtr<LIB_TREE_MODEL_ADAPTER> m_adapter;
257
258 wxSearchCtrl* m_query_ctrl;
264
266
267 wxBoxSizer* m_filtersSizer;
268
270
271 wxPoint m_hoverPos;
272 wxDataViewItem m_hoverItem;
275 wxDataViewItem m_previewItem;
277 wxPopupWindow* m_previewWindow;
279};
280
282wxDECLARE_EVENT( EVT_LIBITEM_SELECTED, wxCommandEvent );
283
285wxDECLARE_EVENT( EVT_LIBITEM_CHOSEN, wxCommandEvent );
286
287#endif /* LIB_TREE_H */
Define the structure of a menu based on ACTIONs.
Definition: action_menu.h:49
Add dark theme support to wxHtmlWindow.
Definition: html_window.h:35
A logical library item identifier and consists of various portions much like a URI.
Definition: lib_id.h:49
Manage LIB_TABLE_ROW records (rows), and can be searched based on library nickname.
Model class in the component selector Model-View-Adapter (mediated MVC) architecture.
Widget displaying a tree of symbols with optional search text control and description panel.
Definition: lib_tree.h:49
wxRect m_previewItemRect
Definition: lib_tree.h:276
void RefreshLibTree()
Refresh the tree (mainly to update highlighting and asterisking)
Definition: lib_tree.cpp:459
wxPoint m_hoverPos
Definition: lib_tree.h:271
wxTimer * m_debounceTimer
Definition: lib_tree.h:262
void onHoverTimer(wxTimerEvent &aEvent)
Definition: lib_tree.cpp:827
LIB_TREE_NODE * GetCurrentTreeNode() const
Retrieve the tree node for the first selected item.
Definition: lib_tree.cpp:338
void onQueryMouseMoved(wxMouseEvent &aEvent)
Definition: lib_tree.cpp:706
wxDataViewItem m_previewItem
Definition: lib_tree.h:275
HTML_WINDOW * m_details_ctrl
Definition: lib_tree.h:261
void onTreeActivate(wxDataViewEvent &aEvent)
Definition: lib_tree.cpp:890
wxString m_recentSearchesKey
Definition: lib_tree.h:265
void onQueryCharHook(wxKeyEvent &aEvent)
Definition: lib_tree.cpp:626
void CenterLibId(const LIB_ID &aLibId)
Ensure that an item is visible (preferably centered).
Definition: lib_tree.cpp:368
void postSelectEvent()
Post #SYMBOL_SELECTED event to notify the selection handler that a part has been selected.
Definition: lib_tree.cpp:567
wxWindow * GetFocusTarget()
Definition: lib_tree.cpp:465
int GetSelectionCount() const
Definition: lib_tree.h:91
void onItemContextMenu(wxDataViewEvent &aEvent)
Definition: lib_tree.cpp:933
void destroyPreview()
Definition: lib_tree.cpp:760
void ShowChangedLanguage()
Definition: lib_tree.cpp:291
WX_DATAVIEWCTRL * m_tree_ctrl
Definition: lib_tree.h:260
void onQueryText(wxCommandEvent &aEvent)
Definition: lib_tree.cpp:608
void toggleExpand(const wxDataViewItem &aTreeId)
Expand or collapse a node, switching it to the opposite state.
Definition: lib_tree.cpp:481
int GetSelectedTreeNodes(std::vector< LIB_TREE_NODE * > &aSelection) const
Retrieve a list of pointers to selected tree nodes for trees that allow multi-selection.
Definition: lib_tree.cpp:348
wxSizer * GetFiltersSizer()
Definition: lib_tree.h:169
bool m_skipNextRightClick
Definition: lib_tree.h:269
bool m_inTimerEvent
Definition: lib_tree.h:263
void selectIfValid(const wxDataViewItem &aTreeId)
If a wxDataViewitem is valid, select it and post a selection event.
Definition: lib_tree.cpp:493
void onIdle(wxIdleEvent &aEvent)
Definition: lib_tree.cpp:772
void FocusSearchFieldIfExists()
Focus the search widget if it exists.
Definition: lib_tree.cpp:474
void expandIfValid(const wxDataViewItem &aTreeId)
Definition: lib_tree.cpp:553
void onPreselect(wxCommandEvent &aEvent)
Definition: lib_tree.cpp:914
wxPopupWindow * m_previewWindow
Definition: lib_tree.h:277
void SelectLibId(const LIB_ID &aLibId)
Select an item in the tree widget.
Definition: lib_tree.cpp:362
void updateRecentSearchMenu()
Definition: lib_tree.cpp:412
void hidePreview()
Definition: lib_tree.cpp:751
LIB_TREE_MODEL_ADAPTER::SORT_MODE GetSortMode() const
Definition: lib_tree.h:155
void showPreview(wxDataViewItem aItem)
Definition: lib_tree.cpp:727
wxString GetSearchString() const
Definition: lib_tree.cpp:406
void onTreeSelect(wxDataViewEvent &aEvent)
Definition: lib_tree.cpp:878
int GetSelectedLibIds(std::vector< LIB_ID > &aSelection, std::vector< int > *aUnit=nullptr) const
Retrieve a list of selections for trees that allow multi-selection.
Definition: lib_tree.cpp:321
wxTimer m_hoverTimer
Definition: lib_tree.h:274
void postPreselectEvent()
Post a wxEVT_DATAVIEW_SELECTION_CHANGED to notify the selection handler that a new part has been pres...
Definition: lib_tree.cpp:560
void Unselect()
Unselect currently selected item in wxDataViewCtrl.
Definition: lib_tree.cpp:374
void onTreeCharHook(wxKeyEvent &aEvent)
Definition: lib_tree.cpp:852
void onDetailsLink(wxHtmlLinkEvent &aEvent)
Definition: lib_tree.cpp:904
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
FLAGS
< Flags to select extra widgets and options
Definition: lib_tree.h:53
@ MULTISELECT
Definition: lib_tree.h:59
@ FILTERS
Definition: lib_tree.h:56
@ DETAILS
Definition: lib_tree.h:57
@ ALL_WIDGETS
Definition: lib_tree.h:58
@ FLAGS_NONE
Definition: lib_tree.h:54
@ SEARCH
Definition: lib_tree.h:55
void ExpandAll()
Definition: lib_tree.cpp:388
wxBoxSizer * m_filtersSizer
Definition: lib_tree.h:267
wxDataViewItem m_hoverItem
Definition: lib_tree.h:272
~LIB_TREE() override
Definition: lib_tree.cpp:253
void SetSearchString(const wxString &aSearchString)
Save/restore search string.
Definition: lib_tree.cpp:400
void setState(const STATE &aState)
Restore the symbol tree widget state from an object.
Definition: lib_tree.cpp:592
STATE getState() const
Return the symbol tree widget state.
Definition: lib_tree.cpp:574
bool m_previewDisabled
Definition: lib_tree.h:278
void ExpandLibId(const LIB_ID &aLibId)
Expand and item i the tree widget.
Definition: lib_tree.cpp:382
void BlockPreview(bool aBlock)
Definition: lib_tree.h:178
wxSearchCtrl * m_query_ctrl
Definition: lib_tree.h:258
void CollapseAll()
Definition: lib_tree.cpp:394
void centerIfValid(const wxDataViewItem &aTreeId)
Definition: lib_tree.cpp:505
void onDebounceTimer(wxTimerEvent &aEvent)
Definition: lib_tree.cpp:618
wxRect m_hoverItemRect
Definition: lib_tree.h:273
STD_BITMAP_BUTTON * m_sort_ctrl
Definition: lib_tree.h:259
void onHeaderContextMenu(wxDataViewEvent &aEvent)
Definition: lib_tree.cpp:999
void Regenerate(bool aKeepState)
Regenerate the tree.
Definition: lib_tree.cpp:441
wxObjectDataPtr< LIB_TREE_MODEL_ADAPTER > m_adapter
Definition: lib_tree.h:256
void SetSortMode(LIB_TREE_MODEL_ADAPTER::SORT_MODE aMode)
Save/restore the sorting mode.
Definition: lib_tree.h:154
A bitmap button widget that behaves like a standard dialog button except with an icon.
Extension of the wxDataViewCtrl to include some helper functions for working with items.
wxDECLARE_EVENT(EVT_LIBITEM_SELECTED, wxCommandEvent)
Custom event sent when an item is selected in the list.
Structure storing state of the symbol tree widget.
Definition: lib_tree.h:213
LIB_ID selection
Current selection, might be not valid if nothing was selected.
Definition: lib_tree.h:218
std::vector< wxDataViewItem > expanded
List of expanded nodes.
Definition: lib_tree.h:215