35 m_strokeExternal( true ),
36 m_strokeHeader( true ),
39 m_strokeColumns( true ),
76 wxT(
"Cannot swap data with invalid table." ) );
97 cell->SetParent(
this );
112 return m_cells[0]->GetPosition();
158 for(
int ii = col + 1; ii < col + cell->
GetColSpan(); ++ii )
161 for(
int ii = row + 1; ii < row + cell->GetRowSpan(); ++ii )
167 if( cell->
GetEnd() != end )
184 cell->Move( aMoveVector );
196 cell->Rotate( aRotCentre, aAngle );
208 cell->Flip( aCentre, aFlipDirection );
210 std::vector<PCB_TABLECELL*> oldCells =
m_cells;
248 std::shared_ptr<SHAPE_COMPOUND> shape = std::make_shared<SHAPE_COMPOUND>();
250 std::vector<VECTOR2I> pts;
252 pts.emplace_back( origin );
253 pts.emplace_back( end.
x, origin.
y );
254 pts.emplace_back( end );
255 pts.emplace_back( origin.
x, end.
y );
308 int aClearance,
int aMaxError,
ERROR_LOC aErrorLoc,
309 bool aIgnoreLineWidth )
const
311 int gap = aClearance;
320 cell->TransformShapeToPolygon( aBuffer, aLayer, gap, aMaxError, aErrorLoc,
false );
325 const std::vector<KICAD_T>& aScanTypes )
327 for(
KICAD_T scanType : aScanTypes )
331 if( INSPECT_RESULT::QUIT == aInspector(
this, aTestData ) )
332 return INSPECT_RESULT::QUIT;
339 if( INSPECT_RESULT::QUIT == aInspector( cell, (
void*)
this ) )
340 return INSPECT_RESULT::QUIT;
345 return INSPECT_RESULT::CONTINUE;
351 return wxString::Format(
_(
"%d Column Table" ),
m_colCount );
357 return BITMAPS::spreadsheet;
387 aList.emplace_back(
_(
"Table" ), wxString::Format(
_(
"%d Columns" ),
m_colCount ) );
395 if( ( diff = (
int) aTable->
GetCells().size() - (
int) aOther->
GetCells().size() ) != 0 )
401 for(
int col = 0; col < aTable->
GetColCount(); ++col )
407 for(
int row = 0; row < aTable->
GetRowCount(); ++row )
413 for(
int row = 0; row < aTable->
GetRowCount(); ++row )
415 for(
int col = 0; col < aTable->
GetColCount(); ++col )
420 if( ( diff = cell->PCB_SHAPE::Compare( other ) ) != 0 )
423 if( ( diff = cell->EDA_TEXT::Compare( other ) ) != 0 )
439 return *
this == other;
472 for(
int ii = 0; ii < (int)
m_cells.size(); ++ii )
492 double similarity = 1.0;
518 for(
int ii = 0; ii < (int)
m_cells.size(); ++ii )
531 if( plotDashTypeEnum.
Choices().GetCount() == 0 )
533 plotDashTypeEnum.
Map( LINE_STYLE::DEFAULT,
_HKI(
"Default" ) )
534 .
Map( LINE_STYLE::SOLID,
_HKI(
"Solid" ) )
535 .
Map( LINE_STYLE::DASH,
_HKI(
"Dashed" ) )
536 .
Map( LINE_STYLE::DOT,
_HKI(
"Dotted" ) )
537 .
Map( LINE_STYLE::DASHDOT,
_HKI(
"Dash-Dot" ) )
538 .
Map( LINE_STYLE::DASHDOTDOT,
_HKI(
"Dash-Dot-Dot" ) );
556 const wxString tableProps =
_(
"Table Properties" );
568 PROPERTY_DISPLAY::PT_SIZE ),
589 PROPERTY_DISPLAY::PT_SIZE ),
ERROR_LOC
When approximating an arc or circle, should the error be placed on the outside or inside of the curve...
BITMAPS
A list of all bitmap identifiers.
Abstract interface for BOARD_ITEMs capable of storing other items inside.
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
virtual PCB_LAYER_ID GetLayer() const
Return the primary layer this item is on.
virtual void SetLayer(PCB_LAYER_ID aLayer)
Set the layer this item is on.
virtual const BOARD * GetBoard() const
Return the BOARD in which this BOARD_ITEM resides, or NULL if none.
constexpr BOX2< Vec > & Inflate(coord_type dx, coord_type dy)
Inflates the rectangle horizontally by dx and vertically by dy.
constexpr BOX2< Vec > & Merge(const BOX2< Vec > &aRect)
Modify the position and size of the rectangle in order to contain aRect.
constexpr bool Contains(const Vec &aPoint) const
constexpr bool Intersects(const BOX2< Vec > &aRect) const
The base class for create windows for drawing purpose.
KICAD_T Type() const
Returns the type of object.
virtual void SetParent(EDA_ITEM *aParent)
const VECTOR2I & GetEnd() const
Return the ending point of the graphic.
void SetEnd(const VECTOR2I &aEnd)
const EDA_ANGLE & GetTextAngle() const
virtual void ClearRenderCache()
ENUM_MAP & Map(T aValue, const wxString &aName)
static ENUM_MAP< T > & Instance()
A color representation with 4 components: red, green, blue, alpha.
void SetPosition(const VECTOR2I &aPos) override
VECTOR2I GetPosition() const override
STROKE_PARAMS m_separatorsStroke
const BOX2I GetBoundingBox() const override
Return the orthogonal bounding box of this object for display purposes.
std::vector< PCB_TABLECELL * > m_cells
bool HitTest(const VECTOR2I &aPosition, int aAccuracy=0) const override
Test if aPosition is inside or on the boundary of this item.
void Move(const VECTOR2I &aMoveVector) override
Move this object.
bool StrokeColumns() const
void SetBorderStyle(const LINE_STYLE aStyle)
void SetStrokeHeader(bool aDoStroke)
void SetSeparatorsColor(const COLOR4D &aColor)
STROKE_PARAMS m_borderStroke
wxString GetItemDescription(UNITS_PROVIDER *aUnitsProvider, bool aFull) const override
Return a user-visible description string of this item.
std::shared_ptr< SHAPE > GetEffectiveShape(PCB_LAYER_ID aLayer=UNDEFINED_LAYER, FLASHING aFlash=FLASHING::DEFAULT) const override
Some pad shapes can be complex (rounded/chamfered rectangle), even without considering custom shapes.
void Flip(const VECTOR2I &aCentre, FLIP_DIRECTION aFlipDirection) override
Flip this object, i.e.
bool StrokeExternal() const
int GetSeparatorsWidth() const
void SetStrokeExternal(bool aDoStroke)
bool StrokeHeader() const
PCB_TABLECELL * GetCell(int aRow, int aCol) const
std::vector< PCB_TABLECELL * > GetCells() const
int GetBorderWidth() const
COLOR4D GetBorderColor() const
bool operator==(const PCB_TABLE &aOther) const
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...
void SetStrokeColumns(bool aDoStroke)
const STROKE_PARAMS & GetSeparatorsStroke() const
std::map< int, int > m_colWidths
virtual void swapData(BOARD_ITEM *aImage) override
void Normalize() override
Perform any normalization required after a user rotate and/or flip.
void AddCell(PCB_TABLECELL *aCell)
const STROKE_PARAMS & GetBorderStroke() const
BITMAPS GetMenuImage() const override
Return a pointer to an image to be used in menus.
void SetStrokeRows(bool aDoStroke)
double Similarity(const BOARD_ITEM &aOther) const override
Return a measure of how likely the other object is to represent the same object.
void TransformShapeToPolygon(SHAPE_POLY_SET &aBuffer, PCB_LAYER_ID aLayer, int aClearance, int aMaxError, ERROR_LOC aErrorLoc, bool aIgnoreLineWidth=false) const override
Convert the item shape to a closed polygon.
LINE_STYLE GetBorderStyle() const
static int Compare(const PCB_TABLE *aTable, const PCB_TABLE *aOther)
int GetColWidth(int aCol) const
VECTOR2I GetPosition() const override
void SetSeparatorsWidth(int aWidth)
COLOR4D GetSeparatorsColor() const
void RunOnChildren(const std::function< void(BOARD_ITEM *)> &aFunction) const override
Invoke a function on all children.
void Rotate(const VECTOR2I &aRotCentre, const EDA_ANGLE &aAngle) override
Rotate this object.
LINE_STYLE GetSeparatorsStyle() const
void SetBorderColor(const COLOR4D &aColor)
PCB_TABLE(BOARD_ITEM *aParent, int aLineWidth)
void SetSeparatorsStyle(const LINE_STYLE aStyle)
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.
void SetPosition(const VECTOR2I &aPos) override
void SetBorderWidth(int aWidth)
int GetRowHeight(int aRow) const
std::map< int, int > m_rowHeights
Provide class metadata.Helper macro to map type hashes to names.
void InheritsAfter(TYPE_ID aDerived, TYPE_ID aBase)
Declare an inheritance relationship between types.
static PROPERTY_MANAGER & Instance()
PROPERTY_BASE & AddProperty(PROPERTY_BASE *aProperty, const wxString &aGroup=wxEmptyString)
Register a property.
void AddTypeCast(TYPE_CAST_BASE *aCast)
Register a type converter.
Represent a set of closed polygons.
Represent a simple polygon consisting of a zero-thickness closed chain of connected line segments.
static bool empty(const wxTextEntryBase *aCtrl)
static constexpr EDA_ANGLE ANGLE_180
const INSPECTOR_FUNC & INSPECTOR
PCB_LAYER_ID FlipLayer(PCB_LAYER_ID aLayerId, int aCopperLayersCount)
FLASHING
Enum used during connectivity building to ensure we do not query connectivity while building the data...
PCB_LAYER_ID
A quick note on layer IDs:
static struct PCB_TABLE_DESC _PCB_TABLE_DESC
LINE_STYLE
Dashed line types.
void RotatePoint(int *pX, int *pY, const EDA_ANGLE &aAngle)
Calculate the new point of coord coord pX, pY, for a rotation center 0, 0.
KICAD_T
The set of class identification values stored in EDA_ITEM::m_structType.
@ PCB_TABLECELL_T
class PCB_TABLECELL, PCB_TEXTBOX for use in tables
@ PCB_TABLE_T
class PCB_TABLE, table of PCB_TABLECELLs
VECTOR2< int32_t > VECTOR2I