]>
Commit | Line | Data |
---|---|---|
83df96d6 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: dcclient.h | |
3 | // Purpose: wxClientDC, wxPaintDC and wxWindowDC classes | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 17/09/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
65571936 | 9 | // Licence: wxWindows licence |
83df96d6 JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_DCCLIENT_H_ | |
13 | #define _WX_DCCLIENT_H_ | |
14 | ||
83df96d6 | 15 | #include "wx/dc.h" |
3cd0b8c5 | 16 | #include "wx/region.h" |
83df96d6 JS |
17 | |
18 | // ----------------------------------------------------------------------------- | |
19 | // fwd declarations | |
20 | // ----------------------------------------------------------------------------- | |
21 | ||
968eb2ef | 22 | class WXDLLIMPEXP_CORE wxWindow; |
83df96d6 | 23 | |
968eb2ef MW |
24 | class WXDLLIMPEXP_CORE wxWindowDC; |
25 | class WXDLLIMPEXP_CORE wxPaintDC; | |
26 | class WXDLLIMPEXP_CORE wxClientDC; | |
83df96d6 JS |
27 | |
28 | //----------------------------------------------------------------------------- | |
29 | // wxWindowDC | |
30 | //----------------------------------------------------------------------------- | |
31 | ||
968eb2ef | 32 | class WXDLLIMPEXP_CORE wxWindowDC : public wxDC |
83df96d6 | 33 | { |
83df96d6 JS |
34 | public: |
35 | wxWindowDC(); | |
36 | wxWindowDC( wxWindow *win ); | |
b1263dcf | 37 | |
83df96d6 | 38 | ~wxWindowDC(); |
b1263dcf WS |
39 | |
40 | virtual bool CanDrawBitmap() const { return true; } | |
41 | virtual bool CanGetTextExtent() const { return true; } | |
3cd0b8c5 | 42 | |
83df96d6 | 43 | protected: |
3cd0b8c5 | 44 | virtual void DoGetSize(int *width, int *height) const; |
387ebd3e | 45 | virtual bool DoFloodFill( wxCoord x, wxCoord y, const wxColour& col, int style = wxFLOOD_SURFACE ); |
3cd0b8c5 | 46 | virtual bool DoGetPixel( wxCoord x, wxCoord y, wxColour *col ) const; |
b1263dcf | 47 | |
83df96d6 JS |
48 | virtual void DoDrawPoint(wxCoord x, wxCoord y); |
49 | virtual void DoDrawLine(wxCoord x1, wxCoord y1, wxCoord x2, wxCoord y2); | |
b1263dcf | 50 | |
3cd0b8c5 RR |
51 | virtual void DoDrawIcon( const wxIcon &icon, wxCoord x, wxCoord y ); |
52 | virtual void DoDrawBitmap( const wxBitmap &bitmap, wxCoord x, wxCoord y, | |
b1263dcf | 53 | bool useMask = false ); |
3cd0b8c5 | 54 | |
83df96d6 JS |
55 | virtual void DoDrawArc(wxCoord x1, wxCoord y1, |
56 | wxCoord x2, wxCoord y2, | |
57 | wxCoord xc, wxCoord yc); | |
58 | virtual void DoDrawEllipticArc(wxCoord x, wxCoord y, wxCoord w, wxCoord h, | |
59 | double sa, double ea); | |
b1263dcf | 60 | |
83df96d6 JS |
61 | virtual void DoDrawRectangle(wxCoord x, wxCoord y, wxCoord width, wxCoord height); |
62 | virtual void DoDrawRoundedRectangle(wxCoord x, wxCoord y, | |
63 | wxCoord width, wxCoord height, | |
64 | double radius); | |
65 | virtual void DoDrawEllipse(wxCoord x, wxCoord y, wxCoord width, wxCoord height); | |
b1263dcf | 66 | |
83df96d6 | 67 | virtual void DoCrossHair(wxCoord x, wxCoord y); |
b1263dcf | 68 | |
83df96d6 JS |
69 | virtual void DoDrawText(const wxString& text, wxCoord x, wxCoord y); |
70 | virtual void DoDrawRotatedText(const wxString &text, wxCoord x, wxCoord y, double angle); | |
b1263dcf | 71 | |
83df96d6 JS |
72 | virtual bool DoBlit(wxCoord xdest, wxCoord ydest, wxCoord width, wxCoord height, |
73 | wxDC *source, wxCoord xsrc, wxCoord ysrc, | |
b1263dcf WS |
74 | int rop = wxCOPY, bool useMask = false, wxCoord xsrcMask = -1, wxCoord ysrcMask = -1); |
75 | ||
83df96d6 JS |
76 | virtual void DoSetClippingRegionAsRegion(const wxRegion& region); |
77 | virtual void DoSetClippingRegion(wxCoord x, wxCoord y, | |
78 | wxCoord width, wxCoord height); | |
b1263dcf | 79 | |
83df96d6 JS |
80 | virtual void DoDrawLines(int n, wxPoint points[], |
81 | wxCoord xoffset, wxCoord yoffset); | |
82 | virtual void DoDrawPolygon(int n, wxPoint points[], | |
83 | wxCoord xoffset, wxCoord yoffset, | |
84 | int fillStyle = wxODDEVEN_RULE); | |
3cd0b8c5 RR |
85 | |
86 | ||
87 | public: | |
88 | virtual void Clear(); | |
b1263dcf | 89 | |
3cd0b8c5 RR |
90 | virtual void SetFont(const wxFont& font); |
91 | virtual void SetPen(const wxPen& pen); | |
92 | virtual void SetBrush(const wxBrush& brush); | |
93 | virtual void SetBackground(const wxBrush& brush); | |
94 | virtual void SetBackgroundMode(int mode); | |
95 | virtual void SetPalette(const wxPalette& palette); | |
96 | virtual void SetLogicalFunction( int function ); | |
b1263dcf | 97 | |
3cd0b8c5 RR |
98 | virtual void SetTextForeground(const wxColour& colour); |
99 | virtual void SetTextBackground(const wxColour& colour); | |
b1263dcf | 100 | |
3cd0b8c5 RR |
101 | virtual wxCoord GetCharHeight() const; |
102 | virtual wxCoord GetCharWidth() const; | |
103 | virtual void DoGetTextExtent(const wxString& string, | |
104 | wxCoord *x, wxCoord *y, | |
105 | wxCoord *descent = NULL, | |
106 | wxCoord *externalLeading = NULL, | |
107 | wxFont *theFont = NULL) const; | |
b1263dcf | 108 | |
3cd0b8c5 RR |
109 | virtual int GetDepth() const; |
110 | virtual wxSize GetPPI() const; | |
b1263dcf | 111 | |
3cd0b8c5 | 112 | virtual void DestroyClippingRegion(); |
32f8e363 | 113 | WXWindow GetWindow() const { return m_window; } |
3cd0b8c5 | 114 | |
b1263dcf | 115 | protected: |
3cd0b8c5 RR |
116 | // implementation |
117 | // -------------- | |
118 | ||
119 | WXDisplay *m_display; | |
120 | WXWindow m_window; | |
121 | WXGC m_penGC; | |
122 | WXGC m_brushGC; | |
123 | WXGC m_textGC; | |
124 | WXGC m_bgGC; | |
125 | WXColormap m_cmap; | |
126 | bool m_isMemDC; | |
127 | bool m_isScreenDC; | |
128 | wxWindow *m_owner; | |
129 | wxRegion m_currentClippingRegion; | |
130 | wxRegion m_paintClippingRegion; | |
131 | ||
2b5f62a0 VZ |
132 | #if wxUSE_UNICODE |
133 | PangoContext *m_context; | |
134 | PangoFontDescription *m_fontdesc; | |
135 | #endif | |
136 | ||
3cd0b8c5 RR |
137 | void SetUpDC(); |
138 | void Destroy(); | |
b1263dcf | 139 | virtual void ComputeScaleAndOrigin(); |
3cd0b8c5 RR |
140 | |
141 | private: | |
142 | DECLARE_DYNAMIC_CLASS(wxWindowDC) | |
83df96d6 JS |
143 | }; |
144 | ||
3cd0b8c5 RR |
145 | //----------------------------------------------------------------------------- |
146 | // wxClientDC | |
147 | //----------------------------------------------------------------------------- | |
148 | ||
968eb2ef | 149 | class WXDLLIMPEXP_CORE wxClientDC : public wxWindowDC |
83df96d6 | 150 | { |
83df96d6 | 151 | public: |
3cd0b8c5 RR |
152 | wxClientDC() { } |
153 | wxClientDC( wxWindow *win ); | |
154 | ||
155 | protected: | |
156 | virtual void DoGetSize(int *width, int *height) const; | |
157 | ||
158 | private: | |
159 | DECLARE_DYNAMIC_CLASS(wxClientDC) | |
83df96d6 JS |
160 | }; |
161 | ||
3cd0b8c5 RR |
162 | //----------------------------------------------------------------------------- |
163 | // wxPaintDC | |
164 | //----------------------------------------------------------------------------- | |
165 | ||
968eb2ef | 166 | class WXDLLIMPEXP_CORE wxPaintDC : public wxClientDC |
83df96d6 | 167 | { |
83df96d6 | 168 | public: |
3cd0b8c5 RR |
169 | wxPaintDC() { } |
170 | wxPaintDC( wxWindow *win ); | |
171 | ||
172 | private: | |
173 | DECLARE_DYNAMIC_CLASS(wxPaintDC) | |
83df96d6 JS |
174 | }; |
175 | ||
176 | #endif | |
177 | // _WX_DCCLIENT_H_ |