KiCad PCB EDA Suite
Loading...
Searching...
No Matches
fp_tree_synchronizing_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 CERN
5 * @author Maciej Suminski <[email protected]>
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 3
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 * https://www.gnu.org/licenses/gpl-3.0.html
20 * or you may search the http://www.gnu.org website for the version 3 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 FP_TREE_SYNCHRONIZING_ADAPTER_H
26#define FP_TREE_SYNCHRONIZING_ADAPTER_H
27
29#include <set>
30
32
34{
35public:
36 static wxObjectDataPtr<LIB_TREE_MODEL_ADAPTER> Create( FOOTPRINT_EDIT_FRAME* aFrame,
37 FP_LIB_TABLE* aLibs );
38
39 bool IsContainer( const wxDataViewItem& aItem ) const override;
40
41 void Sync( FP_LIB_TABLE* aLibs );
42
43 int GetLibrariesCount() const override;
44
46
47 wxDataViewItem GetCurrentDataViewItem() override;
48
49 virtual bool HasPreview( const wxDataViewItem& aItem ) override;
50 virtual void ShowPreview( wxWindow* aParent, const wxDataViewItem& aItem ) override;
51
52protected:
54
55 void updateLibrary( LIB_TREE_NODE_LIBRARY& aLibNode );
56
57 LIB_TREE_NODE::PTR_VECTOR::iterator deleteLibrary( LIB_TREE_NODE::PTR_VECTOR::iterator& aLibNodeIt );
58
59 void GetValue( wxVariant& aVariant, wxDataViewItem const& aItem,
60 unsigned int aCol ) const override;
61 bool GetAttr( wxDataViewItem const& aItem, unsigned int aCol,
62 wxDataViewItemAttr& aAttr ) const override;
63
64protected:
66 std::set<wxString> m_libMap; // Set to indicate libraries currently in tree
67};
68
69#endif /* FP_TREE_SYNCHRONIZING_ADAPTER_H */
virtual bool HasPreview(const wxDataViewItem &aItem) override
bool GetAttr(wxDataViewItem const &aItem, unsigned int aCol, wxDataViewItemAttr &aAttr) const override
void updateLibrary(LIB_TREE_NODE_LIBRARY &aLibNode)
wxDataViewItem GetCurrentDataViewItem() override
int GetLibrariesCount() const override
Return the number of libraries loaded in the tree.
bool IsContainer(const wxDataViewItem &aItem) const override
static wxObjectDataPtr< LIB_TREE_MODEL_ADAPTER > Create(FOOTPRINT_EDIT_FRAME *aFrame, FP_LIB_TABLE *aLibs)
LIB_TREE_NODE::PTR_VECTOR::iterator deleteLibrary(LIB_TREE_NODE::PTR_VECTOR::iterator &aLibNodeIt)
TOOL_INTERACTIVE * GetContextMenuTool() override
virtual void ShowPreview(wxWindow *aParent, const wxDataViewItem &aItem) override
void GetValue(wxVariant &aVariant, wxDataViewItem const &aItem, unsigned int aCol) const override
Node type: library.