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
|
|
|
|
*/
|
|
|
|
|
2011-09-23 13:57:12 +00:00
|
|
|
/**
|
|
|
|
* @file class_text_mod.h
|
|
|
|
* @brief Footprint text class description.
|
|
|
|
*/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2007-08-14 19:24:48 +00:00
|
|
|
|
2011-12-14 17:25:42 +00:00
|
|
|
#ifndef TEXT_MODULE_H_
|
|
|
|
#define TEXT_MODULE_H_
|
2007-08-14 19:24:48 +00:00
|
|
|
|
2011-09-23 13:57:12 +00:00
|
|
|
|
2012-04-12 21:31:31 +00:00
|
|
|
#include <eda_text.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <class_board_item.h>
|
2011-09-23 13:57:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
class LINE_READER;
|
|
|
|
class EDA_RECT;
|
|
|
|
class EDA_DRAW_PANEL;
|
|
|
|
class MODULE;
|
2013-01-12 17:32:24 +00:00
|
|
|
class MSG_PANEL_ITEM;
|
2011-09-23 13:57:12 +00:00
|
|
|
|
2007-08-14 19:24:48 +00:00
|
|
|
|
2010-11-18 13:38:08 +00:00
|
|
|
#define UMBILICAL_COLOR LIGHTBLUE
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2011-08-01 15:29:27 +00:00
|
|
|
|
2011-03-29 19:33:07 +00:00
|
|
|
class TEXTE_MODULE : public BOARD_ITEM, public EDA_TEXT
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2011-12-12 08:37:05 +00:00
|
|
|
// @todo eliminate these friends, make them use accessors
|
|
|
|
friend class MODULE;
|
|
|
|
friend class FOOTPRINT_EDIT_FRAME;
|
|
|
|
|
2013-04-07 11:55:18 +00:00
|
|
|
public:
|
|
|
|
enum TEXT_TYPE
|
|
|
|
{
|
|
|
|
TEXT_is_REFERENCE = 0,
|
|
|
|
TEXT_is_VALUE = 1,
|
|
|
|
TEXT_is_DIVERS = 2
|
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
2011-12-12 08:37:05 +00:00
|
|
|
/* Note: orientation in 1/10 deg relative to the footprint
|
|
|
|
* Physical orient is m_Orient + m_Parent->m_Orient
|
|
|
|
*/
|
|
|
|
|
2013-04-07 11:55:18 +00:00
|
|
|
TEXT_TYPE m_Type; ///< 0=ref, 1=val, etc.
|
|
|
|
bool m_NoShow; ///< true = invisible
|
2011-12-12 08:37:05 +00:00
|
|
|
|
2013-04-07 11:55:18 +00:00
|
|
|
wxPoint m_Pos0; ///< text coordinates relatives to the footprint anchor, orient 0.
|
2011-12-12 08:37:05 +00:00
|
|
|
///< text coordinate ref point is the text centre
|
2007-08-04 20:05:54 +00:00
|
|
|
|
2011-09-23 13:57:12 +00:00
|
|
|
public:
|
2013-04-07 11:55:18 +00:00
|
|
|
TEXTE_MODULE( MODULE* parent, TEXT_TYPE text_type = TEXT_is_DIVERS );
|
2011-09-23 13:57:12 +00:00
|
|
|
|
2012-01-14 19:50:32 +00:00
|
|
|
// Do not create a copy constructor. The one generated by the compiler is adequate.
|
|
|
|
|
2007-09-01 12:00:30 +00:00
|
|
|
~TEXTE_MODULE();
|
2007-08-04 20:05:54 +00:00
|
|
|
|
2008-11-24 06:53:43 +00:00
|
|
|
TEXTE_MODULE* Next() const { return (TEXTE_MODULE*) Pnext; }
|
2011-09-23 13:57:12 +00:00
|
|
|
|
2008-11-24 06:53:43 +00:00
|
|
|
TEXTE_MODULE* Back() const { return (TEXTE_MODULE*) Pback; }
|
|
|
|
|
2013-04-07 11:55:18 +00:00
|
|
|
/// @deprecated it seems (but the type is used to 'protect'
|
|
|
|
//reference and value from deletion, and for identification)
|
|
|
|
void SetType( TEXT_TYPE aType ) { m_Type = aType; }
|
|
|
|
TEXT_TYPE GetType() const { return m_Type; }
|
2009-11-12 15:43:38 +00:00
|
|
|
|
2011-12-02 21:56:47 +00:00
|
|
|
void SetVisible( bool isVisible ) { m_NoShow = !isVisible; }
|
2012-05-22 17:51:18 +00:00
|
|
|
bool IsVisible() const { return !m_NoShow; }
|
2011-12-02 21:56:47 +00:00
|
|
|
|
2012-05-22 17:51:18 +00:00
|
|
|
void SetPos0( const wxPoint& aPos ) { m_Pos0 = aPos; }
|
|
|
|
const wxPoint& GetPos0() const { return m_Pos0; }
|
2011-12-02 21:56:47 +00:00
|
|
|
|
2011-09-23 13:57:12 +00:00
|
|
|
void Copy( TEXTE_MODULE* source ); // copy structure
|
2007-08-04 20:05:54 +00:00
|
|
|
|
2013-04-07 11:55:18 +00:00
|
|
|
int GetLength() const; // text length
|
2010-12-10 19:47:44 +00:00
|
|
|
|
2013-05-05 07:17:48 +00:00
|
|
|
double GetDrawRotation() const; // Return text rotation for drawings and plotting
|
2008-04-01 05:21:50 +00:00
|
|
|
|
2010-11-12 15:17:10 +00:00
|
|
|
/**
|
|
|
|
* Function GetTextRect
|
2011-03-29 19:33:07 +00:00
|
|
|
* @return an EDA_RECT which gives the position and size of the text area
|
2009-11-12 15:43:38 +00:00
|
|
|
* (for the 0 orient text and footprint)
|
2008-04-01 05:21:50 +00:00
|
|
|
*/
|
2011-03-29 19:33:07 +00:00
|
|
|
EDA_RECT GetTextRect( void ) const;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2011-03-29 19:33:07 +00:00
|
|
|
EDA_RECT GetBoundingBox() const;
|
2008-03-15 10:24:32 +00:00
|
|
|
|
2011-09-23 13:57:12 +00:00
|
|
|
void SetDrawCoord(); // Set absolute coordinates.
|
2008-08-09 08:05:42 +00:00
|
|
|
|
2011-09-23 13:57:12 +00:00
|
|
|
void SetLocalCoord(); // Set relative coordinates.
|
2007-08-04 20:05:54 +00:00
|
|
|
|
|
|
|
/* drawing functions */
|
2011-09-23 13:57:12 +00:00
|
|
|
void Draw( EDA_DRAW_PANEL* panel,
|
|
|
|
wxDC* DC,
|
2012-09-01 13:38:27 +00:00
|
|
|
GR_DRAWMODE aDrawMode,
|
2011-09-23 13:57:12 +00:00
|
|
|
const wxPoint& offset = ZeroOffset );
|
2008-04-01 05:21:50 +00:00
|
|
|
|
2010-11-18 13:38:08 +00:00
|
|
|
/**
|
|
|
|
* Function DrawUmbilical
|
|
|
|
* draws a line from the TEXTE_MODULE origin
|
|
|
|
* to parent MODULE origin.
|
|
|
|
* @param aPanel = the current DrawPanel
|
|
|
|
* @param aDC = the current device context
|
|
|
|
* @param aDrawMode = drawing mode, typically GR_XOR
|
|
|
|
* @param aOffset = offset for TEXTE_MODULE
|
|
|
|
*/
|
2011-09-23 13:57:12 +00:00
|
|
|
void DrawUmbilical( EDA_DRAW_PANEL* aPanel,
|
|
|
|
wxDC* aDC,
|
2012-09-01 13:38:27 +00:00
|
|
|
GR_DRAWMODE aDrawMode,
|
2011-09-23 13:57:12 +00:00
|
|
|
const wxPoint& aOffset = ZeroOffset );
|
2007-08-04 20:05:54 +00:00
|
|
|
|
2013-01-12 17:32:24 +00:00
|
|
|
void GetMsgPanelInfo( std::vector< MSG_PANEL_ITEM >& aList );
|
2007-08-20 19:33:15 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
bool HitTest( const wxPoint& aPosition );
|
2008-04-01 05:21:50 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
wxString GetClass() const
|
2007-08-07 06:21:19 +00:00
|
|
|
{
|
|
|
|
return wxT( "MTEXT" );
|
|
|
|
}
|
|
|
|
|
2008-08-09 08:05:42 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
wxString GetSelectMenuText() const;
|
2011-07-14 15:42:44 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
BITMAP_DEF GetMenuImage() const { return footprint_text_xpm; }
|
2011-08-01 15:29:27 +00:00
|
|
|
|
2012-03-26 23:47:08 +00:00
|
|
|
EDA_ITEM* Clone() const;
|
2012-03-17 14:39:27 +00:00
|
|
|
|
2009-11-12 15:43:38 +00:00
|
|
|
#if defined(DEBUG)
|
2013-05-05 10:23:18 +00:00
|
|
|
virtual void Show( int nestLevel, std::ostream& os ) const { ShowDummy( os ); } // override
|
2007-08-06 20:26:59 +00:00
|
|
|
#endif
|
2007-08-04 20:05:54 +00:00
|
|
|
};
|
2007-08-14 19:24:48 +00:00
|
|
|
|
2011-12-14 17:25:42 +00:00
|
|
|
#endif // TEXT_MODULE_H_
|