KiCad PCB EDA Suite
Loading...
Searching...
No Matches
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 (C) 2017-2021 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 OnSizeGrid( wxSizeEvent& event ) override;
62
63 bool TransferDataToWindow() override;
64 bool TransferDataFromWindow() override;
65
66 bool TransferDataToGrid();
68
69protected:
72 bool m_global; // Editing global (vs. project) fieldname templates
73
76};
77
78
79#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.
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.
std::vector< TEMPLATE_FIELDNAME > TEMPLATE_FIELDNAMES