KiCad PCB EDA Suite
Loading...
Searching...
No Matches
panel_sym_lib_table.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 Wayne Stambaugh <[email protected]>
5 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation, either version 3 of the License, or (at your
10 * option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program. If not, see <http://www.gnu.org/licenses/>.
19 */
20
21#pragma once
22
23#include <grid_tricks.h>
27#include <sch_io/sch_io_mgr.h>
28#include <io/io_base.h>
29
30
31class LIBRARY_TABLE;
33
38{
39
40public:
42 virtual ~PANEL_SYM_LIB_TABLE();
43
44 bool TransferDataToWindow() override;
45 bool TransferDataFromWindow() override;
46
47 void AddTable( LIBRARY_TABLE* table, const wxString& aTitle, bool aClosable );
48 void OpenTable( const std::shared_ptr<LIBRARY_TABLE>& table, const wxString& aTitle );
49
50private:
56 bool verifyTables();
57
58 void browseLibrariesHandler( wxCommandEvent& event ) override;
59 void appendRowHandler( wxCommandEvent& event ) override;
60 void deleteRowHandler( wxCommandEvent& event ) override;
61 void moveUpHandler( wxCommandEvent& event ) override;
62 void moveDownHandler( wxCommandEvent& event ) override;
63 void onSizeGrid( wxSizeEvent& event ) override;
64 void adjustPathSubsGridColumns( int aWidth );
65 void onConvertLegacyLibraries( wxCommandEvent& event ) override;
66
67 void onNotebookPageCloseRequest( wxAuiNotebookEvent& aEvent );
68
69 void onPageChange( wxAuiNotebookEvent& event ) override;
70 void onReset( wxCommandEvent& event ) override;
71
75
76 void populatePluginList();
77
79 SYMBOL_LIB_TABLE_GRID_DATA_MODEL* cur_model() const { return get_model( m_notebook->GetSelection() ); }
80
81 WX_GRID* get_grid( int aPage ) const;
82 WX_GRID* cur_grid() const { return get_grid( m_notebook->GetSelection() ); }
83
84private:
87 wxArrayString m_pluginChoices;
88
89 wxString m_lastProjectLibDir; //< Transient (unsaved) last browsed folder when adding a
90 // project level library.
91
92 std::vector<std::shared_ptr<LIBRARY_TABLE>> m_nestedTables;
93
94 std::map<SCH_IO_MGR::SCH_FILE_T, IO_BASE::IO_FILE_DESC> m_supportedSymFiles;
95};
96
97
98void InvokeSchEditSymbolLibTable( KIWAY* aKiway, wxWindow *aParent );
A minimalistic software bus for communications between various DLLs/DSOs (DSOs) within the same KiCad...
Definition kiway.h:294
PANEL_SYM_LIB_TABLE_BASE(wxWindow *parent, wxWindowID id=wxID_ANY, const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxSize(-1,-1), long style=wxTAB_TRAVERSAL, const wxString &name=wxEmptyString)
void moveUpHandler(wxCommandEvent &event) override
SYMBOL_LIB_TABLE_GRID_DATA_MODEL * get_model(int aPage) const
void onReset(wxCommandEvent &event) override
void deleteRowHandler(wxCommandEvent &event) override
WX_GRID * get_grid(int aPage) const
void onNotebookPageCloseRequest(wxAuiNotebookEvent &aEvent)
void onPageChange(wxAuiNotebookEvent &event) override
void browseLibrariesHandler(wxCommandEvent &event) override
void AddTable(LIBRARY_TABLE *table, const wxString &aTitle, bool aClosable)
bool verifyTables()
Trim important fields, removes blank row entries, and checks for duplicates.
void adjustPathSubsGridColumns(int aWidth)
void OpenTable(const std::shared_ptr< LIBRARY_TABLE > &table, const wxString &aTitle)
void onSizeGrid(wxSizeEvent &event) override
std::vector< std::shared_ptr< LIBRARY_TABLE > > m_nestedTables
void onConvertLegacyLibraries(wxCommandEvent &event) override
std::map< SCH_IO_MGR::SCH_FILE_T, IO_BASE::IO_FILE_DESC > m_supportedSymFiles
bool TransferDataToWindow() override
wxArrayString m_pluginChoices
void moveDownHandler(wxCommandEvent &event) override
PANEL_SYM_LIB_TABLE(DIALOG_EDIT_LIBRARY_TABLES *aParent, PROJECT *m_project)
SYMBOL_LIB_TABLE_GRID_DATA_MODEL * cur_model() const
void populateEnvironReadOnlyTable()
Populate the readonly environment variable table with names and values by examining all the full_uri ...
WX_GRID * cur_grid() const
DIALOG_EDIT_LIBRARY_TABLES * m_parent
bool TransferDataFromWindow() override
void appendRowHandler(wxCommandEvent &event) override
Container for project specific data.
Definition project.h:65
void InvokeSchEditSymbolLibTable(KIWAY *aKiway, wxWindow *aParent)