KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
sch_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 SCH_TABLE_H
25#define SCH_TABLE_H
26
27
28#include <sch_tablecell.h>
29#include <sch_item.h>
30
31
32class SCH_TABLE : public SCH_ITEM
33{
34public:
35 SCH_TABLE( int aLineWidth = 0 );
36
37 SCH_TABLE( const SCH_TABLE& aTable );
38
39 ~SCH_TABLE();
40
41 static inline bool ClassOf( const EDA_ITEM* aItem )
42 {
43 return aItem && SCH_TABLE_T == aItem->Type();
44 }
45
46 virtual wxString GetClass() const override
47 {
48 return wxT( "SCH_TABLE" );
49 }
50
51 void SetStrokeExternal( bool aDoStroke ) { m_strokeExternal = aDoStroke; }
52 bool StrokeExternal() const { return m_strokeExternal; }
53
54 void SetStrokeHeaderSeparator( bool aDoStroke ) { m_StrokeHeaderSeparator = aDoStroke; }
56
57 void SetBorderStroke( const STROKE_PARAMS& aParams ) { m_borderStroke = aParams; }
58 const STROKE_PARAMS& GetBorderStroke() const { return m_borderStroke; }
59
60 void SetBorderWidth( int aWidth ) { m_borderStroke.SetWidth( aWidth ); }
61 int GetBorderWidth() const { return m_borderStroke.GetWidth(); }
62
63 void SetBorderStyle( const LINE_STYLE aStyle ) { m_borderStroke.SetLineStyle( aStyle ); }
65 {
66 if( m_borderStroke.GetLineStyle() == LINE_STYLE::DEFAULT )
67 return LINE_STYLE::SOLID;
68 else
70 }
71
72 void SetBorderColor( const COLOR4D& aColor ) { m_borderStroke.SetColor( aColor ); }
74
75 void SetSeparatorsStroke( const STROKE_PARAMS& aParams ) { m_separatorsStroke = aParams; }
77
78 void SetSeparatorsWidth( int aWidth ) { m_separatorsStroke.SetWidth( aWidth ); }
80
81 void SetSeparatorsStyle( const LINE_STYLE aStyle )
82 {
84 }
85
87 {
88 if( m_separatorsStroke.GetLineStyle() == LINE_STYLE::DEFAULT )
89 return LINE_STYLE::SOLID;
90 else
92 }
93
94 void SetSeparatorsColor( const COLOR4D& aColor ) { m_separatorsStroke.SetColor( aColor ); }
96
97 void SetStrokeColumns( bool aDoStroke ) { m_strokeColumns = aDoStroke; }
98 bool StrokeColumns() const { return m_strokeColumns; }
99
100 void SetStrokeRows( bool aDoStroke ) { m_strokeRows = aDoStroke; }
101 bool StrokeRows() const { return m_strokeRows; }
102
103 void RunOnChildren( const std::function<void( SCH_ITEM* )>& aFunction, RECURSE_MODE aMode ) override;
104
105 bool operator<( const SCH_ITEM& aItem ) const override;
106
107 void SetPosition( const VECTOR2I& aPos ) override;
108 VECTOR2I GetPosition() const override;
109 VECTOR2I GetEnd() const;
110 VECTOR2I GetCenter() const;
111
112 // For property manager:
113 void SetPositionX( int x ) { SetPosition( VECTOR2I( x, GetPosition().y ) ); }
114 void SetPositionY( int y ) { SetPosition( VECTOR2I( GetPosition().x, y ) ); }
115 int GetPositionX() const { return GetPosition().x; }
116 int GetPositionY() const { return GetPosition().y; }
117
118 void SetColCount( int aCount ) { m_colCount = aCount; }
119 int GetColCount() const { return m_colCount; }
120
121 int GetRowCount() const
122 {
123 return m_cells.size() / m_colCount;
124 }
125
126 void SetColWidth( int aCol, int aWidth ) { m_colWidths[aCol] = aWidth; }
127
128 int GetColWidth( int aCol ) const
129 {
130 if( m_colWidths.count( aCol ) )
131 return m_colWidths.at( aCol );
132
133 return 0;
134 }
135
136 void SetRowHeight( int aRow, int aHeight ) { m_rowHeights[aRow] = aHeight; }
137
138 int GetRowHeight( int aRow ) const
139 {
140 if( m_rowHeights.count( aRow ) )
141 return m_rowHeights.at( aRow );
142
143 return 0;
144 }
145
146 SCH_TABLECELL* GetCell( int aRow, int aCol ) const
147 {
148 int idx = aRow * m_colCount + aCol;
149
150 if( idx < (int) m_cells.size() )
151 return m_cells[ idx ];
152 else
153 return nullptr;
154 }
155
156 std::vector<SCH_TABLECELL*> GetCells() const
157 {
158 return m_cells;
159 }
160
161 void AddCell( SCH_TABLECELL* aCell )
162 {
163 m_cells.push_back( aCell );
164 aCell->SetParent( this );
165 }
166
167 void InsertCell( int aIdx, SCH_TABLECELL* aCell )
168 {
169 m_cells.insert( m_cells.begin() + aIdx, aCell );
170 aCell->SetParent( this );
171 }
172
174 {
175 for( SCH_TABLECELL* cell : m_cells )
176 delete cell;
177
178 m_cells.clear();
179 }
180
182 {
184 []( SCH_TABLECELL* cell )
185 {
186 return ( cell->GetFlags() & STRUCT_DELETED ) > 0;
187 } );
188 }
189
190 void Normalize();
191
192 void Move( const VECTOR2I& aMoveVector ) override;
193
194 void MirrorHorizontally( int aCenter ) override;
195 void MirrorVertically( int aCenter ) override;
196 void Rotate( const VECTOR2I& aCenter, bool aRotateCCW ) override;
197
198 const BOX2I GetBoundingBox() const override;
199
200 INSPECT_RESULT Visit( INSPECTOR inspector, void* testData,
201 const std::vector<KICAD_T>& aScanTypes ) override;
202
203 bool Matches( const EDA_SEARCH_DATA& aSearchData, void* aAuxData ) const override
204 {
205 // Symbols are searchable via the child field and pin item text.
206 return false;
207 }
208
209 wxString GetItemDescription( UNITS_PROVIDER* aUnitsProvider, bool aFull ) const override;
210
211 BITMAPS GetMenuImage() const override;
212
213 std::vector<int> ViewGetLayers() const override;
214
215 bool HitTest( const VECTOR2I& aPosition, int aAccuracy = 0 ) const override;
216
217 bool HitTest( const BOX2I& aRect, bool aContained, int aAccuracy = 0 ) const override;
218
219 void DrawBorders( const std::function<void( const VECTOR2I& aPt1, const VECTOR2I& aPt2,
220 const STROKE_PARAMS& aStroke )>& aCallback ) const;
221
222 void Plot( PLOTTER* aPlotter, bool aBackground, const SCH_PLOT_OPTS& aPlotOpts,
223 int aUnit, int aBodyStyle, const VECTOR2I& aOffset, bool aDimmed ) override;
224
225 EDA_ITEM* Clone() const override
226 {
227 return new SCH_TABLE( *this );
228 }
229
230 void GetMsgPanelInfo( EDA_DRAW_FRAME* aFrame, std::vector<MSG_PANEL_ITEM>& aList ) override;
231
232 double Similarity( const SCH_ITEM& aOther ) const override;
233
234 bool operator==( const SCH_ITEM& aOther ) const override;
235
236#if defined(DEBUG)
237 void Show( int nestLevel, std::ostream& os ) const override { ShowDummy( os ); }
238#endif
239
240protected:
241 void swapData( SCH_ITEM* aItem ) override;
242
249
251 std::map<int, int> m_colWidths;
252 std::map<int, int> m_rowHeights;
253 std::vector<SCH_TABLECELL*> m_cells;
254};
255
256
257#endif /* SCH_TABLE_H */
BITMAPS
A list of all bitmap identifiers.
Definition: bitmaps_list.h:33
The base class for create windows for drawing purpose.
A base class for most all the KiCad significant classes used in schematics and boards.
Definition: eda_item.h:96
KICAD_T Type() const
Returns the type of object.
Definition: eda_item.h:108
virtual void SetParent(EDA_ITEM *aParent)
Definition: eda_item.h:111
EDA_ITEM_FLAGS GetFlags() const
Definition: eda_item.h:138
A color representation with 4 components: red, green, blue, alpha.
Definition: color4d.h:104
Base plotter engine class.
Definition: plotter.h:105
Base class for any item which can be embedded within the SCHEMATIC container class,...
Definition: sch_item.h:167
void SetBorderWidth(int aWidth)
Definition: sch_table.h:60
void SetSeparatorsStyle(const LINE_STYLE aStyle)
Definition: sch_table.h:81
LINE_STYLE GetSeparatorsStyle() const
Definition: sch_table.h:86
std::vector< int > ViewGetLayers() const override
Return the layers the item is drawn on (which may be more than its "home" layer)
Definition: sch_table.cpp:303
double Similarity(const SCH_ITEM &aOther) const override
Return a measure of how likely the other object is to represent the same object.
Definition: sch_table.cpp:478
bool operator<(const SCH_ITEM &aItem) const override
Definition: sch_table.cpp:228
void SetRowHeight(int aRow, int aHeight)
Definition: sch_table.h:136
std::vector< SCH_TABLECELL * > m_cells
Definition: sch_table.h:253
const STROKE_PARAMS & GetSeparatorsStroke() const
Definition: sch_table.h:76
std::map< int, int > m_rowHeights
Definition: sch_table.h:252
bool m_strokeColumns
Definition: sch_table.h:247
bool HitTest(const VECTOR2I &aPosition, int aAccuracy=0) const override
Test if aPosition is inside or on the boundary of this item.
Definition: sch_table.cpp:309
const BOX2I GetBoundingBox() const override
Return the orthogonal bounding box of this object for display purposes.
Definition: sch_table.cpp:255
void MirrorHorizontally(int aCenter) override
Mirror item horizontally about aCenter.
Definition: sch_table.cpp:207
void SetColCount(int aCount)
Definition: sch_table.h:118
bool StrokeExternal() const
Definition: sch_table.h:52
virtual wxString GetClass() const override
Return the class name.
Definition: sch_table.h:46
void InsertCell(int aIdx, SCH_TABLECELL *aCell)
Definition: sch_table.h:167
void SetBorderColor(const COLOR4D &aColor)
Definition: sch_table.h:72
bool m_strokeRows
Definition: sch_table.h:246
int GetPositionY() const
Definition: sch_table.h:116
wxString GetItemDescription(UNITS_PROVIDER *aUnitsProvider, bool aFull) const override
Return a user-visible description string of this item.
Definition: sch_table.cpp:291
void SetPositionX(int x)
Definition: sch_table.h:113
LINE_STYLE GetBorderStyle() const
Definition: sch_table.h:64
void SetSeparatorsColor(const COLOR4D &aColor)
Definition: sch_table.h:94
int GetRowHeight(int aRow) const
Definition: sch_table.h:138
void SetColWidth(int aCol, int aWidth)
Definition: sch_table.h:126
void RunOnChildren(const std::function< void(SCH_ITEM *)> &aFunction, RECURSE_MODE aMode) override
Definition: sch_table.cpp:248
COLOR4D GetSeparatorsColor() const
Definition: sch_table.h:95
std::vector< SCH_TABLECELL * > GetCells() const
Definition: sch_table.h:156
void MirrorVertically(int aCenter) override
Mirror item vertically about aCenter.
Definition: sch_table.cpp:213
INSPECT_RESULT Visit(INSPECTOR inspector, void *testData, const std::vector< KICAD_T > &aScanTypes) override
May be re-implemented for each derived class in order to handle all the types given by its member dat...
Definition: sch_table.cpp:266
void DrawBorders(const std::function< void(const VECTOR2I &aPt1, const VECTOR2I &aPt2, const STROKE_PARAMS &aStroke)> &aCallback) const
Definition: sch_table.cpp:332
int GetColWidth(int aCol) const
Definition: sch_table.h:128
void SetStrokeHeaderSeparator(bool aDoStroke)
Definition: sch_table.h:54
void AddCell(SCH_TABLECELL *aCell)
Definition: sch_table.h:161
void SetSeparatorsWidth(int aWidth)
Definition: sch_table.h:78
const STROKE_PARAMS & GetBorderStroke() const
Definition: sch_table.h:58
bool m_StrokeHeaderSeparator
Definition: sch_table.h:244
VECTOR2I GetCenter() const
Definition: sch_table.cpp:121
int m_colCount
Definition: sch_table.h:250
VECTOR2I GetPosition() const override
Definition: sch_table.cpp:115
void swapData(SCH_ITEM *aItem) override
Swap the internal data structures aItem with the schematic item.
Definition: sch_table.cpp:79
void SetStrokeExternal(bool aDoStroke)
Definition: sch_table.h:51
VECTOR2I GetEnd() const
Definition: sch_table.cpp:135
void GetMsgPanelInfo(EDA_DRAW_FRAME *aFrame, std::vector< MSG_PANEL_ITEM > &aList) override
Populate aList of MSG_PANEL_ITEM objects with it's internal state for display purposes.
Definition: sch_table.cpp:445
void SetPositionY(int y)
Definition: sch_table.h:114
STROKE_PARAMS m_separatorsStroke
Definition: sch_table.h:248
int GetColCount() const
Definition: sch_table.h:119
bool StrokeHeaderSeparator() const
Definition: sch_table.h:55
bool Matches(const EDA_SEARCH_DATA &aSearchData, void *aAuxData) const override
Compare the item against the search criteria in aSearchData.
Definition: sch_table.h:203
bool m_strokeExternal
Definition: sch_table.h:243
void Plot(PLOTTER *aPlotter, bool aBackground, const SCH_PLOT_OPTS &aPlotOpts, int aUnit, int aBodyStyle, const VECTOR2I &aOffset, bool aDimmed) override
Plot the item to aPlotter.
Definition: sch_table.cpp:401
std::map< int, int > m_colWidths
Definition: sch_table.h:251
void SetStrokeColumns(bool aDoStroke)
Definition: sch_table.h:97
void DeleteMarkedCells()
Definition: sch_table.h:181
SCH_TABLECELL * GetCell(int aRow, int aCol) const
Definition: sch_table.h:146
void ClearCells()
Definition: sch_table.h:173
int GetSeparatorsWidth() const
Definition: sch_table.h:79
bool StrokeColumns() const
Definition: sch_table.h:98
EDA_ITEM * Clone() const override
Create a duplicate of this item with linked list members set to NULL.
Definition: sch_table.h:225
void SetSeparatorsStroke(const STROKE_PARAMS &aParams)
Definition: sch_table.h:75
static bool ClassOf(const EDA_ITEM *aItem)
Definition: sch_table.h:41
void SetPosition(const VECTOR2I &aPos) override
Definition: sch_table.cpp:109
int GetPositionX() const
Definition: sch_table.h:115
bool StrokeRows() const
Definition: sch_table.h:101
STROKE_PARAMS m_borderStroke
Definition: sch_table.h:245
int GetRowCount() const
Definition: sch_table.h:121
void SetStrokeRows(bool aDoStroke)
Definition: sch_table.h:100
void SetBorderStroke(const STROKE_PARAMS &aParams)
Definition: sch_table.h:57
void SetBorderStyle(const LINE_STYLE aStyle)
Definition: sch_table.h:63
COLOR4D GetBorderColor() const
Definition: sch_table.h:73
BITMAPS GetMenuImage() const override
Return a pointer to an image to be used in menus.
Definition: sch_table.cpp:297
bool operator==(const SCH_ITEM &aOther) const override
Definition: sch_table.cpp:452
int GetBorderWidth() const
Definition: sch_table.h:61
void Normalize()
Definition: sch_table.cpp:149
void Move(const VECTOR2I &aMoveVector) override
Move the item by aMoveVector to a new position.
Definition: sch_table.cpp:200
void Rotate(const VECTOR2I &aCenter, bool aRotateCCW) override
Rotate the item around aCenter 90 degrees in the clockwise direction.
Definition: sch_table.cpp:219
Simple container to manage line stroke parameters.
Definition: stroke_params.h:94
int GetWidth() const
void SetLineStyle(LINE_STYLE aLineStyle)
void SetWidth(int aWidth)
void SetColor(const KIGFX::COLOR4D &aColor)
LINE_STYLE GetLineStyle() const
KIGFX::COLOR4D GetColor() const
RECURSE_MODE
Definition: eda_item.h:49
INSPECT_RESULT
Definition: eda_item.h:43
const INSPECTOR_FUNC & INSPECTOR
std::function passed to nested users by ref, avoids copying std::function.
Definition: eda_item.h:89
#define STRUCT_DELETED
flag indication structures to be erased
void delete_if(_Container &__c, _Function &&__f)
Deletes all values from __c for which __f returns true.
Definition: kicad_algo.h:174
LINE_STYLE
Dashed line types.
Definition: stroke_params.h:46
@ SCH_TABLE_T
Definition: typeinfo.h:165
VECTOR2< int32_t > VECTOR2I
Definition: vector2d.h:695