// Author: Julian Smart, Robert Roebling, Markus Holzhem
// Modified by:
// Created: 04/01/98
-// RCS-ID: $Id$
// Copyright: (c) Julian Smart
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
CalcBoundingBox( x, y );
}
-void wxPostScriptDCImpl::DoDrawPolygon (int n, wxPoint points[], wxCoord xoffset, wxCoord yoffset, wxPolygonFillMode fillStyle)
+void wxPostScriptDCImpl::DoDrawPolygon (int n, const wxPoint points[], wxCoord xoffset, wxCoord yoffset, wxPolygonFillMode fillStyle)
{
wxCHECK_RET( m_ok, wxT("invalid postscript dc") );
}
}
-void wxPostScriptDCImpl::DoDrawPolyPolygon (int n, int count[], wxPoint points[], wxCoord xoffset, wxCoord yoffset, wxPolygonFillMode fillStyle)
+void wxPostScriptDCImpl::DoDrawPolyPolygon (int n, const int count[], const wxPoint points[], wxCoord xoffset, wxCoord yoffset, wxPolygonFillMode fillStyle)
{
wxCHECK_RET( m_ok, wxT("invalid postscript dc") );
}
}
-void wxPostScriptDCImpl::DoDrawLines (int n, wxPoint points[], wxCoord xoffset, wxCoord yoffset)
+void wxPostScriptDCImpl::DoDrawLines (int n, const wxPoint points[], wxCoord xoffset, wxCoord yoffset)
{
wxCHECK_RET( m_ok, wxT("invalid postscript dc") );
{
wxCHECK_RET( m_ok, wxT("invalid postscript dc") );
- if (!bitmap.Ok()) return;
+ if (!bitmap.IsOk()) return;
wxImage image = bitmap.ConvertToImage();
- if (!image.Ok()) return;
+ if (!image.IsOk()) return;
wxCoord w = image.GetWidth();
wxCoord h = image.GetHeight();
{
wxCHECK_RET( m_ok, wxT("invalid postscript dc") );
- if (!font.Ok()) return;
+ if (!font.IsOk()) return;
m_font = font;
{
wxCHECK_RET( m_ok, wxT("invalid postscript dc") );
- if (!pen.Ok()) return;
+ if (!pen.IsOk()) return;
- int oldStyle = m_pen.GetStyle();
+ int oldStyle = m_pen.IsOk() ? m_pen.GetStyle() : wxPENSTYLE_INVALID;
+ wxPenCap oldCap = m_pen.IsOk() ? m_pen.GetCap() : wxCAP_INVALID;
+ wxPenJoin oldJoin = m_pen.IsOk() ? m_pen.GetJoin() : wxJOIN_INVALID;
m_pen = pen;
+ wxPenCap cap = m_pen.IsOk() ? m_pen.GetCap() : wxCAP_INVALID;
+ wxPenJoin join = m_pen.IsOk() ? m_pen.GetJoin() : wxJOIN_INVALID;
double width;
PsPrint( " setdash\n" );
}
+ if ( cap != wxCAP_INVALID && cap != oldCap )
+ {
+ switch ( cap )
+ {
+ case wxCAP_ROUND: buffer = "1"; break;
+ case wxCAP_PROJECTING: buffer = "2"; break;
+ case wxCAP_BUTT: buffer = "0"; break;
+
+ // This case is just to fix compiler warning, this is impossible
+ // due to the test above.
+ case wxCAP_INVALID: break;
+ }
+ buffer << " setlinecap\n";
+ PsPrint( buffer );
+ }
+
+ if ( join != wxJOIN_INVALID && join != oldJoin )
+ {
+ switch ( join )
+ {
+ case wxJOIN_BEVEL: buffer = "2"; break;
+ case wxJOIN_ROUND: buffer = "1"; break;
+ case wxJOIN_MITER: buffer = "0"; break;
+ case wxJOIN_INVALID: break;
+ }
+ buffer << " setlinejoin\n";
+ PsPrint( buffer );
+ }
+
// Line colour
unsigned char red = m_pen.GetColour().Red();
unsigned char blue = m_pen.GetColour().Blue();
{
wxCHECK_RET( m_ok, wxT("invalid postscript dc") );
- if (!brush.Ok()) return;
+ if (!brush.IsOk()) return;
m_brush = brush;
if ( !textbuf )
return;
- if (m_textForegroundColour.Ok())
+ if (m_textForegroundColour.IsOk())
{
unsigned char red = m_textForegroundColour.Red();
unsigned char blue = m_textForegroundColour.Blue();
SetFont( m_font );
- if (m_textForegroundColour.Ok())
+ if (m_textForegroundColour.IsOk())
{
unsigned char red = m_textForegroundColour.Red();
unsigned char blue = m_textForegroundColour.Blue();
wxDCImpl::ComputeScaleAndOrigin();
- // If scale has changed call SetPen to recalulate the line width
+ // If scale has changed call SetPen to recalculate the line width
// and SetFont to recalculate font size
if ( wxRealPoint(m_scaleX, m_scaleY) != origScale && m_pen.IsOk() )
{
wxCoord wxPostScriptDCImpl::GetCharHeight() const
{
- if (m_font.Ok())
+ if (m_font.IsOk())
return m_font.GetPointSize();
else
return 12;
/ example:
/
/ wxPostScriptDC dc(NULL, true);
- / if (dc.Ok()){
+ / if (dc.IsOk()){
/ wxSetAFMPath("d:\\wxw161\\afm\\");
/ dc.StartDoc("Test");
/ dc.StartPage();
long sum=0;
float height=fontSize; /* by default */
- unsigned char *p;
- for(p=(unsigned char *)wxMBSTRINGCAST strbuf; *p; p++)
+ unsigned char *p=(unsigned char *)wxMBSTRINGCAST strbuf;
+ if(!p)
+ {
+ // String couldn't be converted which used to SEGV as reported here:
+ // http://bugs.debian.org/702378
+ // http://trac.wxwidgets.org/ticket/15300
+ // Upstream suggests "just return if the conversion failed".
+ if (x) (*x) = 0;
+ if (y) (*y) = 0;
+ if (descent) (*descent) = 0;
+ if (externalLeading) (*externalLeading) = 0;
+ return;
+ }
+ for(; *p; p++)
{
if(lastWidths[*p]== INT_MIN)
{