2011-10-12 14:03:43 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2015-02-28 16:56:09 +00:00
|
|
|
* Copyright (C) 2015 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
2022-01-24 13:40:39 +00:00
|
|
|
* Copyright (C) 1992-2022 KiCad Developers, see AUTHORS.txt for contributors.
|
2011-10-12 14:03:43 +00:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2022-01-24 13:40:39 +00:00
|
|
|
#ifndef SCH_TEXT_H
|
|
|
|
#define SCH_TEXT_H
|
2008-02-21 20:49:15 +00:00
|
|
|
|
2010-11-10 15:30:12 +00:00
|
|
|
|
2012-04-12 21:31:31 +00:00
|
|
|
#include <eda_text.h>
|
2019-05-10 19:57:24 +00:00
|
|
|
#include <sch_item.h>
|
2020-11-17 16:02:47 +00:00
|
|
|
#include <sch_field.h>
|
2019-03-11 21:32:05 +00:00
|
|
|
#include <sch_connection.h> // for CONNECTION_TYPE
|
2023-11-12 14:14:41 +00:00
|
|
|
#include <schematic.h>
|
2010-11-10 15:30:12 +00:00
|
|
|
|
|
|
|
|
2020-09-05 16:00:29 +00:00
|
|
|
class HTML_MESSAGE_BOX;
|
2010-11-10 15:30:12 +00:00
|
|
|
|
2011-03-29 19:33:07 +00:00
|
|
|
class SCH_TEXT : public SCH_ITEM, public EDA_TEXT
|
2009-05-12 12:12:34 +00:00
|
|
|
{
|
2008-02-21 20:49:15 +00:00
|
|
|
public:
|
2022-01-24 13:40:39 +00:00
|
|
|
SCH_TEXT( const VECTOR2I& aPos = { 0, 0 }, const wxString& aText = wxEmptyString,
|
2020-04-18 20:04:41 +00:00
|
|
|
KICAD_T aType = SCH_TEXT_T );
|
2010-12-21 15:13:09 +00:00
|
|
|
|
|
|
|
SCH_TEXT( const SCH_TEXT& aText );
|
|
|
|
|
2008-03-20 01:50:21 +00:00
|
|
|
~SCH_TEXT() { }
|
2008-02-21 20:49:15 +00:00
|
|
|
|
2019-08-29 14:59:36 +00:00
|
|
|
static inline bool ClassOf( const EDA_ITEM* aItem )
|
|
|
|
{
|
|
|
|
return aItem && SCH_TEXT_T == aItem->Type();
|
|
|
|
}
|
|
|
|
|
2016-09-25 17:06:49 +00:00
|
|
|
virtual wxString GetClass() const override
|
2008-02-21 20:49:15 +00:00
|
|
|
{
|
2008-03-20 01:50:21 +00:00
|
|
|
return wxT( "SCH_TEXT" );
|
2008-02-21 20:49:15 +00:00
|
|
|
}
|
|
|
|
|
2023-05-05 13:21:56 +00:00
|
|
|
virtual wxString GetShownText( const SCH_SHEET_PATH* aPath, bool aAllowExtraText,
|
|
|
|
int aDepth = 0 ) const;
|
2023-04-27 11:56:15 +00:00
|
|
|
|
2023-05-05 13:21:56 +00:00
|
|
|
wxString GetShownText( bool aAllowExtraText, int aDepth = 0 ) const override
|
2023-03-08 15:31:24 +00:00
|
|
|
{
|
2023-11-12 14:14:41 +00:00
|
|
|
SCHEMATIC* schematic = Schematic();
|
|
|
|
|
|
|
|
if( schematic )
|
|
|
|
return GetShownText( &schematic->CurrentSheet(), aAllowExtraText, aDepth );
|
|
|
|
else
|
|
|
|
return GetText();
|
2023-03-08 15:31:24 +00:00
|
|
|
}
|
2020-03-29 01:12:29 +00:00
|
|
|
|
2023-10-30 17:29:38 +00:00
|
|
|
int GetSchTextSize() const { return GetTextWidth(); }
|
|
|
|
void SetSchTextSize( int aSize ) { SetTextSize( VECTOR2I( aSize, aSize ) ); }
|
|
|
|
|
2022-08-27 18:14:57 +00:00
|
|
|
bool IsHypertext() const override
|
|
|
|
{
|
|
|
|
return HasHyperlink();
|
|
|
|
}
|
2022-05-14 13:52:53 +00:00
|
|
|
|
2022-08-27 18:14:57 +00:00
|
|
|
void DoHypertextAction( EDA_DRAW_FRAME* aFrame ) const override;
|
2022-05-14 13:52:53 +00:00
|
|
|
|
2023-08-08 16:32:08 +00:00
|
|
|
void SetExcludedFromSim( bool aExclude ) override { m_excludedFromSim = aExclude; }
|
|
|
|
bool GetExcludedFromSim() const override { return m_excludedFromSim; }
|
2023-04-09 11:14:21 +00:00
|
|
|
|
2010-11-12 15:17:10 +00:00
|
|
|
/**
|
2011-12-08 15:45:01 +00:00
|
|
|
* This offset depends on the orientation, the type of text, and the area required to
|
|
|
|
* draw the associated graphic symbol or to put the text above a wire.
|
2021-03-25 21:13:01 +00:00
|
|
|
*
|
|
|
|
* @return the offset between the SCH_TEXT position and the text itself position
|
2009-05-12 12:12:34 +00:00
|
|
|
*/
|
2022-01-01 06:04:08 +00:00
|
|
|
virtual VECTOR2I GetSchematicTextOffset( const RENDER_SETTINGS* aSettings ) const;
|
2009-05-12 12:12:34 +00:00
|
|
|
|
2022-01-01 06:04:08 +00:00
|
|
|
void Print( const RENDER_SETTINGS* aSettings, const VECTOR2I& offset ) override;
|
2008-02-21 20:49:15 +00:00
|
|
|
|
2019-04-29 21:17:26 +00:00
|
|
|
void SwapData( SCH_ITEM* aItem ) override;
|
2009-01-31 18:08:47 +00:00
|
|
|
|
2022-08-31 09:15:42 +00:00
|
|
|
const BOX2I GetBoundingBox() const override;
|
2008-04-15 19:38:19 +00:00
|
|
|
|
2020-01-28 15:42:42 +00:00
|
|
|
bool operator<( const SCH_ITEM& aItem ) const override;
|
|
|
|
|
2020-12-20 18:18:54 +00:00
|
|
|
int GetTextOffset( const RENDER_SETTINGS* aSettings = nullptr ) const;
|
2020-04-14 12:25:00 +00:00
|
|
|
|
|
|
|
int GetPenWidth() const override;
|
2009-06-30 17:57:27 +00:00
|
|
|
|
2022-01-01 06:04:08 +00:00
|
|
|
void Move( const VECTOR2I& aMoveVector ) override
|
2009-07-27 14:32:40 +00:00
|
|
|
{
|
2017-01-23 20:30:11 +00:00
|
|
|
EDA_TEXT::Offset( aMoveVector );
|
2009-07-27 14:32:40 +00:00
|
|
|
}
|
|
|
|
|
2021-02-16 20:45:25 +00:00
|
|
|
void MirrorHorizontally( int aCenter ) override;
|
|
|
|
void MirrorVertically( int aCenter ) override;
|
2022-01-01 06:04:08 +00:00
|
|
|
void Rotate( const VECTOR2I& aCenter ) override;
|
2010-12-21 15:13:09 +00:00
|
|
|
|
2020-11-18 21:40:04 +00:00
|
|
|
virtual void Rotate90( bool aClockwise );
|
2020-11-18 23:34:03 +00:00
|
|
|
virtual void MirrorSpinStyle( bool aLeftRight );
|
2020-11-18 21:40:04 +00:00
|
|
|
|
2022-08-05 02:40:38 +00:00
|
|
|
bool Matches( const EDA_SEARCH_DATA& aSearchData, void* aAuxData ) const override
|
2019-08-02 00:10:25 +00:00
|
|
|
{
|
|
|
|
return SCH_ITEM::Matches( GetText(), aSearchData );
|
|
|
|
}
|
2009-06-30 17:57:27 +00:00
|
|
|
|
2022-08-05 02:40:38 +00:00
|
|
|
bool Replace( const EDA_SEARCH_DATA& aSearchData, void* aAuxData ) override
|
2011-12-13 15:37:33 +00:00
|
|
|
{
|
2019-08-02 00:10:25 +00:00
|
|
|
return EDA_TEXT::Replace( aSearchData );
|
2011-12-13 15:37:33 +00:00
|
|
|
}
|
|
|
|
|
2016-09-25 17:06:49 +00:00
|
|
|
virtual bool IsReplaceable() const override { return true; }
|
2011-12-13 15:37:33 +00:00
|
|
|
|
2021-12-07 20:47:12 +00:00
|
|
|
void ViewGetLayers( int aLayers[], int& aCount ) const override;
|
|
|
|
|
2023-01-12 03:27:44 +00:00
|
|
|
wxString GetItemDescription( UNITS_PROVIDER* aUnitsProvider ) const override;
|
2011-10-12 14:03:43 +00:00
|
|
|
|
2021-03-08 02:59:07 +00:00
|
|
|
BITMAPS GetMenuImage() const override;
|
2012-03-15 14:31:16 +00:00
|
|
|
|
2022-01-01 06:04:08 +00:00
|
|
|
VECTOR2I GetPosition() const override { return EDA_TEXT::GetTextPos(); }
|
|
|
|
void SetPosition( const VECTOR2I& aPosition ) override { EDA_TEXT::SetTextPos( aPosition ); }
|
2012-03-15 14:31:16 +00:00
|
|
|
|
2022-01-01 06:04:08 +00:00
|
|
|
bool HitTest( const VECTOR2I& aPosition, int aAccuracy = 0 ) const override;
|
2022-08-31 09:33:46 +00:00
|
|
|
bool HitTest( const BOX2I& aRect, bool aContained, int aAccuracy = 0 ) const override;
|
2012-03-15 14:31:16 +00:00
|
|
|
|
2023-10-21 20:52:51 +00:00
|
|
|
void Plot( PLOTTER* aPlotter, bool aBackground,
|
|
|
|
const SCH_PLOT_SETTINGS& aPlotSettings ) const override;
|
2012-03-15 14:31:16 +00:00
|
|
|
|
2021-10-12 20:05:37 +00:00
|
|
|
EDA_ITEM* Clone() const override
|
|
|
|
{
|
|
|
|
return new SCH_TEXT( *this );
|
|
|
|
}
|
2012-03-17 14:39:27 +00:00
|
|
|
|
2020-04-24 13:36:10 +00:00
|
|
|
void GetMsgPanelInfo( EDA_DRAW_FRAME* aFrame, std::vector<MSG_PANEL_ITEM>& aList ) override;
|
2012-11-20 11:35:09 +00:00
|
|
|
|
2023-09-14 21:39:42 +00:00
|
|
|
virtual double Similarity( const SCH_ITEM& aItem ) const override;
|
|
|
|
|
|
|
|
virtual bool operator==( const SCH_ITEM& aItem ) const override;
|
|
|
|
|
2008-04-22 16:38:23 +00:00
|
|
|
#if defined(DEBUG)
|
2016-09-25 17:06:49 +00:00
|
|
|
void Show( int nestLevel, std::ostream& os ) const override;
|
2008-04-22 16:38:23 +00:00
|
|
|
#endif
|
2020-05-09 20:27:06 +00:00
|
|
|
|
2020-09-05 16:00:29 +00:00
|
|
|
static HTML_MESSAGE_BOX* ShowSyntaxHelp( wxWindow* aParentWindow );
|
2021-03-25 21:13:01 +00:00
|
|
|
|
2022-10-22 20:32:10 +00:00
|
|
|
protected:
|
|
|
|
KIFONT::FONT* getDrawFont() const override;
|
|
|
|
|
2023-08-06 19:20:53 +00:00
|
|
|
const KIFONT::METRICS& getFontMetrics() const override { return GetFontMetrics(); }
|
|
|
|
|
2021-03-25 21:13:01 +00:00
|
|
|
protected:
|
2023-08-08 16:32:08 +00:00
|
|
|
bool m_excludedFromSim;
|
2008-02-21 20:49:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2022-01-24 13:40:39 +00:00
|
|
|
#endif /* SCH_TEXT_H */
|