kicad/pcbnew/class_pcb_target.h

115 lines
3.5 KiB
C
Raw Normal View History

/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2004 Jean-Pierre Charras, jaen-pierre.charras@gipsa-lab.inpg.com
* Copyright (C) 1992-2011 KiCad Developers, see AUTHORS.txt for contributors.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, you may find one here:
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* or you may search the http://www.gnu.org website for the version 2 license,
* or you may write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*/
/**
* @file class_pcb_target.h
* @brief PCB_TARGET class definition. (targets for photo plots).
*/
#ifndef PCB_TARGET_H_
#define PCB_TARGET_H_
#include <class_board_item.h>
class EDA_RECT;
class LINE_READER;
class EDA_DRAW_PANEL;
class PCB_TARGET : public BOARD_ITEM
2007-08-08 20:51:08 +00:00
{
int m_Shape; // bit 0 : 0 = draw +, 1 = draw X
2007-08-08 20:51:08 +00:00
int m_Size;
2011-12-14 04:29:25 +00:00
int m_Width;
wxPoint m_Pos;
2007-08-08 20:51:08 +00:00
public:
PCB_TARGET( BOARD_ITEM* aParent );
// Do not create a copy constructor. The one generated by the compiler is adequate.
PCB_TARGET( BOARD_ITEM* aParent, int aShape, PCB_LAYER_ID aLayer,
const wxPoint& aPos, int aSize, int aWidth );
// Do not create a copy constructor & operator=.
// The ones generated by the compiler are adequate.
~PCB_TARGET();
2007-08-08 20:51:08 +00:00
2016-09-24 18:53:15 +00:00
void SetPosition( const wxPoint& aPos ) override { m_Pos = aPos; }
const wxPoint GetPosition() const override { return m_Pos; }
2008-04-01 05:21:50 +00:00
2011-12-14 04:29:25 +00:00
void SetShape( int aShape ) { m_Shape = aShape; }
int GetShape() const { return m_Shape; }
void SetSize( int aSize ) { m_Size = aSize; }
int GetSize() const { return m_Size; }
void SetWidth( int aWidth ) { m_Width = aWidth; }
int GetWidth() const { return m_Width; }
2016-09-24 18:53:15 +00:00
void Move( const wxPoint& aMoveVector ) override
2009-08-01 19:26:05 +00:00
{
m_Pos += aMoveVector;
}
2016-09-24 18:53:15 +00:00
void Rotate( const wxPoint& aRotCentre, double aAngle ) override;
2009-08-01 19:26:05 +00:00
2016-09-24 18:53:15 +00:00
void Flip( const wxPoint& aCentre ) override;
2009-08-01 19:26:05 +00:00
void Draw( EDA_DRAW_PANEL* panel, wxDC* DC,
2016-09-24 18:53:15 +00:00
GR_DRAWMODE aDrawMode, const wxPoint& offset = ZeroOffset ) override;
2008-04-01 05:21:50 +00:00
2016-09-24 18:53:15 +00:00
bool HitTest( const wxPoint& aPosition ) const override;
2008-01-06 12:43:57 +00:00
2016-09-24 18:53:15 +00:00
wxString GetClass() const override
{
return wxT( "PCB_TARGET" );
}
/** @copydoc BOARD_ITEM::HitTest(const EDA_RECT& aRect,
* bool aContained = true, int aAccuracy ) const
*/
2016-09-24 18:53:15 +00:00
bool HitTest( const EDA_RECT& aRect, bool aContained = true, int aAccuracy = 0 ) const override;
2008-01-06 12:43:57 +00:00
// Virtual function
2016-09-24 18:53:15 +00:00
const EDA_RECT GetBoundingBox() const override;
wxString GetSelectMenuText( EDA_UNITS_T aUnits ) const override;
BITMAP_DEF GetMenuImage() const override;
2016-09-24 18:53:15 +00:00
EDA_ITEM* Clone() const override;
virtual void SwapData( BOARD_ITEM* aImage ) override;
#if defined(DEBUG)
2016-09-24 18:53:15 +00:00
void Show( int nestLevel, std::ostream& os ) const override { ShowDummy( os ); }
#endif
};
#endif