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
|
|
|
|
*/
|
|
|
|
|
2020-10-04 23:34:59 +00:00
|
|
|
#ifndef PCB_TEXT_H
|
|
|
|
#define PCB_TEXT_H
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2012-04-12 21:31:31 +00:00
|
|
|
#include <eda_text.h>
|
2020-11-14 18:11:28 +00:00
|
|
|
#include <board_item.h>
|
2011-09-23 13:57:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
class LINE_READER;
|
2013-01-12 17:32:24 +00:00
|
|
|
class MSG_PANEL_ITEM;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2011-08-01 15:29:27 +00:00
|
|
|
|
2020-10-04 23:34:59 +00:00
|
|
|
class PCB_TEXT : public BOARD_ITEM, public EDA_TEXT
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
|
|
|
public:
|
2020-10-04 23:34:59 +00:00
|
|
|
PCB_TEXT( BOARD_ITEM* parent );
|
2012-01-14 19:50:32 +00:00
|
|
|
|
2016-05-31 08:27:52 +00:00
|
|
|
// Do not create a copy constructor & operator=.
|
|
|
|
// The ones generated by the compiler are adequate.
|
2012-01-14 19:50:32 +00:00
|
|
|
|
2020-10-04 23:34:59 +00:00
|
|
|
~PCB_TEXT();
|
2008-04-01 05:21:50 +00:00
|
|
|
|
2015-02-18 16:53:46 +00:00
|
|
|
static inline bool ClassOf( const EDA_ITEM* aItem )
|
2015-02-17 23:53:57 +00:00
|
|
|
{
|
|
|
|
return aItem && PCB_TEXT_T == aItem->Type();
|
|
|
|
}
|
|
|
|
|
2020-05-15 23:25:33 +00:00
|
|
|
bool IsType( const KICAD_T aScanTypes[] ) const override
|
|
|
|
{
|
|
|
|
if( BOARD_ITEM::IsType( aScanTypes ) )
|
|
|
|
return true;
|
|
|
|
|
|
|
|
for( const KICAD_T* p = aScanTypes; *p != EOT; ++p )
|
|
|
|
{
|
|
|
|
if( *p == PCB_LOCATE_TEXT_T )
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-04-06 13:06:57 +00:00
|
|
|
wxString GetShownText( int aDepth = 0 ) const override;
|
2020-03-26 11:02:59 +00:00
|
|
|
|
2021-07-18 12:58:21 +00:00
|
|
|
/// PCB_TEXTs are always visible:
|
|
|
|
void SetVisible( bool aVisible ) override { /* do nothing */}
|
|
|
|
bool IsVisible() const override { return true; }
|
|
|
|
|
2020-12-20 18:27:51 +00:00
|
|
|
bool Matches( const wxFindReplaceData& aSearchData, void* aAuxData ) const override
|
2019-07-26 23:52:17 +00:00
|
|
|
{
|
|
|
|
return BOARD_ITEM::Matches( GetShownText(), aSearchData );
|
|
|
|
}
|
|
|
|
|
2020-02-02 17:52:19 +00:00
|
|
|
virtual wxPoint GetPosition() const override
|
2013-08-29 10:06:06 +00:00
|
|
|
{
|
2017-01-23 20:30:11 +00:00
|
|
|
return EDA_TEXT::GetTextPos();
|
2013-08-29 10:06:06 +00:00
|
|
|
}
|
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
virtual void SetPosition( const wxPoint& aPos ) override
|
2013-08-29 10:06:06 +00:00
|
|
|
{
|
2017-01-23 20:30:11 +00:00
|
|
|
EDA_TEXT::SetTextPos( aPos );
|
2013-08-29 10:06:06 +00:00
|
|
|
}
|
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
void Move( const wxPoint& aMoveVector ) override
|
2009-08-01 19:26:05 +00:00
|
|
|
{
|
2017-01-23 20:30:11 +00:00
|
|
|
EDA_TEXT::Offset( aMoveVector );
|
2009-08-01 19:26:05 +00:00
|
|
|
}
|
|
|
|
|
2020-04-14 12:25:00 +00:00
|
|
|
void SetTextAngle( double aAngle ) override;
|
2017-01-23 20:30:11 +00:00
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
void Rotate( const wxPoint& aRotCentre, double aAngle ) override;
|
2009-08-01 19:26:05 +00:00
|
|
|
|
2019-07-12 21:02:10 +00:00
|
|
|
void Flip( const wxPoint& aCentre, bool aFlipLeftRight ) override;
|
2009-08-01 19:26:05 +00:00
|
|
|
|
2020-04-24 13:36:10 +00:00
|
|
|
void GetMsgPanelInfo( EDA_DRAW_FRAME* aFrame, std::vector<MSG_PANEL_ITEM>& aList ) override;
|
2007-08-22 05:11:01 +00:00
|
|
|
|
2021-05-06 16:48:23 +00:00
|
|
|
bool TextHitTest( const wxPoint& aPoint, int aAccuracy = 0 ) const override;
|
|
|
|
bool TextHitTest( const EDA_RECT& aRect, bool aContains, int aAccuracy = 0 ) const override;
|
|
|
|
|
2019-05-05 10:33:34 +00:00
|
|
|
bool HitTest( const wxPoint& aPosition, int aAccuracy ) const override
|
2007-08-22 05:11:01 +00:00
|
|
|
{
|
2019-05-05 10:33:34 +00:00
|
|
|
return TextHitTest( aPosition, aAccuracy );
|
2007-08-22 05:11:01 +00:00
|
|
|
}
|
2008-04-01 05:21:50 +00:00
|
|
|
|
2013-09-21 18:09:41 +00:00
|
|
|
/** @copydoc BOARD_ITEM::HitTest(const EDA_RECT& aRect,
|
|
|
|
* bool aContained = true, int aAccuracy ) const
|
|
|
|
*/
|
2019-05-05 10:33:34 +00:00
|
|
|
bool HitTest( const EDA_RECT& aRect, bool aContained, int aAccuracy = 0 ) const override
|
2008-01-06 12:43:57 +00:00
|
|
|
{
|
2013-09-21 18:09:41 +00:00
|
|
|
return TextHitTest( aRect, aContained, aAccuracy );
|
2008-01-06 12:43:57 +00:00
|
|
|
}
|
2008-04-01 05:21:50 +00:00
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
wxString GetClass() const override
|
2007-08-07 06:21:19 +00:00
|
|
|
{
|
2012-04-01 20:51:56 +00:00
|
|
|
return wxT( "PTEXT" );
|
2007-08-07 06:21:19 +00:00
|
|
|
}
|
|
|
|
|
2013-05-01 19:01:14 +00:00
|
|
|
/**
|
2020-11-29 14:00:39 +00:00
|
|
|
* Function TransformTextShapeWithClearanceToPolygon
|
|
|
|
* Convert the text to a polygonSet describing the actual character strokes (one per segment).
|
2013-05-01 19:01:14 +00:00
|
|
|
* Used in 3D viewer
|
|
|
|
* Circles and arcs are approximated by segments
|
2020-11-29 14:00:39 +00:00
|
|
|
* @aCornerBuffer = SHAPE_POLY_SET to store the polygon corners
|
|
|
|
* @aClearanceValue = the clearance around the text
|
|
|
|
* @aError = the maximum error to allow when approximating curves
|
2009-11-16 08:13:40 +00:00
|
|
|
*/
|
2020-11-29 14:00:39 +00:00
|
|
|
void TransformTextShapeWithClearanceToPolygon( SHAPE_POLY_SET& aCornerBuffer,
|
|
|
|
PCB_LAYER_ID aLayer, int aClearanceValue,
|
|
|
|
int aError, ERROR_LOC aErrorLoc ) const;
|
|
|
|
|
2020-11-13 00:43:45 +00:00
|
|
|
void TransformShapeWithClearanceToPolygon( SHAPE_POLY_SET& aCornerBuffer, PCB_LAYER_ID aLayer,
|
|
|
|
int aClearanceValue, int aError, ERROR_LOC aErrorLoc,
|
|
|
|
bool aIgnoreLineWidth = false ) const override;
|
2011-07-14 15:42:44 +00:00
|
|
|
|
2020-08-08 22:37:41 +00:00
|
|
|
// @copydoc BOARD_ITEM::GetEffectiveShape
|
|
|
|
virtual std::shared_ptr<SHAPE> GetEffectiveShape( PCB_LAYER_ID aLayer = UNDEFINED_LAYER ) const override;
|
|
|
|
|
2019-12-20 14:11:39 +00:00
|
|
|
wxString GetSelectMenuText( EDA_UNITS aUnits ) const override;
|
2009-11-16 08:13:40 +00:00
|
|
|
|
2021-03-08 02:59:07 +00:00
|
|
|
BITMAPS GetMenuImage() const override;
|
2011-08-01 15:29:27 +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-09-01 21:39:38 +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;
|
|
|
|
|
2007-09-13 11:28:58 +00:00
|
|
|
#if defined(DEBUG)
|
2016-09-24 18:53:15 +00:00
|
|
|
virtual void Show( int nestLevel, std::ostream& os ) const override { ShowDummy( os ); }
|
2007-08-07 06:21:19 +00:00
|
|
|
#endif
|
2007-06-05 12:10:51 +00:00
|
|
|
};
|
|
|
|
|
2020-10-04 23:34:59 +00:00
|
|
|
#endif // #define PCB_TEXT_H
|