KiCad PCB EDA Suite
Loading...
Searching...
No Matches
fields_grid_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-2022 KiCad Developers, see AUTHORS.txt for contributors.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, you may find one here:
18 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
19 * or you may search the http://www.gnu.org website for the version 2 license,
20 * or you may write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
22 */
23
24#ifndef FIELDS_GRID_TABLE_H
25#define FIELDS_GRID_TABLE_H
26
27#include <wx/grid.h>
28#include <sch_symbol.h>
29#include <grid_tricks.h>
30#include <validators.h>
31
32class SCH_BASE_FRAME;
33class DIALOG_SHIM;
34class SCH_LABEL_BASE;
35
36
38{
39public:
41 std::function<void( wxCommandEvent& )> aAddHandler ) :
42 GRID_TRICKS( aGrid, std::move( aAddHandler ) ),
43 m_dlg( aDialog )
44 {}
45
46protected:
47 void showPopupMenu( wxMenu& menu, wxGridEvent& aEvent ) override;
48 void doPopupSelection( wxCommandEvent& event ) override;
50};
51
52
54{
70
71 FDC_COUNT // keep as last
72};
73
74
75class FIELDS_GRID_TABLE : public wxGridTableBase, public std::vector<SCH_FIELD>
76{
77public:
78 FIELDS_GRID_TABLE( DIALOG_SHIM* aDialog, SCH_BASE_FRAME* aFrame, WX_GRID* aGrid,
79 LIB_SYMBOL* aSymbol );
80 FIELDS_GRID_TABLE( DIALOG_SHIM* aDialog, SCH_EDIT_FRAME* aFrame, WX_GRID* aGrid,
81 SCH_SYMBOL* aSymbol );
82 FIELDS_GRID_TABLE( DIALOG_SHIM* aDialog, SCH_EDIT_FRAME* aFrame, WX_GRID* aGrid,
83 SCH_SHEET* aSheet );
84 FIELDS_GRID_TABLE( DIALOG_SHIM* aDialog, SCH_EDIT_FRAME* aFrame, WX_GRID* aGrid,
85 SCH_LABEL_BASE* aLabel );
86 ~FIELDS_GRID_TABLE() override;
87
88 int GetNumberRows() override { return (int) this->size(); }
89 int GetNumberCols() override { return FDC_COUNT; }
90
91 wxString GetColLabelValue( int aCol ) override;
92
93 bool IsEmptyCell( int row, int col ) override
94 {
95 return false; // don't allow adjacent cell overflow, even if we are actually empty
96 }
97
98 bool CanGetValueAs( int aRow, int aCol, const wxString& aTypeName ) override;
99 bool CanSetValueAs( int aRow, int aCol, const wxString& aTypeName ) override;
100 wxGridCellAttr* GetAttr( int row, int col, wxGridCellAttr::wxAttrKind kind ) override;
101
102 wxString GetValue( int aRow, int aCol ) override;
103 bool GetValueAsBool( int aRow, int aCol ) override;
104
105 void SetValue( int aRow, int aCol, const wxString& aValue ) override;
106 void SetValueAsBool( int aRow, int aCol, bool aValue ) override;
107
108 wxString StringFromBool( bool aValue ) const;
109 bool BoolFromString( wxString aValue ) const;
110
111protected:
112 void initGrid( WX_GRID* aGrid );
113
114 void onUnitsChanged( wxCommandEvent& aEvent );
115
116private:
123 wxString m_curdir;
124
131
132 wxGridCellAttr* m_readOnlyAttr;
133 wxGridCellAttr* m_fieldNameAttr;
134 wxGridCellAttr* m_referenceAttr;
135 wxGridCellAttr* m_valueAttr;
136 wxGridCellAttr* m_footprintAttr;
137 wxGridCellAttr* m_urlAttr;
138 wxGridCellAttr* m_nonUrlAttr;
139 wxGridCellAttr* m_filepathAttr;
140 wxGridCellAttr* m_boolAttr;
141 wxGridCellAttr* m_vAlignAttr;
142 wxGridCellAttr* m_hAlignAttr;
143 wxGridCellAttr* m_orientationAttr;
144 wxGridCellAttr* m_netclassAttr;
145 wxGridCellAttr* m_fontAttr;
146 wxGridCellAttr* m_colorAttr;
147
148 std::unique_ptr<NUMERIC_EVALUATOR> m_eval;
149 std::map< std::pair<int, int>, wxString > m_evalOriginal;
150};
151
152
153#endif // FIELDS_GRID_TABLE_H
Dialog helper object to sit in the inheritance tree between wxDialog and any class written by wxFormB...
Definition: dialog_shim.h:84
wxString StringFromBool(bool aValue) const
bool GetValueAsBool(int aRow, int aCol) override
FIELD_VALIDATOR m_fieldNameValidator
bool CanSetValueAs(int aRow, int aCol, const wxString &aTypeName) override
void initGrid(WX_GRID *aGrid)
wxGridCellAttr * m_fieldNameAttr
int GetNumberRows() override
wxGridCellAttr * m_readOnlyAttr
FIELD_VALIDATOR m_urlValidator
SCH_BASE_FRAME * m_frame
bool CanGetValueAs(int aRow, int aCol, const wxString &aTypeName) override
wxGridCellAttr * GetAttr(int row, int col, wxGridCellAttr::wxAttrKind kind) override
wxGridCellAttr * m_colorAttr
wxGridCellAttr * m_nonUrlAttr
wxGridCellAttr * m_referenceAttr
FIELD_VALIDATOR m_referenceValidator
FIELD_VALIDATOR m_valueValidator
std::map< std::pair< int, int >, wxString > m_evalOriginal
DIALOG_SHIM * m_dialog
bool IsEmptyCell(int row, int col) override
wxGridCellAttr * m_footprintAttr
wxGridCellAttr * m_boolAttr
wxGridCellAttr * m_fontAttr
wxGridCellAttr * m_urlAttr
wxGridCellAttr * m_valueAttr
wxGridCellAttr * m_hAlignAttr
wxGridCellAttr * m_orientationAttr
void SetValue(int aRow, int aCol, const wxString &aValue) override
wxGridCellAttr * m_vAlignAttr
wxGridCellAttr * m_filepathAttr
wxGridCellAttr * m_netclassAttr
void SetValueAsBool(int aRow, int aCol, bool aValue) override
int GetNumberCols() override
wxString GetValue(int aRow, int aCol) override
void onUnitsChanged(wxCommandEvent &aEvent)
std::unique_ptr< NUMERIC_EVALUATOR > m_eval
FIELD_VALIDATOR m_nonUrlValidator
FIELD_VALIDATOR m_filepathValidator
wxString GetColLabelValue(int aCol) override
bool BoolFromString(wxString aValue) const
void showPopupMenu(wxMenu &menu, wxGridEvent &aEvent) override
FIELDS_GRID_TRICKS(WX_GRID *aGrid, DIALOG_SHIM *aDialog, std::function< void(wxCommandEvent &)> aAddHandler)
void doPopupSelection(wxCommandEvent &event) override
A text control validator used for validating the text allowed in fields.
Definition: validators.h:221
Add mouse and command handling (such as cut, copy, and paste) to a WX_GRID instance.
Definition: grid_tricks.h:61
Define a library symbol object.
Definition: lib_symbol.h:77
A shim class between EDA_DRAW_FRAME and several derived classes: SYMBOL_EDIT_FRAME,...
Schematic editor (Eeschema) main window.
Sheet symbol placed in a schematic, and is the entry point for a sub schematic.
Definition: sch_sheet.h:57
Schematic symbol object.
Definition: sch_symbol.h:108
FIELDS_DATA_COL_ORDER
@ FDC_TEXT_SIZE
@ FDC_BOLD
@ FDC_POSY
@ FDC_ITALIC
@ FDC_SHOW_NAME
@ FDC_COUNT
@ FDC_NAME
@ FDC_H_ALIGN
@ FDC_COLOR
@ FDC_SHOWN
@ FDC_ALLOW_AUTOPLACE
@ FDC_VALUE
@ FDC_POSX
@ FDC_ORIENTATION
@ FDC_V_ALIGN
@ FDC_FONT
STL namespace.
KICAD_T
The set of class identification values stored in EDA_ITEM::m_structType.
Definition: typeinfo.h:78
Custom text control validator definitions.