2009-03-02 13:43:52 +00:00
|
|
|
/**
|
|
|
|
* Functions to draw and plot text on screen
|
2009-03-28 20:02:34 +00:00
|
|
|
* @file drawtxt.cpp
|
2009-03-02 13:43:52 +00:00
|
|
|
*/
|
2007-06-05 12:10:51 +00:00
|
|
|
#include "fctsys.h"
|
|
|
|
#include "gr_basic.h"
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
#include "plot_common.h"
|
|
|
|
|
|
|
|
#include "trigo.h"
|
|
|
|
#include "macros.h"
|
2009-02-04 15:25:03 +00:00
|
|
|
#include "class_drawpanel.h"
|
|
|
|
#include "class_base_screen.h"
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
#ifndef DEFAULT_SIZE_TEXT
|
2009-04-17 12:45:22 +00:00
|
|
|
# define DEFAULT_SIZE_TEXT 50
|
2007-06-05 12:10:51 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#define EDA_DRAWBASE
|
2010-02-01 21:23:27 +00:00
|
|
|
#include "newstroke_font.h"
|
2009-06-28 16:50:42 +00:00
|
|
|
#include "plot_common.h"
|
2009-05-30 16:06:01 +00:00
|
|
|
|
2009-05-29 15:45:13 +00:00
|
|
|
/* factor used to calculate actual size of shapes from hershey fonts (could be adjusted depending on the font name)
|
|
|
|
* Its value is choosen in order to have letters like M, P .. vertical size equal to the vertical char size parameter
|
|
|
|
* Of course some shapes can be bigger or smaller than the vertical char size parameter
|
2009-05-30 16:06:01 +00:00
|
|
|
*/
|
|
|
|
#define HERSHEY_SCALE_FACTOR 1 / 21.0
|
2009-05-29 15:45:13 +00:00
|
|
|
double s_HerscheyScaleFactor = HERSHEY_SCALE_FACTOR;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2009-05-30 16:06:01 +00:00
|
|
|
|
2010-11-12 16:36:43 +00:00
|
|
|
/**
|
|
|
|
* Function GetPensizeForBold
|
2009-05-30 16:06:01 +00:00
|
|
|
* @return the "best" value for a pen size to draw/plot a bold text
|
|
|
|
* @param aTextSize = the char size (height or width)
|
|
|
|
*/
|
|
|
|
int GetPenSizeForBold( int aTextSize )
|
|
|
|
{
|
|
|
|
return wxRound( aTextSize / 5.0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-11-12 16:36:43 +00:00
|
|
|
/**
|
|
|
|
* Function Clamp_Text_PenSize
|
2009-05-30 16:06:01 +00:00
|
|
|
*As a rule, pen width should not be >1/4em, otherwise the character
|
|
|
|
* will be cluttered up in its own fatness
|
|
|
|
* so pen width max is aSize/4 for bold text, and aSize/6 for normal text
|
|
|
|
* The "best" pen width is aSize/5 for bold texts,
|
|
|
|
* so the clamp is consistant with bold option.
|
|
|
|
* @param aPenSize = the pen size to clamp
|
|
|
|
* @param aSize the char size (height or width)
|
|
|
|
* @param aBold = true if text accept bold pen size
|
|
|
|
* @return the max pen size allowed
|
|
|
|
*/
|
|
|
|
int Clamp_Text_PenSize( int aPenSize, int aSize, bool aBold )
|
|
|
|
{
|
2010-09-11 16:33:43 +00:00
|
|
|
int penSize = aPenSize;
|
|
|
|
double scale = aBold ? 4.0 : 6.0;
|
|
|
|
int maxWidth = wxRound( ABS( aSize ) / scale );
|
2009-05-30 16:06:01 +00:00
|
|
|
|
|
|
|
if( penSize > maxWidth )
|
|
|
|
penSize = maxWidth;
|
|
|
|
return penSize;
|
|
|
|
}
|
|
|
|
|
2010-09-11 16:33:43 +00:00
|
|
|
|
2009-05-30 16:06:01 +00:00
|
|
|
int Clamp_Text_PenSize( int aPenSize, wxSize aSize, bool aBold )
|
|
|
|
{
|
2010-09-11 16:33:43 +00:00
|
|
|
int size = MIN( ABS( aSize.x ), ABS( aSize.y ) );
|
2009-05-30 16:06:01 +00:00
|
|
|
|
2011-03-03 19:08:13 +00:00
|
|
|
return Clamp_Text_PenSize( aPenSize, size, aBold );
|
2010-09-11 16:33:43 +00:00
|
|
|
}
|
2009-05-30 16:06:01 +00:00
|
|
|
|
|
|
|
|
2009-05-12 12:12:34 +00:00
|
|
|
/* Functions to draw / plot a string.
|
|
|
|
* texts have only one line.
|
|
|
|
* They can be in italic.
|
|
|
|
* Horizontal and Vertical justification are handled.
|
|
|
|
* Texts can be rotated
|
|
|
|
* substrings between ~ markers can be "negated" (i.e. with an over bar
|
|
|
|
*/
|
|
|
|
|
2010-11-12 16:36:43 +00:00
|
|
|
/**
|
|
|
|
* Function NegableTextLength
|
2009-04-06 10:56:17 +00:00
|
|
|
* Return the text length of a negable string, excluding the ~ markers */
|
2009-04-17 12:45:22 +00:00
|
|
|
int NegableTextLength( const wxString& aText )
|
2009-04-06 10:56:17 +00:00
|
|
|
{
|
|
|
|
int char_count = aText.length();
|
2009-04-17 12:45:22 +00:00
|
|
|
|
2009-04-06 10:56:17 +00:00
|
|
|
/* Fix the character count, removing the ~ found */
|
2009-04-17 12:45:22 +00:00
|
|
|
for( int i = char_count - 1; i >= 0; i-- )
|
|
|
|
{
|
|
|
|
if( aText[i] == '~' )
|
|
|
|
{
|
|
|
|
char_count--;
|
|
|
|
}
|
2009-04-06 10:56:17 +00:00
|
|
|
}
|
2009-04-17 12:45:22 +00:00
|
|
|
|
2009-04-06 10:56:17 +00:00
|
|
|
return char_count;
|
|
|
|
}
|
|
|
|
|
2009-04-17 12:45:22 +00:00
|
|
|
|
2010-11-12 16:59:16 +00:00
|
|
|
/* Function GetHersheyShapeDescription
|
2009-05-30 16:06:01 +00:00
|
|
|
* return a pointer to the shape corresponding to unicode value AsciiCode
|
|
|
|
* Note we use the same font for Bold and Normal texts
|
|
|
|
* because kicad handles a variable pen size to do that
|
|
|
|
* that gives better results in XOR draw mode.
|
|
|
|
*/
|
|
|
|
static const char* GetHersheyShapeDescription( int AsciiCode )
|
|
|
|
{
|
2010-02-01 21:23:27 +00:00
|
|
|
/* calculate font length */
|
2010-02-19 13:23:58 +00:00
|
|
|
int font_length_max = newstroke_font_bufsize;
|
2010-09-11 16:33:43 +00:00
|
|
|
|
|
|
|
if( AsciiCode >= (32 + font_length_max) )
|
2009-06-18 13:30:52 +00:00
|
|
|
AsciiCode = '?';
|
2009-05-28 17:39:40 +00:00
|
|
|
if( AsciiCode < 32 )
|
|
|
|
AsciiCode = 32; /* Clamp control chars */
|
|
|
|
AsciiCode -= 32;
|
|
|
|
|
2010-02-01 21:23:27 +00:00
|
|
|
return newstroke_font[AsciiCode];
|
2009-05-28 17:39:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-05-30 16:06:01 +00:00
|
|
|
int ReturnGraphicTextWidth( const wxString& aText, int aXSize, bool aItalic, bool aWidth )
|
2009-05-28 17:39:40 +00:00
|
|
|
{
|
|
|
|
int tally = 0;
|
|
|
|
int char_count = aText.length();
|
|
|
|
|
|
|
|
for( int i = 0; i < char_count; i++ )
|
|
|
|
{
|
|
|
|
int AsciiCode = aText[i];
|
|
|
|
|
|
|
|
if( AsciiCode == '~' ) /* Skip the negation marks */
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2009-05-30 16:06:01 +00:00
|
|
|
const char* ptcar = GetHersheyShapeDescription( AsciiCode );
|
2009-05-28 17:39:40 +00:00
|
|
|
/* Get metrics */
|
|
|
|
int xsta = *ptcar++ - 'R';
|
|
|
|
int xsto = *ptcar++ - 'R';
|
2009-05-29 15:45:13 +00:00
|
|
|
tally += wxRound( aXSize * (xsto - xsta) * s_HerscheyScaleFactor );
|
2009-05-28 17:39:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Italic correction, 1/8em */
|
2009-05-30 16:06:01 +00:00
|
|
|
if( aItalic )
|
2009-05-28 17:39:40 +00:00
|
|
|
{
|
2009-05-29 07:29:55 +00:00
|
|
|
tally += wxRound( aXSize * 0.125 );
|
2009-05-28 17:39:40 +00:00
|
|
|
}
|
|
|
|
return tally;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-06 10:56:17 +00:00
|
|
|
/* Helper function for drawing character polygons */
|
|
|
|
static void DrawGraphicTextPline(
|
2010-09-11 16:33:43 +00:00
|
|
|
EDA_Rect* aClipBox,
|
2009-04-17 12:45:22 +00:00
|
|
|
wxDC* aDC,
|
|
|
|
EDA_Colors aColor,
|
|
|
|
int aWidth,
|
2010-12-28 11:24:42 +00:00
|
|
|
bool aSketchMode,
|
2009-04-17 12:45:22 +00:00
|
|
|
int point_count,
|
|
|
|
wxPoint* coord,
|
2009-06-28 16:50:42 +00:00
|
|
|
void (* aCallback)(int x0, int y0, int xf, int yf ),
|
2010-12-28 11:24:42 +00:00
|
|
|
PLOTTER* aPlotter )
|
2009-04-06 10:56:17 +00:00
|
|
|
{
|
2010-12-28 11:24:42 +00:00
|
|
|
if( aPlotter )
|
2009-06-28 16:50:42 +00:00
|
|
|
{
|
2010-12-28 11:24:42 +00:00
|
|
|
aPlotter->move_to( coord[0] );
|
2009-06-28 16:50:42 +00:00
|
|
|
for( int ik = 1; ik < point_count; ik++ )
|
|
|
|
{
|
2010-12-28 11:24:42 +00:00
|
|
|
aPlotter->line_to( coord[ik] );
|
2009-06-28 16:50:42 +00:00
|
|
|
}
|
2010-09-11 16:33:43 +00:00
|
|
|
|
2010-12-28 11:24:42 +00:00
|
|
|
aPlotter->pen_finish();
|
2009-06-28 16:50:42 +00:00
|
|
|
}
|
2010-09-11 16:33:43 +00:00
|
|
|
else if( aCallback )
|
2009-04-06 10:56:17 +00:00
|
|
|
{
|
2009-04-17 12:45:22 +00:00
|
|
|
for( int ik = 0; ik < (point_count - 1); ik++ )
|
|
|
|
{
|
|
|
|
aCallback( coord[ik].x, coord[ik].y,
|
|
|
|
coord[ik + 1].x, coord[ik + 1].y );
|
|
|
|
}
|
2009-04-06 10:56:17 +00:00
|
|
|
}
|
2010-12-28 11:24:42 +00:00
|
|
|
else if( aSketchMode )
|
2009-04-06 10:56:17 +00:00
|
|
|
{
|
2009-04-17 12:45:22 +00:00
|
|
|
for( int ik = 0; ik < (point_count - 1); ik++ )
|
2010-09-11 16:33:43 +00:00
|
|
|
GRCSegm( aClipBox, aDC, coord[ik].x, coord[ik].y,
|
2009-04-17 12:45:22 +00:00
|
|
|
coord[ik + 1].x, coord[ik + 1].y, aWidth, aColor );
|
2009-04-06 10:56:17 +00:00
|
|
|
}
|
|
|
|
else
|
2010-09-11 16:33:43 +00:00
|
|
|
GRPoly( aClipBox, aDC, point_count, coord, 0,
|
2009-04-17 12:45:22 +00:00
|
|
|
aWidth, aColor, aColor );
|
2009-04-06 10:56:17 +00:00
|
|
|
}
|
|
|
|
|
2009-04-17 12:45:22 +00:00
|
|
|
|
2009-05-30 16:06:01 +00:00
|
|
|
/* Helper function for texts with over bar
|
|
|
|
*/
|
2009-04-17 12:45:22 +00:00
|
|
|
static int overbar_position( int size_v, int thickness )
|
2009-04-06 10:56:17 +00:00
|
|
|
{
|
2009-05-30 16:06:01 +00:00
|
|
|
return wxRound( ( (double) size_v * 26 * s_HerscheyScaleFactor ) + ( (double) thickness * 1.5 ) );
|
2009-04-06 10:56:17 +00:00
|
|
|
}
|
2008-12-14 19:45:05 +00:00
|
|
|
|
2009-04-17 12:45:22 +00:00
|
|
|
|
2010-11-12 16:36:43 +00:00
|
|
|
/**
|
|
|
|
* Function DrawGraphicText
|
2008-12-14 19:45:05 +00:00
|
|
|
* Draw a graphic text (like module texts)
|
2009-01-30 14:11:36 +00:00
|
|
|
* @param aPanel = the current DrawPanel. NULL if draw within a 3D GL Canvas
|
|
|
|
* @param aDC = the current Device Context. NULL if draw within a 3D GL Canvas
|
2008-12-16 19:44:57 +00:00
|
|
|
* @param aPos = text position (according to h_justify, v_justify)
|
2008-12-14 19:45:05 +00:00
|
|
|
* @param aColor (enum EDA_Colors) = text color
|
|
|
|
* @param aText = text to draw
|
|
|
|
* @param aOrient = angle in 0.1 degree
|
|
|
|
* @param aSize = text size (size.x or size.y can be < 0 for mirrored texts)
|
|
|
|
* @param aH_justify = horizontal justification (Left, center, right)
|
|
|
|
* @param aV_justify = vertical justification (bottom, center, top)
|
2009-05-30 16:06:01 +00:00
|
|
|
* @param aWidth = line width (pen width) (use default width if aWidth = 0)
|
2008-12-16 19:44:57 +00:00
|
|
|
* if width < 0 : draw segments in sketch mode, width = abs(width)
|
2009-05-30 16:06:01 +00:00
|
|
|
* Use a value min(aSize.x, aSize.y) / 5 for a bold text
|
2008-12-16 19:44:57 +00:00
|
|
|
* @param aItalic = true to simulate an italic font
|
2009-05-30 16:06:01 +00:00
|
|
|
* @param aBold = true to use a bold font. Useful only with default width value (aWidth = 0)
|
2010-12-28 11:24:42 +00:00
|
|
|
* @param aCallback() = function called (if non null) to draw each segment.
|
|
|
|
* used to draw 3D texts or for plotting, NULL for normal drawings
|
|
|
|
* @param aPlotter = a pointer to a PLOTTER instance, when this function is used to plot
|
|
|
|
* the text. NULL to draw this text.
|
2008-01-19 20:34:10 +00:00
|
|
|
*/
|
2011-01-21 19:30:59 +00:00
|
|
|
void DrawGraphicText( EDA_DRAW_PANEL* aPanel,
|
2010-09-11 16:33:43 +00:00
|
|
|
wxDC* aDC,
|
|
|
|
const wxPoint& aPos,
|
|
|
|
EDA_Colors aColor,
|
|
|
|
const wxString& aText,
|
|
|
|
int aOrient,
|
|
|
|
const wxSize& aSize,
|
|
|
|
enum GRTextHorizJustifyType aH_justify,
|
|
|
|
enum GRTextVertJustifyType aV_justify,
|
|
|
|
int aWidth,
|
|
|
|
bool aItalic,
|
|
|
|
bool aBold,
|
|
|
|
void (* aCallback)( int x0, int y0, int xf, int yf ),
|
2010-12-28 11:24:42 +00:00
|
|
|
PLOTTER* aPlotter )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2010-09-11 16:33:43 +00:00
|
|
|
int AsciiCode;
|
|
|
|
int x0, y0;
|
|
|
|
int size_h, size_v;
|
|
|
|
unsigned ptr;
|
|
|
|
int dx, dy; // Draw coordinate for segments to draw. also used in some other calculation
|
|
|
|
wxPoint current_char_pos; // Draw coordinates for the current char
|
|
|
|
wxPoint overbar_pos; // Start point for the current overbar
|
|
|
|
int overbars; // Number of ~ seen
|
|
|
|
int overbar_italic_comp; // Italic compensation for overbar
|
|
|
|
EDA_Rect* clipBox; // Clip box used in basic draw functions
|
|
|
|
|
|
|
|
clipBox = aPanel ? &aPanel->m_ClipBox : NULL;
|
2009-03-28 20:02:34 +00:00
|
|
|
#define BUF_SIZE 100
|
2009-05-28 17:39:40 +00:00
|
|
|
wxPoint coord[BUF_SIZE + 1]; // Buffer coordinate used to draw polylines (one char shape)
|
|
|
|
bool sketch_mode = false;
|
|
|
|
bool italic_reverse = false; // true for mirrored texts with m_Size.x < 0
|
2008-01-19 20:34:10 +00:00
|
|
|
|
2009-05-28 17:39:40 +00:00
|
|
|
size_h = aSize.x; /* PLEASE NOTE: H is for HORIZONTAL not for HEIGHT */
|
2008-12-14 19:45:05 +00:00
|
|
|
size_v = aSize.y;
|
2008-01-19 20:34:10 +00:00
|
|
|
|
2009-05-30 16:06:01 +00:00
|
|
|
if( aWidth == 0 && aBold ) // Use default values if aWidth == 0
|
|
|
|
aWidth = GetPenSizeForBold( MIN( aSize.x, aSize.y ) );
|
|
|
|
|
2008-12-14 19:45:05 +00:00
|
|
|
if( aWidth < 0 )
|
2008-01-19 20:34:10 +00:00
|
|
|
{
|
2008-12-14 19:45:05 +00:00
|
|
|
aWidth = -aWidth;
|
2009-03-28 20:02:34 +00:00
|
|
|
sketch_mode = true;
|
2008-01-19 20:34:10 +00:00
|
|
|
}
|
2009-06-02 07:26:49 +00:00
|
|
|
|
|
|
|
#ifdef CLIP_PEN // made by draw and plot functions
|
|
|
|
aWidth = Clamp_Text_PenSize( aWidth, aSize, aBold );
|
|
|
|
#endif
|
|
|
|
|
2009-05-28 17:39:40 +00:00
|
|
|
if( size_h < 0 ) // text is mirrored using size.x < 0 (mirror / Y axis)
|
2009-04-17 12:45:22 +00:00
|
|
|
italic_reverse = true;
|
2008-01-19 20:34:10 +00:00
|
|
|
|
2009-06-28 16:50:42 +00:00
|
|
|
unsigned char_count = NegableTextLength( aText );
|
2008-12-16 19:44:57 +00:00
|
|
|
if( char_count == 0 )
|
2008-01-19 20:34:10 +00:00
|
|
|
return;
|
|
|
|
|
2009-05-12 12:12:34 +00:00
|
|
|
current_char_pos = aPos;
|
2008-01-19 20:34:10 +00:00
|
|
|
|
2009-05-30 16:06:01 +00:00
|
|
|
dx = ReturnGraphicTextWidth( aText, size_h, aItalic, aWidth );
|
2009-05-28 17:39:40 +00:00
|
|
|
dy = size_v;
|
|
|
|
|
2008-01-19 20:34:10 +00:00
|
|
|
/* Do not draw the text if out of draw area! */
|
2008-12-14 19:45:05 +00:00
|
|
|
if( aPanel )
|
2008-01-19 20:34:10 +00:00
|
|
|
{
|
|
|
|
int xm, ym, ll, xc, yc;
|
2011-01-30 22:22:38 +00:00
|
|
|
ll = ABS( dx );
|
2008-03-22 05:55:06 +00:00
|
|
|
|
2011-01-30 22:22:38 +00:00
|
|
|
xc = current_char_pos.x;
|
|
|
|
yc = current_char_pos.y;
|
2008-03-22 05:55:06 +00:00
|
|
|
|
2008-12-14 19:45:05 +00:00
|
|
|
x0 = aPanel->m_ClipBox.GetX() - ll;
|
|
|
|
y0 = aPanel->m_ClipBox.GetY() - ll;
|
|
|
|
xm = aPanel->m_ClipBox.GetRight() + ll;
|
|
|
|
ym = aPanel->m_ClipBox.GetBottom() + ll;
|
2008-03-22 05:55:06 +00:00
|
|
|
|
2008-01-19 20:34:10 +00:00
|
|
|
if( xc < x0 )
|
|
|
|
return;
|
|
|
|
if( yc < y0 )
|
|
|
|
return;
|
|
|
|
if( xc > xm )
|
|
|
|
return;
|
|
|
|
if( yc > ym )
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-05-12 12:12:34 +00:00
|
|
|
/* Compute the position of the first letter of the text
|
|
|
|
* this position is the position of the left bottom point of the letter
|
|
|
|
* this is the same as the text position only for a left and bottom justified text
|
|
|
|
* In others cases, this position must be calculated from the text position ans size
|
2009-05-28 17:39:40 +00:00
|
|
|
*/
|
2008-01-19 20:34:10 +00:00
|
|
|
|
2009-05-05 17:32:07 +00:00
|
|
|
switch( aH_justify )
|
2008-01-19 20:34:10 +00:00
|
|
|
{
|
2009-05-05 17:32:07 +00:00
|
|
|
case GR_TEXT_HJUSTIFY_CENTER:
|
2009-05-12 12:12:34 +00:00
|
|
|
current_char_pos.x -= dx / 2;
|
2009-05-05 17:32:07 +00:00
|
|
|
break;
|
2008-01-19 20:34:10 +00:00
|
|
|
|
2009-05-05 17:32:07 +00:00
|
|
|
case GR_TEXT_HJUSTIFY_RIGHT:
|
2009-05-12 12:12:34 +00:00
|
|
|
current_char_pos.x -= dx;
|
2009-05-05 17:32:07 +00:00
|
|
|
break;
|
2008-01-19 20:34:10 +00:00
|
|
|
|
2009-05-05 17:32:07 +00:00
|
|
|
case GR_TEXT_HJUSTIFY_LEFT:
|
|
|
|
break;
|
|
|
|
}
|
2008-01-19 20:34:10 +00:00
|
|
|
|
2009-05-05 17:32:07 +00:00
|
|
|
switch( aV_justify )
|
|
|
|
{
|
|
|
|
case GR_TEXT_VJUSTIFY_CENTER:
|
2009-05-28 17:39:40 +00:00
|
|
|
current_char_pos.y += dy / 2;
|
2009-05-05 17:32:07 +00:00
|
|
|
break;
|
2008-01-19 20:34:10 +00:00
|
|
|
|
2009-05-05 17:32:07 +00:00
|
|
|
case GR_TEXT_VJUSTIFY_TOP:
|
2010-09-11 16:33:43 +00:00
|
|
|
current_char_pos.y += dy;
|
2009-05-05 17:32:07 +00:00
|
|
|
break;
|
2008-01-19 20:34:10 +00:00
|
|
|
|
2009-05-05 17:32:07 +00:00
|
|
|
case GR_TEXT_VJUSTIFY_BOTTOM:
|
|
|
|
break;
|
2008-01-19 20:34:10 +00:00
|
|
|
}
|
2008-03-22 05:55:06 +00:00
|
|
|
|
2009-01-30 14:11:36 +00:00
|
|
|
// Note: if aPanel == NULL, we are using a GL Canvas that handle scaling
|
2011-01-30 22:22:38 +00:00
|
|
|
if( aSize.x == 0 )
|
2008-01-19 20:34:10 +00:00
|
|
|
return;
|
|
|
|
|
2011-01-30 22:22:38 +00:00
|
|
|
/* if a text size is too small, the text cannot be drawn, and it is drawn as a single
|
|
|
|
* graphic line */
|
2011-02-01 11:56:09 +00:00
|
|
|
if( ABS( aSize.x ) < 3 )
|
2009-04-17 12:45:22 +00:00
|
|
|
{
|
2009-05-12 12:12:34 +00:00
|
|
|
/* draw the text as a line always vertically centered */
|
2009-05-28 17:39:40 +00:00
|
|
|
wxPoint end( current_char_pos.x + dx, current_char_pos.y );
|
2008-03-22 05:55:06 +00:00
|
|
|
|
2009-05-12 12:12:34 +00:00
|
|
|
RotatePoint( ¤t_char_pos, aPos, aOrient );
|
|
|
|
RotatePoint( &end, aPos, aOrient );
|
2008-03-22 05:55:06 +00:00
|
|
|
|
2010-12-28 11:24:42 +00:00
|
|
|
if( aPlotter )
|
2010-09-11 16:33:43 +00:00
|
|
|
{
|
2010-12-28 11:24:42 +00:00
|
|
|
aPlotter->move_to( current_char_pos );
|
|
|
|
aPlotter->finish_to( end );
|
2010-09-11 16:33:43 +00:00
|
|
|
}
|
|
|
|
else if( aCallback )
|
|
|
|
{
|
2009-05-12 12:12:34 +00:00
|
|
|
aCallback( current_char_pos.x, current_char_pos.y, end.x, end.y );
|
2010-09-11 16:33:43 +00:00
|
|
|
}
|
2008-12-16 19:44:57 +00:00
|
|
|
else
|
2009-05-12 12:12:34 +00:00
|
|
|
GRLine( &aPanel->m_ClipBox, aDC,
|
2009-05-28 17:39:40 +00:00
|
|
|
current_char_pos.x, current_char_pos.y, end.x, end.y, aWidth, aColor );
|
2008-01-19 20:34:10 +00:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2009-05-28 17:39:40 +00:00
|
|
|
if( aItalic )
|
|
|
|
{
|
|
|
|
overbar_italic_comp = overbar_position( size_v, aWidth ) / 8;
|
|
|
|
if( italic_reverse )
|
|
|
|
{
|
|
|
|
overbar_italic_comp = -overbar_italic_comp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
overbar_italic_comp = 0;
|
|
|
|
};
|
|
|
|
|
2009-04-06 10:56:17 +00:00
|
|
|
overbars = 0;
|
|
|
|
ptr = 0; /* ptr = text index */
|
|
|
|
while( ptr < char_count )
|
2008-01-19 20:34:10 +00:00
|
|
|
{
|
2009-05-28 17:39:40 +00:00
|
|
|
if( aText[ptr + overbars] == '~' )
|
2009-04-17 12:45:22 +00:00
|
|
|
{
|
2009-05-28 17:39:40 +00:00
|
|
|
/* Found an overbar, adjust the pointers */
|
|
|
|
overbars++;
|
2009-04-17 12:45:22 +00:00
|
|
|
|
2009-05-28 17:39:40 +00:00
|
|
|
if( overbars % 2 )
|
|
|
|
{
|
|
|
|
/* Starting the overbar */
|
|
|
|
overbar_pos = current_char_pos;
|
|
|
|
overbar_pos.x += overbar_italic_comp;
|
|
|
|
overbar_pos.y -= overbar_position( size_v, aWidth );
|
|
|
|
RotatePoint( &overbar_pos, aPos, aOrient );
|
2009-04-17 12:45:22 +00:00
|
|
|
}
|
2009-05-28 17:39:40 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Ending the overbar */
|
|
|
|
coord[0] = overbar_pos;
|
|
|
|
overbar_pos = current_char_pos;
|
|
|
|
overbar_pos.x += overbar_italic_comp;
|
|
|
|
overbar_pos.y -= overbar_position( size_v, aWidth );
|
|
|
|
RotatePoint( &overbar_pos, aPos, aOrient );
|
|
|
|
coord[1] = overbar_pos;
|
|
|
|
/* Plot the overbar segment */
|
2010-09-11 16:33:43 +00:00
|
|
|
DrawGraphicTextPline( clipBox, aDC, aColor, aWidth,
|
2010-12-28 11:24:42 +00:00
|
|
|
sketch_mode, 2, coord, aCallback, aPlotter );
|
2009-05-28 17:39:40 +00:00
|
|
|
}
|
|
|
|
continue; /* Skip ~ processing */
|
2009-04-17 12:45:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
AsciiCode = aText.GetChar( ptr + overbars );
|
2009-04-13 05:58:11 +00:00
|
|
|
|
2009-05-30 16:06:01 +00:00
|
|
|
const char* ptcar = GetHersheyShapeDescription( AsciiCode );
|
2009-05-28 17:39:40 +00:00
|
|
|
/* Get metrics */
|
|
|
|
int xsta = *ptcar++ - 'R';
|
|
|
|
int xsto = *ptcar++ - 'R';
|
|
|
|
int point_count = 0;
|
|
|
|
bool endcar = false;
|
|
|
|
while( !endcar )
|
2008-01-19 20:34:10 +00:00
|
|
|
{
|
2009-05-28 17:39:40 +00:00
|
|
|
int hc1, hc2;
|
|
|
|
hc1 = *ptcar++;
|
|
|
|
if( hc1 )
|
2008-01-19 20:34:10 +00:00
|
|
|
{
|
2009-05-28 17:39:40 +00:00
|
|
|
hc2 = *ptcar++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-09-11 16:33:43 +00:00
|
|
|
// End of character, insert a synthetic pen up:
|
2009-05-28 17:39:40 +00:00
|
|
|
hc1 = ' ';
|
|
|
|
hc2 = 'R';
|
|
|
|
endcar = true;
|
|
|
|
}
|
2010-09-11 16:33:43 +00:00
|
|
|
// Do the Hershey decode thing: coordinates values are coded as <value> + 'R'
|
|
|
|
hc1 -= 'R'; hc2 -= 'R';
|
2008-01-19 20:34:10 +00:00
|
|
|
|
2009-05-28 17:39:40 +00:00
|
|
|
/* Pen up request */
|
|
|
|
if( hc1 == -50 && hc2 == 0 )
|
|
|
|
{
|
|
|
|
if( point_count )
|
2008-01-19 20:34:10 +00:00
|
|
|
{
|
2008-12-14 19:45:05 +00:00
|
|
|
if( aWidth <= 1 )
|
2009-04-17 12:45:22 +00:00
|
|
|
aWidth = 0;
|
2010-09-11 16:33:43 +00:00
|
|
|
DrawGraphicTextPline( clipBox, aDC, aColor, aWidth,
|
2009-06-28 16:50:42 +00:00
|
|
|
sketch_mode, point_count, coord,
|
2010-12-28 11:24:42 +00:00
|
|
|
aCallback, aPlotter );
|
2008-01-19 20:34:10 +00:00
|
|
|
}
|
2009-05-28 17:39:40 +00:00
|
|
|
point_count = 0;
|
|
|
|
}
|
|
|
|
else
|
2009-04-17 12:45:22 +00:00
|
|
|
{
|
2009-05-12 12:12:34 +00:00
|
|
|
wxPoint currpoint;
|
2009-05-28 17:39:40 +00:00
|
|
|
hc1 -= xsta; hc2 -= 11; /* Align the midpoint */
|
2009-05-29 15:45:13 +00:00
|
|
|
hc1 = wxRound( hc1 * size_h * s_HerscheyScaleFactor );
|
|
|
|
hc2 = wxRound( hc2 * size_v * s_HerscheyScaleFactor );
|
2009-04-17 12:45:22 +00:00
|
|
|
|
|
|
|
// To simulate an italic font, add a x offset depending on the y offset
|
|
|
|
if( aItalic )
|
2009-05-28 17:39:40 +00:00
|
|
|
hc1 -= wxRound( italic_reverse ? -hc2 / 8.0 : hc2 / 8.0 );
|
|
|
|
currpoint.x = hc1 + current_char_pos.x;
|
|
|
|
currpoint.y = hc2 + current_char_pos.y;
|
2009-04-17 12:45:22 +00:00
|
|
|
|
2009-05-12 12:12:34 +00:00
|
|
|
RotatePoint( &currpoint, aPos, aOrient );
|
|
|
|
coord[point_count] = currpoint;
|
2009-05-28 17:39:40 +00:00
|
|
|
if( point_count < BUF_SIZE - 1 )
|
2009-04-17 12:45:22 +00:00
|
|
|
point_count++;
|
2008-01-19 20:34:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-16 19:44:57 +00:00
|
|
|
/* end draw 1 char */
|
2008-01-19 20:34:10 +00:00
|
|
|
|
2009-05-12 12:12:34 +00:00
|
|
|
ptr++;
|
2009-05-28 17:39:40 +00:00
|
|
|
|
|
|
|
// Apply the advance width
|
2009-05-29 15:45:13 +00:00
|
|
|
current_char_pos.x += wxRound( size_h * (xsto - xsta) * s_HerscheyScaleFactor );
|
2008-01-19 20:34:10 +00:00
|
|
|
}
|
2009-04-17 12:45:22 +00:00
|
|
|
|
|
|
|
if( overbars % 2 )
|
|
|
|
{
|
|
|
|
/* Close the last overbar */
|
2009-05-28 17:39:40 +00:00
|
|
|
coord[0] = overbar_pos;
|
|
|
|
overbar_pos = current_char_pos;
|
|
|
|
overbar_pos.y -= overbar_position( size_v, aWidth );
|
2009-05-12 12:12:34 +00:00
|
|
|
RotatePoint( &overbar_pos, aPos, aOrient );
|
|
|
|
coord[1] = overbar_pos;
|
2009-04-17 12:45:22 +00:00
|
|
|
/* Plot the overbar segment */
|
2010-09-11 16:33:43 +00:00
|
|
|
DrawGraphicTextPline( clipBox, aDC, aColor, aWidth,
|
2010-12-28 11:24:42 +00:00
|
|
|
sketch_mode, 2, coord, aCallback, aPlotter );
|
2009-04-06 10:56:17 +00:00
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-11-12 16:36:43 +00:00
|
|
|
/**
|
|
|
|
* Function PlotGraphicText
|
2008-12-14 19:45:05 +00:00
|
|
|
* same as DrawGraphicText, but plot graphic text insteed of draw it
|
|
|
|
* @param aPos = text position (according to aH_justify, aV_justify)
|
|
|
|
* @param aColor (enum EDA_Colors) = text color
|
|
|
|
* @param aText = text to draw
|
|
|
|
* @param aOrient = angle in 0.1 degree
|
|
|
|
* @param aSize = text size (size.x or size.y can be < 0 for mirrored texts)
|
|
|
|
* @param aH_justify = horizontal justification (Left, center, right)
|
|
|
|
* @param aV_justify = vertical justification (bottom, center, top)
|
2008-12-19 20:40:08 +00:00
|
|
|
* @param aWidth = line width (pen width) (default = 0)
|
|
|
|
* if width < 0 : draw segments in sketch mode, width = abs(width)
|
2009-05-30 16:06:01 +00:00
|
|
|
* Use a value min(aSize.x, aSize.y) / 5 for a bold text
|
2008-12-19 20:40:08 +00:00
|
|
|
* @param aItalic = true to simulate an italic font
|
2009-05-30 16:06:01 +00:00
|
|
|
* @param aBold = true to use a bold font Useful only with default width value (aWidth = 0)
|
2008-01-19 20:34:10 +00:00
|
|
|
*/
|
2009-08-29 10:20:48 +00:00
|
|
|
void PLOTTER::text( const wxPoint& aPos,
|
2010-09-11 16:33:43 +00:00
|
|
|
enum EDA_Colors aColor,
|
|
|
|
const wxString& aText,
|
|
|
|
int aOrient,
|
|
|
|
const wxSize& aSize,
|
|
|
|
enum GRTextHorizJustifyType aH_justify,
|
|
|
|
enum GRTextVertJustifyType aV_justify,
|
|
|
|
int aWidth,
|
|
|
|
bool aItalic,
|
|
|
|
bool aBold )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2009-05-30 16:06:01 +00:00
|
|
|
if( aWidth == 0 && aBold ) // Use default values if aWidth == 0
|
|
|
|
aWidth = GetPenSizeForBold( MIN( aSize.x, aSize.y ) );
|
2009-05-28 17:39:40 +00:00
|
|
|
|
2010-09-11 16:33:43 +00:00
|
|
|
if( aWidth >= 0 )
|
2009-06-02 07:26:49 +00:00
|
|
|
aWidth = Clamp_Text_PenSize( aWidth, aSize, aBold );
|
|
|
|
else
|
2010-09-11 16:33:43 +00:00
|
|
|
aWidth = -Clamp_Text_PenSize( -aWidth, aSize, aBold );
|
2008-01-19 20:34:10 +00:00
|
|
|
|
2009-06-28 16:50:42 +00:00
|
|
|
set_current_line_width( aWidth );
|
2008-12-22 21:06:44 +00:00
|
|
|
|
2008-01-19 20:34:10 +00:00
|
|
|
|
2009-06-28 16:50:42 +00:00
|
|
|
if( aColor >= 0 )
|
|
|
|
set_color( aColor );
|
2008-01-19 20:34:10 +00:00
|
|
|
|
2008-12-19 20:40:08 +00:00
|
|
|
DrawGraphicText( NULL, NULL, aPos, aColor, aText,
|
2009-04-17 12:45:22 +00:00
|
|
|
aOrient, aSize,
|
|
|
|
aH_justify, aV_justify,
|
2009-05-30 16:06:01 +00:00
|
|
|
aWidth, aItalic,
|
|
|
|
aBold,
|
2010-09-11 16:33:43 +00:00
|
|
|
NULL,
|
2009-06-28 16:50:42 +00:00
|
|
|
this );
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|