2009-11-12 15:43:38 +00:00
|
|
|
/*****************************/
|
|
|
|
/* COTATION class definition */
|
|
|
|
/*****************************/
|
2010-01-18 12:37:53 +00:00
|
|
|
#ifndef DIMENSION_H
|
|
|
|
#define DIMENSION_H
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
#include "base_struct.h"
|
|
|
|
|
2007-08-23 04:28:46 +00:00
|
|
|
class COTATION : public BOARD_ITEM
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2007-08-08 20:51:08 +00:00
|
|
|
public:
|
|
|
|
int m_Width;
|
|
|
|
wxPoint m_Pos;
|
|
|
|
int m_Shape;
|
|
|
|
int m_Unit; /* 0 = inches, 1 = mm */
|
2009-11-12 15:43:38 +00:00
|
|
|
int m_Value; /* value of PCB dimensions. */
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2009-11-12 15:43:38 +00:00
|
|
|
TEXTE_PCB* m_Text;
|
2007-08-08 20:51:08 +00:00
|
|
|
int Barre_ox, Barre_oy, Barre_fx, Barre_fy;
|
|
|
|
int TraitG_ox, TraitG_oy, TraitG_fx, TraitG_fy;
|
|
|
|
int TraitD_ox, TraitD_oy, TraitD_fx, TraitD_fy;
|
|
|
|
int FlecheD1_ox, FlecheD1_oy, FlecheD1_fx, FlecheD1_fy;
|
|
|
|
int FlecheD2_ox, FlecheD2_oy, FlecheD2_fx, FlecheD2_fy;
|
|
|
|
int FlecheG1_ox, FlecheG1_oy, FlecheG1_fx, FlecheG1_fy;
|
|
|
|
int FlecheG2_ox, FlecheG2_oy, FlecheG2_fx, FlecheG2_fy;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
public:
|
2008-12-04 04:28:11 +00:00
|
|
|
COTATION( BOARD_ITEM* aParent );
|
2007-08-23 04:28:46 +00:00
|
|
|
~COTATION();
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2007-12-01 03:42:52 +00:00
|
|
|
wxPoint& GetPosition()
|
|
|
|
{
|
|
|
|
return m_Pos;
|
|
|
|
}
|
2008-04-01 05:21:50 +00:00
|
|
|
|
2009-08-03 07:55:08 +00:00
|
|
|
/**
|
|
|
|
* Function SetLayer
|
|
|
|
* sets the layer this item is on.
|
|
|
|
* @param aLayer The layer number.
|
|
|
|
*/
|
|
|
|
void SetLayer( int aLayer );
|
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
bool ReadCotationDescr( FILE* File, int* LineNum );
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2007-10-30 21:30:58 +00:00
|
|
|
/**
|
|
|
|
* Function Save
|
2007-10-31 14:14:21 +00:00
|
|
|
* writes the data structures for this object out to a FILE in "*.brd" format.
|
2007-10-30 21:30:58 +00:00
|
|
|
* @param aFile The FILE to write to.
|
|
|
|
* @return bool - true if success writing else false.
|
2008-04-01 05:21:50 +00:00
|
|
|
*/
|
2007-10-30 21:30:58 +00:00
|
|
|
bool Save( FILE* aFile ) const;
|
2008-04-01 05:21:50 +00:00
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
void SetText( const wxString& NewText );
|
2007-09-25 08:23:53 +00:00
|
|
|
wxString GetText( void );
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
void Copy( COTATION* source );
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2008-04-01 05:21:50 +00:00
|
|
|
void Draw( WinEDA_DrawPanel* panel, wxDC* DC,
|
|
|
|
int aColorMode, const wxPoint& offset = ZeroOffset );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function Move
|
|
|
|
* @param offset : moving vector
|
|
|
|
*/
|
|
|
|
void Move(const wxPoint& offset);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function Rotate
|
2009-08-01 19:26:05 +00:00
|
|
|
* Rotate this object.
|
|
|
|
* @param const wxPoint& aRotCentre - the rotation point.
|
|
|
|
* @param aAngle - the rotation angle in 0.1 degree.
|
2008-04-01 05:21:50 +00:00
|
|
|
*/
|
2009-08-01 19:26:05 +00:00
|
|
|
virtual void Rotate(const wxPoint& aRotCentre, int aAngle);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function Flip
|
|
|
|
* Flip this object, i.e. change the board side for this object
|
|
|
|
* @param const wxPoint& aCentre - the rotation point.
|
|
|
|
*/
|
|
|
|
virtual void Flip(const wxPoint& aCentre );
|
2008-04-01 05:21:50 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Function Mirror
|
|
|
|
* Mirror the Dimension , relative to a given horizontal axis
|
|
|
|
* the text is not mirrored. only its position (and angle) is mirrored
|
|
|
|
* the layer is not changed
|
|
|
|
* @param axis_pos : vertical axis position
|
|
|
|
*/
|
|
|
|
void Mirror(const wxPoint& axis_pos);
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2007-08-20 19:33:15 +00:00
|
|
|
/**
|
2009-04-17 08:51:02 +00:00
|
|
|
* Function DisplayInfo
|
2007-08-20 19:33:15 +00:00
|
|
|
* has knowledge about the frame and how and where to put status information
|
|
|
|
* about this object into the frame's message panel.
|
|
|
|
* Is virtual from EDA_BaseStruct.
|
2007-08-30 22:20:52 +00:00
|
|
|
* @param frame A WinEDA_DrawFrame in which to print status information.
|
2008-04-01 05:21:50 +00:00
|
|
|
*/
|
2009-04-17 08:51:02 +00:00
|
|
|
void DisplayInfo( WinEDA_DrawFrame* frame );
|
2008-04-01 05:21:50 +00:00
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
/**
|
|
|
|
* Function HitTest
|
|
|
|
* tests if the given wxPoint is within the bounds of this object.
|
|
|
|
* @param ref_pos A wxPoint to test
|
|
|
|
* @return bool - true if a hit, else false
|
|
|
|
*/
|
|
|
|
bool HitTest( const wxPoint& ref_pos );
|
2008-04-01 05:21:50 +00:00
|
|
|
|
2008-01-06 12:43:57 +00:00
|
|
|
/**
|
2009-11-12 15:43:38 +00:00
|
|
|
* Function HitTest (overlaid)
|
2008-01-06 12:43:57 +00:00
|
|
|
* tests if the given EDA_Rect intersect this object.
|
2008-04-01 05:21:50 +00:00
|
|
|
* For now, the anchor must be inside this rect.
|
2008-01-06 12:43:57 +00:00
|
|
|
* @param refArea : the given EDA_Rect
|
|
|
|
* @return bool - true if a hit, else false
|
|
|
|
*/
|
|
|
|
bool HitTest( EDA_Rect& refArea );
|
|
|
|
|
2008-04-01 05:21:50 +00:00
|
|
|
|
2007-08-08 20:51:08 +00:00
|
|
|
/**
|
|
|
|
* Function GetClass
|
|
|
|
* returns the class name.
|
|
|
|
* @return wxString
|
|
|
|
*/
|
|
|
|
wxString GetClass() const
|
|
|
|
{
|
|
|
|
return wxT( "DIMENSION" );
|
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
};
|
|
|
|
|
2010-01-18 12:37:53 +00:00
|
|
|
#endif // #define DIMENSION_H
|