2010-10-08 20:40:57 +00:00
|
|
|
/********************************/
|
|
|
|
/* Graphic Body Item: Rectangle */
|
|
|
|
/********************************/
|
|
|
|
|
|
|
|
#ifndef _LIB_RECTANGLE_H_
|
|
|
|
#define _LIB_RECTANGLE_H_
|
|
|
|
|
|
|
|
|
|
|
|
#include "lib_draw_item.h"
|
|
|
|
|
|
|
|
|
|
|
|
class LIB_RECTANGLE : public LIB_DRAW_ITEM
|
|
|
|
{
|
2010-10-25 15:43:42 +00:00
|
|
|
wxPoint m_End; // Rectangle end point.
|
|
|
|
wxPoint m_Pos; // Rectangle start point.
|
|
|
|
int m_Width; // Line width
|
|
|
|
bool m_isWidthLocked; // Flag: Keep width locked
|
|
|
|
bool m_isHeightLocked; // Flag: Keep height locked
|
|
|
|
bool m_isStartPointSelected; // Flag: is the upper left edge selected?
|
|
|
|
|
2010-10-20 20:24:26 +00:00
|
|
|
/**
|
|
|
|
* Draw the rectangle.
|
|
|
|
*/
|
|
|
|
void drawGraphic( WinEDA_DrawPanel* aPanel, wxDC* aDC, const wxPoint& aOffset,
|
|
|
|
int aColor, int aDrawMode, void* aData, const TRANSFORM& aTransform );
|
|
|
|
|
|
|
|
/**
|
2010-10-25 15:43:42 +00:00
|
|
|
* Calculate the rectangle 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_RECTANGLE( LIB_COMPONENT * aParent );
|
2010-10-08 20:40:57 +00:00
|
|
|
LIB_RECTANGLE( const LIB_RECTANGLE& aRect );
|
|
|
|
~LIB_RECTANGLE() { }
|
|
|
|
virtual wxString GetClass() const
|
|
|
|
{
|
|
|
|
return wxT( "LIB_RECTANGLE" );
|
|
|
|
}
|
|
|
|
|
2010-10-25 15:43:42 +00:00
|
|
|
void SetEndPosition( const wxPoint& aPosition ) { m_End = aPosition; }
|
2010-10-08 20:40:57 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Write rectangle 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 );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
|
|
|
/**
|
|
|
|
* @param aPosRef - a wxPoint to test
|
|
|
|
* @param aThreshold - max distance to this object (usually the half
|
|
|
|
* thickness of a line)
|
2010-10-20 20:24:26 +00:00
|
|
|
* @param aTransform - the transform matrix
|
2010-10-08 20:40:57 +00:00
|
|
|
* @return true if the point aPosRef is near this object
|
|
|
|
*/
|
2010-10-20 20:24:26 +00:00
|
|
|
virtual bool HitTest( wxPoint aPosRef, int aThreshold, const TRANSFORM& aTransform );
|
2010-10-08 20:40:57 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return the size of the "pen" that be used to draw or plot this item
|
|
|
|
*/
|
|
|
|
virtual int GetPenSize( );
|
|
|
|
|
2010-12-10 19:47:44 +00:00
|
|
|
virtual EDA_Rect GetBoundingBox() const;
|
|
|
|
|
2010-10-08 20:40:57 +00:00
|
|
|
virtual void DisplayInfo( WinEDA_DrawFrame* aFrame );
|
|
|
|
|
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();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Provide the rectangle draw object specific comparison.
|
|
|
|
*
|
|
|
|
* The sort order is as follows:
|
|
|
|
* - Rectangle horizontal (X) start position.
|
|
|
|
* - Rectangle vertical (Y) start position.
|
|
|
|
* - Rectangle horizontal (X) end position.
|
|
|
|
* - Rectangle vertical (Y) end position.
|
|
|
|
*/
|
|
|
|
virtual int DoCompare( const LIB_DRAW_ITEM& aOther ) const;
|
|
|
|
|
|
|
|
virtual void DoOffset( const wxPoint& aOffset );
|
2010-10-25 15:43:42 +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_Pos; }
|
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-25 15:43:42 +00:00
|
|
|
#endif // _LIB_RECTANGLE_H_
|