2012-01-14 19:50:32 +00:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2011-09-23 13:57:12 +00:00
|
|
|
/**
|
2017-10-31 15:38:10 +00:00
|
|
|
* @file class_pcb_target.h
|
2011-09-23 13:57:12 +00:00
|
|
|
* @brief PCB_TARGET class definition. (targets for photo plots).
|
|
|
|
*/
|
2011-08-01 15:29:27 +00:00
|
|
|
|
2017-10-31 15:38:10 +00:00
|
|
|
#ifndef PCB_TARGET_H_
|
|
|
|
#define PCB_TARGET_H_
|
2011-09-23 13:57:12 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <class_board_item.h>
|
2011-09-23 13:57:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
class EDA_RECT;
|
|
|
|
class LINE_READER;
|
|
|
|
class EDA_DRAW_PANEL;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
|
2011-09-07 19:41:04 +00:00
|
|
|
class PCB_TARGET : public BOARD_ITEM
|
2007-08-08 20:51:08 +00:00
|
|
|
{
|
2009-11-12 15:43:38 +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:
|
2011-09-07 19:41:04 +00:00
|
|
|
PCB_TARGET( BOARD_ITEM* aParent );
|
2012-01-14 19:50:32 +00:00
|
|
|
|
|
|
|
// Do not create a copy constructor. The one generated by the compiler is adequate.
|
|
|
|
|
2017-03-13 03:19:33 +00:00
|
|
|
PCB_TARGET( BOARD_ITEM* aParent, int aShape, PCB_LAYER_ID aLayer,
|
2011-12-01 06:04:23 +00:00
|
|
|
const wxPoint& aPos, int aSize, int aWidth );
|
|
|
|
|
2016-05-31 08:27:52 +00:00
|
|
|
// Do not create a copy constructor & operator=.
|
|
|
|
// The ones generated by the compiler are adequate.
|
|
|
|
|
2011-09-07 19:41:04 +00:00
|
|
|
~PCB_TARGET();
|
2007-08-08 20:51:08 +00:00
|
|
|
|
2018-08-28 20:14:47 +00:00
|
|
|
static inline bool ClassOf( const EDA_ITEM* aItem )
|
|
|
|
{
|
|
|
|
return aItem && PCB_TARGET_T == aItem->Type();
|
|
|
|
}
|
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
void SetPosition( const wxPoint& aPos ) override { m_Pos = aPos; }
|
2017-12-18 17:24:25 +00:00
|
|
|
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
|
|
|
|
2012-09-01 13:38:27 +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
|
2014-10-13 11:14:02 +00:00
|
|
|
{
|
|
|
|
return wxT( "PCB_TARGET" );
|
|
|
|
}
|
|
|
|
|
2013-09-21 18:09:41 +00:00
|
|
|
/** @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
|
|
|
|
2013-11-24 17:48:14 +00:00
|
|
|
// Virtual function
|
2016-09-24 18:53:15 +00:00
|
|
|
const EDA_RECT GetBoundingBox() const override;
|
2011-07-14 15:42:44 +00:00
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
wxString GetSelectMenuText() const override;
|
2011-08-01 15:29:27 +00:00
|
|
|
|
2017-02-20 12:20:39 +00:00
|
|
|
BITMAP_DEF GetMenuImage() const override;
|
2011-12-14 17:25:42 +00:00
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
EDA_ITEM* Clone() const override;
|
2012-03-17 14:39:27 +00:00
|
|
|
|
2017-10-31 13:59:03 +00:00
|
|
|
virtual void SwapData( BOARD_ITEM* aImage ) override;
|
|
|
|
|
2011-12-14 17:25:42 +00:00
|
|
|
#if defined(DEBUG)
|
2016-09-24 18:53:15 +00:00
|
|
|
void Show( int nestLevel, std::ostream& os ) const override { ShowDummy( os ); }
|
2011-12-14 17:25:42 +00:00
|
|
|
#endif
|
2007-06-05 12:10:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2017-10-31 15:38:10 +00:00
|
|
|
#endif
|