]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/stubs/dcclient.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxClientDC, wxPaintDC and wxWindowDC classes
8 // Copyright: (c) AUTHOR
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_DCCLIENT_H_
13 #define _WX_DCCLIENT_H_
16 #pragma interface "dcclient.h"
21 //-----------------------------------------------------------------------------
23 //-----------------------------------------------------------------------------
25 class WXDLLEXPORT wxPaintDC
;
26 class WXDLLEXPORT wxWindow
;
28 // Under Windows, wxClientDC, wxPaintDC and wxWindowDC are implemented differently.
29 // On many platforms, however, they will be the same.
31 class WXDLLEXPORT wxWindowDC
: public wxDC
33 DECLARE_DYNAMIC_CLASS(wxWindowDC
)
38 wxWindowDC( wxWindow
*win
);
42 virtual void FloodFill( long x1
, long y1
, const wxColour
& col
, int style
=wxFLOOD_SURFACE
);
43 virtual bool GetPixel( long x1
, long y1
, wxColour
*col
) const;
45 virtual void DrawLine( long x1
, long y1
, long x2
, long y2
);
46 virtual void CrossHair( long x
, long y
);
47 virtual void DrawArc( long x1
, long y1
, long x2
, long y2
, long xc
, long yc
);
48 virtual void DrawEllipticArc( long x
, long y
, long width
, long height
, double sa
, double ea
);
49 virtual void DrawPoint( long x
, long y
);
51 virtual void DrawLines( int n
, wxPoint points
[], long xoffset
= 0, long yoffset
= 0 );
52 virtual void DrawLines( wxList
*points
, long xoffset
= 0, long yoffset
= 0 );
53 virtual void DrawPolygon( int n
, wxPoint points
[], long xoffset
= 0, long yoffset
= 0,
54 int fillStyle
=wxODDEVEN_RULE
);
55 virtual void DrawPolygon( wxList
*lines
, long xoffset
= 0, long yoffset
= 0,
56 int fillStyle
=wxODDEVEN_RULE
);
58 virtual void DrawRectangle( long x
, long y
, long width
, long height
);
59 virtual void DrawRoundedRectangle( long x
, long y
, long width
, long height
, double radius
= 20.0 );
60 virtual void DrawEllipse( long x
, long y
, long width
, long height
);
62 virtual bool CanDrawBitmap(void) const;
63 virtual void DrawIcon( const wxIcon
&icon
, long x
, long y
, bool useMask
=FALSE
);
64 virtual bool Blit( long xdest
, long ydest
, long width
, long height
,
65 wxDC
*source
, long xsrc
, long ysrc
, int logical_func
= wxCOPY
, bool useMask
=FALSE
);
67 virtual void DrawText( const wxString
&text
, long x
, long y
, bool use16
= FALSE
);
68 virtual bool CanGetTextExtent(void) const;
69 virtual void GetTextExtent( const wxString
&string
, long *width
, long *height
,
70 long *descent
= NULL
, long *externalLeading
= NULL
,
71 wxFont
*theFont
= NULL
, bool use16
= FALSE
);
72 virtual long GetCharWidth(void);
73 virtual long GetCharHeight(void);
75 virtual void Clear(void);
77 virtual void SetFont( const wxFont
&font
);
78 virtual void SetPen( const wxPen
&pen
);
79 virtual void SetBrush( const wxBrush
&brush
);
80 virtual void SetBackground( const wxBrush
&brush
);
81 virtual void SetLogicalFunction( int function
);
82 virtual void SetTextForeground( const wxColour
&col
);
83 virtual void SetTextBackground( const wxColour
&col
);
84 virtual void SetBackgroundMode( int mode
);
85 virtual void SetPalette( const wxPalette
& palette
);
87 virtual void SetClippingRegion( long x
, long y
, long width
, long height
);
88 virtual void SetClippingRegion( const wxRegion
& region
) ;
89 virtual void DestroyClippingRegion(void);
91 virtual void DrawSpline( wxList
*points
);
94 //-----------------------------------------------------------------------------
96 //-----------------------------------------------------------------------------
98 class WXDLLEXPORT wxPaintDC
: public wxWindowDC
100 DECLARE_DYNAMIC_CLASS(wxPaintDC
)
104 wxPaintDC(void):wxWindowDC() {};
105 wxPaintDC( wxWindow
*win
): wxWindowDC(win
) {};
109 //-----------------------------------------------------------------------------
111 //-----------------------------------------------------------------------------
113 class WXDLLEXPORT wxClientDC
: public wxWindowDC
115 DECLARE_DYNAMIC_CLASS(wxClientDC
)
119 wxClientDC(void):wxWindowDC() {};
120 wxClientDC( wxWindow
*win
): wxWindowDC(win
) {};