KiCad PCB EDA Suite
Loading...
Searching...
No Matches
pcb_textbox.h
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 2004 Jean-Pierre Charras, [email protected]
5 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
19 */
20
21#ifndef PCB_TEXTBOX_H
22#define PCB_TEXTBOX_H
23
24#include <eda_text.h>
25#include <pcb_shape.h>
26
27
28class LINE_READER;
29class MSG_PANEL_ITEM;
30
31
32class PCB_TEXTBOX : public PCB_SHAPE, public EDA_TEXT
33{
34public:
35 PCB_TEXTBOX( BOARD_ITEM* aParent, KICAD_T aType = PCB_TEXTBOX_T );
36
37 // Do not create a copy constructor & operator=.
38 // The ones generated by the compiler are adequate.
39
41
42 void CopyFrom( const BOARD_ITEM* aOther ) override;
43
44 static inline bool ClassOf( const EDA_ITEM* aItem )
45 {
46 return aItem && PCB_TEXTBOX_T == aItem->Type();
47 }
48
49 bool IsType( const std::vector<KICAD_T>& aScanTypes ) const override
50 {
51 if( BOARD_ITEM::IsType( aScanTypes ) )
52 return true;
53
54 for( KICAD_T scanType : aScanTypes )
55 {
56 if( scanType == PCB_LOCATE_TEXT_T )
57 return true;
58 }
59
60 return false;
61 }
62
63 void Serialize( google::protobuf::Any &aContainer ) const override;
64 bool Deserialize( const google::protobuf::Any &aContainer ) override;
65
66 wxString GetFriendlyName() const override { return _( "Text Box" ); }
67
68 VECTOR2I GetTopLeft() const override;
69 VECTOR2I GetBotRight() const override;
70
71 std::vector<VECTOR2I> GetCorners() const override;
72
73 std::vector<VECTOR2I> GetCornersInSequence( EDA_ANGLE angle ) const override;
74
75 // Keep the lib shape as RECTANGLE even if a runtime polygon conversion happens.
76 void SetShape( SHAPE_T aShape ) override;
77
83 VECTOR2I GetMinSize() const;
84
85 void SetTop( int aVal ) override;
86 void SetLeft( int aVal ) override;
87 void SetRight( int aVal ) override;
88 void SetBottom( int aVal ) override;
89
90 void StyleFromSettings( const BOARD_DESIGN_SETTINGS& settings, bool aCheckSide ) override;
91
92 int GetLegacyTextMargin() const;
93
94 void SetMarginLeft( int aLeft ) { m_marginLeft = aLeft; }
95 void SetMarginTop( int aTop ) { m_marginTop = aTop; }
96 void SetMarginRight( int aRight ) { m_marginRight = aRight; }
97 void SetMarginBottom( int aBottom ) { m_marginBottom = aBottom; }
98
99 int GetMarginLeft() const { return m_marginLeft; }
100 int GetMarginTop() const { return m_marginTop; }
101 int GetMarginRight() const { return m_marginRight; }
102 int GetMarginBottom() const { return m_marginBottom; }
103
104 VECTOR2I GetDrawPos() const override;
105 VECTOR2I GetDrawPos( bool aIsFlipped ) const;
106
107 EDA_ANGLE GetTextAngle() const override;
108 void SetTextAngle( const EDA_ANGLE& aAngle ) override;
109
114 const EDA_ANGLE& GetLibTextAngle() const { return m_libTextAngle; }
115 void SetLibTextAngle( const EDA_ANGLE& aAngle )
116 {
117 m_libTextAngle = aAngle;
118 m_libTextAngle.Normalize();
119 }
120
121 wxString GetShownText( bool aAllowExtraText, int aDepth = 0 ) const override;
122
123 bool Matches( const EDA_SEARCH_DATA& aSearchData, void* aAuxData ) const override;
124
125 void Move( const VECTOR2I& aMoveVector ) override;
126
127 void Rotate( const VECTOR2I& aRotCentre, const EDA_ANGLE& aAngle ) override;
128
129 void Mirror( const VECTOR2I& aCentre, FLIP_DIRECTION aFlipDirection ) override;
130
131 void Flip( const VECTOR2I& aCentre, FLIP_DIRECTION aFlipDirection ) override;
132
133 void OnFootprintTransformed() override;
134
135 void OnFootprintRescaled( double aRatioX, double aRatioY, double aLinearFactor, const VECTOR2I& aAnchor,
136 const EDA_ANGLE& aParentRotate ) override;
137
138 VECTOR2I GetTextSize() const override;
139 void SetTextSize( VECTOR2I aNewSize, bool aEnforceMinTextSize = true ) override;
140
141 int GetTextThickness() const override;
142 void SetTextThickness( int aWidth ) override;
143
144 void GetMsgPanelInfo( EDA_DRAW_FRAME* aFrame, std::vector<MSG_PANEL_ITEM>& aList ) override;
145
146 bool HitTest( const VECTOR2I& aPosition, int aAccuracy ) const override;
147
148 bool HitTest( const BOX2I& aRect, bool aContained, int aAccuracy = 0 ) const override;
149
150 bool HitTest( const SHAPE_LINE_CHAIN& aPoly, bool aContained ) const override;
151
152 wxString GetClass() const override
153 {
154 return wxT( "PCB_TEXTBOX" );
155 }
156
166 void TransformTextToPolySet( SHAPE_POLY_SET& aBuffer, int aClearance, int aMaxError,
167 ERROR_LOC aErrorLoc ) const;
168
169 void TransformShapeToPolygon( SHAPE_POLY_SET& aBuffer, PCB_LAYER_ID aLayer, int aClearance,
170 int aMaxError, ERROR_LOC aErrorLoc,
171 bool aIgnoreLineWidth = false ) const override;
172
173 // @copydoc BOARD_ITEM::GetEffectiveShape
174 std::shared_ptr<SHAPE> GetEffectiveShape( PCB_LAYER_ID aLayer = UNDEFINED_LAYER,
175 FLASHING aFlash = FLASHING::DEFAULT ) const override;
176
177 wxString GetItemDescription( UNITS_PROVIDER* aUnitsProvider, bool aFull ) const override;
178
179 BITMAPS GetMenuImage() const override;
180
181 double ViewGetLOD( int aLayer, const KIGFX::VIEW* aView ) const override;
182
183 std::vector<int> ViewGetLayers() const override;
184
185 EDA_ITEM* Clone() const override;
186
188 bool IsBorderEnabled() const;
189
191 void SetBorderEnabled( bool enabled );
192
193 void SetBorderWidth( const int aSize );
194 int GetBorderWidth() const { return m_stroke.GetWidth(); }
195
196 double Similarity( const BOARD_ITEM& aBoardItem ) const override;
197
198 bool operator==( const PCB_TEXTBOX& aOther ) const;
199 bool operator==( const BOARD_ITEM& aBoardItem ) const override;
200
201protected:
202 EDA_ANGLE getDrawRotation() const override { return GetDrawRotation(); }
203
204 virtual void swapData( BOARD_ITEM* aImage ) override;
205
206 // Inverse of OnFootprintTransformed (move center, scale half-extents, keep
207 // the box axis-aligned). A true inverse at any angle.
208 void syncLibCoords() override;
209
210 const KIFONT::METRICS& getFontMetrics() const override { return GetFontMetrics(); }
211
212protected:
214
215private:
220 EDA_ANGLE m_libTextAngle; // Text angle in parent footprint's lib frame
221};
222
223#endif // #define PCB_TEXTBOX_H
ERROR_LOC
When approximating an arc or circle, should the error be placed on the outside or inside of the curve...
BITMAPS
A list of all bitmap identifiers.
BOX2< VECTOR2I > BOX2I
Definition box2.h:918
Container for design settings for a BOARD object.
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
Definition board_item.h:81
BOARD_ITEM(BOARD_ITEM *aParent, KICAD_T idtype, PCB_LAYER_ID aLayer=F_Cu)
Definition board_item.h:83
const KIFONT::METRICS & GetFontMetrics() const
The base class for create windows for drawing purpose.
A base class for most all the KiCad significant classes used in schematics and boards.
Definition eda_item.h:96
KICAD_T Type() const
Returns the type of object.
Definition eda_item.h:108
virtual bool IsType(const std::vector< KICAD_T > &aScanTypes) const
Check whether the item is one of the listed types.
Definition eda_item.h:202
STROKE_PARAMS m_stroke
Definition eda_shape.h:593
virtual EDA_ANGLE GetDrawRotation() const
Definition eda_text.h:400
EDA_TEXT(const EDA_IU_SCALE &aIuScale, const wxString &aText=wxEmptyString)
Definition eda_text.cpp:98
Hold a (potentially large) number of VIEW_ITEMs and renders them on a graphics device provided by the...
Definition view.h:63
An abstract class from which implementation specific LINE_READERs may be derived to read single lines...
Definition richio.h:62
EDA_MSG_PANEL items for displaying messages.
Definition msgpanel.h:50
PCB_SHAPE(BOARD_ITEM *aParent, KICAD_T aItemType, SHAPE_T aShapeType)
bool HitTest(const VECTOR2I &aPosition, int aAccuracy) const override
Test if aPosition is inside or on the boundary of this item.
virtual void swapData(BOARD_ITEM *aImage) override
void SetBorderWidth(const int aSize)
double Similarity(const BOARD_ITEM &aBoardItem) const override
Return a measure of how likely the other object is to represent the same object.
bool IsBorderEnabled() const
Disables the border, this is done by changing the stroke internally.
wxString GetFriendlyName() const override
Definition pcb_textbox.h:66
void SetLibTextAngle(const EDA_ANGLE &aAngle)
BITMAPS GetMenuImage() const override
Return a pointer to an image to be used in menus.
int GetMarginBottom() const
void StyleFromSettings(const BOARD_DESIGN_SETTINGS &settings, bool aCheckSide) override
EDA_ANGLE GetTextAngle() const override
PCB_TEXTBOX(BOARD_ITEM *aParent, KICAD_T aType=PCB_TEXTBOX_T)
const KIFONT::METRICS & getFontMetrics() const override
int GetTextThickness() const override
void TransformShapeToPolygon(SHAPE_POLY_SET &aBuffer, PCB_LAYER_ID aLayer, int aClearance, int aMaxError, ERROR_LOC aErrorLoc, bool aIgnoreLineWidth=false) const override
Convert the shape to a closed polygon.
void Rotate(const VECTOR2I &aRotCentre, const EDA_ANGLE &aAngle) override
Rotate this object.
bool m_borderEnabled
Controls drawing the border (as defined by the stroke members)
wxString GetItemDescription(UNITS_PROVIDER *aUnitsProvider, bool aFull) const override
Return a user-visible description string of this item.
void SetBorderEnabled(bool enabled)
void Mirror(const VECTOR2I &aCentre, FLIP_DIRECTION aFlipDirection) override
Mirror this object relative to a given horizontal axis the layer is not changed.
void OnFootprintTransformed() override
Hook for items inside a footprint to refresh after the FP transform changes (translate,...
VECTOR2I GetMinSize() const
Return the minimum height needed to contain the textbox's wrapped text content plus margins.
void TransformTextToPolySet(SHAPE_POLY_SET &aBuffer, int aClearance, int aMaxError, ERROR_LOC aErrorLoc) const
Function TransformTextToPolySet Convert the text to a polygonSet describing the actual character stro...
bool IsType(const std::vector< KICAD_T > &aScanTypes) const override
Check whether the item is one of the listed types.
Definition pcb_textbox.h:49
double ViewGetLOD(int aLayer, const KIGFX::VIEW *aView) const override
Return the level of detail (LOD) of the item.
void OnFootprintRescaled(double aRatioX, double aRatioY, double aLinearFactor, const VECTOR2I &aAnchor, const EDA_ANGLE &aParentRotate) override
Apply a parent footprint scale to this item.
VECTOR2I GetTextSize() const override
EDA_ITEM * Clone() const override
Tests whether the border is disabled, as configured by the stroke.
void SetShape(SHAPE_T aShape) override
std::shared_ptr< SHAPE > GetEffectiveShape(PCB_LAYER_ID aLayer=UNDEFINED_LAYER, FLASHING aFlash=FLASHING::DEFAULT) const override
Make a set of SHAPE objects representing the PCB_SHAPE.
const EDA_ANGLE & GetLibTextAngle() const
Text angle in the parent footprint's lib frame, or absolute when not in a footprint.
bool Matches(const EDA_SEARCH_DATA &aSearchData, void *aAuxData) const override
Compare the item against the search criteria in aSearchData.
VECTOR2I GetDrawPos() const override
bool Deserialize(const google::protobuf::Any &aContainer) override
Deserializes the given protobuf message into this object.
void GetMsgPanelInfo(EDA_DRAW_FRAME *aFrame, std::vector< MSG_PANEL_ITEM > &aList) override
Populate aList of MSG_PANEL_ITEM objects with it's internal state for display purposes.
void SetMarginTop(int aTop)
Definition pcb_textbox.h:95
void SetLeft(int aVal) override
int GetMarginLeft() const
Definition pcb_textbox.h:99
void SetMarginLeft(int aLeft)
Definition pcb_textbox.h:94
void Flip(const VECTOR2I &aCentre, FLIP_DIRECTION aFlipDirection) override
Flip this object, i.e.
void SetMarginBottom(int aBottom)
Definition pcb_textbox.h:97
std::vector< VECTOR2I > GetCornersInSequence(EDA_ANGLE angle) const override
static bool ClassOf(const EDA_ITEM *aItem)
Definition pcb_textbox.h:44
int GetMarginRight() const
void SetRight(int aVal) override
std::vector< int > ViewGetLayers() const override
void SetTop(int aVal) override
int GetMarginTop() const
wxString GetShownText(bool aAllowExtraText, int aDepth=0) const override
Return the string actually shown after processing of the base text.
void SetTextAngle(const EDA_ANGLE &aAngle) override
bool operator==(const PCB_TEXTBOX &aOther) const
void SetTextThickness(int aWidth) override
The TextThickness is that set by the user.
void Serialize(google::protobuf::Any &aContainer) const override
Serializes this object to the given Any message.
void SetMarginRight(int aRight)
Definition pcb_textbox.h:96
void Move(const VECTOR2I &aMoveVector) override
Move this object.
int GetLegacyTextMargin() const
EDA_ANGLE getDrawRotation() const override
void syncLibCoords() override
void SetBottom(int aVal) override
EDA_ANGLE m_libTextAngle
VECTOR2I GetTopLeft() const override
VECTOR2I GetBotRight() const override
void SetTextSize(VECTOR2I aNewSize, bool aEnforceMinTextSize=true) override
void CopyFrom(const BOARD_ITEM *aOther) override
int GetBorderWidth() const
std::vector< VECTOR2I > GetCorners() const override
Return 4 corners for a rectangle or rotated rectangle (stored as a poly).
wxString GetClass() const override
Return the class name.
Represent a polyline containing arcs as well as line segments: A chain of connected line and/or arc s...
Represent a set of closed polygons.
#define _(s)
SHAPE_T
Definition eda_shape.h:44
FLASHING
Enum used during connectivity building to ensure we do not query connectivity while building the data...
Definition layer_ids.h:180
@ DEFAULT
Flashing follows connectivity.
Definition layer_ids.h:181
PCB_LAYER_ID
A quick note on layer IDs:
Definition layer_ids.h:56
@ UNDEFINED_LAYER
Definition layer_ids.h:57
FLIP_DIRECTION
Definition mirror.h:23
KICAD_T
The set of class identification values stored in EDA_ITEM::m_structType.
Definition typeinfo.h:71
@ PCB_TEXTBOX_T
class PCB_TEXTBOX, wrapped text on a layer
Definition typeinfo.h:86
@ PCB_LOCATE_TEXT_T
Definition typeinfo.h:123
VECTOR2< int32_t > VECTOR2I
Definition vector2d.h:683