2009-06-13 17:07:04 +00:00
|
|
|
/***************************/
|
|
|
|
/* class_BodyItem_Text.cpp */
|
|
|
|
/***************************/
|
|
|
|
|
|
|
|
/**
|
2009-10-08 13:19:28 +00:00
|
|
|
* class LIB_TEXT : describes a graphic text used to draw component shapes
|
2009-06-13 17:07:04 +00:00
|
|
|
* This is only a graphic item
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "fctsys.h"
|
|
|
|
#include "gr_basic.h"
|
|
|
|
#include "common.h"
|
2010-11-10 15:30:12 +00:00
|
|
|
#include "macros.h"
|
2009-06-13 17:07:04 +00:00
|
|
|
#include "class_drawpanel.h"
|
2009-10-05 17:52:41 +00:00
|
|
|
#include "plot_common.h"
|
2009-06-13 17:07:04 +00:00
|
|
|
#include "drawtxt.h"
|
|
|
|
#include "trigo.h"
|
2010-11-10 15:30:12 +00:00
|
|
|
#include "wxstruct.h"
|
2009-06-13 17:07:04 +00:00
|
|
|
|
2010-10-08 20:40:57 +00:00
|
|
|
#include "lib_draw_item.h"
|
2009-06-13 17:07:04 +00:00
|
|
|
#include "general.h"
|
|
|
|
#include "protos.h"
|
2010-10-20 20:24:26 +00:00
|
|
|
#include "transform.h"
|
2010-10-22 12:11:52 +00:00
|
|
|
#include "lib_text.h"
|
2009-06-13 17:07:04 +00:00
|
|
|
|
|
|
|
|
2009-10-08 13:19:28 +00:00
|
|
|
LIB_TEXT::LIB_TEXT(LIB_COMPONENT * aParent) :
|
2010-12-10 19:47:44 +00:00
|
|
|
LIB_DRAW_ITEM( LIB_TEXT_T, aParent ),
|
2009-06-18 13:30:52 +00:00
|
|
|
EDA_TextStruct()
|
2009-06-13 17:07:04 +00:00
|
|
|
{
|
2010-10-22 12:11:52 +00:00
|
|
|
m_Size = wxSize( 50, 50 );
|
|
|
|
m_typeName = _( "Text" );
|
|
|
|
m_rotate = false;
|
|
|
|
m_updateText = false;
|
2009-06-13 17:07:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-10-30 19:26:25 +00:00
|
|
|
bool LIB_TEXT::Save( FILE* ExportFile )
|
2009-06-13 17:07:04 +00:00
|
|
|
{
|
|
|
|
wxString text = m_Text;
|
|
|
|
|
|
|
|
// Spaces are not allowed in text because it is not double quoted:
|
|
|
|
// changed to '~'
|
|
|
|
text.Replace( wxT( " " ), wxT( "~" ) );
|
|
|
|
|
2010-10-20 20:24:26 +00:00
|
|
|
if( fprintf( ExportFile, "T %d %d %d %d %d %d %d %s ", m_Orient, m_Pos.x, m_Pos.y,
|
2011-02-28 18:36:19 +00:00
|
|
|
m_Size.x, m_Attributs, m_Unit, m_Convert, TO_UTF8( text ) ) < 0 )
|
2009-09-14 13:24:17 +00:00
|
|
|
return false;
|
|
|
|
if( fprintf( ExportFile, " %s %d", m_Italic ? "Italic" : "Normal",
|
|
|
|
( m_Bold > 0 ) ? 1 : 0 ) < 0 )
|
|
|
|
return false;
|
2009-06-13 17:07:04 +00:00
|
|
|
|
|
|
|
char hjustify = 'C';
|
|
|
|
if( m_HJustify == GR_TEXT_HJUSTIFY_LEFT )
|
|
|
|
hjustify = 'L';
|
|
|
|
else if( m_HJustify == GR_TEXT_HJUSTIFY_RIGHT )
|
|
|
|
hjustify = 'R';
|
|
|
|
|
|
|
|
char vjustify = 'C';
|
|
|
|
if( m_VJustify == GR_TEXT_VJUSTIFY_BOTTOM )
|
|
|
|
vjustify = 'B';
|
|
|
|
else if( m_VJustify == GR_TEXT_VJUSTIFY_TOP )
|
|
|
|
vjustify = 'T';
|
|
|
|
|
2009-09-14 13:24:17 +00:00
|
|
|
if( fprintf( ExportFile, " %c %c\n", hjustify, vjustify ) < 0 )
|
|
|
|
return false;
|
2009-06-13 17:07:04 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-10-08 13:19:28 +00:00
|
|
|
bool LIB_TEXT::Load( char* line, wxString& errorMsg )
|
2009-06-13 17:07:04 +00:00
|
|
|
{
|
|
|
|
int cnt, thickness;
|
|
|
|
char hjustify = 'C', vjustify = 'C';
|
|
|
|
char buf[256];
|
|
|
|
char tmp[256];
|
|
|
|
|
|
|
|
buf[0] = 0;
|
|
|
|
tmp[0] = 0; // For italic option, Not in old versions
|
|
|
|
|
|
|
|
cnt = sscanf( &line[2], "%d %d %d %d %d %d %d %s %s %d %c %c",
|
|
|
|
&m_Orient, &m_Pos.x, &m_Pos.y, &m_Size.x, &m_Attributs,
|
2009-09-04 18:57:37 +00:00
|
|
|
&m_Unit, &m_Convert, buf, tmp, &thickness, &hjustify,
|
|
|
|
&vjustify );
|
2009-06-13 17:07:04 +00:00
|
|
|
|
|
|
|
if( cnt < 8 )
|
|
|
|
{
|
2010-10-20 20:24:26 +00:00
|
|
|
errorMsg.Printf( _( "text only had %d parameters of the required 8" ), cnt );
|
2009-06-13 17:07:04 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_Size.y = m_Size.x;
|
|
|
|
|
|
|
|
if( strnicmp( tmp, "Italic", 6 ) == 0 )
|
|
|
|
m_Italic = true;
|
|
|
|
if( thickness > 0 )
|
|
|
|
{
|
|
|
|
m_Bold = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch( hjustify )
|
|
|
|
{
|
|
|
|
case 'L':
|
|
|
|
m_HJustify = GR_TEXT_HJUSTIFY_LEFT;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'C':
|
|
|
|
m_HJustify = GR_TEXT_HJUSTIFY_CENTER;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'R':
|
|
|
|
m_HJustify = GR_TEXT_HJUSTIFY_RIGHT;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch( vjustify )
|
|
|
|
{
|
|
|
|
case 'T':
|
|
|
|
m_VJustify = GR_TEXT_VJUSTIFY_TOP;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'C':
|
|
|
|
m_VJustify = GR_TEXT_VJUSTIFY_CENTER;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'B':
|
|
|
|
m_VJustify = GR_TEXT_VJUSTIFY_BOTTOM;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Convert '~' to spaces. */
|
2011-02-28 18:36:19 +00:00
|
|
|
m_Text = FROM_UTF8( buf );
|
2009-06-13 17:07:04 +00:00
|
|
|
m_Text.Replace( wxT( "~" ), wxT( " " ) );
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-12-14 15:56:30 +00:00
|
|
|
|
|
|
|
bool LIB_TEXT::HitTest( const wxPoint& aPosition )
|
2009-06-13 17:07:04 +00:00
|
|
|
{
|
2010-12-14 15:56:30 +00:00
|
|
|
return HitTest( aPosition, 0, DefaultTransform );
|
2009-06-13 17:07:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-12-14 15:56:30 +00:00
|
|
|
bool LIB_TEXT::HitTest( wxPoint aPosition, int aThreshold, const TRANSFORM& aTransform )
|
2009-06-13 17:07:04 +00:00
|
|
|
{
|
2010-10-20 20:24:26 +00:00
|
|
|
wxPoint physicalpos = aTransform.TransformCoordinate( m_Pos );
|
2009-06-13 17:07:04 +00:00
|
|
|
wxPoint tmp = m_Pos;
|
|
|
|
m_Pos = physicalpos;
|
2010-10-20 20:24:26 +00:00
|
|
|
|
2009-06-13 17:07:04 +00:00
|
|
|
/* The text orientation may need to be flipped if the
|
|
|
|
* transformation matrix causes xy axes to be flipped.
|
|
|
|
* this simple algo works only for schematic matrix (rot 90 or/and mirror)
|
2010-10-20 20:24:26 +00:00
|
|
|
*/
|
|
|
|
int t1 = ( aTransform.x1 != 0 ) ^ ( m_Orient != 0 );
|
2009-06-13 17:07:04 +00:00
|
|
|
int orient = t1 ? TEXT_ORIENT_HORIZ : TEXT_ORIENT_VERT;
|
|
|
|
EXCHG( m_Orient, orient );
|
2010-12-14 15:56:30 +00:00
|
|
|
bool hit = TextHitTest( aPosition );
|
2009-06-13 17:07:04 +00:00
|
|
|
EXCHG( m_Orient, orient );
|
|
|
|
m_Pos = tmp;
|
|
|
|
return hit;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-10-08 13:19:28 +00:00
|
|
|
LIB_DRAW_ITEM* LIB_TEXT::DoGenCopy()
|
2009-06-13 17:07:04 +00:00
|
|
|
{
|
2009-10-08 13:19:28 +00:00
|
|
|
LIB_TEXT* newitem = new LIB_TEXT(NULL);
|
2009-06-13 17:07:04 +00:00
|
|
|
|
2009-10-01 14:17:47 +00:00
|
|
|
newitem->m_Pos = m_Pos;
|
2009-06-13 17:07:04 +00:00
|
|
|
newitem->m_Orient = m_Orient;
|
|
|
|
newitem->m_Size = m_Size;
|
|
|
|
newitem->m_Attributs = m_Attributs;
|
|
|
|
newitem->m_Unit = m_Unit;
|
|
|
|
newitem->m_Convert = m_Convert;
|
|
|
|
newitem->m_Flags = m_Flags;
|
|
|
|
newitem->m_Text = m_Text;
|
2010-11-27 13:09:18 +00:00
|
|
|
newitem->m_Thickness = m_Thickness;
|
2009-06-13 17:07:04 +00:00
|
|
|
newitem->m_Italic = m_Italic;
|
|
|
|
newitem->m_Bold = m_Bold;
|
|
|
|
newitem->m_HJustify = m_HJustify;
|
|
|
|
newitem->m_VJustify = m_VJustify;
|
2009-09-25 18:49:04 +00:00
|
|
|
return (LIB_DRAW_ITEM*) newitem;
|
2009-06-13 17:07:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-10-08 13:19:28 +00:00
|
|
|
int LIB_TEXT::DoCompare( const LIB_DRAW_ITEM& other ) const
|
2009-09-14 13:24:17 +00:00
|
|
|
{
|
2010-12-10 19:47:44 +00:00
|
|
|
wxASSERT( other.Type() == LIB_TEXT_T );
|
2009-09-14 13:24:17 +00:00
|
|
|
|
2009-10-08 13:19:28 +00:00
|
|
|
const LIB_TEXT* tmp = ( LIB_TEXT* ) &other;
|
2009-09-14 13:24:17 +00:00
|
|
|
|
2009-10-01 14:17:47 +00:00
|
|
|
int result = m_Text.CmpNoCase( tmp->m_Text );
|
|
|
|
|
|
|
|
if( result != 0 )
|
|
|
|
return result;
|
|
|
|
|
|
|
|
if( m_Pos.x != tmp->m_Pos.x )
|
|
|
|
return m_Pos.x - tmp->m_Pos.x;
|
|
|
|
|
|
|
|
if( m_Pos.y != tmp->m_Pos.y )
|
|
|
|
return m_Pos.y - tmp->m_Pos.y;
|
|
|
|
|
|
|
|
if( m_Size.x != tmp->m_Size.x )
|
|
|
|
return m_Size.x - tmp->m_Size.x;
|
|
|
|
|
|
|
|
if( m_Size.y != tmp->m_Size.y )
|
|
|
|
return m_Size.y - tmp->m_Size.y;
|
|
|
|
|
|
|
|
return 0;
|
2009-09-14 13:24:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-10-08 13:19:28 +00:00
|
|
|
void LIB_TEXT::DoOffset( const wxPoint& offset )
|
2009-09-14 13:24:17 +00:00
|
|
|
{
|
|
|
|
m_Pos += offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-25 15:43:42 +00:00
|
|
|
bool LIB_TEXT::DoTestInside( EDA_Rect& rect ) const
|
2009-09-14 13:24:17 +00:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
* FIXME: This should calculate the text size and justification and
|
|
|
|
* use rectangle instect.
|
|
|
|
*/
|
2010-12-20 17:44:25 +00:00
|
|
|
return rect.Contains( m_Pos.x, -m_Pos.y );
|
2009-09-14 13:24:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-10-08 13:19:28 +00:00
|
|
|
void LIB_TEXT::DoMove( const wxPoint& newPosition )
|
2009-09-25 18:49:04 +00:00
|
|
|
{
|
|
|
|
m_Pos = newPosition;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-10-08 13:19:28 +00:00
|
|
|
void LIB_TEXT::DoMirrorHorizontal( const wxPoint& center )
|
2009-09-29 18:38:21 +00:00
|
|
|
{
|
|
|
|
m_Pos.x -= center.x;
|
|
|
|
m_Pos.x *= -1;
|
|
|
|
m_Pos.x += center.x;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-10-08 13:19:28 +00:00
|
|
|
void LIB_TEXT::DoPlot( PLOTTER* plotter, const wxPoint& offset, bool fill,
|
2010-10-20 20:24:26 +00:00
|
|
|
const TRANSFORM& aTransform )
|
2009-10-05 17:52:41 +00:00
|
|
|
{
|
|
|
|
wxASSERT( plotter != NULL );
|
|
|
|
|
|
|
|
/* The text orientation may need to be flipped if the
|
|
|
|
* transformation matrix causes xy axes to be flipped. */
|
2010-10-20 20:24:26 +00:00
|
|
|
int t1 = ( aTransform.x1 != 0 ) ^ ( m_Orient != 0 );
|
|
|
|
wxPoint pos = aTransform.TransformCoordinate( m_Pos ) + offset;
|
2009-10-05 17:52:41 +00:00
|
|
|
|
|
|
|
plotter->text( pos, UNSPECIFIED_COLOR, m_Text,
|
|
|
|
t1 ? TEXT_ORIENT_HORIZ : TEXT_ORIENT_VERT,
|
|
|
|
m_Size, GR_TEXT_HJUSTIFY_CENTER, GR_TEXT_VJUSTIFY_CENTER,
|
|
|
|
GetPenSize(), m_Italic, m_Bold );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-11-12 16:36:43 +00:00
|
|
|
/**
|
|
|
|
* Function GetPenSize
|
2009-06-30 17:57:27 +00:00
|
|
|
* @return the size of the "pen" that be used to draw or plot this item
|
|
|
|
*/
|
2009-10-08 13:19:28 +00:00
|
|
|
int LIB_TEXT::GetPenSize( )
|
2009-06-13 17:07:04 +00:00
|
|
|
{
|
2010-11-27 13:09:18 +00:00
|
|
|
int pensize = m_Thickness;
|
2009-06-13 17:07:04 +00:00
|
|
|
|
2009-06-30 17:57:27 +00:00
|
|
|
if( pensize == 0 ) // Use default values for pen size
|
2009-06-13 17:07:04 +00:00
|
|
|
{
|
|
|
|
if( m_Bold )
|
2009-06-30 17:57:27 +00:00
|
|
|
pensize = GetPenSizeForBold( m_Size.x );
|
2009-06-13 17:07:04 +00:00
|
|
|
else
|
2009-06-30 17:57:27 +00:00
|
|
|
pensize = g_DrawDefaultLineThickness;
|
2009-06-13 17:07:04 +00:00
|
|
|
}
|
|
|
|
// Clip pen size for small texts:
|
2009-06-30 17:57:27 +00:00
|
|
|
pensize = Clamp_Text_PenSize( pensize, m_Size, m_Bold );
|
|
|
|
return pensize;
|
|
|
|
}
|
|
|
|
|
2010-10-20 20:24:26 +00:00
|
|
|
|
2011-01-21 19:30:59 +00:00
|
|
|
void LIB_TEXT::drawGraphic( EDA_DRAW_PANEL* aPanel, wxDC* aDC, const wxPoint& aOffset,
|
2010-10-20 20:24:26 +00:00
|
|
|
int aColor, int aDrawMode, void* aData, const TRANSFORM& aTransform )
|
2009-06-30 17:57:27 +00:00
|
|
|
{
|
|
|
|
wxPoint pos1, pos2;
|
2009-06-13 17:07:04 +00:00
|
|
|
|
2010-10-20 20:24:26 +00:00
|
|
|
int color = GetDefaultColor();
|
2009-10-01 14:17:47 +00:00
|
|
|
|
2009-06-13 17:07:04 +00:00
|
|
|
if( aColor < 0 ) // Used normal color or selected color
|
|
|
|
{
|
|
|
|
if( ( m_Selected & IS_SELECTED ) )
|
|
|
|
color = g_ItemSelectetColor;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
color = aColor;
|
|
|
|
|
2010-10-20 20:24:26 +00:00
|
|
|
pos1 = aTransform.TransformCoordinate( m_Pos ) + aOffset;
|
2009-06-13 17:07:04 +00:00
|
|
|
|
2009-09-04 18:57:37 +00:00
|
|
|
GRSetDrawMode( aDC, aDrawMode );
|
|
|
|
|
2010-03-16 12:05:47 +00:00
|
|
|
/* Calculate the text orientation, according to the component
|
|
|
|
* orientation/mirror (needed when draw text in schematic)
|
|
|
|
*/
|
|
|
|
int orient = m_Orient;
|
2010-10-20 20:24:26 +00:00
|
|
|
if( aTransform.y1 ) // Rotate component 90 degrees.
|
2010-03-16 12:05:47 +00:00
|
|
|
{
|
|
|
|
if( orient == TEXT_ORIENT_HORIZ )
|
|
|
|
orient = TEXT_ORIENT_VERT;
|
|
|
|
else
|
|
|
|
orient = TEXT_ORIENT_HORIZ;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Calculate the text justification, according to the component
|
|
|
|
* orientation/mirror this is a bit complicated due to cumulative
|
|
|
|
* calculations:
|
|
|
|
* - numerous cases (mirrored or not, rotation)
|
|
|
|
* - the DrawGraphicText function recalculate also H and H justifications
|
|
|
|
* according to the text orientation.
|
|
|
|
* - When a component is mirrored, the text is not mirrored and
|
|
|
|
* justifications are complicated to calculate
|
|
|
|
* so the more easily way is to use no justifications ( Centered text )
|
|
|
|
* and use GetBoundaryBox to know the text coordinate considered as centered
|
|
|
|
*/
|
|
|
|
EDA_Rect bBox = GetBoundingBox();
|
2010-10-20 20:24:26 +00:00
|
|
|
pos1 = bBox.Centre(); // this is the coordinates of the graphic text relative to the
|
|
|
|
// component position in schematic Y axis orientation.
|
|
|
|
|
2010-03-16 12:05:47 +00:00
|
|
|
/* convert y coordinate from schematic to library Y axis orientation
|
|
|
|
* because we want to call TransformCoordinate to calculate real coordinates
|
|
|
|
*/
|
|
|
|
NEGATE( pos1.y );
|
2010-10-20 20:24:26 +00:00
|
|
|
pos1 = aTransform.TransformCoordinate( pos1 ) + aOffset;
|
|
|
|
DrawGraphicText( aPanel, aDC, pos1, (EDA_Colors) color, m_Text, orient, m_Size,
|
|
|
|
GR_TEXT_HJUSTIFY_CENTER, GR_TEXT_VJUSTIFY_CENTER, GetPenSize(),
|
|
|
|
m_Italic, m_Bold );
|
|
|
|
|
2009-10-01 14:17:47 +00:00
|
|
|
|
2010-03-16 12:05:47 +00:00
|
|
|
/* Enable this to draw the bounding box around the text field to validate
|
|
|
|
* the bounding box calculations.
|
2010-10-20 20:24:26 +00:00
|
|
|
*/
|
2009-10-01 14:17:47 +00:00
|
|
|
#if 0
|
2010-03-16 12:05:47 +00:00
|
|
|
EDA_Rect grBox;
|
|
|
|
bBox.SetY( -bBox.GetY() );
|
|
|
|
bBox.SetHeight( -bBox.GetHeight());
|
2010-10-20 20:24:26 +00:00
|
|
|
grBox.SetOrigin( aTransform.TransformCoordinate( bBox.GetOrigin() ) );
|
|
|
|
grBox.SetEnd( aTransform.TransformCoordinate( bBox.GetEnd() ) );
|
2010-03-16 12:05:47 +00:00
|
|
|
grBox.Move( aOffset );
|
|
|
|
GRRect( &aPanel->m_ClipBox, aDC, grBox.GetOrigin().x, grBox.GetOrigin().y,
|
|
|
|
grBox.GetEnd().x, grBox.GetEnd().y, 0, LIGHTMAGENTA );
|
2009-10-01 14:17:47 +00:00
|
|
|
#endif
|
2009-06-13 17:07:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-01-21 19:30:59 +00:00
|
|
|
void LIB_TEXT::DisplayInfo( EDA_DRAW_FRAME* frame )
|
2009-06-13 17:07:04 +00:00
|
|
|
{
|
|
|
|
wxString msg;
|
|
|
|
|
2009-09-25 18:49:04 +00:00
|
|
|
LIB_DRAW_ITEM::DisplayInfo( frame );
|
2009-06-13 17:07:04 +00:00
|
|
|
|
2010-11-27 13:09:18 +00:00
|
|
|
msg = ReturnStringFromValue( g_UserUnit, m_Thickness, EESCHEMA_INTERNAL_UNIT, true );
|
2009-06-13 17:07:04 +00:00
|
|
|
|
2009-10-14 19:43:31 +00:00
|
|
|
frame->AppendMsgPanel( _( "Line width" ), msg, BLUE );
|
2009-06-13 17:07:04 +00:00
|
|
|
}
|
2009-10-01 14:17:47 +00:00
|
|
|
|
|
|
|
|
2010-03-16 12:05:47 +00:00
|
|
|
/**
|
|
|
|
* @return the boundary box for this, in schematic coordinates
|
|
|
|
*/
|
2010-12-10 19:47:44 +00:00
|
|
|
EDA_Rect LIB_TEXT::GetBoundingBox() const
|
2009-10-01 14:17:47 +00:00
|
|
|
{
|
2010-12-10 19:47:44 +00:00
|
|
|
/* Y coordinates for LIB_ITEMS are bottom to top, so we must invert the Y position when
|
|
|
|
* calling GetTextBox() that works using top to bottom Y axis orientation.
|
2010-03-16 12:05:47 +00:00
|
|
|
*/
|
2010-12-10 19:47:44 +00:00
|
|
|
EDA_Rect rect = GetTextBox( -1, -1, true );
|
2009-10-01 14:17:47 +00:00
|
|
|
|
|
|
|
wxPoint orig = rect.GetOrigin();
|
|
|
|
wxPoint end = rect.GetEnd();
|
|
|
|
wxPoint center = rect.Centre();
|
|
|
|
|
|
|
|
RotatePoint( &orig, center, m_Orient );
|
|
|
|
RotatePoint( &end, center, m_Orient );
|
|
|
|
rect.SetOrigin( orig );
|
|
|
|
rect.SetEnd( end );
|
2010-03-16 12:05:47 +00:00
|
|
|
rect.Normalize();
|
2009-10-01 14:17:47 +00:00
|
|
|
return rect;
|
|
|
|
}
|
2010-10-20 20:24:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
void LIB_TEXT::Rotate()
|
|
|
|
{
|
|
|
|
if( InEditMode() )
|
|
|
|
{
|
|
|
|
m_rotate = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_Orient = ( m_Orient == TEXT_ORIENT_VERT ) ? TEXT_ORIENT_HORIZ : TEXT_ORIENT_VERT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-22 12:11:52 +00:00
|
|
|
void LIB_TEXT::SetText( const wxString& aText )
|
|
|
|
{
|
|
|
|
if( aText == m_Text )
|
|
|
|
return;
|
|
|
|
|
|
|
|
if( InEditMode() )
|
|
|
|
{
|
|
|
|
m_savedText = aText;
|
|
|
|
m_updateText = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_Text = aText;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-20 20:24:26 +00:00
|
|
|
void LIB_TEXT::BeginEdit( int aEditMode, const wxPoint aPosition )
|
|
|
|
{
|
|
|
|
wxCHECK_RET( ( aEditMode & ( IS_NEW | IS_MOVED ) ) != 0,
|
|
|
|
wxT( "Invalid edit mode for LIB_TEXT object." ) );
|
|
|
|
|
|
|
|
if( aEditMode == IS_MOVED )
|
|
|
|
{
|
|
|
|
m_initialPos = m_Pos;
|
|
|
|
m_initialCursorPos = aPosition;
|
|
|
|
SetEraseLastDrawItem();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_Pos = aPosition;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_Flags = aEditMode;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool LIB_TEXT::ContinueEdit( const wxPoint aPosition )
|
|
|
|
{
|
|
|
|
wxCHECK_MSG( ( m_Flags & ( IS_NEW | IS_MOVED ) ) != 0, false,
|
|
|
|
wxT( "Bad call to ContinueEdit(). Text is not being edited." ) );
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void LIB_TEXT::EndEdit( const wxPoint& aPosition, bool aAbort )
|
|
|
|
{
|
|
|
|
wxCHECK_RET( ( m_Flags & ( IS_NEW | IS_MOVED ) ) != 0,
|
|
|
|
wxT( "Bad call to EndEdit(). Text is not being edited." ) );
|
|
|
|
|
|
|
|
m_Flags = 0;
|
2010-10-22 12:11:52 +00:00
|
|
|
m_rotate = false;
|
|
|
|
m_updateText = false;
|
2010-10-20 20:24:26 +00:00
|
|
|
SetEraseLastDrawItem( false );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void LIB_TEXT::calcEdit( const wxPoint& aPosition )
|
|
|
|
{
|
|
|
|
if( m_rotate )
|
|
|
|
{
|
|
|
|
m_Orient = ( m_Orient == TEXT_ORIENT_VERT ) ? TEXT_ORIENT_HORIZ : TEXT_ORIENT_VERT;
|
|
|
|
m_rotate = false;
|
|
|
|
}
|
|
|
|
|
2010-10-22 12:11:52 +00:00
|
|
|
if( m_updateText )
|
|
|
|
{
|
|
|
|
EXCHG( m_Text, m_savedText );
|
|
|
|
m_updateText = false;
|
|
|
|
}
|
|
|
|
|
2010-10-20 20:24:26 +00:00
|
|
|
if( m_Flags == IS_NEW )
|
|
|
|
{
|
|
|
|
SetEraseLastDrawItem();
|
|
|
|
m_Pos = aPosition;
|
|
|
|
}
|
|
|
|
else if( m_Flags == IS_MOVED )
|
|
|
|
{
|
|
|
|
Move( m_initialPos + aPosition - m_initialCursorPos );
|
|
|
|
}
|
|
|
|
}
|