KiCad PCB EDA Suite
panel_fp_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) 2018-2020 KiCad Developers, see AUTHORS.txt for contributors.
5 *
6 * This program is free software: you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation, either version 3 of the License, or (at your
9 * option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#ifndef PANEL_FP_LIB_TABLE_H
21#define PANEL_FP_LIB_TABLE_H
22
24#include <widgets/wx_grid.h>
25
26class FP_LIB_TABLE;
28
29
34{
35
36public:
38 FP_LIB_TABLE* aGlobal, const wxString& aGlobalTblPath,
39 FP_LIB_TABLE* aProject, const wxString& aProjectTblPath,
40 const wxString& aProjectBasePath );
41 ~PANEL_FP_LIB_TABLE() override;
42
43private:
44 bool TransferDataFromWindow() override;
45
51 bool verifyTables();
52
53 void OnUpdateUI( wxUpdateUIEvent& event ) override;
54 void appendRowHandler( wxCommandEvent& event ) override;
55 void browseLibrariesHandler( wxCommandEvent& event );
56 void deleteRowHandler( wxCommandEvent& event ) override;
57 void moveUpHandler( wxCommandEvent& event ) override;
58 void moveDownHandler( wxCommandEvent& event ) override;
59 void onSizeGrid( wxSizeEvent& event ) override;
60
61 void adjustPathSubsGridColumns( int aWidth );
62
66
68 {
69 return (FP_LIB_TABLE_GRID*) m_global_grid->GetTable();
70 }
71
73 {
74 return m_project_grid ? (FP_LIB_TABLE_GRID*) m_project_grid->GetTable() : nullptr;
75 }
76
78 {
79 return (FP_LIB_TABLE_GRID*) m_cur_grid->GetTable();
80 }
81
82 // caller's tables are modified only on OK button and successful verification.
86
88
89 WX_GRID* m_cur_grid; // changed based on tab choice
90 static size_t m_pageNdx; // Remember last notebook page selected during a session
91
92 //< Transient (unsaved) last browsed folder when adding a project level library.
94};
95
96#endif // PANEL_FP_LIB_TABLE_H
This class builds a wxGridTableBase by wrapping an FP_LIB_TABLE object.
Class PANEL_FP_LIB_TABLE_BASE.
Dialog to show and edit symbol library tables.
bool verifyTables()
Trim important fields, removes blank row entries, and checks for duplicates.
void onSizeGrid(wxSizeEvent &event) override
void moveUpHandler(wxCommandEvent &event) override
void adjustPathSubsGridColumns(int aWidth)
FP_LIB_TABLE_GRID * cur_model() const
FP_LIB_TABLE_GRID * project_model() const
void moveDownHandler(wxCommandEvent &event) override
FP_LIB_TABLE_GRID * global_model() const
static size_t m_pageNdx
FP_LIB_TABLE * m_global
void populateEnvironReadOnlyTable()
Populate the readonly environment variable table with names and values by examining all the full_uri ...
void deleteRowHandler(wxCommandEvent &event) override
void browseLibrariesHandler(wxCommandEvent &event)
bool TransferDataFromWindow() override
FP_LIB_TABLE * m_project
DIALOG_EDIT_LIBRARY_TABLES * m_parent
void OnUpdateUI(wxUpdateUIEvent &event) override
void appendRowHandler(wxCommandEvent &event) override
PANEL_FP_LIB_TABLE(DIALOG_EDIT_LIBRARY_TABLES *aParent, FP_LIB_TABLE *aGlobal, const wxString &aGlobalTblPath, FP_LIB_TABLE *aProject, const wxString &aProjectTblPath, const wxString &aProjectBasePath)