KiCad PCB EDA Suite
|
#include <graphics_importer_buffer.h>
Public Types | |
enum | POLY_FILL_RULE { PF_NONZERO = 0 , PF_EVEN_ODD } |
Public Member Functions | |
void | AddLine (const VECTOR2D &aStart, const VECTOR2D &aEnd, const IMPORTED_STROKE &aStroke) override |
Create an object representing a line segment. | |
void | AddCircle (const VECTOR2D &aCenter, double aRadius, const IMPORTED_STROKE &aStroke, bool aFilled, const COLOR4D &aFillColor=COLOR4D::UNSPECIFIED) override |
Create an object representing a circle. | |
void | AddArc (const VECTOR2D &aCenter, const VECTOR2D &aStart, const EDA_ANGLE &aAngle, const IMPORTED_STROKE &aStroke) override |
Create an object representing an arc. | |
void | AddPolygon (const std::vector< VECTOR2D > &aVertices, const IMPORTED_STROKE &aStroke, bool aFilled, const COLOR4D &aFillColor=COLOR4D::UNSPECIFIED) override |
Create an object representing a polygon. | |
void | AddText (const VECTOR2D &aOrigin, const wxString &aText, double aHeight, double aWidth, double aThickness, double aOrientation, GR_TEXT_H_ALIGN_T aHJustify, GR_TEXT_V_ALIGN_T aVJustify, const COLOR4D &aColor=COLOR4D::UNSPECIFIED) override |
Create an object representing a text. | |
void | AddSpline (const VECTOR2D &aStart, const VECTOR2D &aBezierControl1, const VECTOR2D &aBezierControl2, const VECTOR2D &aEnd, const IMPORTED_STROKE &aStroke) override |
Create an object representing an arc. | |
void | ImportTo (GRAPHICS_IMPORTER &aImporter) |
void | AddShape (std::unique_ptr< IMPORTED_SHAPE > &aShape) |
std::list< std::unique_ptr< IMPORTED_SHAPE > > & | GetShapes () |
void | ClearShapes () |
void | PostprocessNestedPolygons () |
void | SetPlugin (std::unique_ptr< GRAPHICS_IMPORT_PLUGIN > aPlugin) |
Set the import plugin used to obtain shapes from a file. | |
bool | Load (const wxString &aFileName) |
Load file and get its basic data. | |
bool | Import (const VECTOR2D &aScale=VECTOR2D(1.0, 1.0)) |
Import shapes from loaded file. | |
const wxString & | GetMessages () const |
Collect warning and error messages after loading/importing. | |
void | ReportMsg (const wxString &aMessage) |
double | GetImageWidthMM () const |
Get original image Width. | |
double | GetImageHeightMM () const |
Get original image Height. | |
void | SetLineWidthMM (double aWidth) |
Set the line width for the imported outlines (in mm). | |
double | GetLineWidthMM () const |
Return the line width used for importing the outlines (in mm). | |
VECTOR2D | GetScale () const |
const VECTOR2D & | GetImportOffsetMM () const |
void | SetImportOffsetMM (const VECTOR2D &aOffset) |
Set the offset in millimeters to add to coordinates when importing graphic items. | |
void | SetScale (const VECTOR2D &aScale) |
Set the scale factor affecting the imported shapes. | |
double | GetMillimeterToIuFactor () |
VECTOR2D | ImportScalingFactor () const |
std::list< std::unique_ptr< EDA_ITEM > > & | GetItems () |
Return the list of objects representing the imported shapes. | |
void | ClearItems () |
Empties out the imported shapes list. | |
virtual void | NewShape (POLY_FILL_RULE aFillRule=PF_NONZERO) |
Static Public Attributes | |
static constexpr unsigned int | DEFAULT_LINE_WIDTH_DFX = 1 |
Protected Member Functions | |
void | addItem (std::unique_ptr< EDA_ITEM > aItem) |
< Add an item to the imported shapes list. | |
Protected Attributes | |
std::list< std::unique_ptr< IMPORTED_SHAPE > > | m_shapes |
< List of imported shapes | |
double | m_millimeterToIu |
Offset (in mm) for imported coordinates. | |
VECTOR2D | m_offsetCoordmm |
std::vector< POLY_FILL_RULE > | m_shapeFillRules |
Private Attributes | |
std::list< std::unique_ptr< EDA_ITEM > > | m_items |
< List of imported items | |
std::unique_ptr< GRAPHICS_IMPORT_PLUGIN > | m_plugin |
Total image width. | |
double | m_originalWidth |
Total image Height;. | |
double | m_originalHeight |
VECTOR2D | m_scale |
Scale factor applied to the imported graphics. | |
double | m_lineWidth |
Definition at line 354 of file graphics_importer_buffer.h.
|
inherited |
Enumerator | |
---|---|
PF_NONZERO | |
PF_EVEN_ODD |
Definition at line 78 of file graphics_importer.h.
|
overridevirtual |
Create an object representing an arc.
aCenter | is the arc center point expressed in mm. |
aStart | is the arc arm end point expressed in mm. Its length is the arc radius. |
aAngle | is the arc angle. |
aStroke | is the shape stroke parameters. |
Implements GRAPHICS_IMPORTER.
Definition at line 57 of file graphics_importer_buffer.cpp.
References m_shapes.
Referenced by DXF_IMPORT_PLUGIN::addArc(), and DXF_IMPORT_PLUGIN::insertArc().
|
overridevirtual |
Create an object representing a circle.
aCenter | is the circle center point expressed in mm. |
aRadius | is the circle radius expressed in mm. |
aStroke | is the shape stroke parameters. |
Implements GRAPHICS_IMPORTER.
Definition at line 48 of file graphics_importer_buffer.cpp.
References m_shapes.
Referenced by DXF_IMPORT_PLUGIN::addCircle(), and DXF_IMPORT_PLUGIN::addPoint().
|
inlineprotectedinherited |
< Add an item to the imported shapes list.
factor to convert millimeters to Internal Units
Definition at line 316 of file graphics_importer.h.
References GRAPHICS_IMPORTER::m_items.
Referenced by GRAPHICS_IMPORTER_LIB_SYMBOL::AddArc(), GRAPHICS_IMPORTER_SCH::AddArc(), GRAPHICS_IMPORTER_PCBNEW::AddArc(), GRAPHICS_IMPORTER_LIB_SYMBOL::AddCircle(), GRAPHICS_IMPORTER_SCH::AddCircle(), GRAPHICS_IMPORTER_PCBNEW::AddCircle(), GRAPHICS_IMPORTER_LIB_SYMBOL::AddLine(), GRAPHICS_IMPORTER_SCH::AddLine(), GRAPHICS_IMPORTER_PCBNEW::AddLine(), GRAPHICS_IMPORTER_LIB_SYMBOL::AddPolygon(), GRAPHICS_IMPORTER_SCH::AddPolygon(), GRAPHICS_IMPORTER_PCBNEW::AddPolygon(), GRAPHICS_IMPORTER_LIB_SYMBOL::AddSpline(), GRAPHICS_IMPORTER_SCH::AddSpline(), GRAPHICS_IMPORTER_PCBNEW::AddSpline(), GRAPHICS_IMPORTER_LIB_SYMBOL::AddText(), GRAPHICS_IMPORTER_SCH::AddText(), and GRAPHICS_IMPORTER_PCBNEW::AddText().
|
overridevirtual |
Create an object representing a line segment.
aOrigin | is the segment origin point expressed in mm. |
aEnd | is the segment end point expressed in mm. |
aStroke | is the shape stroke parameters. |
Implements GRAPHICS_IMPORTER.
Definition at line 41 of file graphics_importer_buffer.cpp.
References m_shapes.
Referenced by DXF_IMPORT_PLUGIN::addLine(), SVG_IMPORT_PLUGIN::DrawLineSegments(), DXF_IMPORT_PLUGIN::insertLine(), and DXF_IMPORT_PLUGIN::insertSpline().
|
overridevirtual |
Create an object representing a polygon.
aVertices | is the array of vertices. |
aWidth | is the stroke width. |
aStroke | is the shape stroke parameters. |
aFillColor | is the fill color. |
Implements GRAPHICS_IMPORTER.
Definition at line 64 of file graphics_importer_buffer.cpp.
References GRAPHICS_IMPORTER::m_shapeFillRules, and m_shapes.
Referenced by SVG_IMPORT_PLUGIN::DrawPolygon().
void GRAPHICS_IMPORTER_BUFFER::AddShape | ( | std::unique_ptr< IMPORTED_SHAPE > & | aShape | ) |
Definition at line 93 of file graphics_importer_buffer.cpp.
References m_shapes.
Referenced by DXF_IMPORT_PLUGIN::addInsert().
|
overridevirtual |
Create an object representing an arc.
aStart | is the curve start point expressed in mm. |
aBezierControl1 | is the first Bezier control point expressed in mm. |
aBezierControl2 | is the second Bezier control point expressed in mm. |
aEnd | is the curve end point expressed in mm. |
aStroke | is the shape stroke parameters. |
Implements GRAPHICS_IMPORTER.
Definition at line 84 of file graphics_importer_buffer.cpp.
References m_shapes.
Referenced by DXF_IMPORT_PLUGIN::addEllipse(), and DXF_IMPORT_PLUGIN::insertSpline().
|
overridevirtual |
Create an object representing a text.
aOrigin | is the text position. |
aText | is the displayed text. |
aHeight | is the text height expressed in mm. |
aWidth | is the text width expressed in mm. |
aOrientation | is the text orientation angle expressed in degrees. |
aHJustify | is the text horizontal justification. |
aVJustify | is the text vertical justification. |
aWidth | is the segment thickness in mm. Use -1 for default line thickness |
aColor | is the shape color |
Implements GRAPHICS_IMPORTER.
Definition at line 74 of file graphics_importer_buffer.cpp.
References m_shapes.
Referenced by DXF_IMPORT_PLUGIN::addMText(), and DXF_IMPORT_PLUGIN::addText().
|
inlineinherited |
Empties out the imported shapes list.
Default line thickness (in mm)
Definition at line 230 of file graphics_importer.h.
References GRAPHICS_IMPORTER::m_items.
|
inline |
Definition at line 383 of file graphics_importer_buffer.h.
References m_shapes.
Referenced by DXF_IMPORT_PLUGIN::Load(), and DXF_IMPORT_PLUGIN::LoadFromMemory().
|
inlineinherited |
Get original image Height.
Definition at line 148 of file graphics_importer.h.
References GRAPHICS_IMPORTER::m_originalHeight.
|
inlineinherited |
Get original image Width.
Definition at line 138 of file graphics_importer.h.
References GRAPHICS_IMPORTER::m_originalWidth.
|
inlineinherited |
Definition at line 180 of file graphics_importer.h.
References GRAPHICS_IMPORTER::m_offsetCoordmm.
Referenced by ImportTo(), GRAPHICS_IMPORTER_LIB_SYMBOL::MapCoordinate(), GRAPHICS_IMPORTER_SCH::MapCoordinate(), and GRAPHICS_IMPORTER_PCBNEW::MapCoordinate().
|
inlineinherited |
Return the list of objects representing the imported shapes.
Definition at line 222 of file graphics_importer.h.
References GRAPHICS_IMPORTER::m_items.
Referenced by SCH_EASYEDAPRO_PARSER::ParseSchematic(), SCH_EASYEDA_PARSER::ParseSchematic(), SCH_EASYEDAPRO_PARSER::ParseSymbol(), and SCH_EASYEDA_PARSER::ParseSymbolShapes().
|
inlineinherited |
Return the line width used for importing the outlines (in mm).
Definition at line 164 of file graphics_importer.h.
References GRAPHICS_IMPORTER::m_lineWidth.
Referenced by GRAPHICS_IMPORTER_LIB_SYMBOL::MapLineWidth(), GRAPHICS_IMPORTER_SCH::MapLineWidth(), GRAPHICS_IMPORTER_PCBNEW::MapLineWidth(), and DXF_IMPORT_PLUGIN::SetImporter().
|
inlineinherited |
Collect warning and error messages after loading/importing.
Definition at line 123 of file graphics_importer.h.
References GRAPHICS_IMPORTER::m_plugin.
|
inlineinherited |
Definition at line 206 of file graphics_importer.h.
References GRAPHICS_IMPORTER::m_millimeterToIu.
Referenced by ImportTo(), GRAPHICS_IMPORTER_LIB_SYMBOL::MapCoordinate(), GRAPHICS_IMPORTER_SCH::MapCoordinate(), and GRAPHICS_IMPORTER_PCBNEW::MapCoordinate().
|
inlineinherited |
Definition at line 172 of file graphics_importer.h.
References GRAPHICS_IMPORTER::m_scale.
Referenced by ImportTo(), GRAPHICS_IMPORTER_LIB_SYMBOL::MapCoordinate(), GRAPHICS_IMPORTER_SCH::MapCoordinate(), and GRAPHICS_IMPORTER_PCBNEW::MapCoordinate().
|
inline |
Definition at line 381 of file graphics_importer_buffer.h.
References m_shapes.
Referenced by DXF_IMPORT_PLUGIN::addInsert().
Import shapes from loaded file.
It is important to have the file loaded before importing.
aScale | allow import graphic items with a non 1:1 import ratio VECTOR2D( 1.0, 1.0 ) to import graphics with their actual size. |
Definition at line 66 of file graphics_importer.cpp.
References GRAPHICS_IMPORTER::m_plugin, and GRAPHICS_IMPORTER::SetScale().
|
inlineinherited |
Definition at line 214 of file graphics_importer.h.
References GRAPHICS_IMPORTER::m_millimeterToIu, and GRAPHICS_IMPORTER::m_scale.
Referenced by GRAPHICS_IMPORTER_LIB_SYMBOL::AddText(), GRAPHICS_IMPORTER_SCH::AddText(), GRAPHICS_IMPORTER_PCBNEW::AddText(), GRAPHICS_IMPORTER_LIB_SYMBOL::MapLineWidth(), GRAPHICS_IMPORTER_SCH::MapLineWidth(), and GRAPHICS_IMPORTER_PCBNEW::MapLineWidth().
void GRAPHICS_IMPORTER_BUFFER::ImportTo | ( | GRAPHICS_IMPORTER & | aImporter | ) |
Definition at line 99 of file graphics_importer_buffer.cpp.
References _, boundingBox(), BOX2< Vec >::GetBottom(), GRAPHICS_IMPORTER::GetImportOffsetMM(), BOX2< Vec >::GetLeft(), GRAPHICS_IMPORTER::GetMillimeterToIuFactor(), BOX2< Vec >::GetOrigin(), BOX2< Vec >::GetPosition(), BOX2< Vec >::GetRight(), GRAPHICS_IMPORTER::GetScale(), BOX2< Vec >::GetSize(), BOX2< Vec >::GetTop(), BOX2< Vec >::IsValid(), m_shapes, BOX2< Vec >::Merge(), GRAPHICS_IMPORTER::ReportMsg(), GRAPHICS_IMPORTER::SetImportOffsetMM(), BOX2< Vec >::SetOrigin(), BOX2< Vec >::SetSize(), VECTOR2< T >::x, and VECTOR2< T >::y.
Referenced by DXF_IMPORT_PLUGIN::Import(), and SVG_IMPORT_PLUGIN::Import().
|
inherited |
Load file and get its basic data.
Definition at line 42 of file graphics_importer.cpp.
References GRAPHICS_IMPORTER::m_items, GRAPHICS_IMPORTER::m_originalHeight, GRAPHICS_IMPORTER::m_originalWidth, and GRAPHICS_IMPORTER::m_plugin.
|
virtualinherited |
Definition at line 95 of file graphics_importer.cpp.
References GRAPHICS_IMPORTER::m_shapeFillRules.
Referenced by SVG_IMPORT_PLUGIN::Import().
void GRAPHICS_IMPORTER_BUFFER::PostprocessNestedPolygons | ( | ) |
Definition at line 277 of file graphics_importer_buffer.cpp.
References convertPolygon(), IMPORTED_POLYGON::GetFillColor(), IMPORTED_SHAPE::GetParentShapeIndex(), IMPORTED_POLYGON::GetStroke(), IMPORTED_POLYGON::IsFilled(), GRAPHICS_IMPORTER::m_shapeFillRules, and m_shapes.
Referenced by SVG_IMPORT_PLUGIN::Import().
|
inlineinherited |
Definition at line 128 of file graphics_importer.h.
References GRAPHICS_IMPORTER::m_plugin.
Referenced by ImportTo().
|
inlineinherited |
Set the offset in millimeters to add to coordinates when importing graphic items.
Definition at line 188 of file graphics_importer.h.
References GRAPHICS_IMPORTER::m_offsetCoordmm.
Referenced by ConvertSVGToLibShapes(), ImportTo(), SCH_EASYEDAPRO_PARSER::ParseSchematic(), SCH_EASYEDA_PARSER::ParseSchematic(), SCH_EASYEDAPRO_PARSER::ParseSymbol(), and SCH_EASYEDA_PARSER::ParseSymbolShapes().
|
inlineinherited |
Set the line width for the imported outlines (in mm).
Definition at line 156 of file graphics_importer.h.
References GRAPHICS_IMPORTER::m_lineWidth.
|
inlineinherited |
Set the import plugin used to obtain shapes from a file.
Definition at line 93 of file graphics_importer.h.
References GRAPHICS_IMPORTER::m_plugin.
|
inlineinherited |
Set the scale factor affecting the imported shapes.
This allows conversion between imported shapes units and millimeters.
Definition at line 198 of file graphics_importer.h.
References GRAPHICS_IMPORTER::m_scale.
Referenced by ConvertSVGToLibShapes(), GRAPHICS_IMPORTER::Import(), SCH_EASYEDAPRO_PARSER::ParseSchematic(), SCH_EASYEDA_PARSER::ParseSchematic(), SCH_EASYEDAPRO_PARSER::ParseSymbol(), and SCH_EASYEDA_PARSER::ParseSymbolShapes().
|
staticconstexprinherited |
Definition at line 236 of file graphics_importer.h.
Referenced by GRAPHICS_IMPORTER::GRAPHICS_IMPORTER().
|
privateinherited |
< List of imported items
Plugin used to load a file
Definition at line 331 of file graphics_importer.h.
Referenced by GRAPHICS_IMPORTER::addItem(), GRAPHICS_IMPORTER::ClearItems(), GRAPHICS_IMPORTER::GetItems(), and GRAPHICS_IMPORTER::Load().
|
privateinherited |
Definition at line 350 of file graphics_importer.h.
Referenced by GRAPHICS_IMPORTER::GetLineWidthMM(), GRAPHICS_IMPORTER::GRAPHICS_IMPORTER(), and GRAPHICS_IMPORTER::SetLineWidthMM().
|
protectedinherited |
Offset (in mm) for imported coordinates.
Definition at line 322 of file graphics_importer.h.
Referenced by GRAPHICS_IMPORTER::GetMillimeterToIuFactor(), GRAPHICS_IMPORTER::GRAPHICS_IMPORTER(), GRAPHICS_IMPORTER_LIB_SYMBOL::GRAPHICS_IMPORTER_LIB_SYMBOL(), GRAPHICS_IMPORTER_PCBNEW::GRAPHICS_IMPORTER_PCBNEW(), GRAPHICS_IMPORTER_SCH::GRAPHICS_IMPORTER_SCH(), and GRAPHICS_IMPORTER::ImportScalingFactor().
|
protectedinherited |
Definition at line 325 of file graphics_importer.h.
Referenced by GRAPHICS_IMPORTER::GetImportOffsetMM(), and GRAPHICS_IMPORTER::SetImportOffsetMM().
|
privateinherited |
Definition at line 340 of file graphics_importer.h.
Referenced by GRAPHICS_IMPORTER::GetImageHeightMM(), GRAPHICS_IMPORTER::GRAPHICS_IMPORTER(), and GRAPHICS_IMPORTER::Load().
|
privateinherited |
Total image Height;.
Definition at line 337 of file graphics_importer.h.
Referenced by GRAPHICS_IMPORTER::GetImageWidthMM(), GRAPHICS_IMPORTER::GRAPHICS_IMPORTER(), and GRAPHICS_IMPORTER::Load().
|
privateinherited |
Total image width.
Definition at line 334 of file graphics_importer.h.
Referenced by GRAPHICS_IMPORTER::GetMessages(), GRAPHICS_IMPORTER::Import(), GRAPHICS_IMPORTER::Load(), GRAPHICS_IMPORTER::ReportMsg(), and GRAPHICS_IMPORTER::SetPlugin().
|
privateinherited |
Scale factor applied to the imported graphics.
1.0 does not change the size of imported items scale < 1.0 reduce the size of imported items Default line thickness for the imported graphics
Definition at line 347 of file graphics_importer.h.
Referenced by GRAPHICS_IMPORTER::GetScale(), GRAPHICS_IMPORTER::GRAPHICS_IMPORTER(), GRAPHICS_IMPORTER::ImportScalingFactor(), and GRAPHICS_IMPORTER::SetScale().
|
protectedinherited |
Definition at line 327 of file graphics_importer.h.
Referenced by AddPolygon(), GRAPHICS_IMPORTER::NewShape(), and PostprocessNestedPolygons().
|
protected |
< List of imported shapes
Definition at line 389 of file graphics_importer_buffer.h.
Referenced by AddArc(), AddCircle(), AddLine(), AddPolygon(), AddShape(), AddSpline(), AddText(), ClearShapes(), GetShapes(), ImportTo(), and PostprocessNestedPolygons().