67 m_text.SetParentGroup(
nullptr );
91 table->SetColCount( 2 );
93 for(
int ii = 0; ii < 4; ++ii )
98 table->InsertCell( ii, cell );
147 BOOST_FAIL( wxString::Format(
148 "Unhandled type: %d "
149 "(if you created a new type you need to handle it in this switch statement)",
179 auto item = std::unique_ptr<BOARD_ITEM>( Instantiate( type ) );
181 if( item ==
nullptr )
192 PCB_DIMENSION_BASE* originalDimension =
193 dynamic_cast<PCB_DIMENSION_BASE*>( aOriginalItem );
195 if( originalDimension != nullptr )
196 originalDimension->Update();
198 auto item = std::unique_ptr<BOARD_ITEM>( aOriginalItem->Duplicate( IGNORE_PARENT_GROUP ) );
199 VECTOR2I originalPos = item->GetPosition();
205 BOOST_CHECK_EQUAL( item->GetPosition(), originalPos + aRef );
208 CompareItems( item.get(), aOriginalItem );
221 auto item = std::unique_ptr<BOARD_ITEM>( Instantiate( type ) );
223 if( item ==
nullptr )
236 PCB_DIMENSION_BASE* originalDimension =
237 dynamic_cast<PCB_DIMENSION_BASE*>( aOriginalItem );
239 if( originalDimension != nullptr )
240 originalDimension->Update();
242 auto item = std::unique_ptr<BOARD_ITEM>( aOriginalItem->Duplicate( IGNORE_PARENT_GROUP ) );
246 item->Rotate( aRef, EDA_ANGLE( 90.0, DEGREES_T ) );
247 item->Rotate( aRef, EDA_ANGLE( 90.0, DEGREES_T ) );
248 item->Rotate( aRef, EDA_ANGLE( 90.0, DEGREES_T ) );
249 item->Rotate( aRef, EDA_ANGLE( 90.0, DEGREES_T ) );
251 CompareItems( item.get(), aOriginalItem );
264 auto item = std::unique_ptr<BOARD_ITEM>( Instantiate( type ) );
266 if( item ==
nullptr )
277 PCB_DIMENSION_BASE* originalDimension =
278 dynamic_cast<PCB_DIMENSION_BASE*>( aOriginalItem );
280 if( originalDimension != nullptr )
281 originalDimension->Update();
283 auto item = std::unique_ptr<BOARD_ITEM>( aOriginalItem->Duplicate( IGNORE_PARENT_GROUP ) );
287 item->Flip( aRef, FLIP_DIRECTION::LEFT_RIGHT );
288 item->Flip( aRef, FLIP_DIRECTION::LEFT_RIGHT );
290 CompareItems( item.get(), aOriginalItem );
303 auto item = std::unique_ptr<BOARD_ITEM>( Instantiate( type ) );
305 if( item ==
nullptr )
316 PCB_DIMENSION_BASE* originalDimension =
317 dynamic_cast<PCB_DIMENSION_BASE*>( aOriginalItem );
319 if( originalDimension != nullptr )
320 originalDimension->Update();
322 auto item = std::unique_ptr<BOARD_ITEM>( aOriginalItem->Duplicate( IGNORE_PARENT_GROUP ) );
326 item->Flip( aRef, FLIP_DIRECTION::TOP_BOTTOM );
327 item->Flip( aRef, FLIP_DIRECTION::TOP_BOTTOM );
329 CompareItems( item.get(), aOriginalItem );
constexpr EDA_IU_SCALE pcbIUScale
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
Information pertinent to a Pcbnew printed circuit board.
constexpr coord_type GetLeft() const
constexpr coord_type GetRight() const
constexpr coord_type GetTop() const
constexpr coord_type GetBottom() const
virtual VECTOR2I GetPosition() const
virtual const BOX2I GetBoundingBox() const
Return the orthogonal bounding box of this object for display purposes.
void SetRectangleHeight(const int &aHeight)
void SetRectangleWidth(const int &aWidth)
For better understanding of the points that make a dimension:
Mark the center of a circle or arc with a cross shape.
A leader is a dimension-like object pointing to a specific point.
An orthogonal dimension is like an aligned dimension, but the extension lines are locked to the X or ...
A radial dimension indicates either the radius or diameter of an arc or circle.
A set of BOARD_ITEMs (i.e., without duplicates).
A PCB_POINT is a 0-dimensional point that is used to mark a position on a PCB, or more usually a foot...
Object to handle a bitmap image that can be inserted in a PCB.
BOARD_ITEM * Instantiate(KICAD_T aType)
static void CompareItems(BOARD_ITEM *aItem, BOARD_ITEM *aOriginalItem)
TEST_BOARD_ITEM_FIXTURE()
~TEST_BOARD_ITEM_FIXTURE()
std::shared_ptr< DRC_ITEM > m_drcItem
Handle a list of polygons defining a copper zone.
bool AppendCorner(VECTOR2I aPosition, int aHoleIdx, bool aAllowDuplication=false)
Add a new corner to the zone outline (to the main outline or a hole)
@ DRCE_MALFORMED_COURTYARD
static void IterateOverPositionsAndReferences(T *aItem, void(*aCallback)(T *, VECTOR2I))
Class to handle a set of BOARD_ITEMs.
@ USER
The field ID hasn't been set yet; field is invalid.
BOOST_AUTO_TEST_CASE(HorizontalAlignment)
BOOST_AUTO_TEST_CASE(Move)
BOOST_AUTO_TEST_SUITE_END()
BOOST_TEST_CONTEXT("Test Clearance")
BOOST_CHECK_EQUAL(result, "25.4")
KICAD_T
The set of class identification values stored in EDA_ITEM::m_structType.
@ PCB_SHAPE_T
class PCB_SHAPE, a segment not on copper layers
@ PCB_DIM_ORTHOGONAL_T
class PCB_DIM_ORTHOGONAL, a linear dimension constrained to x/y
@ PCB_DIM_LEADER_T
class PCB_DIM_LEADER, a leader dimension (graphic item)
@ PCB_GENERATOR_T
class PCB_GENERATOR, generator on a layer
@ PCB_VIA_T
class PCB_VIA, a via (like a track segment on a copper layer)
@ PCB_DIM_CENTER_T
class PCB_DIM_CENTER, a center point marking (graphic item)
@ PCB_GROUP_T
class PCB_GROUP, a set of BOARD_ITEMs
@ PCB_TEXTBOX_T
class PCB_TEXTBOX, wrapped text on a layer
@ PCB_ZONE_T
class ZONE, a copper pour area
@ PCB_TEXT_T
class PCB_TEXT, text on a layer
@ PCB_REFERENCE_IMAGE_T
class PCB_REFERENCE_IMAGE, bitmap on a layer
@ PCB_ITEM_LIST_T
class BOARD_ITEM_LIST, a list of board items
@ PCB_FIELD_T
class PCB_FIELD, text associated with a footprint property
@ PCB_MARKER_T
class PCB_MARKER, a marker used to show something
@ PCB_TARGET_T
class PCB_TARGET, a target (graphic item)
@ PCB_TABLECELL_T
class PCB_TABLECELL, PCB_TEXTBOX for use in tables
@ PCB_FOOTPRINT_T
class FOOTPRINT, a footprint
@ PCB_DIM_ALIGNED_T
class PCB_DIM_ALIGNED, a linear dimension (graphic item)
@ PCB_PAD_T
class PAD, a pad in a footprint
@ PCB_BOARD_OUTLINE_T
class PCB_BOARD_OUTLINE_T, a pcb board outline item
@ PCB_ARC_T
class PCB_ARC, an arc track segment on a copper layer
@ PCB_TABLE_T
class PCB_TABLE, table of PCB_TABLECELLs
@ PCB_NETINFO_T
class NETINFO_ITEM, a description of a net
@ PCB_POINT_T
class PCB_POINT, a 0-dimensional point
@ PCB_TRACE_T
class PCB_TRACK, a track segment (segment on a copper layer)
@ PCB_DIM_RADIAL_T
class PCB_DIM_RADIAL, a radius or diameter dimension
constexpr bool IsPcbnewType(const KICAD_T aType)
constexpr bool IsInstantiableType(const KICAD_T aType)
VECTOR2< int32_t > VECTOR2I