2011-09-30 18:15:37 +00:00
|
|
|
|
/**
|
|
|
|
|
* @file common_plotPS_functions.cpp
|
|
|
|
|
* @brief Kicad: Common plot Postscript Routines
|
|
|
|
|
*/
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
|
#include <fctsys.h>
|
|
|
|
|
#include <trigo.h>
|
|
|
|
|
#include <wxstruct.h>
|
|
|
|
|
#include <base_struct.h>
|
|
|
|
|
#include <common.h>
|
|
|
|
|
#include <plot_common.h>
|
|
|
|
|
#include <macros.h>
|
|
|
|
|
#include <kicad_string.h>
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
|
/* Forward declaration of the font width metrics
|
|
|
|
|
(yes extern! this is the way to forward declare variables */
|
|
|
|
|
extern const double hv_widths[256];
|
|
|
|
|
extern const double hvb_widths[256];
|
|
|
|
|
extern const double hvo_widths[256];
|
|
|
|
|
extern const double hvbo_widths[256];
|
2007-08-20 13:28:34 +00:00
|
|
|
|
|
2012-09-20 13:54:35 +00:00
|
|
|
|
const double PSLIKE_PLOTTER::postscriptTextAscent = 0.718;
|
|
|
|
|
|
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
|
// Common routines for Postscript-like plotting engines
|
|
|
|
|
|
|
|
|
|
void PSLIKE_PLOTTER::SetDefaultLineWidth( int width )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
{
|
2012-05-03 18:37:56 +00:00
|
|
|
|
defaultPenWidth = width;
|
|
|
|
|
currentPenWidth = -1;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-08-20 13:28:34 +00:00
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
|
void PSLIKE_PLOTTER::SetColor( EDA_COLOR_T color )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
{
|
2012-05-03 18:37:56 +00:00
|
|
|
|
// Return at invalid color index
|
|
|
|
|
if( color < 0 )
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if( colorMode )
|
|
|
|
|
{
|
2013-04-04 21:35:01 +00:00
|
|
|
|
double r = g_ColorRefs[color].m_Red / 255.0;
|
|
|
|
|
double g = g_ColorRefs[color].m_Green / 255.0;
|
|
|
|
|
double b = g_ColorRefs[color].m_Blue / 255.0;
|
2012-05-03 18:37:56 +00:00
|
|
|
|
if( negativeMode )
|
|
|
|
|
emitSetRGBColor( 1 - r, 1 - g, 1 - b );
|
|
|
|
|
else
|
|
|
|
|
emitSetRGBColor( r, g, b );
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* B/W Mode - Use BLACK or WHITE for all items
|
|
|
|
|
* note the 2 colors are used in B&W mode, mainly by Pcbnew to draw
|
|
|
|
|
* holes in white on pads in black
|
|
|
|
|
*/
|
|
|
|
|
double k = 1; // White
|
|
|
|
|
if( color != WHITE )
|
|
|
|
|
k = 0;
|
|
|
|
|
if( negativeMode )
|
|
|
|
|
emitSetRGBColor( 1 - k, 1 - k, 1 - k );
|
|
|
|
|
else
|
|
|
|
|
emitSetRGBColor( k, k, k );
|
|
|
|
|
}
|
2007-05-28 18:09:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-08-20 13:28:34 +00:00
|
|
|
|
|
2013-05-05 07:17:48 +00:00
|
|
|
|
void PSLIKE_PLOTTER::FlashPadOval( const wxPoint& pos, const wxSize& aSize, double orient,
|
2012-05-03 18:37:56 +00:00
|
|
|
|
EDA_DRAW_MODE_T modetrace )
|
2007-05-28 18:09:49 +00:00
|
|
|
|
{
|
2012-05-03 18:37:56 +00:00
|
|
|
|
wxASSERT( outputFile );
|
|
|
|
|
int x0, y0, x1, y1, delta;
|
|
|
|
|
wxSize size( aSize );
|
2007-05-28 18:09:49 +00:00
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
|
// The pad is reduced to an oval by dy > dx
|
|
|
|
|
if( size.x > size.y )
|
|
|
|
|
{
|
|
|
|
|
EXCHG( size.x, size.y );
|
2013-05-02 18:06:58 +00:00
|
|
|
|
orient = AddAngles( orient, 900 );
|
2012-05-03 18:37:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
delta = size.y - size.x;
|
|
|
|
|
x0 = 0;
|
|
|
|
|
y0 = -delta / 2;
|
|
|
|
|
x1 = 0;
|
|
|
|
|
y1 = delta / 2;
|
|
|
|
|
RotatePoint( &x0, &y0, orient );
|
|
|
|
|
RotatePoint( &x1, &y1, orient );
|
|
|
|
|
|
|
|
|
|
if( modetrace == FILLED )
|
|
|
|
|
ThickSegment( wxPoint( pos.x + x0, pos.y + y0 ),
|
|
|
|
|
wxPoint( pos.x + x1, pos.y + y1 ), size.x, modetrace );
|
2008-03-22 05:55:06 +00:00
|
|
|
|
else
|
2012-05-03 18:37:56 +00:00
|
|
|
|
sketchOval( pos, size, orient, -1 );
|
|
|
|
|
}
|
2007-08-20 13:28:34 +00:00
|
|
|
|
|
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
|
void PSLIKE_PLOTTER::FlashPadCircle( const wxPoint& pos, int diametre,
|
|
|
|
|
EDA_DRAW_MODE_T modetrace )
|
|
|
|
|
{
|
|
|
|
|
int current_line_width;
|
|
|
|
|
wxASSERT( outputFile );
|
|
|
|
|
|
|
|
|
|
SetCurrentLineWidth( -1 );
|
|
|
|
|
current_line_width = GetCurrentLineWidth();
|
|
|
|
|
if( current_line_width > diametre )
|
|
|
|
|
current_line_width = diametre;
|
|
|
|
|
|
|
|
|
|
if( modetrace == FILLED )
|
|
|
|
|
Circle( pos, diametre - currentPenWidth, FILLED_SHAPE, current_line_width );
|
|
|
|
|
else
|
|
|
|
|
Circle( pos, diametre - currentPenWidth, NO_FILL, current_line_width );
|
|
|
|
|
|
|
|
|
|
SetCurrentLineWidth( -1 );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-08-20 13:28:34 +00:00
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
|
void PSLIKE_PLOTTER::FlashPadRect( const wxPoint& pos, const wxSize& aSize,
|
2013-05-05 07:17:48 +00:00
|
|
|
|
double orient, EDA_DRAW_MODE_T trace_mode )
|
2012-05-03 18:37:56 +00:00
|
|
|
|
{
|
|
|
|
|
static std::vector< wxPoint > cornerList;
|
|
|
|
|
wxSize size( aSize );
|
|
|
|
|
cornerList.clear();
|
|
|
|
|
|
|
|
|
|
SetCurrentLineWidth( -1 );
|
|
|
|
|
int w = currentPenWidth;
|
|
|
|
|
size.x -= w;
|
|
|
|
|
if( size.x < 1 )
|
|
|
|
|
size.x = 1;
|
|
|
|
|
size.y -= w;
|
|
|
|
|
if( size.y < 1 )
|
|
|
|
|
size.y = 1;
|
|
|
|
|
|
|
|
|
|
int dx = size.x / 2;
|
|
|
|
|
int dy = size.y / 2;
|
|
|
|
|
|
|
|
|
|
wxPoint corner;
|
|
|
|
|
corner.x = pos.x - dx;
|
|
|
|
|
corner.y = pos.y + dy;
|
|
|
|
|
cornerList.push_back( corner );
|
|
|
|
|
corner.x = pos.x - dx;
|
|
|
|
|
corner.y = pos.y - dy;
|
|
|
|
|
cornerList.push_back( corner );
|
|
|
|
|
corner.x = pos.x + dx;
|
|
|
|
|
corner.y = pos.y - dy;
|
|
|
|
|
cornerList.push_back( corner );
|
|
|
|
|
corner.x = pos.x + dx;
|
|
|
|
|
corner.y = pos.y + dy,
|
|
|
|
|
cornerList.push_back( corner );
|
|
|
|
|
|
|
|
|
|
for( unsigned ii = 0; ii < cornerList.size(); ii++ )
|
|
|
|
|
{
|
|
|
|
|
RotatePoint( &cornerList[ii], pos, orient );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cornerList.push_back( cornerList[0] );
|
|
|
|
|
|
|
|
|
|
PlotPoly( cornerList, ( trace_mode == FILLED ) ? FILLED_SHAPE : NO_FILL );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void PSLIKE_PLOTTER::FlashPadTrapez( const wxPoint& aPadPos, const wxPoint *aCorners,
|
2013-05-05 07:17:48 +00:00
|
|
|
|
double aPadOrient, EDA_DRAW_MODE_T aTrace_Mode )
|
2012-05-03 18:37:56 +00:00
|
|
|
|
{
|
|
|
|
|
static std::vector< wxPoint > cornerList;
|
|
|
|
|
cornerList.clear();
|
|
|
|
|
|
|
|
|
|
for( int ii = 0; ii < 4; ii++ )
|
|
|
|
|
cornerList.push_back( aCorners[ii] );
|
|
|
|
|
|
|
|
|
|
if( aTrace_Mode == FILLED )
|
|
|
|
|
{
|
|
|
|
|
SetCurrentLineWidth( 0 );
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
SetCurrentLineWidth( -1 );
|
|
|
|
|
int w = currentPenWidth;
|
|
|
|
|
// offset polygon by w
|
|
|
|
|
// coord[0] is assumed the lower left
|
|
|
|
|
// coord[1] is assumed the upper left
|
|
|
|
|
// coord[2] is assumed the upper right
|
|
|
|
|
// coord[3] is assumed the lower right
|
|
|
|
|
|
|
|
|
|
/* Trace the outline. */
|
|
|
|
|
cornerList[0].x += w;
|
|
|
|
|
cornerList[0].y -= w;
|
|
|
|
|
cornerList[1].x += w;
|
|
|
|
|
cornerList[1].y += w;
|
|
|
|
|
cornerList[2].x -= w;
|
|
|
|
|
cornerList[2].y += w;
|
|
|
|
|
cornerList[3].x -= w;
|
|
|
|
|
cornerList[3].y -= w;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for( int ii = 0; ii < 4; ii++ )
|
|
|
|
|
{
|
|
|
|
|
RotatePoint( &cornerList[ii], aPadOrient );
|
|
|
|
|
cornerList[ii] += aPadPos;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cornerList.push_back( cornerList[0] );
|
|
|
|
|
PlotPoly( cornerList, ( aTrace_Mode == FILLED ) ? FILLED_SHAPE : NO_FILL );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Write on a stream a string escaped for postscript/PDF
|
2007-08-20 13:28:34 +00:00
|
|
|
|
*/
|
2012-05-03 18:37:56 +00:00
|
|
|
|
void PSLIKE_PLOTTER::fputsPostscriptString(FILE *fout, const wxString& txt)
|
2007-05-06 16:03:28 +00:00
|
|
|
|
{
|
2012-05-03 18:37:56 +00:00
|
|
|
|
putc( '(', fout );
|
|
|
|
|
for( unsigned i = 0; i < txt.length(); i++ )
|
|
|
|
|
{
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
|
// Lazyness made me use stdio buffering yet another time...
|
|
|
|
|
wchar_t ch = txt[i];
|
|
|
|
|
if( ch < 256 )
|
|
|
|
|
{
|
|
|
|
|
switch (ch)
|
|
|
|
|
{
|
|
|
|
|
// The ~ shouldn't reach the outside
|
|
|
|
|
case '~':
|
|
|
|
|
break;
|
|
|
|
|
// These characters must be escaped
|
|
|
|
|
case '(':
|
|
|
|
|
case ')':
|
|
|
|
|
case '\\':
|
|
|
|
|
putc( '\\', fout );
|
|
|
|
|
|
|
|
|
|
// FALLTHRU
|
|
|
|
|
default:
|
|
|
|
|
putc( ch, fout );
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2012-05-03 18:37:56 +00:00
|
|
|
|
}
|
|
|
|
|
putc( ')', fout );
|
|
|
|
|
}
|
2009-08-21 19:13:55 +00:00
|
|
|
|
|
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
|
/**
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
|
* Sister function for the GraphicTextWidth in drawtxt.cpp
|
2012-05-03 18:37:56 +00:00
|
|
|
|
* Does the same processing (i.e. calculates a text string width) but
|
|
|
|
|
* using postscript metrics for the Helvetica font (optionally used for
|
|
|
|
|
* PS and PDF plotting
|
|
|
|
|
*/
|
|
|
|
|
int PSLIKE_PLOTTER::returnPostscriptTextWidth( const wxString& aText, int aXSize,
|
|
|
|
|
bool aItalic, bool aBold )
|
|
|
|
|
{
|
|
|
|
|
const double *width_table = aBold ? ( aItalic ? hvbo_widths : hvb_widths )
|
|
|
|
|
: ( aItalic ? hvo_widths : hv_widths );
|
|
|
|
|
double tally = 0;
|
|
|
|
|
|
|
|
|
|
for( unsigned i = 0; i < aText.length(); i++ )
|
2009-08-21 19:13:55 +00:00
|
|
|
|
{
|
2012-05-03 18:37:56 +00:00
|
|
|
|
wchar_t AsciiCode = aText[i];
|
|
|
|
|
// Skip the negation marks and untabled points
|
|
|
|
|
if( AsciiCode != '~' && AsciiCode < 256 )
|
2009-11-23 15:16:50 +00:00
|
|
|
|
{
|
2012-05-03 18:37:56 +00:00
|
|
|
|
tally += width_table[AsciiCode];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Widths are proportional to height, but height is enlarged by a
|
|
|
|
|
// scaling factor
|
|
|
|
|
return KiROUND( aXSize * tally / postscriptTextAscent );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Computes the x coordinates for the overlining in a string of text.
|
|
|
|
|
* Fills the passed vector with couples of (start, stop) values to be
|
|
|
|
|
* used in the text coordinate system (use computeTextParameters to
|
|
|
|
|
* obtain the parameters to estabilish such a system)
|
|
|
|
|
*/
|
|
|
|
|
void PSLIKE_PLOTTER::postscriptOverlinePositions( const wxString& aText, int aXSize,
|
|
|
|
|
bool aItalic, bool aBold,
|
|
|
|
|
std::vector<int> *pos_pairs )
|
|
|
|
|
{
|
|
|
|
|
/* XXX This function is *too* similar to returnPostscriptTextWidth.
|
|
|
|
|
Consider merging them... */
|
|
|
|
|
const double *width_table = aBold ? ( aItalic ? hvbo_widths : hvb_widths )
|
|
|
|
|
: ( aItalic ? hvo_widths : hv_widths );
|
|
|
|
|
double tally = 0;
|
|
|
|
|
|
|
|
|
|
for( unsigned i = 0; i < aText.length(); i++ )
|
|
|
|
|
{
|
|
|
|
|
wchar_t AsciiCode = aText[i];
|
|
|
|
|
// Skip the negation marks and untabled points
|
|
|
|
|
if( AsciiCode != '~' && AsciiCode < 256 )
|
|
|
|
|
{
|
|
|
|
|
tally += width_table[AsciiCode];
|
2009-11-23 15:16:50 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2012-05-03 18:37:56 +00:00
|
|
|
|
if( AsciiCode == '~' )
|
|
|
|
|
pos_pairs->push_back( KiROUND( aXSize * tally / postscriptTextAscent ) );
|
2009-11-23 15:16:50 +00:00
|
|
|
|
}
|
2009-08-21 19:13:55 +00:00
|
|
|
|
}
|
2012-05-03 18:37:56 +00:00
|
|
|
|
|
|
|
|
|
// Special rule: we have to complete the last bar if the ~ aren't matched
|
|
|
|
|
if( pos_pairs->size() % 2 == 1 )
|
|
|
|
|
pos_pairs->push_back( KiROUND( aXSize * tally / postscriptTextAscent ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void PS_PLOTTER::SetViewport( const wxPoint& aOffset, double aIusPerDecimil,
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
|
double aScale, bool aMirror )
|
2012-05-03 18:37:56 +00:00
|
|
|
|
{
|
|
|
|
|
wxASSERT( !outputFile );
|
2013-12-06 18:31:15 +00:00
|
|
|
|
m_plotMirror = aMirror;
|
2012-05-03 18:37:56 +00:00
|
|
|
|
plotOffset = aOffset;
|
|
|
|
|
plotScale = aScale;
|
2012-08-29 20:13:47 +00:00
|
|
|
|
m_IUsPerDecimil = aIusPerDecimil;
|
2012-05-03 18:37:56 +00:00
|
|
|
|
iuPerDeviceUnit = 1.0 / aIusPerDecimil;
|
|
|
|
|
/* Compute the paper size in IUs */
|
|
|
|
|
paperSize = pageInfo.GetSizeMils();
|
|
|
|
|
paperSize.x *= 10.0 * aIusPerDecimil;
|
|
|
|
|
paperSize.y *= 10.0 * aIusPerDecimil;
|
|
|
|
|
SetDefaultLineWidth( 100 * aIusPerDecimil ); // arbitrary default
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** This is the core for postscript/PDF text alignment
|
|
|
|
|
* It computes the transformation matrix to generate a user space
|
|
|
|
|
* system aligned with the text. Even the PS uses the concat
|
|
|
|
|
* operator to simplify PDF generation (concat is everything PDF
|
|
|
|
|
* has to modify the CTM. Lots of parameters, both in and out.
|
|
|
|
|
*/
|
|
|
|
|
void PSLIKE_PLOTTER::computeTextParameters( const wxPoint& aPos,
|
|
|
|
|
const wxString& aText,
|
|
|
|
|
int aOrient,
|
|
|
|
|
const wxSize& aSize,
|
|
|
|
|
enum EDA_TEXT_HJUSTIFY_T aH_justify,
|
|
|
|
|
enum EDA_TEXT_VJUSTIFY_T aV_justify,
|
|
|
|
|
int aWidth,
|
|
|
|
|
bool aItalic,
|
|
|
|
|
bool aBold,
|
|
|
|
|
double *wideningFactor,
|
|
|
|
|
double *ctm_a,
|
|
|
|
|
double *ctm_b,
|
|
|
|
|
double *ctm_c,
|
|
|
|
|
double *ctm_d,
|
|
|
|
|
double *ctm_e,
|
|
|
|
|
double *ctm_f,
|
|
|
|
|
double *heightFactor )
|
|
|
|
|
{
|
|
|
|
|
// Compute the starting position (compensated for alignment)
|
|
|
|
|
wxPoint start_pos = aPos;
|
|
|
|
|
|
|
|
|
|
// This is an approximation of the text bounds (in IUs)
|
|
|
|
|
int tw = returnPostscriptTextWidth( aText, aSize.x, aItalic, aWidth );
|
|
|
|
|
int th = aSize.y;
|
|
|
|
|
int dx, dy;
|
|
|
|
|
|
|
|
|
|
switch( aH_justify )
|
2009-06-28 16:50:42 +00:00
|
|
|
|
{
|
2012-05-03 18:37:56 +00:00
|
|
|
|
case GR_TEXT_HJUSTIFY_CENTER:
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
|
dx = -tw / 2;
|
|
|
|
|
break;
|
2012-05-03 18:37:56 +00:00
|
|
|
|
|
|
|
|
|
case GR_TEXT_HJUSTIFY_RIGHT:
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
|
dx = -tw;
|
|
|
|
|
break;
|
2012-05-03 18:37:56 +00:00
|
|
|
|
|
|
|
|
|
case GR_TEXT_HJUSTIFY_LEFT:
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
|
dx = 0;
|
|
|
|
|
break;
|
2009-06-28 16:50:42 +00:00
|
|
|
|
}
|
2012-05-03 18:37:56 +00:00
|
|
|
|
|
|
|
|
|
switch( aV_justify )
|
|
|
|
|
{
|
|
|
|
|
case GR_TEXT_VJUSTIFY_CENTER:
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
|
dy = th / 2;
|
|
|
|
|
break;
|
2012-05-03 18:37:56 +00:00
|
|
|
|
|
|
|
|
|
case GR_TEXT_VJUSTIFY_TOP:
|
|
|
|
|
dy = th;
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
|
break;
|
2012-05-03 18:37:56 +00:00
|
|
|
|
|
|
|
|
|
case GR_TEXT_VJUSTIFY_BOTTOM:
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
|
dy = 0;
|
|
|
|
|
break;
|
2012-05-03 18:37:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
RotatePoint( &dx, &dy, aOrient );
|
|
|
|
|
RotatePoint( &tw, &th, aOrient );
|
|
|
|
|
start_pos.x += dx;
|
|
|
|
|
start_pos.y += dy;
|
|
|
|
|
DPOINT pos_dev = userToDeviceCoordinates( start_pos );
|
|
|
|
|
DPOINT sz_dev = userToDeviceSize( aSize );
|
|
|
|
|
|
|
|
|
|
// Now returns the final values... the widening factor
|
|
|
|
|
*wideningFactor = sz_dev.y / sz_dev.x;
|
|
|
|
|
|
|
|
|
|
// The CTM transformation matrix
|
2013-05-02 18:06:58 +00:00
|
|
|
|
double alpha = DECIDEG2RAD( aOrient );
|
|
|
|
|
double sinalpha = sin( alpha );
|
|
|
|
|
double cosalpha = cos( alpha );
|
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
|
*ctm_a = cosalpha;
|
|
|
|
|
*ctm_b = sinalpha;
|
|
|
|
|
*ctm_c = -sinalpha;
|
|
|
|
|
*ctm_d = cosalpha;
|
|
|
|
|
*ctm_e = pos_dev.x;
|
|
|
|
|
*ctm_f = pos_dev.y;
|
|
|
|
|
|
|
|
|
|
// This is because the letters are less than 1 unit high
|
|
|
|
|
*heightFactor = sz_dev.y / postscriptTextAscent;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2009-11-23 15:16:50 +00:00
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
|
/* Set the current line width (in IUs) for the next plot
|
|
|
|
|
*/
|
|
|
|
|
void PS_PLOTTER::SetCurrentLineWidth( int width )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
{
|
2012-05-03 18:37:56 +00:00
|
|
|
|
wxASSERT( outputFile );
|
|
|
|
|
int pen_width;
|
|
|
|
|
|
|
|
|
|
if( width >= 0 )
|
|
|
|
|
pen_width = width;
|
2009-06-28 16:50:42 +00:00
|
|
|
|
else
|
2012-05-03 18:37:56 +00:00
|
|
|
|
pen_width = defaultPenWidth;
|
|
|
|
|
|
|
|
|
|
if( pen_width != currentPenWidth )
|
|
|
|
|
fprintf( outputFile, "%g setlinewidth\n",
|
|
|
|
|
userToDeviceSize( pen_width ) );
|
|
|
|
|
|
|
|
|
|
currentPenWidth = pen_width;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
|
void PS_PLOTTER::emitSetRGBColor( double r, double g, double b )
|
2008-06-30 13:47:55 +00:00
|
|
|
|
{
|
2012-05-03 18:37:56 +00:00
|
|
|
|
wxASSERT( outputFile );
|
2008-06-30 13:47:55 +00:00
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
|
// XXX why %.3g ? shouldn't %g suffice? who cares...
|
|
|
|
|
fprintf( outputFile, "%.3g %.3g %.3g setrgbcolor\n", r, g, b );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Postscript supports dashed lines
|
|
|
|
|
*/
|
|
|
|
|
void PS_PLOTTER::SetDash( bool dashed )
|
|
|
|
|
{
|
|
|
|
|
wxASSERT( outputFile );
|
|
|
|
|
if( dashed )
|
|
|
|
|
fputs( "dashedline\n", outputFile );
|
|
|
|
|
else
|
|
|
|
|
fputs( "solidline\n", outputFile );
|
2008-06-30 13:47:55 +00:00
|
|
|
|
}
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2009-11-23 15:16:50 +00:00
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
|
void PS_PLOTTER::Rect( const wxPoint& p1, const wxPoint& p2, FILL_T fill, int width )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
{
|
2012-05-03 18:37:56 +00:00
|
|
|
|
DPOINT p1_dev = userToDeviceCoordinates( p1 );
|
|
|
|
|
DPOINT p2_dev = userToDeviceCoordinates( p2 );
|
|
|
|
|
|
|
|
|
|
SetCurrentLineWidth( width );
|
|
|
|
|
fprintf( outputFile, "%g %g %g %g rect%d\n", p1_dev.x, p1_dev.y,
|
|
|
|
|
p2_dev.x - p1_dev.x, p2_dev.y - p1_dev.y, fill );
|
|
|
|
|
}
|
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
|
void PS_PLOTTER::Circle( const wxPoint& pos, int diametre, FILL_T fill, int width )
|
|
|
|
|
{
|
|
|
|
|
wxASSERT( outputFile );
|
|
|
|
|
DPOINT pos_dev = userToDeviceCoordinates( pos );
|
|
|
|
|
double radius = userToDeviceSize( diametre / 2.0 );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
|
SetCurrentLineWidth( width );
|
|
|
|
|
fprintf( outputFile, "%g %g %g cir%d\n", pos_dev.x, pos_dev.y, radius, fill );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-12-06 18:31:15 +00:00
|
|
|
|
void PS_PLOTTER::Arc( const wxPoint& centre, double StAngle, double EndAngle,
|
2013-05-05 07:17:48 +00:00
|
|
|
|
int radius, FILL_T fill, int width )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
{
|
2012-05-03 18:37:56 +00:00
|
|
|
|
wxASSERT( outputFile );
|
2009-11-23 15:16:50 +00:00
|
|
|
|
if( radius <= 0 )
|
2008-03-22 05:55:06 +00:00
|
|
|
|
return;
|
|
|
|
|
|
2012-02-24 17:17:03 +00:00
|
|
|
|
if( StAngle > EndAngle )
|
|
|
|
|
EXCHG( StAngle, EndAngle );
|
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
|
SetCurrentLineWidth( width );
|
2008-03-22 05:55:06 +00:00
|
|
|
|
|
2009-11-23 15:16:50 +00:00
|
|
|
|
// Calculate start point.
|
2012-05-03 18:37:56 +00:00
|
|
|
|
DPOINT centre_dev = userToDeviceCoordinates( centre );
|
|
|
|
|
double radius_dev = userToDeviceSize( radius );
|
2013-12-06 18:31:15 +00:00
|
|
|
|
|
|
|
|
|
if( m_plotMirror )
|
|
|
|
|
{
|
|
|
|
|
if( m_mirrorIsHorizontal )
|
|
|
|
|
{
|
|
|
|
|
StAngle = 1800.0 -StAngle;
|
|
|
|
|
EndAngle = 1800.0 -EndAngle;
|
|
|
|
|
EXCHG( StAngle, EndAngle );
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
StAngle = -StAngle;
|
|
|
|
|
EndAngle = -EndAngle;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fprintf( outputFile, "%g %g %g %g %g arc%d\n", centre_dev.x, centre_dev.y,
|
|
|
|
|
radius_dev, StAngle / 10.0, EndAngle / 10.0, fill );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
|
void PS_PLOTTER::PlotPoly( const std::vector< wxPoint >& aCornerList,
|
|
|
|
|
FILL_T aFill, int aWidth )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
{
|
2011-04-20 08:13:21 +00:00
|
|
|
|
if( aCornerList.size() <= 1 )
|
2008-03-22 05:55:06 +00:00
|
|
|
|
return;
|
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
|
SetCurrentLineWidth( aWidth );
|
2008-03-22 05:55:06 +00:00
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
|
DPOINT pos = userToDeviceCoordinates( aCornerList[0] );
|
|
|
|
|
fprintf( outputFile, "newpath\n%g %g moveto\n", pos.x, pos.y );
|
2008-03-22 05:55:06 +00:00
|
|
|
|
|
2011-04-20 08:13:21 +00:00
|
|
|
|
for( unsigned ii = 1; ii < aCornerList.size(); ii++ )
|
2008-03-22 05:55:06 +00:00
|
|
|
|
{
|
2012-05-03 18:37:56 +00:00
|
|
|
|
pos = userToDeviceCoordinates( aCornerList[ii] );
|
|
|
|
|
fprintf( outputFile, "%g %g lineto\n", pos.x, pos.y );
|
2008-03-22 05:55:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
|
// Close/(fill) the path
|
|
|
|
|
fprintf( outputFile, "poly%d\n", aFill );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Postscript-likes at the moment are the only plot engines supporting bitmaps...
|
2011-08-31 14:59:20 +00:00
|
|
|
|
*/
|
2012-05-03 18:37:56 +00:00
|
|
|
|
void PS_PLOTTER::PlotImage( const wxImage & aImage, const wxPoint& aPos,
|
|
|
|
|
double aScaleFactor )
|
2011-08-31 14:59:20 +00:00
|
|
|
|
{
|
|
|
|
|
wxSize pix_size; // size of the bitmap in pixels
|
|
|
|
|
pix_size.x = aImage.GetWidth();
|
|
|
|
|
pix_size.y = aImage.GetHeight();
|
2012-05-03 18:37:56 +00:00
|
|
|
|
DPOINT drawsize( aScaleFactor * pix_size.x,
|
|
|
|
|
aScaleFactor * pix_size.y ); // requested size of image
|
2011-08-31 14:59:20 +00:00
|
|
|
|
|
|
|
|
|
// calculate the bottom left corner position of bitmap
|
|
|
|
|
wxPoint start = aPos;
|
|
|
|
|
start.x -= drawsize.x / 2; // left
|
|
|
|
|
start.y += drawsize.y / 2; // bottom (Y axis reversed)
|
|
|
|
|
|
|
|
|
|
// calculate the top right corner position of bitmap
|
|
|
|
|
wxPoint end;
|
|
|
|
|
end.x = start.x + drawsize.x;
|
|
|
|
|
end.y = start.y - drawsize.y;
|
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
|
fprintf( outputFile, "/origstate save def\n" );
|
|
|
|
|
fprintf( outputFile, "/pix %d string def\n", pix_size.x );
|
2011-08-31 14:59:20 +00:00
|
|
|
|
|
|
|
|
|
// Locate lower-left corner of image
|
2012-05-03 18:37:56 +00:00
|
|
|
|
DPOINT start_dev = userToDeviceCoordinates( start );
|
|
|
|
|
fprintf( outputFile, "%g %g translate\n", start_dev.x, start_dev.y );
|
2011-08-31 14:59:20 +00:00
|
|
|
|
// Map image size to device
|
2012-05-03 18:37:56 +00:00
|
|
|
|
DPOINT end_dev = userToDeviceCoordinates( end );
|
|
|
|
|
fprintf( outputFile, "%g %g scale\n",
|
2012-09-22 11:19:37 +00:00
|
|
|
|
std::abs(end_dev.x - start_dev.x), std::abs(end_dev.y - start_dev.y));
|
2011-08-31 14:59:20 +00:00
|
|
|
|
|
|
|
|
|
// Dimensions of source image (in pixels
|
2012-05-03 18:37:56 +00:00
|
|
|
|
fprintf( outputFile, "%d %d 8", pix_size.x, pix_size.y );
|
2011-08-31 14:59:20 +00:00
|
|
|
|
// Map unit square to source
|
2012-05-03 18:37:56 +00:00
|
|
|
|
fprintf( outputFile, " [%d 0 0 %d 0 %d]\n", pix_size.x, -pix_size.y , pix_size.y);
|
2011-08-31 14:59:20 +00:00
|
|
|
|
// include image data in ps file
|
2012-05-03 18:37:56 +00:00
|
|
|
|
fprintf( outputFile, "{currentfile pix readhexstring pop}\n" );
|
|
|
|
|
if( colorMode )
|
|
|
|
|
fputs( "false 3 colorimage\n", outputFile );
|
|
|
|
|
else
|
|
|
|
|
fputs( "image\n", outputFile );
|
2011-08-31 14:59:20 +00:00
|
|
|
|
// Single data source, 3 colors, Output RGB data (hexadecimal)
|
2012-05-03 18:37:56 +00:00
|
|
|
|
// (or the same downscaled to gray)
|
2011-08-31 14:59:20 +00:00
|
|
|
|
int jj = 0;
|
|
|
|
|
for( int yy = 0; yy < pix_size.y; yy ++ )
|
|
|
|
|
{
|
|
|
|
|
for( int xx = 0; xx < pix_size.x; xx++, jj++ )
|
|
|
|
|
{
|
|
|
|
|
if( jj >= 16 )
|
|
|
|
|
{
|
|
|
|
|
jj = 0;
|
2012-05-03 18:37:56 +00:00
|
|
|
|
fprintf( outputFile, "\n");
|
2011-08-31 14:59:20 +00:00
|
|
|
|
}
|
|
|
|
|
int red, green, blue;
|
|
|
|
|
red = aImage.GetRed( xx, yy) & 0xFF;
|
|
|
|
|
green = aImage.GetGreen( xx, yy) & 0xFF;
|
|
|
|
|
blue = aImage.GetBlue( xx, yy) & 0xFF;
|
2012-05-03 18:37:56 +00:00
|
|
|
|
if( colorMode )
|
|
|
|
|
fprintf( outputFile, "%2.2X%2.2X%2.2X", red, green, blue );
|
|
|
|
|
else
|
|
|
|
|
fprintf( outputFile, "%2.2X", (red + green + blue) / 3 );
|
2011-08-31 14:59:20 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2012-05-03 18:37:56 +00:00
|
|
|
|
fprintf( outputFile, "\n");
|
|
|
|
|
fprintf( outputFile, "origstate restore\n" );
|
2011-08-31 14:59:20 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
|
void PS_PLOTTER::PenTo( const wxPoint& pos, char plume )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
{
|
2012-05-03 18:37:56 +00:00
|
|
|
|
wxASSERT( outputFile );
|
2009-11-23 15:16:50 +00:00
|
|
|
|
if( plume == 'Z' )
|
|
|
|
|
{
|
2012-05-03 18:37:56 +00:00
|
|
|
|
if( penState != 'Z' )
|
2009-11-23 15:16:50 +00:00
|
|
|
|
{
|
2012-05-03 18:37:56 +00:00
|
|
|
|
fputs( "stroke\n", outputFile );
|
|
|
|
|
penState = 'Z';
|
|
|
|
|
penLastpos.x = -1;
|
|
|
|
|
penLastpos.y = -1;
|
2009-11-23 15:16:50 +00:00
|
|
|
|
}
|
2008-03-22 05:55:06 +00:00
|
|
|
|
return;
|
2009-05-28 17:39:40 +00:00
|
|
|
|
}
|
2008-03-22 05:55:06 +00:00
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
|
if( penState == 'Z' )
|
2009-11-23 15:16:50 +00:00
|
|
|
|
{
|
2012-05-03 18:37:56 +00:00
|
|
|
|
fputs( "newpath\n", outputFile );
|
2008-03-22 05:55:06 +00:00
|
|
|
|
}
|
2012-05-03 18:37:56 +00:00
|
|
|
|
if( penState != plume || pos != penLastpos )
|
|
|
|
|
{
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
|
DPOINT pos_dev = userToDeviceCoordinates( pos );
|
2012-05-03 18:37:56 +00:00
|
|
|
|
fprintf( outputFile, "%g %g %sto\n",
|
|
|
|
|
pos_dev.x, pos_dev.y,
|
2009-11-23 15:16:50 +00:00
|
|
|
|
( plume=='D' ) ? "line" : "move" );
|
2012-05-03 18:37:56 +00:00
|
|
|
|
}
|
|
|
|
|
penState = plume;
|
|
|
|
|
penLastpos = pos;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
|
/**
|
|
|
|
|
* The code within this function (and the CloseFilePS function)
|
2007-08-20 13:28:34 +00:00
|
|
|
|
* creates postscript files whose contents comply with Adobe's
|
|
|
|
|
* Document Structuring Convention, as documented by assorted
|
|
|
|
|
* details described within the following URLs:
|
2008-03-22 05:55:06 +00:00
|
|
|
|
*
|
2007-08-20 13:28:34 +00:00
|
|
|
|
* http://en.wikipedia.org/wiki/Document_Structuring_Conventions
|
|
|
|
|
* http://partners.adobe.com/public/developer/en/ps/5001.DSC_Spec.pdf
|
2008-03-22 05:55:06 +00:00
|
|
|
|
*
|
|
|
|
|
*
|
2007-08-20 13:28:34 +00:00
|
|
|
|
* BBox is the boundary box (position and size of the "client rectangle"
|
|
|
|
|
* for drawings (page - margins) in mils (0.001 inch)
|
|
|
|
|
*/
|
2012-10-13 18:54:33 +00:00
|
|
|
|
bool PS_PLOTTER::StartPlot()
|
2007-05-06 16:03:28 +00:00
|
|
|
|
{
|
2012-10-13 18:54:33 +00:00
|
|
|
|
wxASSERT( outputFile );
|
2009-11-23 15:16:50 +00:00
|
|
|
|
wxString msg;
|
2008-03-22 05:55:06 +00:00
|
|
|
|
|
2009-11-23 15:16:50 +00:00
|
|
|
|
static const char* PSMacro[] =
|
|
|
|
|
{
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
|
"%%BeginProlog\n"
|
|
|
|
|
"/line { newpath moveto lineto stroke } bind def\n",
|
|
|
|
|
"/cir0 { newpath 0 360 arc stroke } bind def\n",
|
|
|
|
|
"/cir1 { newpath 0 360 arc gsave fill grestore stroke } bind def\n",
|
|
|
|
|
"/cir2 { newpath 0 360 arc gsave fill grestore stroke } bind def\n",
|
|
|
|
|
"/arc0 { newpath arc stroke } bind def\n",
|
|
|
|
|
"/arc1 { newpath 4 index 4 index moveto arc closepath gsave fill\n",
|
|
|
|
|
" grestore stroke } bind def\n",
|
|
|
|
|
"/arc2 { newpath 4 index 4 index moveto arc closepath gsave fill\n",
|
|
|
|
|
" grestore stroke } bind def\n",
|
|
|
|
|
"/poly0 { stroke } bind def\n",
|
|
|
|
|
"/poly1 { closepath gsave fill grestore stroke } bind def\n",
|
|
|
|
|
"/poly2 { closepath gsave fill grestore stroke } bind def\n",
|
|
|
|
|
"/rect0 { rectstroke } bind def\n",
|
|
|
|
|
"/rect1 { rectfill } bind def\n",
|
|
|
|
|
"/rect2 { rectfill } bind def\n",
|
|
|
|
|
"/linemode0 { 0 setlinecap 0 setlinejoin 0 setlinewidth } bind def\n",
|
|
|
|
|
"/linemode1 { 1 setlinecap 1 setlinejoin } bind def\n",
|
|
|
|
|
"/dashedline { [200] 100 setdash } bind def\n",
|
|
|
|
|
"/solidline { [] 0 setdash } bind def\n",
|
|
|
|
|
|
|
|
|
|
// This is for 'hidden' text (search anchors for PDF)
|
2012-05-03 18:37:56 +00:00
|
|
|
|
"/phantomshow { moveto\n",
|
|
|
|
|
" /KicadFont findfont 0.000001 scalefont setfont\n",
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
|
" show } bind def\n",
|
2012-05-03 18:37:56 +00:00
|
|
|
|
|
|
|
|
|
// This is for regular postscript text
|
|
|
|
|
"/textshow { gsave\n",
|
|
|
|
|
" findfont exch scalefont setfont concat 1 scale 0 0 moveto show\n",
|
|
|
|
|
" } bind def\n",
|
|
|
|
|
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
|
// Utility for getting Latin1 encoded fonts
|
|
|
|
|
"/reencodefont {\n",
|
2012-05-03 18:37:56 +00:00
|
|
|
|
" findfont dup length dict begin\n",
|
|
|
|
|
" { 1 index /FID ne\n",
|
|
|
|
|
" { def }\n",
|
|
|
|
|
" { pop pop } ifelse\n",
|
|
|
|
|
" } forall\n",
|
|
|
|
|
" /Encoding ISOLatin1Encoding def\n",
|
|
|
|
|
" currentdict\n",
|
|
|
|
|
" end } bind def\n"
|
|
|
|
|
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
|
// Remap AdobeStandard fonts to Latin1
|
|
|
|
|
"/KicadFont /Helvetica reencodefont definefont pop\n",
|
|
|
|
|
"/KicadFont-Bold /Helvetica-Bold reencodefont definefont pop\n",
|
|
|
|
|
"/KicadFont-Oblique /Helvetica-Oblique reencodefont definefont pop\n",
|
|
|
|
|
"/KicadFont-BoldOblique /Helvetica-BoldOblique reencodefont definefont pop\n",
|
|
|
|
|
"%%EndProlog\n",
|
|
|
|
|
NULL
|
2008-03-22 05:55:06 +00:00
|
|
|
|
};
|
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
|
time_t time1970 = time( NULL );
|
2008-03-22 05:55:06 +00:00
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
|
fputs( "%!PS-Adobe-3.0\n", outputFile ); // Print header
|
2008-03-22 05:55:06 +00:00
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
|
fprintf( outputFile, "%%%%Creator: %s\n", TO_UTF8( creator ) );
|
2008-03-22 05:55:06 +00:00
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
|
/* A "newline" character ("\n") is not included in the following string,
|
|
|
|
|
because it is provided by the ctime() function. */
|
|
|
|
|
fprintf( outputFile, "%%%%CreationDate: %s", ctime( &time1970 ) );
|
|
|
|
|
fprintf( outputFile, "%%%%Title: %s\n", TO_UTF8( filename ) );
|
|
|
|
|
fprintf( outputFile, "%%%%Pages: 1\n" );
|
|
|
|
|
fprintf( outputFile, "%%%%PageOrder: Ascend\n" );
|
2008-03-22 05:55:06 +00:00
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
|
// Print boundary box in 1/72 pixels per inch, box is in mils
|
|
|
|
|
const double BIGPTsPERMIL = 0.072;
|
2008-03-22 05:55:06 +00:00
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
|
/* The coordinates of the lower left corner of the boundary
|
|
|
|
|
box need to be "rounded down", but the coordinates of its
|
|
|
|
|
upper right corner need to be "rounded up" instead. */
|
|
|
|
|
wxSize psPaperSize = pageInfo.GetSizeMils();
|
2012-04-08 23:37:26 +00:00
|
|
|
|
|
|
|
|
|
if( !pageInfo.IsPortrait() )
|
2012-05-03 18:37:56 +00:00
|
|
|
|
psPaperSize.Set( pageInfo.GetHeightMils(), pageInfo.GetWidthMils() );
|
2012-04-08 23:37:26 +00:00
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
|
fprintf( outputFile, "%%%%BoundingBox: 0 0 %d %d\n",
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
|
(int) ceil( psPaperSize.x * BIGPTsPERMIL ),
|
|
|
|
|
(int) ceil( psPaperSize.y * BIGPTsPERMIL ) );
|
2008-03-22 05:55:06 +00:00
|
|
|
|
|
|
|
|
|
// Specify the size of the sheet and the name associated with that size.
|
|
|
|
|
// (If the "User size" option has been selected for the sheet size,
|
|
|
|
|
// identify the sheet size as "Custom" (rather than as "User"), but
|
|
|
|
|
// otherwise use the name assigned by KiCad for each sheet size.)
|
|
|
|
|
//
|
|
|
|
|
// (The Document Structuring Convention also supports sheet weight,
|
2009-11-23 15:16:50 +00:00
|
|
|
|
// sheet color, and sheet type properties being specified within a
|
2008-03-22 05:55:06 +00:00
|
|
|
|
// %%DocumentMedia comment, but they are not being specified here;
|
|
|
|
|
// a zero and two null strings are subsequently provided instead.)
|
|
|
|
|
//
|
|
|
|
|
// (NOTE: m_Size.y is *supposed* to be listed before m_Size.x;
|
|
|
|
|
// the order in which they are specified is not wrong!)
|
2011-12-22 21:57:50 +00:00
|
|
|
|
// Also note pageSize is given in mils, not in internal units and must be
|
|
|
|
|
// converted to internal units.
|
|
|
|
|
|
2012-01-16 05:17:23 +00:00
|
|
|
|
if( pageInfo.IsCustom() )
|
2012-05-03 18:37:56 +00:00
|
|
|
|
fprintf( outputFile, "%%%%DocumentMedia: Custom %d %d 0 () ()\n",
|
|
|
|
|
KiROUND( psPaperSize.x * BIGPTsPERMIL ),
|
|
|
|
|
KiROUND( psPaperSize.y * BIGPTsPERMIL ) );
|
2008-03-22 05:55:06 +00:00
|
|
|
|
|
2012-01-16 05:17:23 +00:00
|
|
|
|
else // a standard paper size
|
2012-05-03 18:37:56 +00:00
|
|
|
|
fprintf( outputFile, "%%%%DocumentMedia: %s %d %d 0 () ()\n",
|
2011-12-22 21:57:50 +00:00
|
|
|
|
TO_UTF8( pageInfo.GetType() ),
|
2012-05-03 18:37:56 +00:00
|
|
|
|
KiROUND( psPaperSize.x * BIGPTsPERMIL ),
|
|
|
|
|
KiROUND( psPaperSize.y * BIGPTsPERMIL ) );
|
2008-03-22 05:55:06 +00:00
|
|
|
|
|
2012-04-08 23:37:26 +00:00
|
|
|
|
if( pageInfo.IsPortrait() )
|
2012-05-03 18:37:56 +00:00
|
|
|
|
fprintf( outputFile, "%%%%Orientation: Portrait\n" );
|
2012-04-08 23:37:26 +00:00
|
|
|
|
else
|
2012-05-03 18:37:56 +00:00
|
|
|
|
fprintf( outputFile, "%%%%Orientation: Landscape\n" );
|
2009-06-28 16:50:42 +00:00
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
|
fprintf( outputFile, "%%%%EndComments\n" );
|
2008-03-22 05:55:06 +00:00
|
|
|
|
|
|
|
|
|
// Now specify various other details.
|
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
|
for( int ii = 0; PSMacro[ii] != NULL; ii++ )
|
|
|
|
|
{
|
|
|
|
|
fputs( PSMacro[ii], outputFile );
|
|
|
|
|
}
|
|
|
|
|
|
2008-03-22 05:55:06 +00:00
|
|
|
|
// The following string has been specified here (rather than within
|
|
|
|
|
// PSMacro[]) to highlight that it has been provided to ensure that the
|
|
|
|
|
// contents of the postscript file comply with the details specified
|
|
|
|
|
// within the Document Structuring Convention.
|
2012-05-03 18:37:56 +00:00
|
|
|
|
fputs( "%%Page: 1 1\n"
|
|
|
|
|
"%%BeginPageSetup\n"
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
|
"gsave\n"
|
|
|
|
|
"0.0072 0.0072 scale\n" // Configure postscript for decimils coordinates
|
|
|
|
|
"linemode1\n", outputFile );
|
2008-03-22 05:55:06 +00:00
|
|
|
|
|
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
|
// Rototranslate the coordinate to achieve the landscape layout
|
2012-04-08 23:37:26 +00:00
|
|
|
|
if( !pageInfo.IsPortrait() )
|
2012-05-03 18:37:56 +00:00
|
|
|
|
fprintf( outputFile, "%d 0 translate 90 rotate\n", 10 * psPaperSize.x );
|
2008-03-22 05:55:06 +00:00
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
|
// Apply the user fine scale adjustments
|
|
|
|
|
if( plotScaleAdjX != 1.0 || plotScaleAdjY != 1.0 )
|
|
|
|
|
fprintf( outputFile, "%g %g scale\n",
|
|
|
|
|
plotScaleAdjX, plotScaleAdjY );
|
2008-03-22 05:55:06 +00:00
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
|
// Set default line width
|
|
|
|
|
fprintf( outputFile, "%g setlinewidth\n",
|
|
|
|
|
userToDeviceSize( defaultPenWidth ) );
|
|
|
|
|
fputs( "%%EndPageSetup\n", outputFile );
|
2010-03-31 16:59:32 +00:00
|
|
|
|
|
|
|
|
|
return true;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2009-11-23 15:16:50 +00:00
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
|
bool PS_PLOTTER::EndPlot()
|
2007-05-06 16:03:28 +00:00
|
|
|
|
{
|
2012-05-03 18:37:56 +00:00
|
|
|
|
wxASSERT( outputFile );
|
|
|
|
|
fputs( "showpage\n"
|
|
|
|
|
"grestore\n"
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
|
"%%EOF\n", outputFile );
|
2012-05-03 18:37:56 +00:00
|
|
|
|
fclose( outputFile );
|
|
|
|
|
outputFile = NULL;
|
2010-03-31 16:59:32 +00:00
|
|
|
|
|
|
|
|
|
return true;
|
2009-06-28 16:50:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-04-28 16:13:18 +00:00
|
|
|
|
void PS_PLOTTER::Text( const wxPoint& aPos,
|
|
|
|
|
enum EDA_COLOR_T aColor,
|
|
|
|
|
const wxString& aText,
|
|
|
|
|
double aOrient,
|
|
|
|
|
const wxSize& aSize,
|
|
|
|
|
enum EDA_TEXT_HJUSTIFY_T aH_justify,
|
|
|
|
|
enum EDA_TEXT_VJUSTIFY_T aV_justify,
|
|
|
|
|
int aWidth,
|
|
|
|
|
bool aItalic,
|
|
|
|
|
bool aBold,
|
|
|
|
|
bool aMultilineAllowed )
|
2009-06-28 16:50:42 +00:00
|
|
|
|
{
|
2012-05-03 18:37:56 +00:00
|
|
|
|
SetCurrentLineWidth( aWidth );
|
|
|
|
|
SetColor( aColor );
|
2011-04-20 08:13:21 +00:00
|
|
|
|
|
2014-04-28 16:13:18 +00:00
|
|
|
|
// Fix me: see how to use PS text mode for multiline texts
|
|
|
|
|
if( aMultilineAllowed && !aText.Contains( wxT( "\n" ) ) )
|
|
|
|
|
aMultilineAllowed = false; // the text has only one line.
|
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
|
// Draw the native postscript text (if requested)
|
2014-04-28 16:13:18 +00:00
|
|
|
|
if( m_textMode == PLOTTEXTMODE_NATIVE && !aMultilineAllowed )
|
2009-06-28 16:50:42 +00:00
|
|
|
|
{
|
2012-05-03 18:37:56 +00:00
|
|
|
|
const char *fontname = aItalic ? (aBold ? "/KicadFont-BoldOblique"
|
|
|
|
|
: "/KicadFont-Oblique")
|
2014-04-28 16:13:18 +00:00
|
|
|
|
: (aBold ? "/KicadFont-Bold"
|
|
|
|
|
: "/KicadFont");
|
2012-05-03 18:37:56 +00:00
|
|
|
|
|
|
|
|
|
// Compute the copious tranformation parameters
|
|
|
|
|
double ctm_a, ctm_b, ctm_c, ctm_d, ctm_e, ctm_f;
|
|
|
|
|
double wideningFactor, heightFactor;
|
|
|
|
|
computeTextParameters( aPos, aText, aOrient, aSize, aH_justify,
|
|
|
|
|
aV_justify, aWidth, aItalic, aBold,
|
|
|
|
|
&wideningFactor, &ctm_a, &ctm_b, &ctm_c,
|
|
|
|
|
&ctm_d, &ctm_e, &ctm_f, &heightFactor );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// The text must be escaped correctly, the others are the various
|
|
|
|
|
// parameters. The CTM is formatted with %f since sin/cos tends
|
|
|
|
|
// to make %g use exponential notation (which is not supported)
|
|
|
|
|
fputsPostscriptString( outputFile, aText );
|
|
|
|
|
fprintf( outputFile, " %g [%f %f %f %f %f %f] %g %s textshow\n",
|
|
|
|
|
wideningFactor, ctm_a, ctm_b, ctm_c, ctm_d, ctm_e, ctm_f,
|
|
|
|
|
heightFactor, fontname );
|
|
|
|
|
|
|
|
|
|
/* The textshow operator retained the coordinate system, we use it
|
|
|
|
|
* to plot the overbars. See the PDF sister function for more
|
|
|
|
|
* details */
|
|
|
|
|
|
|
|
|
|
std::vector<int> pos_pairs;
|
|
|
|
|
postscriptOverlinePositions( aText, aSize.x, aItalic, aBold, &pos_pairs );
|
|
|
|
|
int overbar_y = KiROUND( aSize.y * 1.1 );
|
|
|
|
|
for( unsigned i = 0; i < pos_pairs.size(); i += 2)
|
|
|
|
|
{
|
|
|
|
|
DPOINT dev_from = userToDeviceSize( wxSize( pos_pairs[i], overbar_y ) );
|
|
|
|
|
DPOINT dev_to = userToDeviceSize( wxSize( pos_pairs[i + 1], overbar_y ) );
|
|
|
|
|
fprintf( outputFile, "%g %g %g %g line ",
|
|
|
|
|
dev_from.x, dev_from.y, dev_to.x, dev_to.y );
|
|
|
|
|
}
|
2009-06-28 16:50:42 +00:00
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
|
// Restore the CTM
|
|
|
|
|
fputs( "grestore\n", outputFile );
|
2010-09-13 11:51:09 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
|
// Draw the hidden postscript text (if requested)
|
2012-08-29 20:13:47 +00:00
|
|
|
|
if( m_textMode == PLOTTEXTMODE_PHANTOM )
|
2012-05-03 18:37:56 +00:00
|
|
|
|
{
|
|
|
|
|
fputsPostscriptString( outputFile, aText );
|
2014-04-28 16:13:18 +00:00
|
|
|
|
DPOINT pos_dev = userToDeviceCoordinates( aPos );
|
2012-05-03 18:37:56 +00:00
|
|
|
|
fprintf( outputFile, " %g %g phantomshow\n",
|
|
|
|
|
pos_dev.x, pos_dev.y );
|
2010-09-13 11:51:09 +00:00
|
|
|
|
}
|
2009-06-28 16:50:42 +00:00
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
|
// Draw the stroked text (if requested)
|
2014-04-28 16:13:18 +00:00
|
|
|
|
if( m_textMode != PLOTTEXTMODE_NATIVE || aMultilineAllowed )
|
2009-06-28 16:50:42 +00:00
|
|
|
|
{
|
2012-05-03 18:37:56 +00:00
|
|
|
|
PLOTTER::Text( aPos, aColor, aText, aOrient, aSize, aH_justify, aV_justify,
|
2014-04-28 16:13:18 +00:00
|
|
|
|
aWidth, aItalic, aBold, aMultilineAllowed );
|
2009-06-28 16:50:42 +00:00
|
|
|
|
}
|
2008-03-22 05:55:06 +00:00
|
|
|
|
}
|
2012-03-26 21:45:05 +00:00
|
|
|
|
|
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
|
/**
|
|
|
|
|
* Character widths for Helvetica
|
|
|
|
|
*/
|
|
|
|
|
const double hv_widths[256] = {
|
|
|
|
|
0.278, 0.278, 0.278, 0.278, 0.278, 0.278, 0.278, 0.278,
|
|
|
|
|
0.278, 0.278, 0.278, 0.278, 0.278, 0.278, 0.278, 0.278,
|
|
|
|
|
0.278, 0.278, 0.278, 0.278, 0.278, 0.278, 0.278, 0.278,
|
|
|
|
|
0.278, 0.278, 0.278, 0.278, 0.278, 0.278, 0.278, 0.278,
|
|
|
|
|
0.278, 0.278, 0.355, 0.556, 0.556, 0.889, 0.667, 0.191,
|
|
|
|
|
0.333, 0.333, 0.389, 0.584, 0.278, 0.333, 0.278, 0.278,
|
|
|
|
|
0.556, 0.556, 0.556, 0.556, 0.556, 0.556, 0.556, 0.556,
|
|
|
|
|
0.556, 0.556, 0.278, 0.278, 0.584, 0.584, 0.584, 0.556,
|
|
|
|
|
1.015, 0.667, 0.667, 0.722, 0.722, 0.667, 0.611, 0.778,
|
|
|
|
|
0.722, 0.278, 0.500, 0.667, 0.556, 0.833, 0.722, 0.778,
|
|
|
|
|
0.667, 0.778, 0.722, 0.667, 0.611, 0.722, 0.667, 0.944,
|
|
|
|
|
0.667, 0.667, 0.611, 0.278, 0.278, 0.278, 0.469, 0.556,
|
|
|
|
|
0.333, 0.556, 0.556, 0.500, 0.556, 0.556, 0.278, 0.556,
|
|
|
|
|
0.556, 0.222, 0.222, 0.500, 0.222, 0.833, 0.556, 0.556,
|
|
|
|
|
0.556, 0.556, 0.333, 0.500, 0.278, 0.556, 0.500, 0.722,
|
|
|
|
|
0.500, 0.500, 0.500, 0.334, 0.260, 0.334, 0.584, 0.278,
|
|
|
|
|
0.278, 0.278, 0.222, 0.556, 0.333, 1.000, 0.556, 0.556,
|
|
|
|
|
0.333, 1.000, 0.667, 0.333, 1.000, 0.278, 0.278, 0.278,
|
|
|
|
|
0.278, 0.222, 0.222, 0.333, 0.333, 0.350, 0.556, 1.000,
|
|
|
|
|
0.333, 1.000, 0.500, 0.333, 0.944, 0.278, 0.278, 0.667,
|
|
|
|
|
0.278, 0.333, 0.556, 0.556, 0.556, 0.556, 0.260, 0.556,
|
|
|
|
|
0.333, 0.737, 0.370, 0.556, 0.584, 0.333, 0.737, 0.333,
|
|
|
|
|
0.400, 0.584, 0.333, 0.333, 0.333, 0.556, 0.537, 0.278,
|
|
|
|
|
0.333, 0.333, 0.365, 0.556, 0.834, 0.834, 0.834, 0.611,
|
|
|
|
|
0.667, 0.667, 0.667, 0.667, 0.667, 0.667, 1.000, 0.722,
|
|
|
|
|
0.667, 0.667, 0.667, 0.667, 0.278, 0.278, 0.278, 0.278,
|
|
|
|
|
0.722, 0.722, 0.778, 0.778, 0.778, 0.778, 0.778, 0.584,
|
|
|
|
|
0.778, 0.722, 0.722, 0.722, 0.722, 0.667, 0.667, 0.611,
|
|
|
|
|
0.556, 0.556, 0.556, 0.556, 0.556, 0.556, 0.889, 0.500,
|
|
|
|
|
0.556, 0.556, 0.556, 0.556, 0.278, 0.278, 0.278, 0.278,
|
|
|
|
|
0.556, 0.556, 0.556, 0.556, 0.556, 0.556, 0.556, 0.584,
|
|
|
|
|
0.611, 0.556, 0.556, 0.556, 0.556, 0.500, 0.556, 0.500
|
|
|
|
|
};
|
2012-03-26 21:45:05 +00:00
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
|
/**
|
|
|
|
|
* Character widths for Helvetica-Bold
|
|
|
|
|
*/
|
|
|
|
|
const double hvb_widths[256] = {
|
|
|
|
|
0.278, 0.278, 0.278, 0.278, 0.278, 0.278, 0.278, 0.278,
|
|
|
|
|
0.278, 0.278, 0.278, 0.278, 0.278, 0.278, 0.278, 0.278,
|
|
|
|
|
0.278, 0.278, 0.278, 0.278, 0.278, 0.278, 0.278, 0.278,
|
|
|
|
|
0.278, 0.278, 0.278, 0.278, 0.278, 0.278, 0.278, 0.278,
|
|
|
|
|
0.278, 0.333, 0.474, 0.556, 0.556, 0.889, 0.722, 0.238,
|
|
|
|
|
0.333, 0.333, 0.389, 0.584, 0.278, 0.333, 0.278, 0.278,
|
|
|
|
|
0.556, 0.556, 0.556, 0.556, 0.556, 0.556, 0.556, 0.556,
|
|
|
|
|
0.556, 0.556, 0.333, 0.333, 0.584, 0.584, 0.584, 0.611,
|
|
|
|
|
0.975, 0.722, 0.722, 0.722, 0.722, 0.667, 0.611, 0.778,
|
|
|
|
|
0.722, 0.278, 0.556, 0.722, 0.611, 0.833, 0.722, 0.778,
|
|
|
|
|
0.667, 0.778, 0.722, 0.667, 0.611, 0.722, 0.667, 0.944,
|
|
|
|
|
0.667, 0.667, 0.611, 0.333, 0.278, 0.333, 0.584, 0.556,
|
|
|
|
|
0.333, 0.556, 0.611, 0.556, 0.611, 0.556, 0.333, 0.611,
|
|
|
|
|
0.611, 0.278, 0.278, 0.556, 0.278, 0.889, 0.611, 0.611,
|
|
|
|
|
0.611, 0.611, 0.389, 0.556, 0.333, 0.611, 0.556, 0.778,
|
|
|
|
|
0.556, 0.556, 0.500, 0.389, 0.280, 0.389, 0.584, 0.278,
|
|
|
|
|
0.278, 0.278, 0.278, 0.556, 0.500, 1.000, 0.556, 0.556,
|
|
|
|
|
0.333, 1.000, 0.667, 0.333, 1.000, 0.278, 0.278, 0.278,
|
|
|
|
|
0.278, 0.278, 0.278, 0.500, 0.500, 0.350, 0.556, 1.000,
|
|
|
|
|
0.333, 1.000, 0.556, 0.333, 0.944, 0.278, 0.278, 0.667,
|
|
|
|
|
0.278, 0.333, 0.556, 0.556, 0.556, 0.556, 0.280, 0.556,
|
|
|
|
|
0.333, 0.737, 0.370, 0.556, 0.584, 0.333, 0.737, 0.333,
|
|
|
|
|
0.400, 0.584, 0.333, 0.333, 0.333, 0.611, 0.556, 0.278,
|
|
|
|
|
0.333, 0.333, 0.365, 0.556, 0.834, 0.834, 0.834, 0.611,
|
|
|
|
|
0.722, 0.722, 0.722, 0.722, 0.722, 0.722, 1.000, 0.722,
|
|
|
|
|
0.667, 0.667, 0.667, 0.667, 0.278, 0.278, 0.278, 0.278,
|
|
|
|
|
0.722, 0.722, 0.778, 0.778, 0.778, 0.778, 0.778, 0.584,
|
|
|
|
|
0.778, 0.722, 0.722, 0.722, 0.722, 0.667, 0.667, 0.611,
|
|
|
|
|
0.556, 0.556, 0.556, 0.556, 0.556, 0.556, 0.889, 0.556,
|
|
|
|
|
0.556, 0.556, 0.556, 0.556, 0.278, 0.278, 0.278, 0.278,
|
|
|
|
|
0.611, 0.611, 0.611, 0.611, 0.611, 0.611, 0.611, 0.584,
|
|
|
|
|
0.611, 0.611, 0.611, 0.611, 0.611, 0.556, 0.611, 0.556
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Character widths for Helvetica-Oblique
|
|
|
|
|
*/
|
|
|
|
|
const double hvo_widths[256] = {
|
|
|
|
|
0.278, 0.278, 0.278, 0.278, 0.278, 0.278, 0.278, 0.278,
|
|
|
|
|
0.278, 0.278, 0.278, 0.278, 0.278, 0.278, 0.278, 0.278,
|
|
|
|
|
0.278, 0.278, 0.278, 0.278, 0.278, 0.278, 0.278, 0.278,
|
|
|
|
|
0.278, 0.278, 0.278, 0.278, 0.278, 0.278, 0.278, 0.278,
|
|
|
|
|
0.278, 0.278, 0.355, 0.556, 0.556, 0.889, 0.667, 0.191,
|
|
|
|
|
0.333, 0.333, 0.389, 0.584, 0.278, 0.333, 0.278, 0.278,
|
|
|
|
|
0.556, 0.556, 0.556, 0.556, 0.556, 0.556, 0.556, 0.556,
|
|
|
|
|
0.556, 0.556, 0.278, 0.278, 0.584, 0.584, 0.584, 0.556,
|
|
|
|
|
1.015, 0.667, 0.667, 0.722, 0.722, 0.667, 0.611, 0.778,
|
|
|
|
|
0.722, 0.278, 0.500, 0.667, 0.556, 0.833, 0.722, 0.778,
|
|
|
|
|
0.667, 0.778, 0.722, 0.667, 0.611, 0.722, 0.667, 0.944,
|
|
|
|
|
0.667, 0.667, 0.611, 0.278, 0.278, 0.278, 0.469, 0.556,
|
|
|
|
|
0.333, 0.556, 0.556, 0.500, 0.556, 0.556, 0.278, 0.556,
|
|
|
|
|
0.556, 0.222, 0.222, 0.500, 0.222, 0.833, 0.556, 0.556,
|
|
|
|
|
0.556, 0.556, 0.333, 0.500, 0.278, 0.556, 0.500, 0.722,
|
|
|
|
|
0.500, 0.500, 0.500, 0.334, 0.260, 0.334, 0.584, 0.278,
|
|
|
|
|
0.278, 0.278, 0.222, 0.556, 0.333, 1.000, 0.556, 0.556,
|
|
|
|
|
0.333, 1.000, 0.667, 0.333, 1.000, 0.278, 0.278, 0.278,
|
|
|
|
|
0.278, 0.222, 0.222, 0.333, 0.333, 0.350, 0.556, 1.000,
|
|
|
|
|
0.333, 1.000, 0.500, 0.333, 0.944, 0.278, 0.278, 0.667,
|
|
|
|
|
0.278, 0.333, 0.556, 0.556, 0.556, 0.556, 0.260, 0.556,
|
|
|
|
|
0.333, 0.737, 0.370, 0.556, 0.584, 0.333, 0.737, 0.333,
|
|
|
|
|
0.400, 0.584, 0.333, 0.333, 0.333, 0.556, 0.537, 0.278,
|
|
|
|
|
0.333, 0.333, 0.365, 0.556, 0.834, 0.834, 0.834, 0.611,
|
|
|
|
|
0.667, 0.667, 0.667, 0.667, 0.667, 0.667, 1.000, 0.722,
|
|
|
|
|
0.667, 0.667, 0.667, 0.667, 0.278, 0.278, 0.278, 0.278,
|
|
|
|
|
0.722, 0.722, 0.778, 0.778, 0.778, 0.778, 0.778, 0.584,
|
|
|
|
|
0.778, 0.722, 0.722, 0.722, 0.722, 0.667, 0.667, 0.611,
|
|
|
|
|
0.556, 0.556, 0.556, 0.556, 0.556, 0.556, 0.889, 0.500,
|
|
|
|
|
0.556, 0.556, 0.556, 0.556, 0.278, 0.278, 0.278, 0.278,
|
|
|
|
|
0.556, 0.556, 0.556, 0.556, 0.556, 0.556, 0.556, 0.584,
|
|
|
|
|
0.611, 0.556, 0.556, 0.556, 0.556, 0.500, 0.556, 0.500
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Character widths for Helvetica-BoldOblique
|
|
|
|
|
*/
|
|
|
|
|
const double hvbo_widths[256] = {
|
|
|
|
|
0.278, 0.278, 0.278, 0.278, 0.278, 0.278, 0.278, 0.278,
|
|
|
|
|
0.278, 0.278, 0.278, 0.278, 0.278, 0.278, 0.278, 0.278,
|
|
|
|
|
0.278, 0.278, 0.278, 0.278, 0.278, 0.278, 0.278, 0.278,
|
|
|
|
|
0.278, 0.278, 0.278, 0.278, 0.278, 0.278, 0.278, 0.278,
|
|
|
|
|
0.278, 0.333, 0.474, 0.556, 0.556, 0.889, 0.722, 0.238,
|
|
|
|
|
0.333, 0.333, 0.389, 0.584, 0.278, 0.333, 0.278, 0.278,
|
|
|
|
|
0.556, 0.556, 0.556, 0.556, 0.556, 0.556, 0.556, 0.556,
|
|
|
|
|
0.556, 0.556, 0.333, 0.333, 0.584, 0.584, 0.584, 0.611,
|
|
|
|
|
0.975, 0.722, 0.722, 0.722, 0.722, 0.667, 0.611, 0.778,
|
|
|
|
|
0.722, 0.278, 0.556, 0.722, 0.611, 0.833, 0.722, 0.778,
|
|
|
|
|
0.667, 0.778, 0.722, 0.667, 0.611, 0.722, 0.667, 0.944,
|
|
|
|
|
0.667, 0.667, 0.611, 0.333, 0.278, 0.333, 0.584, 0.556,
|
|
|
|
|
0.333, 0.556, 0.611, 0.556, 0.611, 0.556, 0.333, 0.611,
|
|
|
|
|
0.611, 0.278, 0.278, 0.556, 0.278, 0.889, 0.611, 0.611,
|
|
|
|
|
0.611, 0.611, 0.389, 0.556, 0.333, 0.611, 0.556, 0.778,
|
|
|
|
|
0.556, 0.556, 0.500, 0.389, 0.280, 0.389, 0.584, 0.278,
|
|
|
|
|
0.278, 0.278, 0.278, 0.556, 0.500, 1.000, 0.556, 0.556,
|
|
|
|
|
0.333, 1.000, 0.667, 0.333, 1.000, 0.278, 0.278, 0.278,
|
|
|
|
|
0.278, 0.278, 0.278, 0.500, 0.500, 0.350, 0.556, 1.000,
|
|
|
|
|
0.333, 1.000, 0.556, 0.333, 0.944, 0.278, 0.278, 0.667,
|
|
|
|
|
0.278, 0.333, 0.556, 0.556, 0.556, 0.556, 0.280, 0.556,
|
|
|
|
|
0.333, 0.737, 0.370, 0.556, 0.584, 0.333, 0.737, 0.333,
|
|
|
|
|
0.400, 0.584, 0.333, 0.333, 0.333, 0.611, 0.556, 0.278,
|
|
|
|
|
0.333, 0.333, 0.365, 0.556, 0.834, 0.834, 0.834, 0.611,
|
|
|
|
|
0.722, 0.722, 0.722, 0.722, 0.722, 0.722, 1.000, 0.722,
|
|
|
|
|
0.667, 0.667, 0.667, 0.667, 0.278, 0.278, 0.278, 0.278,
|
|
|
|
|
0.722, 0.722, 0.778, 0.778, 0.778, 0.778, 0.778, 0.584,
|
|
|
|
|
0.778, 0.722, 0.722, 0.722, 0.722, 0.667, 0.667, 0.611,
|
|
|
|
|
0.556, 0.556, 0.556, 0.556, 0.556, 0.556, 0.889, 0.556,
|
|
|
|
|
0.556, 0.556, 0.556, 0.556, 0.278, 0.278, 0.278, 0.278,
|
|
|
|
|
0.611, 0.611, 0.611, 0.611, 0.611, 0.611, 0.611, 0.584,
|
|
|
|
|
0.611, 0.611, 0.611, 0.611, 0.611, 0.556, 0.611, 0.556
|
|
|
|
|
};
|
2012-03-26 21:45:05 +00:00
|
|
|
|
|