1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxDrawnShape
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "drawn.h"
14 #pragma implementation "drawnp.h"
17 // For compilers that support precompilation, includes "wx.h".
18 #include "wx/wxprec.h"
29 #include <wx/deprecated/wxexpr.h>
32 #include "wx/ogl/ogl.h"
37 static void IntToHex(unsigned int dec
, wxChar
*buf
);
38 static unsigned long HexToInt(wxChar
*buf
);
39 extern wxChar
*oglBuffer
;
42 #define gyTYPE_BRUSH 41
43 #define gyTYPE_FONT 42
50 IMPLEMENT_DYNAMIC_CLASS(wxDrawnShape
, wxRectangleShape
)
52 wxDrawnShape::wxDrawnShape():wxRectangleShape(100.0, 50.0)
55 m_currentAngle
= oglDRAWN_ANGLE_0
;
58 wxDrawnShape::~wxDrawnShape()
62 void wxDrawnShape::OnDraw(wxDC
& dc
)
64 // Pass pen and brush in case we have force outline
66 if (m_shadowMode
!= SHADOW_NONE
)
69 m_metafiles
[m_currentAngle
].m_fillBrush
= m_shadowBrush
;
70 m_metafiles
[m_currentAngle
].m_outlinePen
= g_oglTransparentPen
;
71 m_metafiles
[m_currentAngle
].Draw(dc
, m_xpos
+ m_shadowOffsetX
, m_ypos
+ m_shadowOffsetY
);
74 m_metafiles
[m_currentAngle
].m_outlinePen
= m_pen
;
75 m_metafiles
[m_currentAngle
].m_fillBrush
= m_brush
;
76 m_metafiles
[m_currentAngle
].Draw(dc
, m_xpos
, m_ypos
);
79 void wxDrawnShape::SetSize(double w
, double h
, bool WXUNUSED(recursive
))
81 SetAttachmentSize(w
, h
);
85 if (GetWidth() == 0.0)
87 else scaleX
= w
/GetWidth();
88 if (GetHeight() == 0.0)
90 else scaleY
= h
/GetHeight();
92 for (int i
= 0; i
< 4; i
++)
94 if (m_metafiles
[i
].IsValid())
95 m_metafiles
[i
].Scale(scaleX
, scaleY
);
99 SetDefaultRegionSize();
102 void wxDrawnShape::Scale(double sx
, double sy
)
105 for (i
= 0; i
< 4; i
++)
107 if (m_metafiles
[i
].IsValid())
109 m_metafiles
[i
].Scale(sx
, sy
);
110 m_metafiles
[i
].CalculateSize(this);
115 void wxDrawnShape::Translate(double x
, double y
)
118 for (i
= 0; i
< 4; i
++)
120 if (m_metafiles
[i
].IsValid())
122 m_metafiles
[i
].Translate(x
, y
);
123 m_metafiles
[i
].CalculateSize(this);
128 // theta is absolute rotation from the zero position
129 void wxDrawnShape::Rotate(double x
, double y
, double theta
)
131 m_currentAngle
= DetermineMetaFile(theta
);
133 if (m_currentAngle
== 0)
136 if (!m_metafiles
[0].GetRotateable())
139 m_metafiles
[0].Rotate(x
, y
, theta
);
142 double actualTheta
= theta
-m_rotation
;
144 // Rotate attachment points
145 double sinTheta
= (double)sin(actualTheta
);
146 double cosTheta
= (double)cos(actualTheta
);
147 wxNode
*node
= m_attachmentPoints
.GetFirst();
150 wxAttachmentPoint
*point
= (wxAttachmentPoint
*)node
->GetData();
151 double x1
= point
->m_x
;
152 double y1
= point
->m_y
;
153 point
->m_x
= x1
*cosTheta
- y1
*sinTheta
+ x
*(1.0 - cosTheta
) + y
*sinTheta
;
154 point
->m_y
= x1
*sinTheta
+ y1
*cosTheta
+ y
*(1.0 - cosTheta
) + x
*sinTheta
;
155 node
= node
->GetNext();
159 m_metafiles
[m_currentAngle
].CalculateSize(this);
162 // Which metafile do we use now? Based on current rotation and validity
165 int wxDrawnShape::DetermineMetaFile(double rotation
)
167 double tolerance
= 0.0001;
168 const double pi
= 3.1415926535897932384626433832795 ;
170 double angle2
= pi
/2.0;
172 double angle4
= 3.0*pi
/2.0;
174 int whichMetafile
= 0;
176 if (oglRoughlyEqual(rotation
, angle1
, tolerance
))
180 else if (oglRoughlyEqual(rotation
, angle2
, tolerance
))
184 else if (oglRoughlyEqual(rotation
, angle3
, tolerance
))
188 else if (oglRoughlyEqual(rotation
, angle4
, tolerance
))
193 if ((whichMetafile
> 0) && !m_metafiles
[whichMetafile
].IsValid())
196 return whichMetafile
;
199 void wxDrawnShape::OnDrawOutline(wxDC
& dc
, double x
, double y
, double w
, double h
)
201 if (m_metafiles
[m_currentAngle
].GetOutlineOp() != -1)
203 wxNode
* node
= m_metafiles
[m_currentAngle
].GetOps().Item(m_metafiles
[m_currentAngle
].GetOutlineOp());
204 wxASSERT (node
!= NULL
);
205 wxDrawOp
* op
= (wxDrawOp
*) node
->GetData();
207 if (op
->OnDrawOutline(dc
, x
, y
, w
, h
, m_width
, m_height
))
211 // Default... just use a rectangle
212 wxRectangleShape::OnDrawOutline(dc
, x
, y
, w
, h
);
215 // Get the perimeter point using the special outline op, if there is one,
216 // otherwise use default wxRectangleShape scheme
217 bool wxDrawnShape::GetPerimeterPoint(double x1
, double y1
,
218 double x2
, double y2
,
219 double *x3
, double *y3
)
221 if (m_metafiles
[m_currentAngle
].GetOutlineOp() != -1)
223 wxNode
* node
= m_metafiles
[m_currentAngle
].GetOps().Item(m_metafiles
[m_currentAngle
].GetOutlineOp());
224 wxASSERT (node
!= NULL
);
225 wxDrawOp
* op
= (wxDrawOp
*) node
->GetData();
227 if (op
->GetPerimeterPoint(x1
, y1
, x2
, y2
, x3
, y3
, GetX(), GetY(), GetAttachmentMode()))
231 // Default... just use a rectangle
232 return wxRectangleShape::GetPerimeterPoint(x1
, y1
, x2
, y2
, x3
, y3
);
236 void wxDrawnShape::WriteAttributes(wxExpr
*clause
)
238 wxRectangleShape::WriteAttributes(clause
);
240 clause
->AddAttributeValue(_T("current_angle"), (long)m_currentAngle
);
241 clause
->AddAttributeValue(_T("save_metafile"), (long)m_saveToFile
);
244 for (int i
= 0; i
< 4; i
++)
246 if (m_metafiles
[i
].IsValid())
247 m_metafiles
[i
].WriteAttributes(clause
, i
);
252 void wxDrawnShape::ReadAttributes(wxExpr
*clause
)
254 wxRectangleShape::ReadAttributes(clause
);
256 int iVal
= (int) m_saveToFile
;
257 clause
->GetAttributeValue(_T("save_metafile"), iVal
);
258 clause
->GetAttributeValue(_T("current_angle"), m_currentAngle
);
259 m_saveToFile
= (iVal
!= 0);
263 for (int i
= 0; i
< 4; i
++)
265 m_metafiles
[i
].ReadAttributes(clause
, i
);
271 // Does the copying for this object
272 void wxDrawnShape::Copy(wxShape
& copy
)
274 wxRectangleShape::Copy(copy
);
276 wxASSERT( copy
.IsKindOf(CLASSINFO(wxDrawnShape
)) ) ;
278 wxDrawnShape
& drawnCopy
= (wxDrawnShape
&) copy
;
280 for (int i
= 0; i
< 4; i
++)
282 m_metafiles
[i
].Copy(drawnCopy
.m_metafiles
[i
]);
284 drawnCopy
.m_saveToFile
= m_saveToFile
;
285 drawnCopy
.m_currentAngle
= m_currentAngle
;
288 bool wxDrawnShape::LoadFromMetaFile(const wxString
& filename
)
290 return m_metafiles
[0].LoadFromMetaFile(filename
, &m_width
, &m_height
);
293 // Set of functions for drawing into a pseudo metafile.
294 // They use integers, but doubles are used internally for accuracy
297 void wxDrawnShape::DrawLine(const wxPoint
& pt1
, const wxPoint
& pt2
)
299 m_metafiles
[m_currentAngle
].DrawLine(pt1
, pt2
);
302 void wxDrawnShape::DrawRectangle(const wxRect
& rect
)
304 m_metafiles
[m_currentAngle
].DrawRectangle(rect
);
307 void wxDrawnShape::DrawRoundedRectangle(const wxRect
& rect
, double radius
)
309 m_metafiles
[m_currentAngle
].DrawRoundedRectangle(rect
, radius
);
312 void wxDrawnShape::DrawEllipse(const wxRect
& rect
)
314 m_metafiles
[m_currentAngle
].DrawEllipse(rect
);
317 void wxDrawnShape::DrawArc(const wxPoint
& centrePt
, const wxPoint
& startPt
, const wxPoint
& endPt
)
319 m_metafiles
[m_currentAngle
].DrawArc(centrePt
, startPt
, endPt
);
322 void wxDrawnShape::DrawEllipticArc(const wxRect
& rect
, double startAngle
, double endAngle
)
324 m_metafiles
[m_currentAngle
].DrawEllipticArc(rect
, startAngle
, endAngle
);
327 void wxDrawnShape::DrawPoint(const wxPoint
& pt
)
329 m_metafiles
[m_currentAngle
].DrawPoint(pt
);
332 void wxDrawnShape::DrawText(const wxString
& text
, const wxPoint
& pt
)
334 m_metafiles
[m_currentAngle
].DrawText(text
, pt
);
337 void wxDrawnShape::DrawLines(int n
, wxPoint pts
[])
339 m_metafiles
[m_currentAngle
].DrawLines(n
, pts
);
342 void wxDrawnShape::DrawPolygon(int n
, wxPoint pts
[], int flags
)
344 if (flags
& oglMETAFLAGS_ATTACHMENTS
)
348 for (i
= 0; i
< n
; i
++)
349 m_attachmentPoints
.Append(new wxAttachmentPoint(i
, pts
[i
].x
, pts
[i
].y
));
351 m_metafiles
[m_currentAngle
].DrawPolygon(n
, pts
, flags
);
354 void wxDrawnShape::DrawSpline(int n
, wxPoint pts
[])
356 m_metafiles
[m_currentAngle
].DrawSpline(n
, pts
);
359 void wxDrawnShape::SetClippingRect(const wxRect
& rect
)
361 m_metafiles
[m_currentAngle
].SetClippingRect(rect
);
364 void wxDrawnShape::DestroyClippingRect()
366 m_metafiles
[m_currentAngle
].DestroyClippingRect();
369 void wxDrawnShape::SetDrawnPen(wxPen
* pen
, bool isOutline
)
371 m_metafiles
[m_currentAngle
].SetPen(pen
, isOutline
);
374 void wxDrawnShape::SetDrawnBrush(wxBrush
* brush
, bool isFill
)
376 m_metafiles
[m_currentAngle
].SetBrush(brush
, isFill
);
379 void wxDrawnShape::SetDrawnFont(wxFont
* font
)
381 m_metafiles
[m_currentAngle
].SetFont(font
);
384 void wxDrawnShape::SetDrawnTextColour(const wxColour
& colour
)
386 m_metafiles
[m_currentAngle
].SetTextColour(colour
);
389 void wxDrawnShape::SetDrawnBackgroundColour(const wxColour
& colour
)
391 m_metafiles
[m_currentAngle
].SetBackgroundColour(colour
);
394 void wxDrawnShape::SetDrawnBackgroundMode(int mode
)
396 m_metafiles
[m_currentAngle
].SetBackgroundMode(mode
);
401 * Individual operations
406 * Set font, brush, text colour
410 wxOpSetGDI::wxOpSetGDI(int theOp
, wxPseudoMetaFile
*theImage
, int theGdiIndex
, int theMode
):
413 m_gdiIndex
= theGdiIndex
;
418 void wxOpSetGDI::Do(wxDC
& dc
, double WXUNUSED(xoffset
), double WXUNUSED(yoffset
))
424 // Check for overriding this operation for outline
426 if (m_image
->m_outlineColours
.Member((wxObject
*)m_gdiIndex
))
428 if (m_image
->m_outlinePen
)
429 dc
.SetPen(* m_image
->m_outlinePen
);
433 wxNode
*node
= m_image
->m_gdiObjects
.Item(m_gdiIndex
);
436 wxPen
*pen
= (wxPen
*)node
->GetData();
443 case DRAWOP_SET_BRUSH
:
445 // Check for overriding this operation for outline or fill
447 if (m_image
->m_outlineColours
.Member((wxObject
*)m_gdiIndex
))
449 // Need to construct a brush to match the outline pen's colour
450 if (m_image
->m_outlinePen
)
452 wxBrush
*br
= wxTheBrushList
->FindOrCreateBrush(m_image
->m_outlinePen
->GetColour(), wxSOLID
);
457 else if (m_image
->m_fillColours
.Member((wxObject
*)m_gdiIndex
))
459 if (m_image
->m_fillBrush
)
461 dc
.SetBrush(* m_image
->m_fillBrush
);
466 wxNode
*node
= m_image
->m_gdiObjects
.Item(m_gdiIndex
);
469 wxBrush
*brush
= (wxBrush
*)node
->GetData();
471 dc
.SetBrush(* brush
);
476 case DRAWOP_SET_FONT
:
478 wxNode
*node
= m_image
->m_gdiObjects
.Item(m_gdiIndex
);
481 wxFont
*font
= (wxFont
*)node
->GetData();
487 case DRAWOP_SET_TEXT_COLOUR
:
489 wxColour
col(m_r
,m_g
,m_b
);
490 dc
.SetTextForeground(col
);
493 case DRAWOP_SET_BK_COLOUR
:
495 wxColour
col(m_r
,m_g
,m_b
);
496 dc
.SetTextBackground(col
);
499 case DRAWOP_SET_BK_MODE
:
501 dc
.SetBackgroundMode(m_mode
);
509 wxDrawOp
*wxOpSetGDI::Copy(wxPseudoMetaFile
*newImage
)
511 wxOpSetGDI
*newOp
= new wxOpSetGDI(m_op
, newImage
, m_gdiIndex
, m_mode
);
519 wxExpr
*wxOpSetGDI::WriteExpr(wxPseudoMetaFile
*WXUNUSED(image
))
521 wxExpr
*expr
= new wxExpr(wxExprList
);
522 expr
->Append(new wxExpr((long)m_op
));
526 case DRAWOP_SET_BRUSH
:
527 case DRAWOP_SET_FONT
:
529 expr
->Append(new wxExpr((long)m_gdiIndex
));
532 case DRAWOP_SET_TEXT_COLOUR
:
533 case DRAWOP_SET_BK_COLOUR
:
535 expr
->Append(new wxExpr((long)m_r
));
536 expr
->Append(new wxExpr((long)m_g
));
537 expr
->Append(new wxExpr((long)m_b
));
540 case DRAWOP_SET_BK_MODE
:
542 expr
->Append(new wxExpr((long)m_mode
));
551 void wxOpSetGDI::ReadExpr(wxPseudoMetaFile
*WXUNUSED(image
), wxExpr
*expr
)
556 case DRAWOP_SET_BRUSH
:
557 case DRAWOP_SET_FONT
:
559 m_gdiIndex
= (int)expr
->Nth(1)->IntegerValue();
562 case DRAWOP_SET_TEXT_COLOUR
:
563 case DRAWOP_SET_BK_COLOUR
:
565 m_r
= (unsigned char)expr
->Nth(1)->IntegerValue();
566 m_g
= (unsigned char)expr
->Nth(2)->IntegerValue();
567 m_b
= (unsigned char)expr
->Nth(3)->IntegerValue();
570 case DRAWOP_SET_BK_MODE
:
572 m_mode
= (int)expr
->Nth(1)->IntegerValue();
582 * Set/destroy clipping
586 wxOpSetClipping::wxOpSetClipping(int theOp
, double theX1
, double theY1
,
587 double theX2
, double theY2
):wxDrawOp(theOp
)
595 wxDrawOp
*wxOpSetClipping::Copy(wxPseudoMetaFile
*WXUNUSED(newImage
))
597 wxOpSetClipping
*newOp
= new wxOpSetClipping(m_op
, m_x1
, m_y1
, m_x2
, m_y2
);
601 void wxOpSetClipping::Do(wxDC
& dc
, double xoffset
, double yoffset
)
605 case DRAWOP_SET_CLIPPING_RECT
:
607 dc
.SetClippingRegion((long)(m_x1
+ xoffset
), (long)(m_y1
+ yoffset
), (long)(m_x2
+ xoffset
), (long)(m_y2
+ yoffset
));
610 case DRAWOP_DESTROY_CLIPPING_RECT
:
612 dc
.DestroyClippingRegion();
620 void wxOpSetClipping::Scale(double xScale
, double yScale
)
628 void wxOpSetClipping::Translate(double x
, double y
)
635 wxExpr
*wxOpSetClipping::WriteExpr(wxPseudoMetaFile
*WXUNUSED(image
))
637 wxExpr
*expr
= new wxExpr(wxExprList
);
638 expr
->Append(new wxExpr((long)m_op
));
641 case DRAWOP_SET_CLIPPING_RECT
:
643 expr
->Append(new wxExpr(m_x1
));
644 expr
->Append(new wxExpr(m_y1
));
645 expr
->Append(new wxExpr(m_x2
));
646 expr
->Append(new wxExpr(m_y2
));
655 void wxOpSetClipping::ReadExpr(wxPseudoMetaFile
*WXUNUSED(image
), wxExpr
*expr
)
659 case DRAWOP_SET_CLIPPING_RECT
:
661 m_x1
= expr
->Nth(1)->RealValue();
662 m_y1
= expr
->Nth(2)->RealValue();
663 m_x2
= expr
->Nth(3)->RealValue();
664 m_y2
= expr
->Nth(4)->RealValue();
674 * Draw line, rectangle, rounded rectangle, ellipse, point, arc, text
678 wxOpDraw::wxOpDraw(int theOp
, double theX1
, double theY1
, double theX2
, double theY2
,
679 double theRadius
, wxChar
*s
) : wxDrawOp(theOp
)
687 m_radius
= theRadius
;
688 if (s
) m_textString
= copystring(s
);
689 else m_textString
= NULL
;
692 wxOpDraw::~wxOpDraw()
694 if (m_textString
) delete[] m_textString
;
697 wxDrawOp
*wxOpDraw::Copy(wxPseudoMetaFile
*WXUNUSED(newImage
))
699 wxOpDraw
*newOp
= new wxOpDraw(m_op
, m_x1
, m_y1
, m_x2
, m_y2
, m_radius
, m_textString
);
705 void wxOpDraw::Do(wxDC
& dc
, double xoffset
, double yoffset
)
709 case DRAWOP_DRAW_LINE
:
711 dc
.DrawLine(WXROUND(m_x1
+xoffset
), WXROUND(m_y1
+yoffset
), WXROUND(m_x2
+xoffset
), WXROUND(m_y2
+yoffset
));
714 case DRAWOP_DRAW_RECT
:
716 dc
.DrawRectangle(WXROUND(m_x1
+xoffset
), WXROUND(m_y1
+yoffset
), WXROUND(m_x2
), WXROUND(m_y2
));
719 case DRAWOP_DRAW_ROUNDED_RECT
:
721 dc
.DrawRoundedRectangle(WXROUND(m_x1
+xoffset
), WXROUND(m_y1
+yoffset
), WXROUND(m_x2
), WXROUND(m_y2
), m_radius
);
724 case DRAWOP_DRAW_ELLIPSE
:
726 dc
.DrawEllipse(WXROUND(m_x1
+xoffset
), WXROUND(m_y1
+yoffset
), WXROUND(m_x2
), WXROUND(m_y2
));
729 case DRAWOP_DRAW_ARC
:
731 dc
.DrawArc(WXROUND(m_x2
+xoffset
), WXROUND(m_y2
+yoffset
),
732 WXROUND(m_x3
+xoffset
), WXROUND(m_y3
+yoffset
),
733 WXROUND(m_x1
+xoffset
), WXROUND(m_y1
+yoffset
));
736 case DRAWOP_DRAW_ELLIPTIC_ARC
:
738 const double pi
= 3.1415926535897932384626433832795 ;
740 // Convert back to degrees
742 WXROUND(m_x1
+xoffset
), WXROUND(m_y1
+yoffset
),
743 WXROUND(m_x2
), WXROUND(m_y2
),
744 WXROUND(m_x3
*(360.0/(2.0*pi
))), WXROUND(m_y3
*(360.0/(2.0*pi
))));
747 case DRAWOP_DRAW_POINT
:
749 dc
.DrawPoint(WXROUND(m_x1
+xoffset
), WXROUND(m_y1
+yoffset
));
752 case DRAWOP_DRAW_TEXT
:
754 dc
.DrawText(m_textString
, WXROUND(m_x1
+xoffset
), WXROUND(m_y1
+yoffset
));
762 void wxOpDraw::Scale(double scaleX
, double scaleY
)
769 if (m_op
!= DRAWOP_DRAW_ELLIPTIC_ARC
)
778 void wxOpDraw::Translate(double x
, double y
)
785 case DRAWOP_DRAW_LINE
:
791 case DRAWOP_DRAW_ARC
:
799 case DRAWOP_DRAW_ELLIPTIC_ARC
:
808 void wxOpDraw::Rotate(double x
, double y
, double theta
, double sinTheta
, double cosTheta
)
810 double newX1
= m_x1
*cosTheta
- m_y1
*sinTheta
+ x
*(1.0 - cosTheta
) + y
*sinTheta
;
811 double newY1
= m_x1
*sinTheta
+ m_y1
*cosTheta
+ y
*(1.0 - cosTheta
) + x
*sinTheta
;
815 case DRAWOP_DRAW_LINE
:
817 double newX2
= m_x2
*cosTheta
- m_y2
*sinTheta
+ x
*(1.0 - cosTheta
) + y
*sinTheta
;
818 double newY2
= m_x2
*sinTheta
+ m_y2
*cosTheta
+ y
*(1.0 - cosTheta
) + x
*sinTheta
;
826 case DRAWOP_DRAW_RECT
:
827 case DRAWOP_DRAW_ROUNDED_RECT
:
828 case DRAWOP_DRAW_ELLIPTIC_ARC
:
830 // Assume only 0, 90, 180, 270 degree rotations.
831 // oldX1, oldY1 represents the top left corner. Find the
832 // bottom right, and rotate that. Then the width/height is the difference
833 // between x/y values.
834 double oldBottomRightX
= m_x1
+ m_x2
;
835 double oldBottomRightY
= m_y1
+ m_y2
;
836 double newBottomRightX
= oldBottomRightX
*cosTheta
- oldBottomRightY
*sinTheta
+ x
*(1.0 - cosTheta
) + y
*sinTheta
;
837 double newBottomRightY
= oldBottomRightX
*sinTheta
+ oldBottomRightY
*cosTheta
+ y
*(1.0 - cosTheta
) + x
*sinTheta
;
839 // Now find the new top-left, bottom-right coordinates.
840 double minX
= wxMin(newX1
, newBottomRightX
);
841 double minY
= wxMin(newY1
, newBottomRightY
);
842 double maxX
= wxMax(newX1
, newBottomRightX
);
843 double maxY
= wxMax(newY1
, newBottomRightY
);
847 m_x2
= maxX
- minX
; // width
848 m_y2
= maxY
- minY
; // height
850 if (m_op
== DRAWOP_DRAW_ELLIPTIC_ARC
)
852 // Add rotation to angles
859 case DRAWOP_DRAW_ARC
:
861 double newX2
= m_x2
*cosTheta
- m_y2
*sinTheta
+ x
*(1.0 - cosTheta
) + y
*sinTheta
;
862 double newY2
= m_x2
*sinTheta
+ m_y2
*cosTheta
+ y
*(1.0 - cosTheta
) + x
*sinTheta
;
863 double newX3
= m_x3
*cosTheta
- m_y3
*sinTheta
+ x
*(1.0 - cosTheta
) + y
*sinTheta
;
864 double newY3
= m_x3
*sinTheta
+ m_y3
*cosTheta
+ y
*(1.0 - cosTheta
) + x
*sinTheta
;
881 wxExpr
*wxOpDraw::WriteExpr(wxPseudoMetaFile
*WXUNUSED(image
))
883 wxExpr
*expr
= new wxExpr(wxExprList
);
884 expr
->Append(new wxExpr((long)m_op
));
887 case DRAWOP_DRAW_LINE
:
888 case DRAWOP_DRAW_RECT
:
889 case DRAWOP_DRAW_ELLIPSE
:
891 expr
->Append(new wxExpr(m_x1
));
892 expr
->Append(new wxExpr(m_y1
));
893 expr
->Append(new wxExpr(m_x2
));
894 expr
->Append(new wxExpr(m_y2
));
897 case DRAWOP_DRAW_ROUNDED_RECT
:
899 expr
->Append(new wxExpr(m_x1
));
900 expr
->Append(new wxExpr(m_y1
));
901 expr
->Append(new wxExpr(m_x2
));
902 expr
->Append(new wxExpr(m_y2
));
903 expr
->Append(new wxExpr(m_radius
));
906 case DRAWOP_DRAW_POINT
:
908 expr
->Append(new wxExpr(m_x1
));
909 expr
->Append(new wxExpr(m_y1
));
912 case DRAWOP_DRAW_TEXT
:
914 expr
->Append(new wxExpr(m_x1
));
915 expr
->Append(new wxExpr(m_y1
));
916 expr
->Append(new wxExpr(wxExprString
, m_textString
));
919 case DRAWOP_DRAW_ARC
:
920 case DRAWOP_DRAW_ELLIPTIC_ARC
:
922 expr
->Append(new wxExpr(m_x1
));
923 expr
->Append(new wxExpr(m_y1
));
924 expr
->Append(new wxExpr(m_x2
));
925 expr
->Append(new wxExpr(m_y2
));
926 expr
->Append(new wxExpr(m_x3
));
927 expr
->Append(new wxExpr(m_y3
));
938 void wxOpDraw::ReadExpr(wxPseudoMetaFile
*WXUNUSED(image
), wxExpr
*expr
)
942 case DRAWOP_DRAW_LINE
:
943 case DRAWOP_DRAW_RECT
:
944 case DRAWOP_DRAW_ELLIPSE
:
946 m_x1
= expr
->Nth(1)->RealValue();
947 m_y1
= expr
->Nth(2)->RealValue();
948 m_x2
= expr
->Nth(3)->RealValue();
949 m_y2
= expr
->Nth(4)->RealValue();
952 case DRAWOP_DRAW_ROUNDED_RECT
:
954 m_x1
= expr
->Nth(1)->RealValue();
955 m_y1
= expr
->Nth(2)->RealValue();
956 m_x2
= expr
->Nth(3)->RealValue();
957 m_y2
= expr
->Nth(4)->RealValue();
958 m_radius
= expr
->Nth(5)->RealValue();
961 case DRAWOP_DRAW_POINT
:
963 m_x1
= expr
->Nth(1)->RealValue();
964 m_y1
= expr
->Nth(2)->RealValue();
967 case DRAWOP_DRAW_TEXT
:
969 m_x1
= expr
->Nth(1)->RealValue();
970 m_y1
= expr
->Nth(2)->RealValue();
971 wxString
str(expr
->Nth(3)->StringValue());
972 m_textString
= copystring(str
);
975 case DRAWOP_DRAW_ARC
:
976 case DRAWOP_DRAW_ELLIPTIC_ARC
:
978 m_x1
= expr
->Nth(1)->RealValue();
979 m_y1
= expr
->Nth(2)->RealValue();
980 m_x2
= expr
->Nth(3)->RealValue();
981 m_y2
= expr
->Nth(4)->RealValue();
982 m_x3
= expr
->Nth(5)->RealValue();
983 m_y3
= expr
->Nth(6)->RealValue();
995 * Draw polygon, polyline, spline
999 wxOpPolyDraw::wxOpPolyDraw(int theOp
, int n
, wxRealPoint
*thePoints
):wxDrawOp(theOp
)
1002 m_points
= thePoints
;
1005 wxOpPolyDraw::~wxOpPolyDraw()
1010 wxDrawOp
*wxOpPolyDraw::Copy(wxPseudoMetaFile
*WXUNUSED(newImage
))
1012 wxRealPoint
*newPoints
= new wxRealPoint
[m_noPoints
];
1013 for (int i
= 0; i
< m_noPoints
; i
++)
1015 newPoints
[i
].x
= m_points
[i
].x
;
1016 newPoints
[i
].y
= m_points
[i
].y
;
1018 wxOpPolyDraw
*newOp
= new wxOpPolyDraw(m_op
, m_noPoints
, newPoints
);
1022 void wxOpPolyDraw::Do(wxDC
& dc
, double xoffset
, double yoffset
)
1026 case DRAWOP_DRAW_POLYLINE
:
1028 wxPoint
*actualPoints
= new wxPoint
[m_noPoints
];
1030 for (i
= 0; i
< m_noPoints
; i
++)
1032 actualPoints
[i
].x
= WXROUND(m_points
[i
].x
);
1033 actualPoints
[i
].y
= WXROUND(m_points
[i
].y
);
1036 dc
.DrawLines(m_noPoints
, actualPoints
, WXROUND(xoffset
), WXROUND(yoffset
));
1038 delete[] actualPoints
;
1041 case DRAWOP_DRAW_POLYGON
:
1043 wxPoint
*actualPoints
= new wxPoint
[m_noPoints
];
1045 for (i
= 0; i
< m_noPoints
; i
++)
1047 actualPoints
[i
].x
= WXROUND(m_points
[i
].x
);
1048 actualPoints
[i
].y
= WXROUND(m_points
[i
].y
);
1051 dc
.DrawPolygon(m_noPoints
, actualPoints
, WXROUND(xoffset
), WXROUND(yoffset
));
1053 delete[] actualPoints
;
1056 case DRAWOP_DRAW_SPLINE
:
1058 wxPoint
*actualPoints
= new wxPoint
[m_noPoints
];
1060 for (i
= 0; i
< m_noPoints
; i
++)
1062 actualPoints
[i
].x
= WXROUND(m_points
[i
].x
);
1063 actualPoints
[i
].y
= WXROUND(m_points
[i
].y
);
1066 dc
.DrawSpline(m_noPoints
, actualPoints
); // no offsets in DrawSpline // , xoffset, yoffset);
1068 delete[] actualPoints
;
1076 void wxOpPolyDraw::Scale(double scaleX
, double scaleY
)
1078 for (int i
= 0; i
< m_noPoints
; i
++)
1080 m_points
[i
].x
*= scaleX
;
1081 m_points
[i
].y
*= scaleY
;
1085 void wxOpPolyDraw::Translate(double x
, double y
)
1087 for (int i
= 0; i
< m_noPoints
; i
++)
1094 void wxOpPolyDraw::Rotate(double x
, double y
, double WXUNUSED(theta
), double sinTheta
, double cosTheta
)
1096 for (int i
= 0; i
< m_noPoints
; i
++)
1098 double x1
= m_points
[i
].x
;
1099 double y1
= m_points
[i
].y
;
1100 m_points
[i
].x
= x1
*cosTheta
- y1
*sinTheta
+ x
*(1.0 - cosTheta
) + y
*sinTheta
;
1101 m_points
[i
].y
= x1
*sinTheta
+ y1
*cosTheta
+ y
*(1.0 - cosTheta
) + x
*sinTheta
;
1106 wxExpr
*wxOpPolyDraw::WriteExpr(wxPseudoMetaFile
*WXUNUSED(image
))
1108 wxExpr
*expr
= new wxExpr(wxExprList
);
1109 expr
->Append(new wxExpr((long)m_op
));
1110 expr
->Append(new wxExpr((long)m_noPoints
));
1119 * Store each coordinate pair in a hex string to save space.
1120 * E.g. "1B9080CD". 4 hex digits per coordinate pair.
1124 for (int i
= 0; i
< m_noPoints
; i
++)
1126 long signedX
= (long)(m_points
[i
].x
*100.0);
1127 long signedY
= (long)(m_points
[i
].y
*100.0);
1129 // Scale to 0 -> 64K
1130 long unSignedX
= (long)(signedX
+ 32767.0);
1131 long unSignedY
= (long)(signedY
+ 32767.0);
1133 // IntToHex((unsigned int)signedX, buf2);
1134 // IntToHex((unsigned int)signedY, buf3);
1135 IntToHex((int)unSignedX
, buf2
);
1136 IntToHex((int)unSignedY
, buf3
);
1138 // Don't overrun the buffer
1141 wxStrcat(oglBuffer
, buf2
);
1142 wxStrcat(oglBuffer
, buf3
);
1145 expr
->Append(new wxExpr(wxExprString
, oglBuffer
));
1149 void wxOpPolyDraw::ReadExpr(wxPseudoMetaFile
*WXUNUSED(image
), wxExpr
*expr
)
1151 m_noPoints
= (int)expr
->Nth(1)->IntegerValue();
1156 m_points
= new wxRealPoint
[m_noPoints
];
1159 wxString hexString
= expr
->Nth(2)->StringValue();
1160 while (i
< m_noPoints
)
1162 buf1
[0] = hexString
[(size_t)bufPtr
];
1163 buf1
[1] = hexString
[(size_t)(bufPtr
+ 1)];
1164 buf1
[2] = hexString
[(size_t)(bufPtr
+ 2)];
1165 buf1
[3] = hexString
[(size_t)(bufPtr
+ 3)];
1168 buf2
[0] = hexString
[(size_t)(bufPtr
+ 4)];
1169 buf2
[1] = hexString
[(size_t)(bufPtr
+ 5)];
1170 buf2
[2] = hexString
[(size_t)(bufPtr
+ 6)];
1171 buf2
[3] = hexString
[(size_t)(bufPtr
+ 7)];
1176 // int signedX = (signed int)HexToInt(buf1);
1177 // int signedY = (signed int)HexToInt(buf2);
1178 long unSignedX
= HexToInt(buf1
);
1179 long unSignedY
= HexToInt(buf2
);
1180 // Scale -32K -> +32K
1181 long signedX
= unSignedX
- 32767;
1182 long signedY
= unSignedY
- 32767;
1183 #if defined(__WXMSW__) && 0
1184 int testX
= (signed int)unSignedX
;
1185 int testY
= (signed int)unSignedY
;
1188 m_points
[i
].x
= (double)(signedX
/ 100.0);
1189 m_points
[i
].y
= (double)(signedY
/ 100.0);
1196 // Draw an outline using the current operation.
1197 bool wxOpPolyDraw::OnDrawOutline(wxDC
& dc
, double x
, double y
, double w
, double h
, double oldW
, double oldH
)
1199 dc
.SetBrush(* wxTRANSPARENT_BRUSH
);
1201 // Multiply all points by proportion of new size to old size
1202 double x_proportion
= (double)(fabs(w
/oldW
));
1203 double y_proportion
= (double)(fabs(h
/oldH
));
1206 wxPoint
*intPoints
= new wxPoint
[n
];
1208 for (i
= 0; i
< n
; i
++)
1210 intPoints
[i
].x
= WXROUND (x_proportion
* m_points
[i
].x
);
1211 intPoints
[i
].y
= WXROUND (y_proportion
* m_points
[i
].y
);
1213 dc
.DrawPolygon(n
, intPoints
, (long) x
, (long) y
);
1218 // Assume (x1, y1) is centre of box (most generally, line end at box)
1219 bool wxOpPolyDraw::GetPerimeterPoint(double x1
, double y1
,
1220 double x2
, double y2
,
1221 double *x3
, double *y3
,
1222 double xOffset
, double yOffset
,
1227 // First check for situation where the line is vertical,
1228 // and we would want to connect to a point on that vertical --
1229 // oglFindEndForPolyline can't cope with this (the arrow
1230 // gets drawn to the wrong place).
1231 if ((attachmentMode
== ATTACHMENT_MODE_NONE
) && (x1
== x2
))
1233 // Look for the point we'd be connecting to. This is
1236 for (i
= 0; i
< n
; i
++)
1238 wxRealPoint
*point
= & (m_points
[i
]);
1239 if (point
->x
== 0.0)
1241 if ((y2
> y1
) && (point
->y
> 0.0))
1243 *x3
= point
->x
+ xOffset
;
1244 *y3
= point
->y
+ yOffset
;
1247 else if ((y2
< y1
) && (point
->y
< 0.0))
1249 *x3
= point
->x
+ xOffset
;
1250 *y3
= point
->y
+ yOffset
;
1257 double *xpoints
= new double[n
];
1258 double *ypoints
= new double[n
];
1260 for (int i
= 0; i
< n
; i
++)
1262 wxRealPoint
*point
= & (m_points
[i
]);
1263 xpoints
[i
] = point
->x
+ xOffset
;
1264 ypoints
[i
] = point
->y
+ yOffset
;
1267 oglFindEndForPolyline(n
, xpoints
, ypoints
,
1268 x1
, y1
, x2
, y2
, x3
, y3
);
1282 static char hexArray
[] = {
1283 _T('0'), _T('1'), _T('2'), _T('3'), _T('4'), _T('5'), _T('6'), _T('7'),
1284 _T('8'), _T('9'), _T('A'), _T('B'), _T('C'), _T('D'), _T('E'), _T('F') };
1286 // Convert unsigned 16-bit integer to 4-character hex string
1287 static void IntToHex(unsigned int dec
, wxChar
*buf
)
1289 int digit1
= (int)(dec
/4096);
1290 int digit2
= (int)((dec
- (digit1
*4096))/256);
1291 int digit3
= (int)((dec
- (digit1
*4096) - (digit2
*256))/16);
1292 int digit4
= dec
- (digit1
*4096 + digit2
*256 + digit3
*16);
1294 buf
[0] = hexArray
[digit1
];
1295 buf
[1] = hexArray
[digit2
];
1296 buf
[2] = hexArray
[digit3
];
1297 buf
[3] = hexArray
[digit4
];
1301 // One hex digit to decimal number
1302 static int HexToInt1(wxChar hex
)
1339 // handling this default outside switch removes warning under Borland
1348 // 4-digit hex string to unsigned integer
1349 static unsigned long HexToInt(wxChar
*buf
)
1351 long d1
= (long)(HexToInt1(buf
[0])*4096.0) ;
1352 long d2
= (long)(HexToInt1(buf
[1])*256.0) ;
1353 long d3
= (long)(HexToInt1(buf
[2])*16.0) ;
1354 long d4
= (long)(HexToInt1(buf
[3])) ;
1355 unsigned long n
= (long)(d1
+ d2
+ d3
+ d4
) ;
1360 * wxPseudo meta-file
1364 IMPLEMENT_DYNAMIC_CLASS(wxPseudoMetaFile
, wxObject
)
1366 wxPseudoMetaFile::wxPseudoMetaFile()
1368 m_currentRotation
= 0;
1369 m_rotateable
= TRUE
;
1372 m_outlinePen
= NULL
;
1377 wxPseudoMetaFile::wxPseudoMetaFile(wxPseudoMetaFile
& mf
)
1382 wxPseudoMetaFile::~wxPseudoMetaFile()
1387 void wxPseudoMetaFile::Clear()
1389 wxNode
*node
= m_ops
.GetFirst();
1392 wxDrawOp
*op
= (wxDrawOp
*)node
->GetData();
1394 node
= node
->GetNext();
1397 m_gdiObjects
.Clear();
1398 m_outlineColours
.Clear();
1399 m_fillColours
.Clear();
1403 void wxPseudoMetaFile::Draw(wxDC
& dc
, double xoffset
, double yoffset
)
1405 wxNode
*node
= m_ops
.GetFirst();
1408 wxDrawOp
*op
= (wxDrawOp
*)node
->GetData();
1409 op
->Do(dc
, xoffset
, yoffset
);
1410 node
= node
->GetNext();
1414 void wxPseudoMetaFile::Scale(double sx
, double sy
)
1416 wxNode
*node
= m_ops
.GetFirst();
1419 wxDrawOp
*op
= (wxDrawOp
*)node
->GetData();
1421 node
= node
->GetNext();
1427 void wxPseudoMetaFile::Translate(double x
, double y
)
1429 wxNode
*node
= m_ops
.GetFirst();
1432 wxDrawOp
*op
= (wxDrawOp
*)node
->GetData();
1433 op
->Translate(x
, y
);
1434 node
= node
->GetNext();
1438 void wxPseudoMetaFile::Rotate(double x
, double y
, double theta
)
1440 double theta1
= theta
-m_currentRotation
;
1441 if (theta1
== 0.0) return;
1442 double cosTheta
= (double)cos(theta1
);
1443 double sinTheta
= (double)sin(theta1
);
1445 wxNode
*node
= m_ops
.GetFirst();
1448 wxDrawOp
*op
= (wxDrawOp
*)node
->GetData();
1449 op
->Rotate(x
, y
, theta
, sinTheta
, cosTheta
);
1450 node
= node
->GetNext();
1452 m_currentRotation
= theta
;
1456 void wxPseudoMetaFile::WriteAttributes(wxExpr
*clause
, int whichAngle
)
1459 widthStr
.Printf(wxT("meta_width%d"), whichAngle
);
1462 heightStr
.Printf(wxT("meta_height%d"), whichAngle
);
1464 wxString outlineStr
;
1465 outlineStr
.Printf(wxT("outline_op%d"), whichAngle
);
1467 wxString rotateableStr
;
1468 rotateableStr
.Printf(wxT("meta_rotateable%d"), whichAngle
);
1470 // Write width and height
1471 clause
->AddAttributeValue(widthStr
, m_width
);
1472 clause
->AddAttributeValue(heightStr
, m_height
);
1473 clause
->AddAttributeValue(rotateableStr
, (long)m_rotateable
);
1474 clause
->AddAttributeValue(outlineStr
, (long)m_outlineOp
);
1476 // Write GDI objects
1479 wxNode
*node
= m_gdiObjects
.GetFirst();
1482 wxSprintf(buf
, _T("gdi%d_%d"), whichAngle
, i
);
1483 wxObject
*obj
= (wxObject
*)node
->GetData();
1484 wxExpr
*expr
= NULL
;
1487 if (obj
->IsKindOf(CLASSINFO(wxPen
)))
1489 wxPen
*thePen
= (wxPen
*)obj
;
1490 expr
= new wxExpr(wxExprList
);
1491 expr
->Append(new wxExpr((long)gyTYPE_PEN
));
1492 expr
->Append(new wxExpr((long)thePen
->GetWidth()));
1493 expr
->Append(new wxExpr((long)thePen
->GetStyle()));
1494 expr
->Append(new wxExpr((long)thePen
->GetColour().Red()));
1495 expr
->Append(new wxExpr((long)thePen
->GetColour().Green()));
1496 expr
->Append(new wxExpr((long)thePen
->GetColour().Blue()));
1498 else if (obj
->IsKindOf(CLASSINFO(wxBrush
)))
1500 wxBrush
*theBrush
= (wxBrush
*)obj
;
1501 expr
= new wxExpr(wxExprList
);
1502 expr
->Append(new wxExpr((long)gyTYPE_BRUSH
));
1503 expr
->Append(new wxExpr((long)theBrush
->GetStyle()));
1504 expr
->Append(new wxExpr((long)theBrush
->GetColour().Red()));
1505 expr
->Append(new wxExpr((long)theBrush
->GetColour().Green()));
1506 expr
->Append(new wxExpr((long)theBrush
->GetColour().Blue()));
1508 else if (obj
->IsKindOf(CLASSINFO(wxFont
)))
1510 wxFont
*theFont
= (wxFont
*)obj
;
1511 expr
= new wxExpr(wxExprList
);
1512 expr
->Append(new wxExpr((long)gyTYPE_FONT
));
1513 expr
->Append(new wxExpr((long)theFont
->GetPointSize()));
1514 expr
->Append(new wxExpr((long)theFont
->GetFamily()));
1515 expr
->Append(new wxExpr((long)theFont
->GetStyle()));
1516 expr
->Append(new wxExpr((long)theFont
->GetWeight()));
1517 expr
->Append(new wxExpr((long)theFont
->GetUnderlined()));
1522 // If no recognised GDI object, append a place holder anyway.
1523 expr
= new wxExpr(wxExprList
);
1524 expr
->Append(new wxExpr((long)0));
1529 clause
->AddAttributeValue(buf
, expr
);
1532 node
= node
->GetNext();
1535 // Write drawing operations
1537 node
= m_ops
.GetFirst();
1540 wxSprintf(buf
, _T("op%d_%d"), whichAngle
, i
);
1541 wxDrawOp
*op
= (wxDrawOp
*)node
->GetData();
1542 wxExpr
*expr
= op
->WriteExpr(this);
1545 clause
->AddAttributeValue(buf
, expr
);
1548 node
= node
->GetNext();
1551 // Write outline and fill GDI op lists (if any)
1552 if (m_outlineColours
.GetCount() > 0)
1554 wxExpr
*outlineExpr
= new wxExpr(wxExprList
);
1555 node
= m_outlineColours
.GetFirst();
1558 outlineExpr
->Append(new wxExpr((long)node
->GetData()));
1559 node
= node
->GetNext();
1561 wxString outlineObjectsStr
;
1562 outlineObjectsStr
.Printf(wxT("outline_objects%d"), whichAngle
);
1564 clause
->AddAttributeValue(outlineObjectsStr
, outlineExpr
);
1566 if (m_fillColours
.GetCount() > 0)
1568 wxExpr
*fillExpr
= new wxExpr(wxExprList
);
1569 node
= m_fillColours
.GetFirst();
1572 fillExpr
->Append(new wxExpr((long)node
->GetData()));
1573 node
= node
->GetNext();
1575 wxString fillObjectsStr
;
1576 fillObjectsStr
.Printf(wxT("fill_objects%d"), whichAngle
);
1578 clause
->AddAttributeValue(fillObjectsStr
, fillExpr
);
1583 void wxPseudoMetaFile::ReadAttributes(wxExpr
*clause
, int whichAngle
)
1586 widthStr
.Printf(wxT("meta_width%d"), whichAngle
);
1589 heightStr
.Printf(wxT("meta_height%d"), whichAngle
);
1591 wxString outlineStr
;
1592 outlineStr
.Printf(wxT("outline_op%d"), whichAngle
);
1594 wxString rotateableStr
;
1595 rotateableStr
.Printf(wxT("meta_rotateable%d"), whichAngle
);
1597 clause
->GetAttributeValue(widthStr
, m_width
);
1598 clause
->GetAttributeValue(heightStr
, m_height
);
1599 clause
->GetAttributeValue(outlineStr
, m_outlineOp
);
1601 int iVal
= (int) m_rotateable
;
1602 clause
->GetAttributeValue(rotateableStr
, iVal
);
1603 m_rotateable
= (iVal
!= 0);
1608 bool keepGoing
= TRUE
;
1611 wxSprintf(buf
, _T("gdi%d_%d"), whichAngle
, i
);
1612 wxExpr
*expr
= NULL
;
1613 clause
->GetAttributeValue(buf
, &expr
);
1620 wxExpr
*idExpr
= expr
->Nth(0);
1621 switch (idExpr
->IntegerValue())
1625 int penWidth
= (int)expr
->Nth(1)->IntegerValue();
1626 int penStyle
= (int)expr
->Nth(2)->IntegerValue();
1627 int penRed
= (int)expr
->Nth(3)->IntegerValue();
1628 int penGreen
= (int)expr
->Nth(4)->IntegerValue();
1629 int penBlue
= (int)expr
->Nth(5)->IntegerValue();
1630 wxColour
col(penRed
, penGreen
, penBlue
);
1631 wxPen
*p
= wxThePenList
->FindOrCreatePen(col
, penWidth
, penStyle
);
1634 m_gdiObjects
.Append(p
);
1639 int brushStyle
= (int)expr
->Nth(1)->IntegerValue();
1640 int brushRed
= (int)expr
->Nth(2)->IntegerValue();
1641 int brushGreen
= (int)expr
->Nth(3)->IntegerValue();
1642 int brushBlue
= (int)expr
->Nth(4)->IntegerValue();
1643 wxColour
col(brushRed
, brushGreen
, brushBlue
);
1644 wxBrush
*b
= wxTheBrushList
->FindOrCreateBrush(col
, brushStyle
);
1647 m_gdiObjects
.Append(b
);
1652 int fontPointSize
= (int)expr
->Nth(1)->IntegerValue();
1653 int fontFamily
= (int)expr
->Nth(2)->IntegerValue();
1654 int fontStyle
= (int)expr
->Nth(3)->IntegerValue();
1655 int fontWeight
= (int)expr
->Nth(4)->IntegerValue();
1656 int fontUnderlined
= (int)expr
->Nth(5)->IntegerValue();
1657 m_gdiObjects
.Append(wxTheFontList
->FindOrCreateFont(fontPointSize
,
1658 fontFamily
, fontStyle
, fontWeight
, (fontUnderlined
!= 0)));
1664 m_gdiObjects
.Append(NULL
);
1672 // Now read in the operations
1677 wxSprintf(buf
, _T("op%d_%d"), whichAngle
, i
);
1678 wxExpr
*expr
= NULL
;
1679 clause
->GetAttributeValue(buf
, &expr
);
1686 wxExpr
*idExpr
= expr
->Nth(0);
1687 int opId
= (int)idExpr
->IntegerValue();
1690 case DRAWOP_SET_PEN
:
1691 case DRAWOP_SET_BRUSH
:
1692 case DRAWOP_SET_FONT
:
1693 case DRAWOP_SET_TEXT_COLOUR
:
1694 case DRAWOP_SET_BK_COLOUR
:
1695 case DRAWOP_SET_BK_MODE
:
1697 wxOpSetGDI
*theOp
= new wxOpSetGDI(opId
, this, 0);
1698 theOp
->ReadExpr(this, expr
);
1699 m_ops
.Append(theOp
);
1703 case DRAWOP_SET_CLIPPING_RECT
:
1704 case DRAWOP_DESTROY_CLIPPING_RECT
:
1706 wxOpSetClipping
*theOp
= new wxOpSetClipping(opId
, 0.0, 0.0, 0.0, 0.0);
1707 theOp
->ReadExpr(this, expr
);
1708 m_ops
.Append(theOp
);
1712 case DRAWOP_DRAW_LINE
:
1713 case DRAWOP_DRAW_RECT
:
1714 case DRAWOP_DRAW_ROUNDED_RECT
:
1715 case DRAWOP_DRAW_ELLIPSE
:
1716 case DRAWOP_DRAW_POINT
:
1717 case DRAWOP_DRAW_ARC
:
1718 case DRAWOP_DRAW_TEXT
:
1720 wxOpDraw
*theOp
= new wxOpDraw(opId
, 0.0, 0.0, 0.0, 0.0);
1721 theOp
->ReadExpr(this, expr
);
1722 m_ops
.Append(theOp
);
1725 case DRAWOP_DRAW_SPLINE
:
1726 case DRAWOP_DRAW_POLYLINE
:
1727 case DRAWOP_DRAW_POLYGON
:
1729 wxOpPolyDraw
*theOp
= new wxOpPolyDraw(opId
, 0, NULL
);
1730 theOp
->ReadExpr(this, expr
);
1731 m_ops
.Append(theOp
);
1741 wxString outlineObjectsStr
;
1742 outlineObjectsStr
.Printf(wxT("outline_objects%d"), whichAngle
);
1744 // Now read in the list of outline and fill operations, if any
1745 wxExpr
*expr1
= clause
->AttributeValue(outlineObjectsStr
);
1748 wxExpr
*eachExpr
= expr1
->GetFirst();
1751 m_outlineColours
.Append((wxObject
*)eachExpr
->IntegerValue());
1752 eachExpr
= eachExpr
->GetNext();
1756 wxString fillObjectsStr
;
1757 fillObjectsStr
.Printf(wxT("fill_objects%d"), whichAngle
);
1759 expr1
= clause
->AttributeValue(fillObjectsStr
);
1762 wxExpr
*eachExpr
= expr1
->GetFirst();
1765 m_fillColours
.Append((wxObject
*)eachExpr
->IntegerValue());
1766 eachExpr
= eachExpr
->GetNext();
1772 // Does the copying for this object
1773 void wxPseudoMetaFile::Copy(wxPseudoMetaFile
& copy
)
1777 copy
.m_currentRotation
= m_currentRotation
;
1778 copy
.m_width
= m_width
;
1779 copy
.m_height
= m_height
;
1780 copy
.m_rotateable
= m_rotateable
;
1781 copy
.m_fillBrush
= m_fillBrush
;
1782 copy
.m_outlinePen
= m_outlinePen
;
1783 copy
.m_outlineOp
= m_outlineOp
;
1785 // Copy the GDI objects
1786 wxNode
*node
= m_gdiObjects
.GetFirst();
1789 wxObject
*obj
= (wxObject
*)node
->GetData();
1790 copy
.m_gdiObjects
.Append(obj
);
1791 node
= node
->GetNext();
1794 // Copy the operations
1795 node
= m_ops
.GetFirst();
1798 wxDrawOp
*op
= (wxDrawOp
*)node
->GetData();
1799 copy
.m_ops
.Append(op
->Copy(©
));
1800 node
= node
->GetNext();
1803 // Copy the outline/fill operations
1804 node
= m_outlineColours
.GetFirst();
1807 copy
.m_outlineColours
.Append((wxObject
*)node
->GetData());
1808 node
= node
->GetNext();
1810 node
= m_fillColours
.GetFirst();
1813 copy
.m_fillColours
.Append((wxObject
*)node
->GetData());
1814 node
= node
->GetNext();
1819 * Pass size of existing image; scale height to
1820 * fit width and return new width and height.
1824 bool wxPseudoMetaFile::LoadFromMetaFile(const wxString
& filename
, double *rwidth
, double *rheight
)
1826 if (!wxFileExists(filename
))
1829 wxXMetaFile
*metaFile
= new wxXMetaFile
;
1831 if (!metaFile
->ReadFile(filename
))
1840 // Convert from metafile records to wxDrawnShape records
1841 wxNode
*node
= metaFile
->metaRecords
.GetFirst();
1844 wxMetaRecord
*record
= (wxMetaRecord
*)node
->GetData();
1845 switch (record
->metaFunction
)
1847 case META_SETBKCOLOR
:
1849 wxOpSetGDI
*op
= new wxOpSetGDI(DRAWOP_SET_BK_COLOUR
, this, 0);
1850 op
->m_r
= (unsigned char)record
->param1
;
1851 op
->m_g
= (unsigned char)record
->param2
;
1852 op
->m_b
= (unsigned char)record
->param3
;
1856 case META_SETBKMODE
:
1858 wxOpSetGDI
*op
= new wxOpSetGDI(DRAWOP_SET_BK_MODE
, this, 0, (int)record
->param1
);
1862 case META_SETMAPMODE
:
1866 // case META_SETROP2:
1867 // case META_SETRELABS:
1868 // case META_SETPOLYFILLMODE:
1869 // case META_SETSTRETCHBLTMODE:
1870 // case META_SETTEXTCHAREXTRA:
1871 case META_SETTEXTCOLOR
:
1873 wxOpSetGDI
*op
= new wxOpSetGDI(DRAWOP_SET_TEXT_COLOUR
, this, 0);
1874 op
->m_r
= (unsigned char)record
->param1
;
1875 op
->m_g
= (unsigned char)record
->param2
;
1876 op
->m_b
= (unsigned char)record
->param3
;
1880 // case META_SETTEXTJUSTIFICATION:
1881 // case META_SETWINDOWORG:
1882 // case META_SETWINDOWEXT:
1883 // case META_SETVIEWPORTORG:
1884 // case META_SETVIEWPORTEXT:
1885 // case META_OFFSETWINDOWORG:
1886 // case META_SCALEWINDOWEXT:
1887 // case META_OFFSETVIEWPORTORG:
1888 // case META_SCALEVIEWPORTEXT:
1891 wxOpDraw
*op
= new wxOpDraw(DRAWOP_DRAW_LINE
, (double)lastX
, (double)lastY
,
1892 (double)record
->param1
, (double)record
->param2
);
1898 lastX
= (double)record
->param1
;
1899 lastY
= (double)record
->param2
;
1902 case META_EXCLUDECLIPRECT
:
1905 wxMetaRecord *rec = new wxMetaRecord(META_EXCLUDECLIPRECT);
1906 rec->param4 = getshort(handle); // m_y2
1907 rec->param3 = getshort(handle); // x2
1908 rec->param2 = getshort(handle); // y1
1909 rec->param1 = getshort(handle); // x1
1913 case META_INTERSECTCLIPRECT
:
1916 rec->param4 = getshort(handle); // m_y2
1917 rec->param3 = getshort(handle); // x2
1918 rec->param2 = getshort(handle); // y1
1919 rec->param1 = getshort(handle); // x1
1923 // case META_ARC: // DO!!!
1926 wxOpDraw
*op
= new wxOpDraw(DRAWOP_DRAW_ELLIPSE
,
1927 (double)record
->param1
, (double)record
->param2
,
1928 (double)(record
->param3
- record
->param1
),
1929 (double)(record
->param4
- record
->param2
));
1933 // case META_FLOODFILL:
1934 // case META_PIE: // DO!!!
1935 case META_RECTANGLE
:
1937 wxOpDraw
*op
= new wxOpDraw(DRAWOP_DRAW_RECT
,
1938 (double)record
->param1
, (double)record
->param2
,
1939 (double)(record
->param3
- record
->param1
),
1940 (double)(record
->param4
- record
->param2
));
1944 case META_ROUNDRECT
:
1946 wxOpDraw
*op
= new wxOpDraw(DRAWOP_DRAW_ROUNDED_RECT
,
1947 (double)record
->param1
, (double)record
->param2
,
1948 (double)(record
->param3
- record
->param1
),
1949 (double)(record
->param4
- record
->param2
), (double)record
->param5
);
1953 // case META_PATBLT:
1954 // case META_SAVEDC:
1957 wxOpDraw
*op
= new wxOpDraw(DRAWOP_DRAW_POINT
,
1958 (double)record
->param1
, (double)record
->param2
,
1961 // SHOULD SET THE COLOUR - SET PEN?
1962 // rec->param3 = getint(handle); // COLORREF
1966 // case META_OFFSETCLIPRGN:
1969 wxOpDraw
*op
= new wxOpDraw(DRAWOP_DRAW_TEXT
,
1970 (double)record
->param1
, (double)record
->param2
,
1971 0.0, 0.0, 0.0, record
->stringParam
);
1975 // case META_BITBLT:
1976 // case META_STRETCHBLT:
1979 int n
= (int)record
->param1
;
1980 wxRealPoint
*newPoints
= new wxRealPoint
[n
];
1981 for (int i
= 0; i
< n
; i
++)
1983 newPoints
[i
].x
= record
->points
[i
].x
;
1984 newPoints
[i
].y
= record
->points
[i
].y
;
1987 wxOpPolyDraw
*op
= new wxOpPolyDraw(DRAWOP_DRAW_POLYGON
, n
, newPoints
);
1993 int n
= (int)record
->param1
;
1994 wxRealPoint
*newPoints
= new wxRealPoint
[n
];
1995 for (int i
= 0; i
< n
; i
++)
1997 newPoints
[i
].x
= record
->points
[i
].x
;
1998 newPoints
[i
].y
= record
->points
[i
].y
;
2001 wxOpPolyDraw
*op
= new wxOpPolyDraw(DRAWOP_DRAW_POLYLINE
, n
, newPoints
);
2005 // case META_ESCAPE:
2006 // case META_RESTOREDC:
2007 // case META_FILLREGION:
2008 // case META_FRAMEREGION:
2009 // case META_INVERTREGION:
2010 // case META_PAINTREGION:
2011 // case META_SELECTCLIPREGION: // DO THIS!
2012 case META_SELECTOBJECT
:
2014 // The pen, brush etc. has already been created when the metafile
2015 // was read in, so we don't create it - we set it.
2016 wxNode
*recNode
= metaFile
->gdiObjects
.Item((int)record
->param2
);
2019 wxMetaRecord
*gdiRec
= (wxMetaRecord
*)recNode
->GetData();
2020 if (gdiRec
&& (gdiRec
->param1
!= 0))
2022 wxObject
*obj
= (wxObject
*)gdiRec
->param1
;
2023 if (obj
->IsKindOf(CLASSINFO(wxPen
)))
2025 wxOpSetGDI
*op
= new wxOpSetGDI(DRAWOP_SET_PEN
, this, (int)record
->param2
);
2028 else if (obj
->IsKindOf(CLASSINFO(wxBrush
)))
2030 wxOpSetGDI
*op
= new wxOpSetGDI(DRAWOP_SET_BRUSH
, this, (int)record
->param2
);
2033 else if (obj
->IsKindOf(CLASSINFO(wxFont
)))
2035 wxOpSetGDI
*op
= new wxOpSetGDI(DRAWOP_SET_FONT
, this, (int)record
->param2
);
2042 // case META_SETTEXTALIGN:
2043 // case META_DRAWTEXT:
2045 // case META_SETMAPPERFLAGS:
2046 // case META_EXTTEXTOUT:
2047 // case META_SETDIBTODEV:
2048 // case META_SELECTPALETTE:
2049 // case META_REALIZEPALETTE:
2050 // case META_ANIMATEPALETTE:
2051 // case META_SETPALENTRIES:
2052 // case META_POLYPOLYGON:
2053 // case META_RESIZEPALETTE:
2054 // case META_DIBBITBLT:
2055 // case META_DIBSTRETCHBLT:
2056 case META_DIBCREATEPATTERNBRUSH
:
2059 m_gdiObjects
.Append(NULL
);
2062 // case META_STRETCHDIB:
2063 // case META_EXTFLOODFILL:
2064 // case META_RESETDC:
2065 // case META_STARTDOC:
2066 // case META_STARTPAGE:
2067 // case META_ENDPAGE:
2068 // case META_ABORTDOC:
2069 // case META_ENDDOC:
2070 // case META_DELETEOBJECT: // DO!!
2071 case META_CREATEPALETTE
:
2074 m_gdiObjects
.Append(NULL
);
2077 case META_CREATEBRUSH
:
2080 m_gdiObjects
.Append(NULL
);
2083 case META_CREATEPATTERNBRUSH
:
2086 m_gdiObjects
.Append(NULL
);
2089 case META_CREATEPENINDIRECT
:
2091 // The pen is created when the metafile is read in.
2092 // We keep track of all the GDI objects needed for this
2093 // image so when reading the wxDrawnShape from file,
2094 // we can read in all the GDI objects, then refer
2095 // to them by an index starting from zero thereafter.
2096 m_gdiObjects
.Append((wxObject
*)record
->param1
);
2099 case META_CREATEFONTINDIRECT
:
2101 m_gdiObjects
.Append((wxObject
*)record
->param1
);
2104 case META_CREATEBRUSHINDIRECT
:
2106 // Don't have to do anything here: the pen is created
2107 // when the metafile is read in.
2108 m_gdiObjects
.Append((wxObject
*)record
->param1
);
2111 case META_CREATEBITMAPINDIRECT
:
2114 m_gdiObjects
.Append(NULL
);
2117 case META_CREATEBITMAP
:
2120 m_gdiObjects
.Append(NULL
);
2123 case META_CREATEREGION
:
2126 m_gdiObjects
.Append(NULL
);
2134 node
= node
->GetNext();
2136 double actualWidth
= (double)fabs(metaFile
->right
- metaFile
->left
);
2137 double actualHeight
= (double)fabs(metaFile
->bottom
- metaFile
->top
);
2139 double initialScaleX
= 1.0;
2140 double initialScaleY
= 1.0;
2142 double xoffset
, yoffset
;
2144 // Translate so origin is at centre of rectangle
2145 if (metaFile
->bottom
> metaFile
->top
)
2146 yoffset
= - (double)((metaFile
->bottom
- metaFile
->top
)/2.0);
2148 yoffset
= - (double)((metaFile
->top
- metaFile
->bottom
)/2.0);
2150 if (metaFile
->right
> metaFile
->left
)
2151 xoffset
= - (double)((metaFile
->right
- metaFile
->left
)/2.0);
2153 xoffset
= - (double)((metaFile
->left
- metaFile
->right
)/2.0);
2155 Translate(xoffset
, yoffset
);
2157 // Scale to a reasonable size (take the width of this wxDrawnShape
2159 if (actualWidth
!= 0.0)
2161 initialScaleX
= (double)((*rwidth
) / actualWidth
);
2162 initialScaleY
= initialScaleX
;
2163 (*rheight
) = initialScaleY
*actualHeight
;
2165 Scale(initialScaleX
, initialScaleY
);
2167 m_width
= (actualWidth
*initialScaleX
);
2168 m_height
= *rheight
;
2174 // Scale to fit size
2175 void wxPseudoMetaFile::ScaleTo(double w
, double h
)
2177 double scaleX
= (double)(w
/m_width
);
2178 double scaleY
= (double)(h
/m_height
);
2181 Scale(scaleX
, scaleY
);
2184 void wxPseudoMetaFile::GetBounds(double *boundMinX
, double *boundMinY
, double *boundMaxX
, double *boundMaxY
)
2186 double maxX
= (double) -99999.9;
2187 double maxY
= (double) -99999.9;
2188 double minX
= (double) 99999.9;
2189 double minY
= (double) 99999.9;
2191 wxNode
*node
= m_ops
.GetFirst();
2194 wxDrawOp
*op
= (wxDrawOp
*)node
->GetData();
2195 switch (op
->GetOp())
2197 case DRAWOP_DRAW_LINE
:
2198 case DRAWOP_DRAW_RECT
:
2199 case DRAWOP_DRAW_ROUNDED_RECT
:
2200 case DRAWOP_DRAW_ELLIPSE
:
2201 case DRAWOP_DRAW_POINT
:
2202 case DRAWOP_DRAW_TEXT
:
2204 wxOpDraw
*opDraw
= (wxOpDraw
*)op
;
2205 if (opDraw
->m_x1
< minX
) minX
= opDraw
->m_x1
;
2206 if (opDraw
->m_x1
> maxX
) maxX
= opDraw
->m_x1
;
2207 if (opDraw
->m_y1
< minY
) minY
= opDraw
->m_y1
;
2208 if (opDraw
->m_y1
> maxY
) maxY
= opDraw
->m_y1
;
2209 if (op
->GetOp() == DRAWOP_DRAW_LINE
)
2211 if (opDraw
->m_x2
< minX
) minX
= opDraw
->m_x2
;
2212 if (opDraw
->m_x2
> maxX
) maxX
= opDraw
->m_x2
;
2213 if (opDraw
->m_y2
< minY
) minY
= opDraw
->m_y2
;
2214 if (opDraw
->m_y2
> maxY
) maxY
= opDraw
->m_y2
;
2216 else if (op
->GetOp() == DRAWOP_DRAW_RECT
||
2217 op
->GetOp() == DRAWOP_DRAW_ROUNDED_RECT
||
2218 op
->GetOp() == DRAWOP_DRAW_ELLIPSE
)
2220 if ((opDraw
->m_x1
+ opDraw
->m_x2
) < minX
) minX
= (opDraw
->m_x1
+ opDraw
->m_x2
);
2221 if ((opDraw
->m_x1
+ opDraw
->m_x2
) > maxX
) maxX
= (opDraw
->m_x1
+ opDraw
->m_x2
);
2222 if ((opDraw
->m_y1
+ opDraw
->m_y2
) < minY
) minY
= (opDraw
->m_y1
+ opDraw
->m_y2
);
2223 if ((opDraw
->m_y1
+ opDraw
->m_y2
) > maxY
) maxY
= (opDraw
->m_y1
+ opDraw
->m_y2
);
2227 case DRAWOP_DRAW_ARC
:
2229 // TODO: don't yet know how to calculate the bounding box
2230 // for an arc. So pretend it's a line; to get a correct
2231 // bounding box, draw a blank rectangle first, of the correct
2233 wxOpDraw
*opDraw
= (wxOpDraw
*)op
;
2234 if (opDraw
->m_x1
< minX
) minX
= opDraw
->m_x1
;
2235 if (opDraw
->m_x1
> maxX
) maxX
= opDraw
->m_x1
;
2236 if (opDraw
->m_y1
< minY
) minY
= opDraw
->m_y1
;
2237 if (opDraw
->m_y1
> maxY
) maxY
= opDraw
->m_y1
;
2238 if (opDraw
->m_x2
< minX
) minX
= opDraw
->m_x2
;
2239 if (opDraw
->m_x2
> maxX
) maxX
= opDraw
->m_x2
;
2240 if (opDraw
->m_y2
< minY
) minY
= opDraw
->m_y2
;
2241 if (opDraw
->m_y2
> maxY
) maxY
= opDraw
->m_y2
;
2244 case DRAWOP_DRAW_POLYLINE
:
2245 case DRAWOP_DRAW_POLYGON
:
2246 case DRAWOP_DRAW_SPLINE
:
2248 wxOpPolyDraw
*poly
= (wxOpPolyDraw
*)op
;
2249 for (int i
= 0; i
< poly
->m_noPoints
; i
++)
2251 if (poly
->m_points
[i
].x
< minX
) minX
= poly
->m_points
[i
].x
;
2252 if (poly
->m_points
[i
].x
> maxX
) maxX
= poly
->m_points
[i
].x
;
2253 if (poly
->m_points
[i
].y
< minY
) minY
= poly
->m_points
[i
].y
;
2254 if (poly
->m_points
[i
].y
> maxY
) maxY
= poly
->m_points
[i
].y
;
2261 node
= node
->GetNext();
2269 *w = (double)fabs(maxX - minX);
2270 *h = (double)fabs(maxY - minY);
2274 // Calculate size from current operations
2275 void wxPseudoMetaFile::CalculateSize(wxDrawnShape
* shape
)
2277 double boundMinX
, boundMinY
, boundMaxX
, boundMaxY
;
2279 GetBounds(& boundMinX
, & boundMinY
, & boundMaxX
, & boundMaxY
);
2281 SetSize(boundMaxX
- boundMinX
, boundMaxY
- boundMinY
);
2285 shape
->SetWidth(m_width
);
2286 shape
->SetHeight(m_height
);
2290 // Set of functions for drawing into a pseudo metafile.
2291 // They use integers, but doubles are used internally for accuracy
2294 void wxPseudoMetaFile::DrawLine(const wxPoint
& pt1
, const wxPoint
& pt2
)
2296 wxOpDraw
*theOp
= new wxOpDraw(DRAWOP_DRAW_LINE
,
2297 (double) pt1
.x
, (double) pt1
.y
, (double) pt2
.x
, (double) pt2
.y
);
2299 m_ops
.Append(theOp
);
2302 void wxPseudoMetaFile::DrawRectangle(const wxRect
& rect
)
2304 wxOpDraw
*theOp
= new wxOpDraw(DRAWOP_DRAW_RECT
,
2305 (double) rect
.x
, (double) rect
.y
, (double) rect
.width
, (double) rect
.height
);
2307 m_ops
.Append(theOp
);
2310 void wxPseudoMetaFile::DrawRoundedRectangle(const wxRect
& rect
, double radius
)
2312 wxOpDraw
*theOp
= new wxOpDraw(DRAWOP_DRAW_ROUNDED_RECT
,
2313 (double) rect
.x
, (double) rect
.y
, (double) rect
.width
, (double) rect
.height
);
2315 theOp
->m_radius
= radius
;
2317 m_ops
.Append(theOp
);
2320 void wxPseudoMetaFile::DrawEllipse(const wxRect
& rect
)
2322 wxOpDraw
*theOp
= new wxOpDraw(DRAWOP_DRAW_ELLIPSE
,
2323 (double) rect
.x
, (double) rect
.y
, (double) rect
.width
, (double) rect
.height
);
2325 m_ops
.Append(theOp
);
2328 void wxPseudoMetaFile::DrawArc(const wxPoint
& centrePt
, const wxPoint
& startPt
, const wxPoint
& endPt
)
2330 wxOpDraw
*theOp
= new wxOpDraw(DRAWOP_DRAW_ARC
,
2331 (double) centrePt
.x
, (double) centrePt
.y
, (double) startPt
.x
, (double) startPt
.y
);
2333 theOp
->m_x3
= (double) endPt
.x
;
2334 theOp
->m_y3
= (double) endPt
.y
;
2336 m_ops
.Append(theOp
);
2339 void wxPseudoMetaFile::DrawEllipticArc(const wxRect
& rect
, double startAngle
, double endAngle
)
2341 const double pi
= 3.1415926535897932384626433832795 ;
2343 double startAngleRadians
= startAngle
* (pi
*2.0/360.0);
2344 double endAngleRadians
= endAngle
* (pi
*2.0/360.0);
2346 wxOpDraw
*theOp
= new wxOpDraw(DRAWOP_DRAW_ELLIPTIC_ARC
,
2347 (double) rect
.x
, (double) rect
.y
, (double) rect
.width
, (double) rect
.height
);
2349 theOp
->m_x3
= startAngleRadians
;
2350 theOp
->m_y3
= endAngleRadians
;
2352 m_ops
.Append(theOp
);
2355 void wxPseudoMetaFile::DrawPoint(const wxPoint
& pt
)
2357 wxOpDraw
*theOp
= new wxOpDraw(DRAWOP_DRAW_POINT
,
2358 (double) pt
.x
, (double) pt
.y
, 0.0, 0.0);
2360 m_ops
.Append(theOp
);
2363 void wxPseudoMetaFile::DrawText(const wxString
& text
, const wxPoint
& pt
)
2365 wxOpDraw
*theOp
= new wxOpDraw(DRAWOP_DRAW_TEXT
,
2366 (double) pt
.x
, (double) pt
.y
, 0.0, 0.0);
2368 theOp
->m_textString
= copystring(text
);
2370 m_ops
.Append(theOp
);
2373 void wxPseudoMetaFile::DrawLines(int n
, wxPoint pts
[])
2375 wxRealPoint
* realPoints
= new wxRealPoint
[n
];
2377 for (i
= 0; i
< n
; i
++)
2379 realPoints
[i
].x
= pts
[i
].x
;
2380 realPoints
[i
].y
= pts
[i
].y
;
2382 wxOpPolyDraw
* theOp
= new wxOpPolyDraw(DRAWOP_DRAW_POLYLINE
, n
, realPoints
);
2383 m_ops
.Append(theOp
);
2386 void wxPseudoMetaFile::DrawPolygon(int n
, wxPoint pts
[], int flags
)
2388 wxRealPoint
* realPoints
= new wxRealPoint
[n
];
2390 for (i
= 0; i
< n
; i
++)
2392 realPoints
[i
].x
= pts
[i
].x
;
2393 realPoints
[i
].y
= pts
[i
].y
;
2395 wxOpPolyDraw
* theOp
= new wxOpPolyDraw(DRAWOP_DRAW_POLYGON
, n
, realPoints
);
2396 m_ops
.Append(theOp
);
2398 if (flags
& oglMETAFLAGS_OUTLINE
)
2399 m_outlineOp
= (m_ops
.GetCount() - 1);
2402 void wxPseudoMetaFile::DrawSpline(int n
, wxPoint pts
[])
2404 wxRealPoint
* realPoints
= new wxRealPoint
[n
];
2406 for (i
= 0; i
< n
; i
++)
2408 realPoints
[i
].x
= pts
[i
].x
;
2409 realPoints
[i
].y
= pts
[i
].y
;
2411 wxOpPolyDraw
* theOp
= new wxOpPolyDraw(DRAWOP_DRAW_SPLINE
, n
, realPoints
);
2412 m_ops
.Append(theOp
);
2415 void wxPseudoMetaFile::SetClippingRect(const wxRect
& rect
)
2417 /* wxOpSetClipping* theOp = */ new wxOpSetClipping(DRAWOP_SET_CLIPPING_RECT
,
2418 (double) rect
.x
, (double) rect
.y
, (double) rect
.width
, (double) rect
.height
);
2421 void wxPseudoMetaFile::DestroyClippingRect()
2423 wxOpSetClipping
* theOp
= new wxOpSetClipping(DRAWOP_DESTROY_CLIPPING_RECT
,
2424 0.0, 0.0, 0.0, 0.0);
2426 m_ops
.Append(theOp
);
2429 void wxPseudoMetaFile::SetPen(wxPen
* pen
, bool isOutline
)
2431 m_gdiObjects
.Append(pen
);
2432 int n
= m_gdiObjects
.GetCount();
2434 wxOpSetGDI
* theOp
= new wxOpSetGDI(DRAWOP_SET_PEN
, this, n
- 1);
2436 m_ops
.Append(theOp
);
2440 m_outlineColours
.Append((wxObject
*) (n
- 1));
2444 void wxPseudoMetaFile::SetBrush(wxBrush
* brush
, bool isFill
)
2446 m_gdiObjects
.Append(brush
);
2447 int n
= m_gdiObjects
.GetCount();
2449 wxOpSetGDI
* theOp
= new wxOpSetGDI(DRAWOP_SET_BRUSH
, this, n
- 1);
2451 m_ops
.Append(theOp
);
2455 m_fillColours
.Append((wxObject
*) (n
- 1));
2459 void wxPseudoMetaFile::SetFont(wxFont
* font
)
2461 m_gdiObjects
.Append(font
);
2462 int n
= m_gdiObjects
.GetCount();
2464 wxOpSetGDI
* theOp
= new wxOpSetGDI(DRAWOP_SET_FONT
, this, n
- 1);
2466 m_ops
.Append(theOp
);
2469 void wxPseudoMetaFile::SetTextColour(const wxColour
& colour
)
2471 wxOpSetGDI
* theOp
= new wxOpSetGDI(DRAWOP_SET_TEXT_COLOUR
, this, 0);
2472 theOp
->m_r
= colour
.Red();
2473 theOp
->m_g
= colour
.Green();
2474 theOp
->m_b
= colour
.Blue();
2476 m_ops
.Append(theOp
);
2479 void wxPseudoMetaFile::SetBackgroundColour(const wxColour
& colour
)
2481 wxOpSetGDI
* theOp
= new wxOpSetGDI(DRAWOP_SET_BK_COLOUR
, this, 0);
2482 theOp
->m_r
= colour
.Red();
2483 theOp
->m_g
= colour
.Green();
2484 theOp
->m_b
= colour
.Blue();
2486 m_ops
.Append(theOp
);
2489 void wxPseudoMetaFile::SetBackgroundMode(int mode
)
2491 wxOpSetGDI
* theOp
= new wxOpSetGDI(DRAWOP_SET_BK_MODE
, this, 0, mode
);
2493 m_ops
.Append(theOp
);