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
|
2019-04-04 22:49:49 +00:00
|
|
|
* Copyright (C) 1992-2019 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
|
|
|
|
*/
|
|
|
|
|
2011-09-30 18:15:37 +00:00
|
|
|
/**
|
|
|
|
* @file sch_text.h
|
|
|
|
* @brief Definitions of the SCH_TEXT class and derivatives for Eeschema.
|
|
|
|
*/
|
2008-02-21 20:49:15 +00:00
|
|
|
|
|
|
|
#ifndef CLASS_TEXT_LABEL_H
|
|
|
|
#define CLASS_TEXT_LABEL_H
|
|
|
|
|
2010-11-10 15:30:12 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <macros.h>
|
2012-04-12 21:31:31 +00:00
|
|
|
#include <eda_text.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <sch_item_struct.h>
|
2019-03-11 21:32:05 +00:00
|
|
|
#include <sch_connection.h> // for CONNECTION_TYPE
|
2010-11-10 15:30:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
class LINE_READER;
|
2013-09-25 19:09:57 +00:00
|
|
|
class NETLIST_OBJECT_LIST;
|
2010-11-10 15:30:12 +00:00
|
|
|
|
2008-02-21 20:49:15 +00:00
|
|
|
|
2016-02-28 18:16:59 +00:00
|
|
|
/* Shape/Type of SCH_HIERLABEL and SCH_GLOBALLABEL
|
2009-05-12 12:12:34 +00:00
|
|
|
* mainly used to handle the graphic associated shape
|
2009-11-03 13:26:31 +00:00
|
|
|
*/
|
2016-02-28 18:16:59 +00:00
|
|
|
enum PINSHEETLABEL_SHAPE {
|
2008-02-21 20:49:15 +00:00
|
|
|
NET_INPUT,
|
|
|
|
NET_OUTPUT,
|
|
|
|
NET_BIDI,
|
|
|
|
NET_TRISTATE,
|
2016-02-28 18:16:59 +00:00
|
|
|
NET_UNSPECIFIED
|
|
|
|
};
|
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
|
|
|
{
|
|
|
|
protected:
|
2016-02-28 18:16:59 +00:00
|
|
|
PINSHEETLABEL_SHAPE m_shape;
|
2011-12-08 15:45:01 +00:00
|
|
|
|
|
|
|
/// True if not connected to another object if the object derive from SCH_TEXT
|
|
|
|
/// supports connections.
|
|
|
|
bool m_isDangling;
|
|
|
|
|
2019-03-11 21:32:05 +00:00
|
|
|
CONNECTION_TYPE m_connectionType;
|
|
|
|
|
2011-12-08 15:45:01 +00:00
|
|
|
/**
|
|
|
|
* 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 orentation.
|
|
|
|
* 3 is veritcal and bottom justifiend. It is the equivalent of the mirrored 1 orentation.
|
|
|
|
* This is a duplicattion of m_Orient, m_HJustified, and m_VJustified in #EDA_TEXT but is
|
2017-01-23 20:30:11 +00:00
|
|
|
* easier to handle than 3 parameters when editing and reading and saving files.
|
2011-12-08 15:45:01 +00:00
|
|
|
*/
|
2017-01-23 20:30:11 +00:00
|
|
|
int m_spin_style;
|
2009-05-12 12:12:34 +00:00
|
|
|
|
2008-02-21 20:49:15 +00:00
|
|
|
public:
|
2009-11-03 13:26:31 +00:00
|
|
|
SCH_TEXT( const wxPoint& pos = wxPoint( 0, 0 ),
|
|
|
|
const wxString& text = wxEmptyString,
|
2010-12-10 19:47:44 +00:00
|
|
|
KICAD_T aType = SCH_TEXT_T );
|
2010-12-21 15:13:09 +00:00
|
|
|
|
2012-01-09 20:26:55 +00:00
|
|
|
/**
|
2017-11-18 13:10:32 +00:00
|
|
|
* Clones \a aText into a new object. All members are copied as is except
|
2012-01-09 20:26:55 +00:00
|
|
|
* for the #m_isDangling member which is set to false. This prevents newly
|
|
|
|
* copied objects derived from #SCH_TEXT from having their connection state
|
|
|
|
* improperly set.
|
|
|
|
*/
|
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
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2010-12-21 15:13:09 +00:00
|
|
|
/**
|
2017-11-18 13:10:32 +00:00
|
|
|
* Increment the label text, if it ends with a number.
|
|
|
|
*
|
|
|
|
* @param aIncrement = the increment value to add to the number ending the text.
|
2010-12-21 15:13:09 +00:00
|
|
|
*/
|
2015-04-22 11:39:00 +00:00
|
|
|
void IncrementLabel( int aIncrement );
|
2008-02-21 20:49:15 +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
|
|
|
*
|
|
|
|
* @param aSpinStyle =
|
2009-05-12 12:12:34 +00:00
|
|
|
* 0 = normal (horizontal, left justified).
|
|
|
|
* 1 = up (vertical)
|
2012-03-26 23:47:08 +00:00
|
|
|
* 2 = (horizontal, right justified). This can be seen as the mirrored position of 0
|
2009-05-12 12:12:34 +00:00
|
|
|
* 3 = bottom . This can be seen as the mirrored position of up
|
|
|
|
*/
|
2017-01-23 20:30:11 +00:00
|
|
|
virtual void SetLabelSpinStyle( int aSpinStyle );
|
|
|
|
int GetLabelSpinStyle() const { return m_spin_style; }
|
2011-12-08 15:45:01 +00:00
|
|
|
|
2017-01-23 20:30:11 +00:00
|
|
|
PINSHEETLABEL_SHAPE GetShape() const { return m_shape; }
|
2011-12-08 15:45:01 +00:00
|
|
|
|
2016-02-28 18:16:59 +00:00
|
|
|
void SetShape( PINSHEETLABEL_SHAPE aShape ) { m_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
|
|
|
* @return the offset between the SCH_TEXT position and the text itself position
|
|
|
|
*
|
|
|
|
* 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.
|
2009-05-12 12:12:34 +00:00
|
|
|
*/
|
2011-06-17 13:24:22 +00:00
|
|
|
virtual wxPoint GetSchematicTextOffset() const;
|
2009-05-12 12:12:34 +00:00
|
|
|
|
2019-04-04 22:49:49 +00:00
|
|
|
virtual void Draw( EDA_DRAW_PANEL* panel, wxDC* DC, const wxPoint& offset ) override;
|
2008-02-21 20:49:15 +00:00
|
|
|
|
2010-11-12 15:17:10 +00:00
|
|
|
/**
|
2017-11-18 13:10:32 +00:00
|
|
|
* Calculate the graphic shape (a polygon) associated to the text.
|
|
|
|
*
|
2012-03-26 23:47:08 +00:00
|
|
|
* @param aPoints A buffer to fill with polygon corners coordinates
|
|
|
|
* @param Pos Position of the shape, for texts and labels: do nothing
|
2010-09-11 16:33:43 +00:00
|
|
|
* Mainly for derived classes (SCH_SHEET_PIN and Hierarchical labels)
|
|
|
|
*/
|
2011-06-17 13:24:22 +00:00
|
|
|
virtual void CreateGraphicShape( std::vector <wxPoint>& aPoints, const wxPoint& Pos )
|
2010-09-11 16:33:43 +00:00
|
|
|
{
|
2011-06-17 13:24:22 +00:00
|
|
|
aPoints.clear();
|
2010-09-11 16:33:43 +00:00
|
|
|
}
|
2008-02-21 20:49:15 +00:00
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
virtual void SwapData( SCH_ITEM* aItem ) override;
|
2009-01-31 18:08:47 +00:00
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
virtual const EDA_RECT GetBoundingBox() const override;
|
2008-04-15 19:38:19 +00:00
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
virtual int GetPenSize() const override;
|
2009-06-30 17:57:27 +00:00
|
|
|
|
2009-07-27 14:32:40 +00:00
|
|
|
// Geometric transforms (used in block operations):
|
2009-11-03 13:26:31 +00:00
|
|
|
|
2016-09-25 17:06:49 +00:00
|
|
|
virtual void Move( const wxPoint& 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
|
|
|
}
|
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
virtual void MirrorY( int aYaxis_position ) override;
|
2010-09-05 17:01:48 +00:00
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
virtual void MirrorX( int aXaxis_position ) override;
|
2010-12-21 15:13:09 +00:00
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
virtual void Rotate( wxPoint aPosition ) override;
|
2009-06-30 17:57:27 +00:00
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
virtual bool Matches( wxFindReplaceData& aSearchData, void* aAuxData, wxPoint* aFindLocation ) override;
|
2010-11-03 14:13:15 +00:00
|
|
|
|
2018-09-16 10:42:28 +00:00
|
|
|
virtual bool Replace( wxFindReplaceData& aSearchData, void* aAuxData ) override
|
2011-12-13 15:37:33 +00:00
|
|
|
{
|
|
|
|
return EDA_ITEM::Replace( aSearchData, m_Text );
|
|
|
|
}
|
|
|
|
|
2016-09-25 17:06:49 +00:00
|
|
|
virtual bool IsReplaceable() const override { return true; }
|
2011-12-13 15:37:33 +00:00
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
virtual void GetEndPoints( std::vector< DANGLING_END_ITEM >& aItemList ) override;
|
2010-11-03 14:13:15 +00:00
|
|
|
|
2018-10-29 18:11:04 +00:00
|
|
|
virtual bool UpdateDanglingState( std::vector<DANGLING_END_ITEM>& aItemList ) override;
|
2010-11-03 14:13:15 +00:00
|
|
|
|
2016-09-25 17:06:49 +00:00
|
|
|
virtual bool IsDangling() const override { return m_isDangling; }
|
2010-11-03 14:13:15 +00:00
|
|
|
|
2018-10-09 18:43:47 +00:00
|
|
|
virtual void SetIsDangling( bool aIsDangling ) { m_isDangling = aIsDangling; }
|
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
virtual bool IsSelectStateChanged( const wxRect& aRect ) override;
|
2010-11-03 14:13:15 +00:00
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
virtual void GetConnectionPoints( std::vector< wxPoint >& aPoints ) const override;
|
2010-03-16 18:22:59 +00:00
|
|
|
|
2016-09-25 17:06:49 +00:00
|
|
|
virtual bool CanIncrementLabel() const override { return true; }
|
2011-02-05 02:21:11 +00:00
|
|
|
|
2018-04-10 10:52:12 +00:00
|
|
|
virtual wxString GetSelectMenuText( EDA_UNITS_T aUnits ) const override;
|
2011-03-25 19:16:05 +00:00
|
|
|
|
2017-02-20 12:20:39 +00:00
|
|
|
virtual BITMAP_DEF GetMenuImage() const override;
|
2011-03-25 19:16:05 +00:00
|
|
|
|
2013-09-25 19:09:57 +00:00
|
|
|
virtual void GetNetListItem( NETLIST_OBJECT_LIST& aNetListItems,
|
2016-09-25 17:06:49 +00:00
|
|
|
SCH_SHEET_PATH* aSheetPath ) override;
|
2011-10-12 14:03:43 +00:00
|
|
|
|
2017-01-23 20:30:11 +00:00
|
|
|
virtual wxPoint GetPosition() const override { return EDA_TEXT::GetTextPos(); }
|
2012-03-15 14:31:16 +00:00
|
|
|
|
2017-01-23 20:30:11 +00:00
|
|
|
virtual void SetPosition( const wxPoint& aPosition ) override { EDA_TEXT::SetTextPos( aPosition ); }
|
2012-03-15 14:31:16 +00:00
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
virtual bool HitTest( const wxPoint& aPosition, int aAccuracy ) const override;
|
2012-03-15 14:31:16 +00:00
|
|
|
|
2018-09-16 10:42:28 +00:00
|
|
|
virtual bool HitTest( const EDA_RECT& aRect, bool aContained, int aAccuracy ) const override;
|
2012-03-15 14:31:16 +00:00
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
virtual void Plot( PLOTTER* aPlotter ) override;
|
2012-03-15 14:31:16 +00:00
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
virtual EDA_ITEM* Clone() const override;
|
2012-03-17 14:39:27 +00:00
|
|
|
|
2018-04-10 10:52:12 +00:00
|
|
|
void GetMsgPanelInfo( EDA_UNITS_T aUnits, 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
|
2008-02-21 20:49:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2008-03-20 01:50:21 +00:00
|
|
|
class SCH_LABEL : public SCH_TEXT
|
2008-02-21 20:49:15 +00:00
|
|
|
{
|
|
|
|
public:
|
2010-12-10 19:47:44 +00:00
|
|
|
SCH_LABEL( const wxPoint& pos = wxPoint( 0, 0 ), const wxString& text = wxEmptyString );
|
2010-12-21 15:13:09 +00:00
|
|
|
|
2012-01-09 20:26:55 +00:00
|
|
|
// Do not create a copy constructor. The one generated by the compiler is adequate.
|
2010-12-21 15:13:09 +00:00
|
|
|
|
2008-03-20 01:50:21 +00:00
|
|
|
~SCH_LABEL() { }
|
2010-12-10 19:47:44 +00:00
|
|
|
|
2016-09-25 17:06:49 +00:00
|
|
|
wxString GetClass() const override
|
2008-02-21 20:49:15 +00:00
|
|
|
{
|
2008-03-27 17:05:59 +00:00
|
|
|
return wxT( "SCH_LABEL" );
|
2008-02-21 20:49:15 +00:00
|
|
|
}
|
2008-04-15 19:38:19 +00:00
|
|
|
|
2016-09-25 17:06:49 +00:00
|
|
|
const EDA_RECT GetBoundingBox() const override;
|
2009-11-28 09:24:37 +00:00
|
|
|
|
2016-09-25 17:06:49 +00:00
|
|
|
bool IsConnectable() const override { return true; }
|
2011-01-07 19:24:24 +00:00
|
|
|
|
2017-12-19 17:45:56 +00:00
|
|
|
bool CanConnect( const SCH_ITEM* aItem ) const override
|
|
|
|
{
|
|
|
|
return aItem->Type() == SCH_LINE_T &&
|
|
|
|
( aItem->GetLayer() == LAYER_WIRE || aItem->GetLayer() == LAYER_BUS );
|
|
|
|
}
|
|
|
|
|
2018-04-10 10:52:12 +00:00
|
|
|
wxString GetSelectMenuText( EDA_UNITS_T aUnits ) const override;
|
2011-03-25 19:16:05 +00:00
|
|
|
|
2017-02-20 12:20:39 +00:00
|
|
|
BITMAP_DEF GetMenuImage() const override;
|
2011-03-25 19:16:05 +00:00
|
|
|
|
2016-09-25 17:06:49 +00:00
|
|
|
bool IsReplaceable() const override { return true; }
|
2011-12-01 16:49:28 +00:00
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
EDA_ITEM* Clone() const override;
|
2012-03-17 14:39:27 +00:00
|
|
|
|
2010-12-13 15:59:00 +00:00
|
|
|
private:
|
2017-01-23 20:30:11 +00:00
|
|
|
bool doIsConnected( const wxPoint& aPosition ) const override { return EDA_TEXT::GetTextPos() == aPosition; }
|
2008-02-21 20:49:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2008-03-20 01:50:21 +00:00
|
|
|
class SCH_GLOBALLABEL : public SCH_TEXT
|
2008-02-21 20:49:15 +00:00
|
|
|
{
|
|
|
|
public:
|
2010-12-10 19:47:44 +00:00
|
|
|
SCH_GLOBALLABEL( const wxPoint& pos = wxPoint( 0, 0 ), const wxString& text = wxEmptyString );
|
2010-12-21 15:13:09 +00:00
|
|
|
|
2012-01-09 20:26:55 +00:00
|
|
|
// Do not create a copy constructor. The one generated by the compiler is adequate.
|
2010-12-21 15:13:09 +00:00
|
|
|
|
2008-03-20 01:50:21 +00:00
|
|
|
~SCH_GLOBALLABEL() { }
|
2010-12-10 19:47:44 +00:00
|
|
|
|
2019-04-04 22:49:49 +00:00
|
|
|
void Draw( EDA_DRAW_PANEL* panel, wxDC* DC, const wxPoint& offset ) override;
|
2008-02-21 20:49:15 +00:00
|
|
|
|
2016-09-25 17:06:49 +00:00
|
|
|
wxString GetClass() const override
|
2008-02-21 20:49:15 +00:00
|
|
|
{
|
2008-03-27 17:05:59 +00:00
|
|
|
return wxT( "SCH_GLOBALLABEL" );
|
2008-02-21 20:49:15 +00:00
|
|
|
}
|
|
|
|
|
2017-01-23 20:30:11 +00:00
|
|
|
void SetLabelSpinStyle( int aSpinStyle ) override;
|
2009-05-12 12:12:34 +00:00
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
wxPoint GetSchematicTextOffset() const override;
|
2009-05-12 12:12:34 +00:00
|
|
|
|
2016-09-25 17:06:49 +00:00
|
|
|
const EDA_RECT GetBoundingBox() const override;
|
2009-05-05 17:32:07 +00:00
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
void CreateGraphicShape( std::vector <wxPoint>& aPoints, const wxPoint& aPos ) override;
|
2009-07-27 14:32:40 +00:00
|
|
|
|
2016-09-25 17:06:49 +00:00
|
|
|
bool IsConnectable() const override { return true; }
|
2011-01-07 19:24:24 +00:00
|
|
|
|
2017-12-19 17:45:56 +00:00
|
|
|
bool CanConnect( const SCH_ITEM* aItem ) const override
|
|
|
|
{
|
|
|
|
return aItem->Type() == SCH_LINE_T &&
|
|
|
|
( aItem->GetLayer() == LAYER_WIRE || aItem->GetLayer() == LAYER_BUS );
|
|
|
|
}
|
|
|
|
|
2018-04-10 10:52:12 +00:00
|
|
|
wxString GetSelectMenuText( EDA_UNITS_T aUnits ) const override;
|
2011-03-25 19:16:05 +00:00
|
|
|
|
2017-02-20 12:20:39 +00:00
|
|
|
BITMAP_DEF GetMenuImage() const override;
|
2011-03-25 19:16:05 +00:00
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
EDA_ITEM* Clone() const override;
|
2012-03-17 14:39:27 +00:00
|
|
|
|
2010-12-13 15:59:00 +00:00
|
|
|
private:
|
2017-01-23 20:30:11 +00:00
|
|
|
bool doIsConnected( const wxPoint& aPosition ) const override { return EDA_TEXT::GetTextPos() == aPosition; }
|
2008-02-21 20:49:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2008-03-20 01:50:21 +00:00
|
|
|
class SCH_HIERLABEL : public SCH_TEXT
|
2008-02-21 20:49:15 +00:00
|
|
|
{
|
|
|
|
public:
|
2008-03-20 01:50:21 +00:00
|
|
|
SCH_HIERLABEL( const wxPoint& pos = wxPoint( 0, 0 ),
|
2010-12-10 19:47:44 +00:00
|
|
|
const wxString& text = wxEmptyString,
|
|
|
|
KICAD_T aType = SCH_HIERARCHICAL_LABEL_T );
|
|
|
|
|
2012-01-09 20:26:55 +00:00
|
|
|
// Do not create a copy constructor. The one generated by the compiler is adequate.
|
2010-12-21 15:13:09 +00:00
|
|
|
|
2008-03-20 01:50:21 +00:00
|
|
|
~SCH_HIERLABEL() { }
|
2010-12-21 15:13:09 +00:00
|
|
|
|
2019-04-04 22:49:49 +00:00
|
|
|
void Draw( EDA_DRAW_PANEL* panel, wxDC* DC, const wxPoint& offset ) override;
|
2008-02-21 20:49:15 +00:00
|
|
|
|
2016-09-25 17:06:49 +00:00
|
|
|
wxString GetClass() const override
|
2008-02-21 20:49:15 +00:00
|
|
|
{
|
2008-03-27 17:05:59 +00:00
|
|
|
return wxT( "SCH_HIERLABEL" );
|
2008-02-21 20:49:15 +00:00
|
|
|
}
|
|
|
|
|
2017-01-23 20:30:11 +00:00
|
|
|
void SetLabelSpinStyle( int aSpinStyle ) override;
|
2009-05-12 12:12:34 +00:00
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
wxPoint GetSchematicTextOffset() const override;
|
2009-05-12 12:12:34 +00:00
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
void CreateGraphicShape( std::vector <wxPoint>& aPoints, const wxPoint& Pos ) override;
|
2008-03-30 09:27:53 +00:00
|
|
|
|
2016-09-25 17:06:49 +00:00
|
|
|
const EDA_RECT GetBoundingBox() const override;
|
2009-01-31 18:08:47 +00:00
|
|
|
|
2016-09-25 17:06:49 +00:00
|
|
|
bool IsConnectable() const override { return true; }
|
2011-01-07 19:24:24 +00:00
|
|
|
|
2017-12-19 17:45:56 +00:00
|
|
|
bool CanConnect( const SCH_ITEM* aItem ) const override
|
|
|
|
{
|
|
|
|
return aItem->Type() == SCH_LINE_T &&
|
|
|
|
( aItem->GetLayer() == LAYER_WIRE || aItem->GetLayer() == LAYER_BUS );
|
|
|
|
}
|
|
|
|
|
2018-04-10 10:52:12 +00:00
|
|
|
wxString GetSelectMenuText( EDA_UNITS_T aUnits ) const override;
|
2011-03-25 19:16:05 +00:00
|
|
|
|
2017-02-20 12:20:39 +00:00
|
|
|
BITMAP_DEF GetMenuImage() const override;
|
2011-03-25 19:16:05 +00:00
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
EDA_ITEM* Clone() const override;
|
2012-03-17 14:39:27 +00:00
|
|
|
|
2010-12-13 15:59:00 +00:00
|
|
|
private:
|
2017-01-23 20:30:11 +00:00
|
|
|
bool doIsConnected( const wxPoint& aPosition ) const override { return EDA_TEXT::GetTextPos() == aPosition; }
|
2008-02-21 20:49:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* CLASS_TEXT_LABEL_H */
|