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 The 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 EMBEDDED_FILES;
35class SCH_LABEL_BASE;
36
37
39{
40public:
42 std::vector<EMBEDDED_FILES*> aFilesStack,
43 std::function<void( wxCommandEvent& )> aAddHandler ) :
44 GRID_TRICKS( aGrid, std::move( aAddHandler ) ),
45 m_dlg( aDialog ),
46 m_filesStack( aFilesStack )
47 {}
48
49protected:
50 int getFieldRow( FIELD_T aFieldId );
51
52 void showPopupMenu( wxMenu& menu, wxGridEvent& aEvent ) override;
53 void doPopupSelection( wxCommandEvent& event ) override;
54
55protected:
57 std::vector<EMBEDDED_FILES*> m_filesStack;
58};
59
60
62{
78
80
82
84};
85
86
87class FIELDS_GRID_TABLE : public WX_GRID_TABLE_BASE, public std::vector<SCH_FIELD>
88{
89public:
90 FIELDS_GRID_TABLE( DIALOG_SHIM* aDialog, SCH_BASE_FRAME* aFrame, WX_GRID* aGrid,
91 LIB_SYMBOL* aSymbol, std::vector<EMBEDDED_FILES*> aFilesStack = {} );
92 FIELDS_GRID_TABLE( DIALOG_SHIM* aDialog, SCH_EDIT_FRAME* aFrame, WX_GRID* aGrid,
93 SCH_SYMBOL* aSymbol );
94 FIELDS_GRID_TABLE( DIALOG_SHIM* aDialog, SCH_EDIT_FRAME* aFrame, WX_GRID* aGrid,
95 SCH_SHEET* aSheet );
96 FIELDS_GRID_TABLE( DIALOG_SHIM* aDialog, SCH_EDIT_FRAME* aFrame, WX_GRID* aGrid,
97 SCH_LABEL_BASE* aLabel );
98 ~FIELDS_GRID_TABLE() override;
99
100 int GetNumberRows() override { return getVisibleRowCount(); }
101 int GetNumberCols() override { return getColumnCount(); }
102
103 int GetMandatoryRowCount() const;
104
105 wxString GetColLabelValue( int aCol ) override;
106
107 bool IsEmptyCell( int row, int col ) override
108 {
109 return false; // don't allow adjacent cell overflow, even if we are actually empty
110 }
111
112 bool CanGetValueAs( int aRow, int aCol, const wxString& aTypeName ) override;
113 bool CanSetValueAs( int aRow, int aCol, const wxString& aTypeName ) override;
114 wxGridCellAttr* GetAttr( int aRow, int aCol, wxGridCellAttr::wxAttrKind aKind ) override;
115
116 wxString GetValue( int aRow, int aCol ) override;
117 bool GetValueAsBool( int aRow, int aCol ) override;
118
119 void SetValue( int aRow, int aCol, const wxString& aValue ) override;
120 void SetValueAsBool( int aRow, int aCol, bool aValue ) override;
121
122 wxString StringFromBool( bool aValue ) const;
123 bool BoolFromString( const wxString& aValue ) const;
124
125 SCH_FIELD* GetField( FIELD_T aFieldId );
126 int GetFieldRow( FIELD_T aFieldId );
127
128 void DetachFields();
129
130protected:
131 void initGrid( WX_GRID* aGrid );
132
133 void onUnitsChanged( wxCommandEvent& aEvent );
134
135 int getColumnCount() const;
136 int getVisibleRowCount() const;
137
138 SCH_FIELD& getField( int aRow );
139
140private:
145 std::vector<EMBEDDED_FILES*> m_filesStack;
147 wxString m_curdir;
148
155
156 wxGridCellAttr* m_readOnlyAttr;
157 wxGridCellAttr* m_fieldNameAttr;
158 wxGridCellAttr* m_referenceAttr;
159 wxGridCellAttr* m_valueAttr;
160 wxGridCellAttr* m_footprintAttr;
161 wxGridCellAttr* m_urlAttr;
162 wxGridCellAttr* m_nonUrlAttr;
163 wxGridCellAttr* m_filepathAttr;
164 wxGridCellAttr* m_boolAttr;
165 wxGridCellAttr* m_vAlignAttr;
166 wxGridCellAttr* m_hAlignAttr;
167 wxGridCellAttr* m_orientationAttr;
168 wxGridCellAttr* m_netclassAttr;
169 wxGridCellAttr* m_fontAttr;
170 wxGridCellAttr* m_colorAttr;
171
172 std::unique_ptr<NUMERIC_EVALUATOR> m_eval;
173 std::map< std::pair<int, int>, wxString > m_evalOriginal;
174};
175
176
177#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:52
wxGridCellAttr * GetAttr(int aRow, int aCol, wxGridCellAttr::wxAttrKind aKind) override
SCH_FIELD * GetField(FIELD_T aFieldId)
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
int GetMandatoryRowCount() const
FIELD_VALIDATOR m_urlValidator
SCH_BASE_FRAME * m_frame
bool CanGetValueAs(int aRow, int aCol, const wxString &aTypeName) 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
int getVisibleRowCount() const
DIALOG_SHIM * m_dialog
bool IsEmptyCell(int row, int col) override
wxGridCellAttr * m_footprintAttr
wxGridCellAttr * m_boolAttr
std::vector< EMBEDDED_FILES * > m_filesStack
int GetFieldRow(FIELD_T aFieldId)
bool BoolFromString(const wxString &aValue) const
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
SCH_FIELD & getField(int aRow)
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
FIELDS_GRID_TRICKS(WX_GRID *aGrid, DIALOG_SHIM *aDialog, std::vector< EMBEDDED_FILES * > aFilesStack, std::function< void(wxCommandEvent &)> aAddHandler)
void showPopupMenu(wxMenu &menu, wxGridEvent &aEvent) override
int getFieldRow(FIELD_T aFieldId)
std::vector< EMBEDDED_FILES * > m_filesStack
void doPopupSelection(wxCommandEvent &event) override
A text control validator used for validating the text allowed in fields.
Definition: validators.h:142
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:85
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:47
Schematic symbol object.
Definition: sch_symbol.h:75
FIELDS_DATA_COL_ORDER
@ FDC_TEXT_SIZE
@ FDC_BOLD
@ FDC_SCH_EDIT_COUNT
@ FDC_POSY
@ FDC_ITALIC
@ FDC_SHOW_NAME
@ FDC_NAME
@ FDC_H_ALIGN
@ FDC_COLOR
@ FDC_SHOWN
@ FDC_ALLOW_AUTOPLACE
@ FDC_VALUE
@ FDC_SYMBOL_EDITOR_COUNT
@ FDC_POSX
@ FDC_ORIENTATION
@ FDC_V_ALIGN
@ FDC_FONT
@ FDC_PRIVATE
STL namespace.
FIELD_T
The set of all field indices assuming an array like sequence that a SCH_COMPONENT or LIB_PART can hol...
KICAD_T
The set of class identification values stored in EDA_ITEM::m_structType.
Definition: typeinfo.h:78
Custom text control validator definitions.