fix a huge number of build errors
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52586 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -427,7 +427,7 @@ void wxPostScriptDCImpl::DoDrawLine (wxCoord x1, wxCoord y1, wxCoord x2, wxCoord
|
||||
{
|
||||
wxCHECK_RET( m_ok, wxT("invalid postscript dc") );
|
||||
|
||||
if (m_pen.GetStyle() == wxTRANSPARENT) return;
|
||||
if (m_pen.GetStyle() == wxPENSTYLE_TRANSPARENT) return;
|
||||
|
||||
SetPen( m_pen );
|
||||
|
||||
@@ -480,7 +480,7 @@ void wxPostScriptDCImpl::DoDrawArc (wxCoord x1, wxCoord y1, wxCoord x2, wxCoord
|
||||
|
||||
int i_radius = wxRound( radius );
|
||||
|
||||
if (m_brush.GetStyle() != wxTRANSPARENT)
|
||||
if (m_brush.GetStyle() != wxBRUSHSTYLE_TRANSPARENT)
|
||||
{
|
||||
SetBrush( m_brush );
|
||||
|
||||
@@ -501,7 +501,7 @@ void wxPostScriptDCImpl::DoDrawArc (wxCoord x1, wxCoord y1, wxCoord x2, wxCoord
|
||||
CalcBoundingBox( xc+i_radius, yc+i_radius );
|
||||
}
|
||||
|
||||
if (m_pen.GetStyle() != wxTRANSPARENT)
|
||||
if (m_pen.GetStyle() != wxPENSTYLE_TRANSPARENT)
|
||||
{
|
||||
SetPen( m_pen );
|
||||
|
||||
@@ -542,7 +542,7 @@ void wxPostScriptDCImpl::DoDrawEllipticArc(wxCoord x,wxCoord y,wxCoord w,wxCoord
|
||||
return;
|
||||
}
|
||||
|
||||
if (m_brush.GetStyle () != wxTRANSPARENT)
|
||||
if (m_brush.GetStyle () != wxBRUSHSTYLE_TRANSPARENT)
|
||||
{
|
||||
SetBrush( m_brush );
|
||||
|
||||
@@ -559,7 +559,7 @@ void wxPostScriptDCImpl::DoDrawEllipticArc(wxCoord x,wxCoord y,wxCoord w,wxCoord
|
||||
CalcBoundingBox( x+w, y+h );
|
||||
}
|
||||
|
||||
if (m_pen.GetStyle () != wxTRANSPARENT)
|
||||
if (m_pen.GetStyle () != wxPENSTYLE_TRANSPARENT)
|
||||
{
|
||||
SetPen( m_pen );
|
||||
|
||||
@@ -581,7 +581,7 @@ void wxPostScriptDCImpl::DoDrawPoint (wxCoord x, wxCoord y)
|
||||
{
|
||||
wxCHECK_RET( m_ok, wxT("invalid postscript dc") );
|
||||
|
||||
if (m_pen.GetStyle() == wxTRANSPARENT) return;
|
||||
if (m_pen.GetStyle() == wxPENSTYLE_TRANSPARENT) return;
|
||||
|
||||
SetPen (m_pen);
|
||||
|
||||
@@ -604,7 +604,7 @@ void wxPostScriptDCImpl::DoDrawPolygon (int n, wxPoint points[], wxCoord xoffset
|
||||
|
||||
if (n <= 0) return;
|
||||
|
||||
if (m_brush.GetStyle () != wxTRANSPARENT)
|
||||
if (m_brush.GetStyle () != wxBRUSHSTYLE_TRANSPARENT)
|
||||
{
|
||||
SetBrush( m_brush );
|
||||
|
||||
@@ -635,7 +635,7 @@ void wxPostScriptDCImpl::DoDrawPolygon (int n, wxPoint points[], wxCoord xoffset
|
||||
PsPrint( (fillStyle == wxODDEVEN_RULE ? "eofill\n" : "fill\n") );
|
||||
}
|
||||
|
||||
if (m_pen.GetStyle () != wxTRANSPARENT)
|
||||
if (m_pen.GetStyle () != wxPENSTYLE_TRANSPARENT)
|
||||
{
|
||||
SetPen( m_pen );
|
||||
|
||||
@@ -674,7 +674,7 @@ void wxPostScriptDCImpl::DoDrawPolyPolygon (int n, int count[], wxPoint points[]
|
||||
|
||||
if (n <= 0) return;
|
||||
|
||||
if (m_brush.GetStyle () != wxTRANSPARENT)
|
||||
if (m_brush.GetStyle () != wxBRUSHSTYLE_TRANSPARENT)
|
||||
{
|
||||
SetBrush( m_brush );
|
||||
|
||||
@@ -708,7 +708,7 @@ void wxPostScriptDCImpl::DoDrawPolyPolygon (int n, int count[], wxPoint points[]
|
||||
PsPrint( (fillStyle == wxODDEVEN_RULE ? "eofill\n" : "fill\n") );
|
||||
}
|
||||
|
||||
if (m_pen.GetStyle () != wxTRANSPARENT)
|
||||
if (m_pen.GetStyle () != wxPENSTYLE_TRANSPARENT)
|
||||
{
|
||||
SetPen( m_pen );
|
||||
|
||||
@@ -748,7 +748,7 @@ void wxPostScriptDCImpl::DoDrawLines (int n, wxPoint points[], wxCoord xoffset,
|
||||
{
|
||||
wxCHECK_RET( m_ok, wxT("invalid postscript dc") );
|
||||
|
||||
if (m_pen.GetStyle() == wxTRANSPARENT) return;
|
||||
if (m_pen.GetStyle() == wxPENSTYLE_TRANSPARENT) return;
|
||||
|
||||
if (n <= 0) return;
|
||||
|
||||
@@ -785,7 +785,7 @@ void wxPostScriptDCImpl::DoDrawRectangle (wxCoord x, wxCoord y, wxCoord width, w
|
||||
width--;
|
||||
height--;
|
||||
|
||||
if (m_brush.GetStyle () != wxTRANSPARENT)
|
||||
if (m_brush.GetStyle () != wxBRUSHSTYLE_TRANSPARENT)
|
||||
{
|
||||
SetBrush( m_brush );
|
||||
|
||||
@@ -808,7 +808,7 @@ void wxPostScriptDCImpl::DoDrawRectangle (wxCoord x, wxCoord y, wxCoord width, w
|
||||
CalcBoundingBox( x + width, y + height );
|
||||
}
|
||||
|
||||
if (m_pen.GetStyle () != wxTRANSPARENT)
|
||||
if (m_pen.GetStyle () != wxPENSTYLE_TRANSPARENT)
|
||||
{
|
||||
SetPen (m_pen);
|
||||
|
||||
@@ -849,7 +849,7 @@ void wxPostScriptDCImpl::DoDrawRoundedRectangle (wxCoord x, wxCoord y, wxCoord w
|
||||
|
||||
wxCoord rad = (wxCoord) radius;
|
||||
|
||||
if (m_brush.GetStyle () != wxTRANSPARENT)
|
||||
if (m_brush.GetStyle () != wxBRUSHSTYLE_TRANSPARENT)
|
||||
{
|
||||
SetBrush( m_brush );
|
||||
|
||||
@@ -881,7 +881,7 @@ void wxPostScriptDCImpl::DoDrawRoundedRectangle (wxCoord x, wxCoord y, wxCoord w
|
||||
CalcBoundingBox( x + width, y + height );
|
||||
}
|
||||
|
||||
if (m_pen.GetStyle () != wxTRANSPARENT)
|
||||
if (m_pen.GetStyle () != wxPENSTYLE_TRANSPARENT)
|
||||
{
|
||||
SetPen (m_pen);
|
||||
|
||||
@@ -921,7 +921,7 @@ void wxPostScriptDCImpl::DoDrawEllipse (wxCoord x, wxCoord y, wxCoord width, wxC
|
||||
width--;
|
||||
height--;
|
||||
|
||||
if (m_brush.GetStyle () != wxTRANSPARENT)
|
||||
if (m_brush.GetStyle () != wxBRUSHSTYLE_TRANSPARENT)
|
||||
{
|
||||
SetBrush (m_brush);
|
||||
|
||||
@@ -938,7 +938,7 @@ void wxPostScriptDCImpl::DoDrawEllipse (wxCoord x, wxCoord y, wxCoord width, wxC
|
||||
CalcBoundingBox( x + width, y + height );
|
||||
}
|
||||
|
||||
if (m_pen.GetStyle () != wxTRANSPARENT)
|
||||
if (m_pen.GetStyle () != wxPENSTYLE_TRANSPARENT)
|
||||
{
|
||||
SetPen (m_pen);
|
||||
|
||||
@@ -1171,11 +1171,11 @@ void wxPostScriptDCImpl::SetPen( const wxPen& pen )
|
||||
|
||||
switch (m_pen.GetStyle())
|
||||
{
|
||||
case wxDOT: psdash = dotted; break;
|
||||
case wxSHORT_DASH: psdash = short_dashed; break;
|
||||
case wxLONG_DASH: psdash = wxCoord_dashed; break;
|
||||
case wxDOT_DASH: psdash = dotted_dashed; break;
|
||||
case wxUSER_DASH:
|
||||
case wxPENSTYLE_DOT: psdash = dotted; break;
|
||||
case wxPENSTYLE_SHORT_DASH: psdash = short_dashed; break;
|
||||
case wxPENSTYLE_LONG_DASH: psdash = wxCoord_dashed; break;
|
||||
case wxPENSTYLE_DOT_DASH: psdash = dotted_dashed; break;
|
||||
case wxPENSTYLE_USER_DASH:
|
||||
{
|
||||
wxDash *dashes;
|
||||
int nDashes = m_pen.GetDashes (&dashes);
|
||||
@@ -1189,8 +1189,8 @@ void wxPostScriptDCImpl::SetPen( const wxPen& pen )
|
||||
psdash = 0;
|
||||
}
|
||||
break;
|
||||
case wxSOLID:
|
||||
case wxTRANSPARENT:
|
||||
case wxPENSTYLE_SOLID:
|
||||
case wxPENSTYLE_TRANSPARENT:
|
||||
default: psdash = "[] 0"; break;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user