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
|
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
|
|
|
|
2020-01-09 07:52:30 +00:00
|
|
|
/*
|
2020-01-08 19:07:55 +00:00
|
|
|
* Spin style for text items of all kinds on schematics
|
|
|
|
* Basically a higher level abstraction of rotation and justification of text
|
|
|
|
*/
|
2022-01-24 13:40:39 +00:00
|
|
|
class TEXT_SPIN_STYLE
|
2020-01-08 19:07:55 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
enum SPIN : int
|
|
|
|
{
|
|
|
|
LEFT = 0,
|
|
|
|
UP = 1,
|
|
|
|
RIGHT = 2,
|
|
|
|
BOTTOM = 3
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2022-01-24 13:40:39 +00:00
|
|
|
TEXT_SPIN_STYLE() = default;
|
|
|
|
constexpr TEXT_SPIN_STYLE( SPIN aSpin ) : m_spin( aSpin )
|
2020-01-08 19:07:55 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
constexpr bool operator==( SPIN a ) const
|
|
|
|
{
|
|
|
|
return m_spin == a;
|
|
|
|
}
|
|
|
|
|
|
|
|
constexpr bool operator!=( SPIN a ) const
|
|
|
|
{
|
|
|
|
return m_spin != a;
|
|
|
|
}
|
|
|
|
|
|
|
|
operator int() const
|
|
|
|
{
|
|
|
|
return static_cast<int>( m_spin );
|
|
|
|
}
|
|
|
|
|
2022-01-24 13:40:39 +00:00
|
|
|
TEXT_SPIN_STYLE RotateCW();
|
2020-01-08 19:07:55 +00:00
|
|
|
|
2022-01-24 13:40:39 +00:00
|
|
|
TEXT_SPIN_STYLE RotateCCW();
|
2020-01-08 19:07:55 +00:00
|
|
|
|
2021-06-08 14:09:24 +00:00
|
|
|
/**
|
|
|
|
* Mirror the label spin style across the X axis or simply swaps up and bottom.
|
2020-01-08 19:07:55 +00:00
|
|
|
*/
|
2022-01-24 13:40:39 +00:00
|
|
|
TEXT_SPIN_STYLE MirrorX();
|
2020-01-08 19:07:55 +00:00
|
|
|
|
2021-06-08 14:09:24 +00:00
|
|
|
/**
|
|
|
|
* Mirror the label spin style across the Y axis or simply swaps left and right.
|
2020-01-08 19:07:55 +00:00
|
|
|
*/
|
2022-01-24 13:40:39 +00:00
|
|
|
TEXT_SPIN_STYLE MirrorY();
|
2020-01-08 19:07:55 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
SPIN m_spin;
|
|
|
|
};
|
2008-02-21 20:49:15 +00:00
|
|
|
|
2022-01-24 13:40:39 +00:00
|
|
|
|
2021-03-25 21:13:01 +00:00
|
|
|
/*
|
2022-01-24 13:40:39 +00:00
|
|
|
* Label and flag shapes used with text objects.
|
2009-11-03 13:26:31 +00:00
|
|
|
*/
|
2021-10-12 20:05:37 +00:00
|
|
|
enum LABEL_FLAG_SHAPE
|
2020-01-08 19:07:55 +00:00
|
|
|
{
|
2021-10-12 20:05:37 +00:00
|
|
|
L_INPUT,
|
|
|
|
L_OUTPUT,
|
|
|
|
L_BIDI,
|
|
|
|
L_TRISTATE,
|
|
|
|
L_UNSPECIFIED,
|
|
|
|
|
|
|
|
F_FIRST,
|
|
|
|
F_DOT = F_FIRST,
|
|
|
|
F_ROUND,
|
|
|
|
F_DIAMOND,
|
|
|
|
F_RECTANGLE
|
2016-02-28 18:16:59 +00:00
|
|
|
};
|
2008-02-21 20:49:15 +00:00
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
|
2009-05-12 12:12:34 +00:00
|
|
|
extern const char* SheetLabelType[]; /* names of types of labels */
|
2009-05-09 21:54:33 +00:00
|
|
|
|
2017-01-23 20:30:11 +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
|
|
|
}
|
|
|
|
|
2020-04-06 13:06:57 +00:00
|
|
|
wxString GetShownText( int aDepth = 0 ) const override;
|
2020-03-29 01:12:29 +00:00
|
|
|
|
2010-11-12 15:17:10 +00:00
|
|
|
/**
|
2017-11-18 13:10:32 +00:00
|
|
|
* Set a spin or rotation angle, along with specific horizontal and vertical justification
|
|
|
|
* styles with each angle.
|
2017-01-23 20:30:11 +00:00
|
|
|
*
|
2022-01-24 13:40:39 +00:00
|
|
|
* @param aSpinStyle Spin style as per #TEXT_SPIN_STYLE storage class, may be the enum
|
2021-03-25 21:13:01 +00:00
|
|
|
* values or int value
|
2009-05-12 12:12:34 +00:00
|
|
|
*/
|
2022-01-24 13:40:39 +00:00
|
|
|
virtual void SetTextSpinStyle( TEXT_SPIN_STYLE aSpinStyle );
|
|
|
|
TEXT_SPIN_STYLE GetTextSpinStyle() const { return m_spin_style; }
|
2011-12-08 15:45:01 +00:00
|
|
|
|
2021-10-12 20:05:37 +00:00
|
|
|
virtual LABEL_FLAG_SHAPE GetShape() const { return L_UNSPECIFIED; }
|
|
|
|
virtual void SetShape( LABEL_FLAG_SHAPE aShape ) { }
|
2009-05-12 12:12:34 +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
|
|
|
|
2019-04-29 21:17:26 +00:00
|
|
|
const EDA_RECT 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-07 00:47:23 +00:00
|
|
|
KIFONT::FONT* GetDrawFont() const override;
|
|
|
|
|
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
|
|
|
|
2020-12-20 18:27:51 +00:00
|
|
|
bool Matches( const wxFindReplaceData& 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
|
|
|
|
2020-12-20 18:27:51 +00:00
|
|
|
bool Replace( const wxFindReplaceData& 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;
|
|
|
|
|
2019-12-20 14:11:39 +00:00
|
|
|
wxString GetSelectMenuText( EDA_UNITS aUnits ) 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;
|
2019-05-05 10:33:34 +00:00
|
|
|
bool HitTest( const EDA_RECT& aRect, bool aContained, int aAccuracy = 0 ) const override;
|
2012-03-15 14:31:16 +00:00
|
|
|
|
2021-03-06 09:27:41 +00:00
|
|
|
void Plot( PLOTTER* aPlotter ) 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
|
|
|
|
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
|
|
|
|
|
|
|
protected:
|
|
|
|
/**
|
|
|
|
* The orientation of text and any associated drawing elements of derived objects.
|
|
|
|
* - 0 is the horizontal and left justified.
|
|
|
|
* - 1 is vertical and top justified.
|
|
|
|
* - 2 is horizontal and right justified. It is the equivalent of the mirrored 0 orientation.
|
|
|
|
* - 3 is vertical and bottom justified. It is the equivalent of the mirrored 1 orientation.
|
|
|
|
*
|
|
|
|
* This is a duplication of m_Orient, m_HJustified, and m_VJustified in #EDA_TEXT but is
|
|
|
|
* easier to handle than 3 parameters when editing and reading and saving files.
|
|
|
|
*/
|
2022-01-24 13:40:39 +00:00
|
|
|
TEXT_SPIN_STYLE m_spin_style;
|
2008-02-21 20:49:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2022-01-24 13:40:39 +00:00
|
|
|
#endif /* SCH_TEXT_H */
|