]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/os2/dc.h
1 /////////////////////////////////////////////////////////////////////////////
8 // Copyright: (c) AUTHOR
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
16 #pragma interface "dc.h"
19 #include "wx/window.h"
24 #include "wx/gdicmn.h"
26 //-----------------------------------------------------------------------------
28 //-----------------------------------------------------------------------------
32 #define MM_ISOTROPIC 1
33 #define MM_ANISOTROPIC 2
41 //-----------------------------------------------------------------------------
43 //-----------------------------------------------------------------------------
45 extern int wxPageNumber
;
47 //-----------------------------------------------------------------------------
49 //-----------------------------------------------------------------------------
51 class WXDLLEXPORT wxDC
: public wxDCBase
53 DECLARE_ABSTRACT_CLASS(wxDC
)
60 virtual void BeginDrawing(void) { };
61 virtual void EndDrawing(void) { };
63 //-----------------------------------------------------------------------------
64 // Pure virtuals from wxDCBase that need defining
65 //-----------------------------------------------------------------------------
66 virtual bool CanDrawBitmap(void) const { return TRUE
; };
67 virtual bool CanGetTextExtent(void) const { return TRUE
; };
68 virtual int GetDepth(void) const;
69 virtual wxSize
GetPPI(void) const;
70 virtual void GetTextExtent( const wxString
& string
74 ,long* externalLeading
= NULL
75 ,wxFont
* theFont
= NULL
77 virtual long GetCharWidth(void) const;
78 virtual long GetCharHeight(void) const;
79 virtual void Clear(void);
80 virtual void SetFont(const wxFont
& font
);
81 virtual void SetPen(const wxPen
& pen
);
82 virtual void SetBrush(const wxBrush
& brush
);
83 virtual void SetBackground(const wxBrush
& brush
);
84 virtual void SetLogicalFunction(int function
);
85 virtual void SetBackgroundMode(int mode
);
86 virtual void SetPalette(const wxPalette
& palette
);
87 virtual void SetMapMode(int mode
);
88 virtual void DestroyClippingRegion(void);
89 virtual void SetUserScale(double x
, double y
);
90 virtual void SetLogicalOrigin(long x
, long y
);
91 virtual void SetDeviceOrigin(long x
, long y
);
92 virtual void SetAxisOrientation(bool xLeftRight
, bool yBottomUp
);
94 virtual void DoFloodFill( long x
97 ,int style
= wxFLOOD_SURFACE
99 virtual bool DoGetPixel(long x
, long y
, wxColour
*col
) const;
100 virtual void DoDrawPoint(long x
, long y
);
101 virtual void DoDrawLine(long x1
, long y1
, long x2
, long y2
);
102 virtual void DoDrawArc(long x1
, long y1
,
106 virtual void DoDrawEllipticArc( long x
, long y
108 ,double sa
, double ea
110 virtual void DoDrawRectangle(long x
, long y
, long width
, long height
);
111 virtual void DoDrawRoundedRectangle( long x
, long y
112 ,long width
, long height
115 virtual void DoDrawEllipse(long x
, long y
, long width
, long height
);
116 virtual void DoCrossHair(long x
, long y
);
117 virtual void DoDrawIcon(const wxIcon
& icon
, long x
, long y
);
118 virtual void DoDrawBitmap( const wxBitmap
&bmp
120 ,bool useMask
= FALSE
122 virtual void DoDrawText(const wxString
& text
, long x
, long y
);
123 virtual bool DoBlit( long xdest
, long ydest
124 ,long width
, long height
126 ,long xsrc
, long ysrc
127 ,int rop
= wxCOPY
, bool useMask
= FALSE
129 virtual void DoGetSize(int *width
, int *height
) const;
130 virtual void DoGetSizeMM(int* width
, int* height
) const;
131 virtual void DoDrawLines( int n
, wxPoint points
[]
132 ,long xoffset
, long yoffset
134 virtual void DoDrawPolygon( int n
, wxPoint points
[]
135 ,long xoffset
, long yoffset
136 ,int fillStyle
= wxODDEVEN_RULE
138 virtual void DoSetClippingRegionAsRegion(const wxRegion
& region
);
139 virtual void DoSetClippingRegion( long x
, long y
140 ,long width
, long height
143 virtual void DoDrawSpline(wxList
*points
);
146 //-----------------------------------------------------------------------------
147 // Other virtuals from wxDCBase that are overridden here
148 //-----------------------------------------------------------------------------
150 virtual void SetLogicalScale( double x
, double y
);
152 //-----------------------------------------------------------------------------
154 //-----------------------------------------------------------------------------
155 virtual void SetInternalDeviceOrigin( long x
, long y
);
156 virtual void GetInternalDeviceOrigin( long *x
, long *y
);
160 #if WXWIN_COMPATIBILITY
161 // function hiding warning supression
162 virtual void GetTextExtent( const wxString
& string
165 ,long* descent
= NULL
166 ,long* externalLeading
= NULL
167 ,wxFont
* theFont
= NULL
170 { wxDCBase::GetTextExtent(string
, width
, height
, descent
, externalLeading
, theFont
, use16
); };
175 // ------------------------------------------------------------------------
176 // Some additional data we need
177 // ------------------------------------------------------------------------
179 // Owner canvas and selected in bitmap (if bitmap is GDI object selected)
183 // our HDC and its usage count: we only free it when the usage count drops
188 // Store all old GDI objects when do a SelectObject, so we can select them
189 // back in (this unselecting user's objects) so we can safely delete the
191 WXHBITMAP m_oldBitmap
;
195 WXHPALETTE m_oldPalette
;