2010-10-08 20:40:57 +00:00
|
|
|
/**********************************************************/
|
|
|
|
/* Graphic Body Item: Polygon and polyline (set of lines) */
|
|
|
|
/**********************************************************/
|
|
|
|
|
|
|
|
#ifndef _LIB_POLYLINE_H_
|
|
|
|
#define _LIB_POLYLINE_H_
|
|
|
|
|
|
|
|
|
|
|
|
#include "lib_draw_item.h"
|
|
|
|
|
|
|
|
|
|
|
|
class LIB_POLYLINE : public LIB_DRAW_ITEM
|
|
|
|
{
|
2010-10-25 15:43:42 +00:00
|
|
|
int m_Width; // Line width
|
|
|
|
std::vector<wxPoint> m_PolyPoints; // list of points (>= 2)
|
|
|
|
|
|
|
|
int m_ModifyIndex; // Index of the polyline point to modify
|
2010-10-20 20:24:26 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Draw the polyline.
|
|
|
|
*/
|
2011-01-21 19:30:59 +00:00
|
|
|
void drawGraphic( EDA_DRAW_PANEL* aPanel, wxDC* aDC, const wxPoint& aOffset,
|
2010-10-20 20:24:26 +00:00
|
|
|
int aColor, int aDrawMode, void* aData, const TRANSFORM& aTransform );
|
|
|
|
|
|
|
|
/**
|
2010-10-25 15:43:42 +00:00
|
|
|
* Calculate the polyline attributes relative to \a aPosition while editing.
|
2010-10-20 20:24:26 +00:00
|
|
|
*
|
|
|
|
* @param aPosition - Edit position in drawing units.
|
|
|
|
*/
|
|
|
|
void calcEdit( const wxPoint& aPosition );
|
|
|
|
|
2010-10-08 20:40:57 +00:00
|
|
|
public:
|
|
|
|
public:
|
2010-10-20 20:24:26 +00:00
|
|
|
LIB_POLYLINE( LIB_COMPONENT * aParent );
|
2010-10-08 20:40:57 +00:00
|
|
|
LIB_POLYLINE( const LIB_POLYLINE& aPolyline );
|
|
|
|
~LIB_POLYLINE() { }
|
|
|
|
|
|
|
|
virtual wxString GetClass() const
|
|
|
|
{
|
|
|
|
return wxT( "LIB_POLYLINE" );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Write polyline object out to a FILE in "*.lib" format.
|
|
|
|
*
|
|
|
|
* @param aFile - The FILE to write to.
|
|
|
|
* @return - true if success writing else false.
|
|
|
|
*/
|
|
|
|
virtual bool Save( FILE* aFile );
|
|
|
|
virtual bool Load( char* aLine, wxString& aErrorMsg );
|
|
|
|
|
|
|
|
void AddPoint( const wxPoint& aPoint );
|
|
|
|
|
2010-10-20 20:24:26 +00:00
|
|
|
/**
|
|
|
|
* Delete the segment at \a aPosition.
|
|
|
|
*/
|
|
|
|
void DeleteSegment( const wxPoint aPosition );
|
|
|
|
|
2010-10-08 20:40:57 +00:00
|
|
|
/**
|
|
|
|
* @return the number of corners
|
|
|
|
*/
|
|
|
|
unsigned GetCornerCount() const { return m_PolyPoints.size(); }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test if the given point is within the bounds of this object.
|
|
|
|
*
|
2010-12-14 15:56:30 +00:00
|
|
|
* @param aPosition - A wxPoint to test
|
2010-10-08 20:40:57 +00:00
|
|
|
* @return - true if a hit, else false
|
|
|
|
*/
|
2010-12-14 15:56:30 +00:00
|
|
|
virtual bool HitTest( const wxPoint& aPosition );
|
2010-10-08 20:40:57 +00:00
|
|
|
|
|
|
|
/**
|
2010-12-14 15:56:30 +00:00
|
|
|
* @param aPosition = a wxPoint to test
|
2010-10-08 20:40:57 +00:00
|
|
|
* @param aThreshold = max distance to a segment
|
2010-10-20 20:24:26 +00:00
|
|
|
* @param aTransform = the transform matrix
|
2010-12-14 15:56:30 +00:00
|
|
|
* @return true if the point \a aPosition is near a segment
|
2010-10-08 20:40:57 +00:00
|
|
|
*/
|
2010-12-14 15:56:30 +00:00
|
|
|
virtual bool HitTest( wxPoint aPosition, int aThreshold, const TRANSFORM& aTransform );
|
2010-10-08 20:40:57 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return the boundary box for this, in library coordinates
|
|
|
|
*/
|
2011-03-29 19:33:07 +00:00
|
|
|
virtual EDA_RECT GetBoundingBox() const;
|
2010-10-08 20:40:57 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return the size of the "pen" that be used to draw or plot this item
|
|
|
|
*/
|
2011-04-18 20:22:17 +00:00
|
|
|
virtual int GetPenSize( ) const;
|
2010-10-08 20:40:57 +00:00
|
|
|
|
2011-01-21 19:30:59 +00:00
|
|
|
virtual void DisplayInfo( EDA_DRAW_FRAME* aFrame );
|
2010-10-08 20:40:57 +00:00
|
|
|
|
2010-10-20 20:24:26 +00:00
|
|
|
/**
|
|
|
|
* See LIB_DRAW_ITEM::BeginEdit().
|
|
|
|
*/
|
|
|
|
void BeginEdit( int aEditMode, const wxPoint aStartPoint = wxPoint( 0, 0 ) );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* See LIB_DRAW_ITEM::ContinueEdit().
|
|
|
|
*/
|
|
|
|
bool ContinueEdit( const wxPoint aNextPoint );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* See LIB_DRAW_ITEM::AbortEdit().
|
|
|
|
*/
|
|
|
|
void EndEdit( const wxPoint& aPosition, bool aAbort = false );
|
|
|
|
|
2010-10-08 20:40:57 +00:00
|
|
|
protected:
|
|
|
|
virtual LIB_DRAW_ITEM* DoGenCopy();
|
|
|
|
|
|
|
|
/**
|
2010-10-25 15:43:42 +00:00
|
|
|
* Provide the polyline segment draw object specific comparison.
|
2010-10-08 20:40:57 +00:00
|
|
|
*
|
|
|
|
* The sort order for each polyline segment point is as follows:
|
|
|
|
* - Line segment point horizontal (X) position.
|
|
|
|
* - Line segment point vertical (Y) position.
|
|
|
|
*/
|
|
|
|
virtual int DoCompare( const LIB_DRAW_ITEM& aOther ) const;
|
|
|
|
|
|
|
|
virtual void DoOffset( const wxPoint& aOffset );
|
2011-03-29 19:33:07 +00:00
|
|
|
virtual bool DoTestInside( EDA_RECT& aRect ) const;
|
2010-10-08 20:40:57 +00:00
|
|
|
virtual void DoMove( const wxPoint& aPosition );
|
2010-10-25 15:43:42 +00:00
|
|
|
virtual wxPoint DoGetPosition() const { return m_PolyPoints[0]; }
|
2010-10-08 20:40:57 +00:00
|
|
|
virtual void DoMirrorHorizontal( const wxPoint& aCenter );
|
|
|
|
virtual void DoPlot( PLOTTER* aPlotter, const wxPoint& aOffset, bool aFill,
|
2010-10-20 20:24:26 +00:00
|
|
|
const TRANSFORM& aTransform );
|
2010-10-25 15:43:42 +00:00
|
|
|
virtual int DoGetWidth() const { return m_Width; }
|
2010-10-08 20:40:57 +00:00
|
|
|
virtual void DoSetWidth( int aWidth ) { m_Width = aWidth; }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2010-10-20 20:24:26 +00:00
|
|
|
#endif // _LIB_POLYLINE_H_
|