KiCad PCB EDA Suite
Loading...
Searching...
No Matches
EDIT_POINT Class Reference

Represent a single point that can be used for modifying items. More...

#include <edit_points.h>

Inheritance diagram for EDIT_POINT:
EDIT_LINE

Public Member Functions

 EDIT_POINT (const VECTOR2I &aPoint, std::pair< EDA_ITEM *, int > aConnected={ nullptr, 0 })
 
virtual ~EDIT_POINT ()
 
virtual VECTOR2I GetPosition () const
 Return coordinates of an EDIT_POINT.
 
virtual std::pair< EDA_ITEM *, int > GetConnected () const
 Return a connected item record comprising an EDA_ITEM* and a STARTPOINT/ENDPOINT flag.
 
int GetX () const
 Return X coordinate of an EDIT_POINT.
 
int GetY () const
 Return Y coordinate of an EDIT_POINT.
 
virtual void SetPosition (const VECTOR2I &aPosition)
 Set new coordinates for an EDIT_POINT.
 
virtual void SetPosition (int x, int y)
 
bool WithinPoint (const VECTOR2I &aPoint, unsigned int aSize) const
 Check if given point is within a square centered in the EDIT_POINT position.
 
void SetConstraint (EDIT_CONSTRAINT< EDIT_POINT > *aConstraint)
 Set a constraint for and EDIT_POINT.
 
EDIT_CONSTRAINT< EDIT_POINT > * GetConstraint () const
 Return the constraint imposed on an EDIT_POINT.
 
void ClearConstraint ()
 Remove previously set constraint.
 
bool IsConstrained () const
 Check if point is constrained.
 
virtual void ApplyConstraint (const GRID_HELPER &aGrid)
 Correct coordinates of an EDIT_POINT by applying previously set constraint.
 
bool IsActive () const
 
void SetActive (bool aActive=true)
 
bool IsHover () const
 
void SetHover (bool aHover=true)
 
GRID_CONSTRAINT_TYPE GetGridConstraint () const
 
void SetGridConstraint (GRID_CONSTRAINT_TYPE aConstraint)
 
SNAP_CONSTRAINT_TYPE GetSnapConstraint () const
 
void SetSnapConstraint (SNAP_CONSTRAINT_TYPE aConstraint)
 
bool operator== (const EDIT_POINT &aOther) const
 Single point size in pixels.
 

Static Public Attributes

static const int POINT_SIZE = 8
 
static const int BORDER_SIZE = 2
 Border size when not hovering.
 
static const int HOVER_SIZE = 5
 Border size when hovering.
 

Private Attributes

VECTOR2I m_position
 Position of EDIT_POINT.
 
bool m_isActive
 True if this point is being manipulated.
 
bool m_isHover
 True if this point is being hovered over.
 
GRID_CONSTRAINT_TYPE m_gridConstraint
 Describe the grid snapping behavior.
 
SNAP_CONSTRAINT_TYPE m_snapConstraint
 Describe the object snapping behavior.
 
std::pair< EDA_ITEM *, int > m_connected
 Constraint for the point, NULL if none.
 
std::shared_ptr< EDIT_CONSTRAINT< EDIT_POINT > > m_constraint
 

Detailed Description

Represent a single point that can be used for modifying items.

It is directly related to one of points in a graphical item (e.g. vertex of a zone or center of a circle).

Definition at line 47 of file edit_points.h.

Constructor & Destructor Documentation

◆ EDIT_POINT()

EDIT_POINT::EDIT_POINT ( const VECTOR2I aPoint,
std::pair< EDA_ITEM *, int >  aConnected = { nullptr, 0 } 
)
inline
Parameters
aPointstores coordinates for EDIT_POINT.

Definition at line 53 of file edit_points.h.

◆ ~EDIT_POINT()

virtual EDIT_POINT::~EDIT_POINT ( )
inlinevirtual

Definition at line 63 of file edit_points.h.

Member Function Documentation

◆ ApplyConstraint()

virtual void EDIT_POINT::ApplyConstraint ( const GRID_HELPER aGrid)
inlinevirtual

Correct coordinates of an EDIT_POINT by applying previously set constraint.

Reimplemented in EDIT_LINE.

Definition at line 166 of file edit_points.h.

References m_constraint.

Referenced by EDIT_LINE::ApplyConstraint(), and PCB_POINT_EDITOR::OnSelectionChange().

◆ ClearConstraint()

void EDIT_POINT::ClearConstraint ( )
inline

Remove previously set constraint.

Definition at line 148 of file edit_points.h.

References m_constraint.

◆ GetConnected()

virtual std::pair< EDA_ITEM *, int > EDIT_POINT::GetConnected ( ) const
inlinevirtual

Return a connected item record comprising an EDA_ITEM* and a STARTPOINT/ENDPOINT flag.

Definition at line 79 of file edit_points.h.

References m_connected.

◆ GetConstraint()

EDIT_CONSTRAINT< EDIT_POINT > * EDIT_POINT::GetConstraint ( ) const
inline

Return the constraint imposed on an EDIT_POINT.

If there are no constraints, NULL is returned.

Definition at line 140 of file edit_points.h.

References m_constraint.

◆ GetGridConstraint()

GRID_CONSTRAINT_TYPE EDIT_POINT::GetGridConstraint ( ) const
inline

◆ GetPosition()

◆ GetSnapConstraint()

SNAP_CONSTRAINT_TYPE EDIT_POINT::GetSnapConstraint ( ) const
inline

Definition at line 181 of file edit_points.h.

References m_snapConstraint.

Referenced by PCB_POINT_EDITOR::OnSelectionChange().

◆ GetX()

int EDIT_POINT::GetX ( ) const
inline

Return X coordinate of an EDIT_POINT.

Definition at line 87 of file edit_points.h.

References GetPosition(), and VECTOR2< T >::x.

◆ GetY()

int EDIT_POINT::GetY ( ) const
inline

Return Y coordinate of an EDIT_POINT.

Definition at line 95 of file edit_points.h.

References GetPosition(), and VECTOR2< T >::y.

◆ IsActive()

bool EDIT_POINT::IsActive ( ) const
inline

Definition at line 172 of file edit_points.h.

References m_isActive.

Referenced by EDIT_POINTS::ViewDraw().

◆ IsConstrained()

bool EDIT_POINT::IsConstrained ( ) const
inline

Check if point is constrained.

Returns
True is point is constrained, false otherwise.

Definition at line 158 of file edit_points.h.

References m_constraint.

Referenced by PCB_POINT_EDITOR::OnSelectionChange().

◆ IsHover()

bool EDIT_POINT::IsHover ( ) const
inline

Definition at line 175 of file edit_points.h.

References m_isHover.

Referenced by EDIT_POINTS::ViewDraw().

◆ operator==()

bool EDIT_POINT::operator== ( const EDIT_POINT aOther) const
inline

Single point size in pixels.

Definition at line 184 of file edit_points.h.

References m_position.

◆ SetActive()

void EDIT_POINT::SetActive ( bool  aActive = true)
inline

Definition at line 173 of file edit_points.h.

References m_isActive.

Referenced by PCB_POINT_EDITOR::OnSelectionChange().

◆ SetConstraint()

void EDIT_POINT::SetConstraint ( EDIT_CONSTRAINT< EDIT_POINT > *  aConstraint)
inline

Set a constraint for and EDIT_POINT.

Parameters
aConstraintis the constraint to be set.

Definition at line 131 of file edit_points.h.

References m_constraint.

◆ SetGridConstraint()

void EDIT_POINT::SetGridConstraint ( GRID_CONSTRAINT_TYPE  aConstraint)
inline

Definition at line 179 of file edit_points.h.

References m_gridConstraint.

Referenced by EDIT_LINE::EDIT_LINE().

◆ SetHover()

void EDIT_POINT::SetHover ( bool  aHover = true)
inline

Definition at line 176 of file edit_points.h.

References m_isHover.

Referenced by PCB_POINT_EDITOR::updateEditedPoint().

◆ SetPosition() [1/2]

virtual void EDIT_POINT::SetPosition ( const VECTOR2I aPosition)
inlinevirtual

Set new coordinates for an EDIT_POINT.

It does not change the coordinates of a graphical item.

Parameters
aPositionare new coordinates.

Reimplemented in EDIT_LINE.

Definition at line 107 of file edit_points.h.

References m_position.

Referenced by EC_CONVERGING::Apply(), EC_PERPLINE::Apply(), EC_VERTICAL::Apply(), EC_HORIZONTAL::Apply(), EC_45DEGREE::Apply(), EC_LINE::Apply(), EC_CIRCLE::Apply(), EE_POINT_EDITOR::Main(), PL_POINT_EDITOR::Main(), PCB_POINT_EDITOR::movePoint(), PCB_POINT_EDITOR::OnSelectionChange(), and EDIT_LINE::SetPosition().

◆ SetPosition() [2/2]

virtual void EDIT_POINT::SetPosition ( int  x,
int  y 
)
inlinevirtual

Definition at line 112 of file edit_points.h.

References m_position, VECTOR2< T >::x, and VECTOR2< T >::y.

◆ SetSnapConstraint()

void EDIT_POINT::SetSnapConstraint ( SNAP_CONSTRAINT_TYPE  aConstraint)
inline

Definition at line 182 of file edit_points.h.

References m_snapConstraint.

◆ WithinPoint()

bool EDIT_POINT::WithinPoint ( const VECTOR2I aPoint,
unsigned int  aSize 
) const

Check if given point is within a square centered in the EDIT_POINT position.

Parameters
aPointis point to be checked.
aSizeis length of the square side.

Definition at line 33 of file edit_points.cpp.

References GetPosition(), VECTOR2< T >::x, and VECTOR2< T >::y.

Member Data Documentation

◆ BORDER_SIZE

const int EDIT_POINT::BORDER_SIZE = 2
static

Border size when not hovering.

Definition at line 196 of file edit_points.h.

Referenced by EDIT_POINTS::ViewDraw().

◆ HOVER_SIZE

const int EDIT_POINT::HOVER_SIZE = 5
static

Border size when hovering.

Definition at line 197 of file edit_points.h.

Referenced by EDIT_POINTS::ViewDraw().

◆ m_connected

std::pair<EDA_ITEM*, int> EDIT_POINT::m_connected
private

Constraint for the point, NULL if none.

Definition at line 209 of file edit_points.h.

Referenced by GetConnected().

◆ m_constraint

std::shared_ptr<EDIT_CONSTRAINT<EDIT_POINT> > EDIT_POINT::m_constraint
private

◆ m_gridConstraint

GRID_CONSTRAINT_TYPE EDIT_POINT::m_gridConstraint
private

Describe the grid snapping behavior.

Definition at line 204 of file edit_points.h.

Referenced by GetGridConstraint(), and SetGridConstraint().

◆ m_isActive

bool EDIT_POINT::m_isActive
private

True if this point is being manipulated.

Definition at line 202 of file edit_points.h.

Referenced by IsActive(), and SetActive().

◆ m_isHover

bool EDIT_POINT::m_isHover
private

True if this point is being hovered over.

Definition at line 203 of file edit_points.h.

Referenced by IsHover(), and SetHover().

◆ m_position

VECTOR2I EDIT_POINT::m_position
private

Position of EDIT_POINT.

Definition at line 201 of file edit_points.h.

Referenced by GetPosition(), operator==(), and SetPosition().

◆ m_snapConstraint

SNAP_CONSTRAINT_TYPE EDIT_POINT::m_snapConstraint
private

Describe the object snapping behavior.

An optional connected item record used to mimic polyLine behavior with individual line segments.

Definition at line 205 of file edit_points.h.

Referenced by GetSnapConstraint(), and SetSnapConstraint().

◆ POINT_SIZE

const int EDIT_POINT::POINT_SIZE = 8
static

The documentation for this class was generated from the following files: