2011-09-23 13:57:12 +00:00
|
|
|
/**
|
|
|
|
* @file class_marker_pcb.h
|
|
|
|
* @brief Markers used to show a drc problem on boards.
|
|
|
|
*/
|
2007-10-26 09:41:25 +00:00
|
|
|
|
2009-08-01 19:26:05 +00:00
|
|
|
#ifndef CLASS_MARKER_PCB_H
|
|
|
|
#define CLASS_MARKER_PCB_H
|
2007-10-26 09:41:25 +00:00
|
|
|
|
2011-09-23 13:57:12 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <class_board_item.h>
|
|
|
|
#include <class_marker_base.h>
|
2007-10-26 09:41:25 +00:00
|
|
|
|
2011-09-23 13:57:12 +00:00
|
|
|
|
2009-08-01 19:26:05 +00:00
|
|
|
class MARKER_PCB : public BOARD_ITEM, public MARKER_BASE
|
2007-10-26 09:41:25 +00:00
|
|
|
{
|
2008-04-01 05:21:50 +00:00
|
|
|
|
2007-10-26 09:41:25 +00:00
|
|
|
public:
|
2007-12-01 03:42:52 +00:00
|
|
|
|
2009-08-01 19:26:05 +00:00
|
|
|
MARKER_PCB( BOARD_ITEM* aParent );
|
2007-12-01 03:42:52 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
* @param aErrorCode The categorizing identifier for an error
|
2009-08-01 19:26:05 +00:00
|
|
|
* @param aMarkerPos The position of the MARKER_PCB on the BOARD
|
2007-12-01 03:42:52 +00:00
|
|
|
* @param aText Text describing the first of two objects
|
|
|
|
* @param aPos The position of the first of two objects
|
|
|
|
* @param bText Text describing the second of the two conflicting objects
|
|
|
|
* @param bPos The position of the second of two objects
|
|
|
|
*/
|
2009-08-01 19:26:05 +00:00
|
|
|
MARKER_PCB( int aErrorCode, const wxPoint& aMarkerPos,
|
2011-08-01 15:29:27 +00:00
|
|
|
const wxString& aText, const wxPoint& aPos,
|
|
|
|
const wxString& bText, const wxPoint& bPos );
|
2009-09-10 15:22:26 +00:00
|
|
|
|
|
|
|
/**
|
2008-01-12 20:31:56 +00:00
|
|
|
* Constructor
|
|
|
|
* @param aErrorCode The categorizing identifier for an error
|
2009-08-01 19:26:05 +00:00
|
|
|
* @param aMarkerPos The position of the MARKER_PCB on the BOARD
|
2008-01-12 20:31:56 +00:00
|
|
|
* @param aText Text describing the object
|
|
|
|
* @param aPos The position of the object
|
|
|
|
*/
|
2009-08-01 19:26:05 +00:00
|
|
|
MARKER_PCB( int aErrorCode, const wxPoint& aMarkerPos,
|
2011-08-01 15:29:27 +00:00
|
|
|
const wxString& aText, const wxPoint& aPos );
|
2008-01-12 20:31:56 +00:00
|
|
|
|
2009-08-01 19:26:05 +00:00
|
|
|
~MARKER_PCB();
|
2008-04-01 05:21:50 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
void Move(const wxPoint& aMoveVector)
|
2009-08-01 19:26:05 +00:00
|
|
|
{
|
|
|
|
m_Pos += aMoveVector;
|
|
|
|
}
|
2007-11-27 22:49:35 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
void Rotate( const wxPoint& aRotCentre, double aAngle );
|
2009-08-01 19:26:05 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
void Flip( const wxPoint& aCentre );
|
2007-12-01 03:42:52 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
void Draw( EDA_DRAW_PANEL* aPanel, wxDC* aDC, int aDrawMode,
|
|
|
|
const wxPoint& aOffset = ZeroOffset )
|
2007-12-01 03:42:52 +00:00
|
|
|
{
|
2009-07-06 18:02:26 +00:00
|
|
|
DrawMarker( aPanel, aDC, aDrawMode, aOffset );
|
2007-12-01 03:42:52 +00:00
|
|
|
}
|
|
|
|
|
2012-02-20 04:33:54 +00:00
|
|
|
const wxPoint& GetPosition() const { return m_Pos; }
|
|
|
|
void SetPosition( const wxPoint& aPos ) { m_Pos = aPos; }
|
2008-04-01 05:21:50 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
bool HitTest( const wxPoint& aPosition )
|
2007-12-01 03:42:52 +00:00
|
|
|
{
|
2012-03-15 14:31:16 +00:00
|
|
|
return HitTestMarker( aPosition );
|
2007-12-01 03:42:52 +00:00
|
|
|
}
|
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
bool IsOnLayer( int aLayer ) const;
|
2012-02-09 20:33:38 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
void DisplayInfo( EDA_DRAW_FRAME* frame );
|
2007-10-26 09:41:25 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
wxString GetSelectMenuText() const;
|
2011-08-01 15:29:27 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
BITMAP_DEF GetMenuImage() const { return drc_xpm; }
|
2007-10-26 09:41:25 +00:00
|
|
|
|
2011-12-14 17:25:42 +00:00
|
|
|
#if defined(DEBUG)
|
|
|
|
void Show( int nestLevel, std::ostream& os ) const { ShowDummy( os ); } // override
|
|
|
|
#endif
|
|
|
|
};
|
2007-10-26 09:41:25 +00:00
|
|
|
|
2009-08-01 19:26:05 +00:00
|
|
|
#endif // CLASS_MARKER_PCB_H
|