KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
panel_template_fieldnames.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 The 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_EESCHEMA_DEFUALT_FIELDS_H
21#define PANEL_EESCHEMA_DEFUALT_FIELDS_H
22
23#include <template_fieldnames.h>
25
26class SCH_EDIT_FRAME;
27
28
30{
31public:
32 PANEL_TEMPLATE_FIELDNAMES( wxWindow* aWindow, TEMPLATES* aProjectTemplateMgr );
34
35 void ImportSettingsFrom( TEMPLATES* templateMgr );
36
37protected:
46 void OnAddButtonClick( wxCommandEvent& event ) override;
47
56 void OnDeleteButtonClick( wxCommandEvent& event ) override;
57
58private:
59 void AdjustGridColumns( int aWidth );
60
61 void OnMoveUp( wxCommandEvent& event ) override;
62 void OnMoveDown( wxCommandEvent& event ) override;
63 void OnSizeGrid( wxSizeEvent& event ) override;
64
65 bool TransferDataToWindow() override;
66 bool TransferDataFromWindow() override;
67
68 bool TransferDataToGrid();
70
71protected:
73 std::vector<TEMPLATE_FIELDNAME> m_fields;
74 bool m_global; // Editing global (vs. project) fieldname templates
75
78};
79
80
81#endif //PANEL_EESCHEMA_DEFUALT_FIELDS_H
Class PANEL_TEMPLATE_FIELDNAMES_BASE.
void OnAddButtonClick(wxCommandEvent &event) override
Adds a new template fieldname (with default values) to the template fieldnames data.
std::vector< TEMPLATE_FIELDNAME > m_fields
void OnMoveDown(wxCommandEvent &event) override
void OnMoveUp(wxCommandEvent &event) override
void ImportSettingsFrom(TEMPLATES *templateMgr)
void OnSizeGrid(wxSizeEvent &event) override
void OnDeleteButtonClick(wxCommandEvent &event) override
Deletes the selected template fieldname from the template fieldnames data.
Schematic editor (Eeschema) main window.