1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxPseudoDC class
8 // Copyright: (c) wxWidgets team
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_PSUEDO_DC_H_BASE_
12 #define _WX_PSUEDO_DC_H_BASE_
17 //----------------------------------------------------------------------------
18 // Base class for all pdcOp classes
19 //----------------------------------------------------------------------------
23 // Constructor and Destructor
27 // Virtual Drawing Methods
28 virtual void DrawToDC(wxDC
*dc
)=0;
29 virtual void Translate(wxCoord
WXUNUSED(dx
), wxCoord
WXUNUSED(dy
)) {}
32 //----------------------------------------------------------------------------
33 // declare a list class for list of pdcOps
34 //----------------------------------------------------------------------------
35 WX_DECLARE_LIST(pdcOp
, pdcOpList
);
37 //----------------------------------------------------------------------------
38 // Classes derived from pdcOp
39 // There is one class for each method mirrored from wxDC to wxPseudoDC
40 //----------------------------------------------------------------------------
41 class pdcSetFontOp
: public pdcOp
44 pdcSetFontOp(const wxFont
& font
)
46 virtual void DrawToDC(wxDC
*dc
) {dc
->SetFont(m_font
);}
51 class pdcSetBrushOp
: public pdcOp
54 pdcSetBrushOp(const wxBrush
& brush
)
56 virtual void DrawToDC(wxDC
*dc
) {dc
->SetBrush(m_brush
);}
61 class pdcSetBackgroundOp
: public pdcOp
64 pdcSetBackgroundOp(const wxBrush
& brush
)
66 virtual void DrawToDC(wxDC
*dc
) {dc
->SetBackground(m_brush
);}
71 class pdcSetPenOp
: public pdcOp
74 pdcSetPenOp(const wxPen
& pen
)
76 virtual void DrawToDC(wxDC
*dc
) {dc
->SetPen(m_pen
);}
81 class pdcSetTextBackgroundOp
: public pdcOp
84 pdcSetTextBackgroundOp(const wxColour
& colour
)
86 virtual void DrawToDC(wxDC
*dc
) {dc
->SetTextBackground(m_colour
);}
91 class pdcSetTextForegroundOp
: public pdcOp
94 pdcSetTextForegroundOp(const wxColour
& colour
)
96 virtual void DrawToDC(wxDC
*dc
) {dc
->SetTextForeground(m_colour
);}
101 class pdcDrawRectangleOp
: public pdcOp
104 pdcDrawRectangleOp(wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
)
105 {m_x
=x
; m_y
=y
; m_w
=w
; m_h
=h
;}
106 virtual void DrawToDC(wxDC
*dc
) {dc
->DrawRectangle(m_x
,m_y
,m_w
,m_h
);}
107 virtual void Translate(wxCoord dx
, wxCoord dy
)
110 wxCoord m_x
,m_y
,m_w
,m_h
;
113 class pdcDrawLineOp
: public pdcOp
116 pdcDrawLineOp(wxCoord x1
, wxCoord y1
, wxCoord x2
, wxCoord y2
)
117 {m_x1
=x1
; m_y1
=y1
; m_x2
=x2
; m_y2
=y2
;}
118 virtual void DrawToDC(wxDC
*dc
) {dc
->DrawLine(m_x1
,m_y1
,m_x2
,m_y2
);}
119 virtual void Translate(wxCoord dx
, wxCoord dy
)
120 {m_x1
+=dx
; m_y1
+=dy
; m_x2
+=dx
; m_y2
+=dy
;}
122 wxCoord m_x1
,m_y1
,m_x2
,m_y2
;
125 class pdcSetBackgroundModeOp
: public pdcOp
128 pdcSetBackgroundModeOp(int mode
) {m_mode
=mode
;}
129 virtual void DrawToDC(wxDC
*dc
) {dc
->SetBackgroundMode(m_mode
);}
134 class pdcDrawTextOp
: public pdcOp
137 pdcDrawTextOp(const wxString
& text
, wxCoord x
, wxCoord y
)
138 {m_text
=text
; m_x
=x
; m_y
=y
;}
139 virtual void DrawToDC(wxDC
*dc
) {dc
->DrawText(m_text
, m_x
, m_y
);}
140 virtual void Translate(wxCoord dx
, wxCoord dy
)
147 class pdcClearOp
: public pdcOp
151 virtual void DrawToDC(wxDC
*dc
) {dc
->Clear();}
154 class pdcBeginDrawingOp
: public pdcOp
157 pdcBeginDrawingOp() {}
158 virtual void DrawToDC(wxDC
*dc
) {dc
->BeginDrawing();}
161 class pdcEndDrawingOp
: public pdcOp
165 virtual void DrawToDC(wxDC
*dc
) {dc
->EndDrawing();}
168 class pdcFloodFillOp
: public pdcOp
171 pdcFloodFillOp(wxCoord x
, wxCoord y
, const wxColour
& col
,
172 int style
) {m_x
=x
; m_y
=y
; m_col
=col
; m_style
=style
;}
173 virtual void DrawToDC(wxDC
*dc
) {dc
->FloodFill(m_x
,m_y
,m_col
,m_style
);}
174 virtual void Translate(wxCoord dx
, wxCoord dy
)
182 class pdcCrossHairOp
: public pdcOp
185 pdcCrossHairOp(wxCoord x
, wxCoord y
) {m_x
=x
; m_y
=y
;}
186 virtual void DrawToDC(wxDC
*dc
) {dc
->CrossHair(m_x
,m_y
);}
187 virtual void Translate(wxCoord dx
, wxCoord dy
)
193 class pdcDrawArcOp
: public pdcOp
196 pdcDrawArcOp(wxCoord x1
, wxCoord y1
, wxCoord x2
, wxCoord y2
,
197 wxCoord xc
, wxCoord yc
)
198 {m_x1
=x1
; m_y1
=y1
; m_x2
=x2
; m_y2
=y2
; m_xc
=xc
; m_yc
=yc
;}
199 virtual void DrawToDC(wxDC
*dc
)
200 {dc
->DrawArc(m_x1
,m_y1
,m_x2
,m_y2
,m_xc
,m_yc
);}
201 virtual void Translate(wxCoord dx
, wxCoord dy
)
202 {m_x1
+=dx
; m_x2
+=dx
; m_y1
+=dy
; m_y2
+=dy
;}
204 wxCoord m_x1
,m_x2
,m_xc
;
205 wxCoord m_y1
,m_y2
,m_yc
;
208 class pdcDrawCheckMarkOp
: public pdcOp
211 pdcDrawCheckMarkOp(wxCoord x
, wxCoord y
,
212 wxCoord width
, wxCoord height
)
213 {m_x
=x
; m_y
=y
; m_w
=width
; m_h
=height
;}
214 virtual void DrawToDC(wxDC
*dc
)
215 {dc
->DrawCheckMark(m_x
,m_y
,m_w
,m_h
);}
216 virtual void Translate(wxCoord dx
, wxCoord dy
)
219 wxCoord m_x
,m_y
,m_w
,m_h
;
222 class pdcDrawEllipticArcOp
: public pdcOp
225 pdcDrawEllipticArcOp(wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
,
226 double sa
, double ea
)
227 {m_x
=x
; m_y
=y
; m_w
=w
; m_h
=h
; m_sa
=sa
; m_ea
=ea
;}
228 virtual void DrawToDC(wxDC
*dc
)
229 {dc
->DrawEllipticArc(m_x
,m_y
,m_w
,m_h
,m_sa
,m_ea
);}
230 virtual void Translate(wxCoord dx
, wxCoord dy
)
233 wxCoord m_x
,m_y
,m_w
,m_h
;
237 class pdcDrawPointOp
: public pdcOp
240 pdcDrawPointOp(wxCoord x
, wxCoord y
)
242 virtual void DrawToDC(wxDC
*dc
) {dc
->DrawPoint(m_x
,m_y
);}
243 virtual void Translate(wxCoord dx
, wxCoord dy
)
249 class pdcDrawRoundedRectangleOp
: public pdcOp
252 pdcDrawRoundedRectangleOp(wxCoord x
, wxCoord y
, wxCoord width
,
253 wxCoord height
, double radius
)
254 {m_x
=x
; m_y
=y
; m_w
=width
; m_h
=height
; m_r
=radius
;}
255 virtual void DrawToDC(wxDC
*dc
)
256 {dc
->DrawRoundedRectangle(m_x
,m_y
,m_w
,m_h
,m_r
);}
257 virtual void Translate(wxCoord dx
, wxCoord dy
)
260 wxCoord m_x
,m_y
,m_w
,m_h
;
264 class pdcDrawEllipseOp
: public pdcOp
267 pdcDrawEllipseOp(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
)
268 {m_x
=x
; m_y
=y
; m_w
=width
; m_h
=height
;}
269 virtual void DrawToDC(wxDC
*dc
) {dc
->DrawEllipse(m_x
,m_y
,m_w
,m_h
);}
270 virtual void Translate(wxCoord dx
, wxCoord dy
)
273 wxCoord m_x
,m_y
,m_w
,m_h
;
276 class pdcDrawIconOp
: public pdcOp
279 pdcDrawIconOp(const wxIcon
& icon
, wxCoord x
, wxCoord y
)
280 {m_icon
=icon
; m_x
=x
; m_y
=y
;}
281 virtual void DrawToDC(wxDC
*dc
) {dc
->DrawIcon(m_icon
,m_x
,m_y
);}
282 virtual void Translate(wxCoord dx
, wxCoord dy
)
289 class pdcDrawLinesOp
: public pdcOp
292 pdcDrawLinesOp(int n
, wxPoint points
[],
293 wxCoord xoffset
= 0, wxCoord yoffset
= 0);
294 virtual ~pdcDrawLinesOp();
295 virtual void DrawToDC(wxDC
*dc
)
296 {dc
->DrawLines(m_n
,m_points
,m_xoffset
,m_yoffset
);}
297 virtual void Translate(wxCoord dx
, wxCoord dy
)
299 for(int i
=0; i
<m_n
; i
++)
308 wxCoord m_xoffset
,m_yoffset
;
311 class pdcDrawPolygonOp
: public pdcOp
314 pdcDrawPolygonOp(int n
, wxPoint points
[],
315 wxCoord xoffset
= 0, wxCoord yoffset
= 0,
316 int fillStyle
= wxODDEVEN_RULE
);
317 virtual ~pdcDrawPolygonOp();
318 virtual void DrawToDC(wxDC
*dc
)
319 { dc
->DrawPolygon(m_n
,m_points
,m_xoffset
,m_yoffset
,m_fillStyle
); }
321 virtual void Translate(wxCoord dx
, wxCoord dy
)
323 for(int i
=0; i
<m_n
; i
++)
332 wxCoord m_xoffset
,m_yoffset
;
336 class pdcDrawPolyPolygonOp
: public pdcOp
339 pdcDrawPolyPolygonOp(int n
, int count
[], wxPoint points
[],
340 wxCoord xoffset
= 0, wxCoord yoffset
= 0,
341 int fillStyle
= wxODDEVEN_RULE
);
342 virtual ~pdcDrawPolyPolygonOp();
343 virtual void DrawToDC(wxDC
*dc
)
344 {dc
->DrawPolyPolygon(m_n
,m_count
,m_points
,
345 m_xoffset
,m_yoffset
,m_fillStyle
);}
346 virtual void Translate(wxCoord dx
, wxCoord dy
)
348 for(int i
=0; i
<m_totaln
; i
++)
359 wxCoord m_xoffset
, m_yoffset
;
363 class pdcDrawRotatedTextOp
: public pdcOp
366 pdcDrawRotatedTextOp(const wxString
& text
, wxCoord x
, wxCoord y
, double angle
)
367 {m_text
=text
; m_x
=x
; m_y
=y
; m_angle
=angle
;}
368 virtual void DrawToDC(wxDC
*dc
)
369 {dc
->DrawRotatedText(m_text
,m_x
,m_y
,m_angle
);}
370 virtual void Translate(wxCoord dx
, wxCoord dy
)
378 class pdcDrawBitmapOp
: public pdcOp
381 pdcDrawBitmapOp(const wxBitmap
&bmp
, wxCoord x
, wxCoord y
,
382 bool useMask
= false)
383 {m_bmp
=bmp
; m_x
=x
; m_y
=y
; m_useMask
=useMask
;}
384 virtual void DrawToDC(wxDC
*dc
) {dc
->DrawBitmap(m_bmp
,m_x
,m_y
,m_useMask
);}
385 virtual void Translate(wxCoord dx
, wxCoord dy
)
393 class pdcDrawLabelOp
: public pdcOp
396 pdcDrawLabelOp(const wxString
& text
,
397 const wxBitmap
& image
,
399 int alignment
= wxALIGN_LEFT
| wxALIGN_TOP
,
401 {m_text
=text
; m_image
=image
; m_rect
=rect
;
402 m_align
=alignment
; m_iAccel
=indexAccel
;}
403 virtual void DrawToDC(wxDC
*dc
)
404 {dc
->DrawLabel(m_text
,m_image
,m_rect
,m_align
,m_iAccel
);}
405 virtual void Translate(wxCoord dx
, wxCoord dy
)
406 {m_rect
.x
+=dx
; m_rect
.y
+=dy
;}
416 class pdcDrawSplineOp
: public pdcOp
419 pdcDrawSplineOp(int n
, wxPoint points
[]);
420 virtual ~pdcDrawSplineOp();
421 virtual void DrawToDC(wxDC
*dc
) {dc
->DrawSpline(m_n
,m_points
);}
422 virtual void Translate(wxCoord dx
, wxCoord dy
)
426 m_points
[i
].x
+=dx
; m_points
[i
].y
+=dy
;
432 #endif // wxUSE_SPLINES
435 class pdcSetPaletteOp
: public pdcOp
438 pdcSetPaletteOp(const wxPalette
& palette
) {m_palette
=palette
;}
439 virtual void DrawToDC(wxDC
*dc
) {dc
->SetPalette(m_palette
);}
443 #endif // wxUSE_PALETTE
445 class pdcSetLogicalFunctionOp
: public pdcOp
448 pdcSetLogicalFunctionOp(int function
) {m_function
=function
;}
449 virtual void DrawToDC(wxDC
*dc
) {dc
->SetLogicalFunction(m_function
);}
454 //----------------------------------------------------------------------------
455 // pdcObject type to contain list of operations for each real (Python) object
456 //----------------------------------------------------------------------------
461 {m_id
=id
; m_bounded
=false; m_oplist
.DeleteContents(true);}
463 virtual ~pdcObject() {m_oplist
.Clear();}
465 // Protected Member Access
466 void SetId(int id
) {m_id
=id
;}
467 int GetId() {return m_id
;}
468 void SetBounds(wxRect
& rect
) {m_bounds
=rect
; m_bounded
=true;}
469 wxRect
GetBounds() {return m_bounds
;}
470 void SetBounded(bool bounded
) {m_bounded
=bounded
;}
471 bool IsBounded() {return m_bounded
;}
473 // Op List Management Methods
474 void Clear() {m_oplist
.Clear();}
475 void AddOp(pdcOp
*op
) {m_oplist
.Append(op
);}
476 int GetLen() {return m_oplist
.GetCount();}
477 virtual void Translate(wxCoord dx
, wxCoord dy
);
480 virtual void DrawToDC(wxDC
*dc
);
482 int m_id
; // id of object (associates this pdcObject
483 // with a Python object with same id)
484 wxRect m_bounds
; // bounding rect of this object
485 bool m_bounded
; // true if bounds is valid, false by default
486 pdcOpList m_oplist
; // list of operations for this object
490 //----------------------------------------------------------------------------
491 // Declare a wxList to hold all the objects. List order reflects drawing
492 // order (Z order) and is the same order as objects are added to the list
493 //----------------------------------------------------------------------------
495 WX_DECLARE_LIST(pdcObject
, pdcObjectList
);
498 // ----------------------------------------------------------------------------
500 // ----------------------------------------------------------------------------
501 // This is the actual PseudoDC class
502 // This class stores a list of recorded dc operations in m_list
503 // and plays them back to a real dc using DrawToDC or DrawToDCClipped.
504 // Drawing methods are mirrored from wxDC but add nodes to m_list
505 // instead of doing any real drawing.
506 // ----------------------------------------------------------------------------
507 class wxPseudoDC
: public wxObject
511 {m_currId
=-1; m_lastObjNode
=NULL
; m_objectlist
.DeleteContents(true);}
513 // ------------------------------------------------------------------------
514 // List managment methods
519 // ------------------------------------------------------------------------
520 // methods for managing operations by ID
522 // Set the Id for all subsequent operations (until SetId is called again)
523 void SetId(int id
) {m_currId
= id
;}
524 // Remove all the operations associated with an id so it can be redrawn
525 void ClearId(int id
);
526 // Remove the object node (and all operations) associated with an id
527 void RemoveId(int id
);
528 // Set the bounding rect of a given object
529 // This will create an object node if one doesn't exist
530 void SetIdBounds(int id
, wxRect
& rect
);
531 void GetIdBounds(int id
, wxRect
& rect
);
532 // Translate all the operations for this id
533 void TranslateId(int id
, wxCoord dx
, wxCoord dy
);
535 // ------------------------------------------------------------------------
538 // draw to dc but skip objects known to be outside of rect
539 // This is a coarse level of clipping to speed things up
540 // when lots of objects are off screen and doesn't affect the dc level
542 void DrawToDCClipped(wxDC
*dc
, const wxRect
& rect
);
543 void DrawToDCClippedRgn(wxDC
*dc
, const wxRegion
& region
);
544 // draw to dc with no clipping (well the dc will still clip)
545 void DrawToDC(wxDC
*dc
);
546 // draw a single object to the dc
547 void DrawIdToDC(int id
, wxDC
*dc
);
549 // ------------------------------------------------------------------------
550 // Methods mirrored from wxDC
552 void FloodFill(wxCoord x
, wxCoord y
, const wxColour
& col
,
553 int style
= wxFLOOD_SURFACE
)
554 {AddToList(new pdcFloodFillOp(x
,y
,col
,style
));}
555 void FloodFill(const wxPoint
& pt
, const wxColour
& col
,
556 int style
= wxFLOOD_SURFACE
)
557 { FloodFill(pt
.x
, pt
.y
, col
, style
); }
559 void DrawLine(wxCoord x1
, wxCoord y1
, wxCoord x2
, wxCoord y2
)
560 {AddToList(new pdcDrawLineOp(x1
, y1
, x2
, y2
));}
561 void DrawLine(const wxPoint
& pt1
, const wxPoint
& pt2
)
562 { DrawLine(pt1
.x
, pt1
.y
, pt2
.x
, pt2
.y
); }
564 void CrossHair(wxCoord x
, wxCoord y
)
565 {AddToList(new pdcCrossHairOp(x
,y
));}
566 void CrossHair(const wxPoint
& pt
)
567 { CrossHair(pt
.x
, pt
.y
); }
569 void DrawArc(wxCoord x1
, wxCoord y1
, wxCoord x2
, wxCoord y2
,
570 wxCoord xc
, wxCoord yc
)
571 {AddToList(new pdcDrawArcOp(x1
,y1
,x2
,y2
,xc
,yc
));}
572 void DrawArc(const wxPoint
& pt1
, const wxPoint
& pt2
, const wxPoint
& centre
)
573 { DrawArc(pt1
.x
, pt1
.y
, pt2
.x
, pt2
.y
, centre
.x
, centre
.y
); }
575 void DrawCheckMark(wxCoord x
, wxCoord y
,
576 wxCoord width
, wxCoord height
)
577 {AddToList(new pdcDrawCheckMarkOp(x
,y
,width
,height
));}
578 void DrawCheckMark(const wxRect
& rect
)
579 { DrawCheckMark(rect
.x
, rect
.y
, rect
.width
, rect
.height
); }
581 void DrawEllipticArc(wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
,
582 double sa
, double ea
)
583 {AddToList(new pdcDrawEllipticArcOp(x
,y
,w
,h
,sa
,ea
));}
584 void DrawEllipticArc(const wxPoint
& pt
, const wxSize
& sz
,
585 double sa
, double ea
)
586 { DrawEllipticArc(pt
.x
, pt
.y
, sz
.x
, sz
.y
, sa
, ea
); }
588 void DrawPoint(wxCoord x
, wxCoord y
)
589 {AddToList(new pdcDrawPointOp(x
,y
));}
590 void DrawPoint(const wxPoint
& pt
)
591 { DrawPoint(pt
.x
, pt
.y
); }
593 void DrawPolygon(int n
, wxPoint points
[],
594 wxCoord xoffset
= 0, wxCoord yoffset
= 0,
595 int fillStyle
= wxODDEVEN_RULE
)
596 {AddToList(new pdcDrawPolygonOp(n
,points
,xoffset
,yoffset
,fillStyle
));}
598 void DrawPolyPolygon(int n
, int count
[], wxPoint points
[],
599 wxCoord xoffset
= 0, wxCoord yoffset
= 0,
600 int fillStyle
= wxODDEVEN_RULE
)
601 {AddToList(new pdcDrawPolyPolygonOp(n
,count
,points
,xoffset
,yoffset
,fillStyle
));}
603 void DrawRectangle(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
)
604 {AddToList(new pdcDrawRectangleOp(x
, y
, width
, height
));}
605 void DrawRectangle(const wxPoint
& pt
, const wxSize
& sz
)
606 { DrawRectangle(pt
.x
, pt
.y
, sz
.x
, sz
.y
); }
607 void DrawRectangle(const wxRect
& rect
)
608 { DrawRectangle(rect
.x
, rect
.y
, rect
.width
, rect
.height
); }
610 void DrawRoundedRectangle(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
,
612 {AddToList(new pdcDrawRoundedRectangleOp(x
,y
,width
,height
,radius
));}
613 void DrawRoundedRectangle(const wxPoint
& pt
, const wxSize
& sz
,
615 { DrawRoundedRectangle(pt
.x
, pt
.y
, sz
.x
, sz
.y
, radius
); }
616 void DrawRoundedRectangle(const wxRect
& r
, double radius
)
617 { DrawRoundedRectangle(r
.x
, r
.y
, r
.width
, r
.height
, radius
); }
619 void DrawCircle(wxCoord x
, wxCoord y
, wxCoord radius
)
620 { DrawEllipse(x
- radius
, y
- radius
, 2*radius
, 2*radius
); }
621 void DrawCircle(const wxPoint
& pt
, wxCoord radius
)
622 { DrawCircle(pt
.x
, pt
.y
, radius
); }
624 void DrawEllipse(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
)
625 {AddToList(new pdcDrawEllipseOp(x
,y
,width
,height
));}
626 void DrawEllipse(const wxPoint
& pt
, const wxSize
& sz
)
627 { DrawEllipse(pt
.x
, pt
.y
, sz
.x
, sz
.y
); }
628 void DrawEllipse(const wxRect
& rect
)
629 { DrawEllipse(rect
.x
, rect
.y
, rect
.width
, rect
.height
); }
631 void DrawIcon(const wxIcon
& icon
, wxCoord x
, wxCoord y
)
632 {AddToList(new pdcDrawIconOp(icon
,x
,y
));}
633 void DrawIcon(const wxIcon
& icon
, const wxPoint
& pt
)
634 { DrawIcon(icon
, pt
.x
, pt
.y
); }
636 void DrawLines(int n
, wxPoint points
[],
637 wxCoord xoffset
= 0, wxCoord yoffset
= 0)
638 {AddToList(new pdcDrawLinesOp(n
,points
,xoffset
,yoffset
));}
640 void DrawBitmap(const wxBitmap
&bmp
, wxCoord x
, wxCoord y
,
641 bool useMask
= false)
642 {AddToList(new pdcDrawBitmapOp(bmp
,x
,y
,useMask
));}
643 void DrawBitmap(const wxBitmap
&bmp
, const wxPoint
& pt
,
644 bool useMask
= false)
645 { DrawBitmap(bmp
, pt
.x
, pt
.y
, useMask
); }
647 void DrawText(const wxString
& text
, wxCoord x
, wxCoord y
)
648 {AddToList(new pdcDrawTextOp(text
, x
, y
));}
649 void DrawText(const wxString
& text
, const wxPoint
& pt
)
650 { DrawText(text
, pt
.x
, pt
.y
); }
652 void DrawRotatedText(const wxString
& text
, wxCoord x
, wxCoord y
, double angle
)
653 {AddToList(new pdcDrawRotatedTextOp(text
,x
,y
,angle
));}
654 void DrawRotatedText(const wxString
& text
, const wxPoint
& pt
, double angle
)
655 { DrawRotatedText(text
, pt
.x
, pt
.y
, angle
); }
657 // this version puts both optional bitmap and the text into the given
658 // rectangle and aligns is as specified by alignment parameter; it also
659 // will emphasize the character with the given index if it is != -1
660 void DrawLabel(const wxString
& text
,
661 const wxBitmap
& image
,
663 int alignment
= wxALIGN_LEFT
| wxALIGN_TOP
,
665 {AddToList(new pdcDrawLabelOp(text
,image
,rect
,alignment
,indexAccel
));}
667 void DrawLabel(const wxString
& text
, const wxRect
& rect
,
668 int alignment
= wxALIGN_LEFT
| wxALIGN_TOP
,
670 { DrawLabel(text
, wxNullBitmap
, rect
, alignment
, indexAccel
); }
672 /*?????? I don't think that the source dc would stick around
673 void Blit(wxCoord xdest, wxCoord ydest, wxCoord width, wxCoord height,
674 wxDC *source, wxCoord xsrc, wxCoord ysrc,
675 int rop = wxCOPY, bool useMask = false, wxCoord xsrcMask = wxDefaultCoord, wxCoord ysrcMask = wxDefaultCoord)
676 {AddToList(new pdcBlitOp(xdest,ydest,width,height,source,xsrc,
677 ysrc,rop,useMask,xsrcMask,ysrcMask));}
678 void Blit(const wxPoint& destPt, const wxSize& sz,
679 wxDC *source, const wxPoint& srcPt,
680 int rop = wxCOPY, bool useMask = false, const wxPoint& srcPtMask = wxDefaultPosition)
682 Blit(destPt.x, destPt.y, sz.x, sz.y, source, srcPt.x, srcPt.y,
683 rop, useMask, srcPtMask.x, srcPtMask.y);
688 void DrawSpline(int n
, wxPoint points
[])
689 {AddToList(new pdcDrawSplineOp(n
,points
));}
690 #endif // wxUSE_SPLINES
693 void SetPalette(const wxPalette
& palette
)
694 {AddToList(new pdcSetPaletteOp(palette
));}
695 #endif // wxUSE_PALETTE
697 void SetLogicalFunction(int function
)
698 {AddToList(new pdcSetLogicalFunctionOp(function
));}
699 void SetFont(const wxFont
& font
)
700 {AddToList(new pdcSetFontOp(font
));}
701 void SetPen(const wxPen
& pen
)
702 {AddToList(new pdcSetPenOp(pen
));}
703 void SetBrush(const wxBrush
& brush
)
704 {AddToList(new pdcSetBrushOp(brush
));}
705 void SetBackground(const wxBrush
& brush
)
706 {AddToList(new pdcSetBackgroundOp(brush
));}
707 void SetBackgroundMode(int mode
)
708 {AddToList(new pdcSetBackgroundModeOp(mode
));}
709 void SetTextBackground(const wxColour
& colour
)
710 {AddToList(new pdcSetTextBackgroundOp(colour
));}
711 void SetTextForeground(const wxColour
& colour
)
712 {AddToList(new pdcSetTextForegroundOp(colour
));}
715 {AddToList(new pdcClearOp());}
717 {AddToList(new pdcBeginDrawingOp());}
719 {AddToList(new pdcEndDrawingOp());}
722 // ------------------------------------------------------------------------
723 // protected helper methods
724 void AddToList(pdcOp
*newOp
);
725 pdcObjectList::Node
*FindObjNode(int id
, bool create
=false);
727 // ------------------------------------------------------------------------
730 int m_currId
; // id to use for operations done on the PseudoDC
731 pdcObjectList::Node
*m_lastObjNode
; // used to find last used object quickly
732 pdcObjectList m_objectlist
; // list of objects