]>
Commit | Line | Data |
---|---|---|
9b6dbb09 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 | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_DCCLIENT_H_ | |
13 | #define _WX_DCCLIENT_H_ | |
14 | ||
15 | #ifdef __GNUG__ | |
16 | #pragma interface "dcclient.h" | |
17 | #endif | |
18 | ||
19 | #include "wx/dc.h" | |
20 | ||
21 | //----------------------------------------------------------------------------- | |
22 | // classes | |
23 | //----------------------------------------------------------------------------- | |
24 | ||
dfc54541 | 25 | class WXDLLEXPORT wxWindowDC; |
9b6dbb09 JS |
26 | class WXDLLEXPORT wxWindow; |
27 | ||
28 | // Under Windows, wxClientDC, wxPaintDC and wxWindowDC are implemented differently. | |
29 | // On many platforms, however, they will be the same. | |
30 | ||
9b6dbb09 | 31 | //----------------------------------------------------------------------------- |
dfc54541 | 32 | // wxWindowDC |
9b6dbb09 JS |
33 | //----------------------------------------------------------------------------- |
34 | ||
dfc54541 | 35 | class WXDLLEXPORT wxWindowDC: public wxDC |
9b6dbb09 | 36 | { |
dfc54541 | 37 | DECLARE_DYNAMIC_CLASS(wxWindowDC) |
9b6dbb09 JS |
38 | |
39 | public: | |
40 | ||
dfc54541 JS |
41 | wxWindowDC(void); |
42 | wxWindowDC( wxWindow *win ); | |
9b6dbb09 | 43 | |
dfc54541 | 44 | ~wxWindowDC(void); |
9b6dbb09 JS |
45 | |
46 | virtual void FloodFill( long x1, long y1, wxColour* col, int style=wxFLOOD_SURFACE ); | |
47 | virtual bool GetPixel( long x1, long y1, wxColour *col ) const; | |
48 | ||
49 | virtual void DrawLine( long x1, long y1, long x2, long y2 ); | |
50 | virtual void CrossHair( long x, long y ); | |
51 | virtual void DrawArc( long x1, long y1, long x2, long y2, long xc, long yc ); | |
52 | virtual void DrawEllipticArc( long x, long y, long width, long height, double sa, double ea ); | |
53 | virtual void DrawPoint( long x, long y ); | |
54 | ||
55 | virtual void DrawLines( int n, wxPoint points[], long xoffset = 0, long yoffset = 0 ); | |
56 | virtual void DrawLines( wxList *points, long xoffset = 0, long yoffset = 0 ); | |
57 | virtual void DrawPolygon( int n, wxPoint points[], long xoffset = 0, long yoffset = 0, | |
58 | int fillStyle=wxODDEVEN_RULE ); | |
59 | virtual void DrawPolygon( wxList *lines, long xoffset = 0, long yoffset = 0, | |
60 | int fillStyle=wxODDEVEN_RULE ); | |
61 | ||
62 | virtual void DrawRectangle( long x, long y, long width, long height ); | |
63 | virtual void DrawRoundedRectangle( long x, long y, long width, long height, double radius = 20.0 ); | |
64 | virtual void DrawEllipse( long x, long y, long width, long height ); | |
65 | ||
66 | virtual bool CanDrawBitmap(void) const; | |
67 | virtual void DrawIcon( const wxIcon &icon, long x, long y, bool useMask=FALSE ); | |
68 | virtual bool Blit( long xdest, long ydest, long width, long height, | |
69 | wxDC *source, long xsrc, long ysrc, int logical_func = wxCOPY, bool useMask=FALSE ); | |
70 | ||
71 | virtual void DrawText( const wxString &text, long x, long y, bool use16 = FALSE ); | |
72 | virtual bool CanGetTextExtent(void) const; | |
73 | virtual void GetTextExtent( const wxString &string, long *width, long *height, | |
74 | long *descent = NULL, long *externalLeading = NULL, | |
75 | wxFont *theFont = NULL, bool use16 = FALSE ); | |
76 | virtual long GetCharWidth(void); | |
77 | virtual long GetCharHeight(void); | |
78 | ||
79 | virtual void Clear(void); | |
80 | ||
81 | virtual void SetFont( const wxFont &font ); | |
82 | virtual void SetPen( const wxPen &pen ); | |
83 | virtual void SetBrush( const wxBrush &brush ); | |
84 | virtual void SetBackground( const wxBrush &brush ); | |
85 | virtual void SetLogicalFunction( int function ); | |
86 | virtual void SetTextForeground( const wxColour &col ); | |
87 | virtual void SetTextBackground( const wxColour &col ); | |
88 | virtual void SetBackgroundMode( int mode ); | |
89 | virtual void SetPalette( const wxPalette& palette ); | |
90 | ||
91 | virtual void SetClippingRegion( long x, long y, long width, long height ); | |
92 | virtual void DestroyClippingRegion(void); | |
93 | ||
dfad0599 | 94 | virtual void DrawSpline( wxList *points ); |
dfc54541 | 95 | |
16c1f7f3 JS |
96 | // Motif-specific |
97 | void SetDCClipping (); // Helper function for setting clipping | |
98 | ||
47bc1060 | 99 | inline WXGC GetGC() const { return m_gc; } |
a4294b78 | 100 | inline WXDisplay* GetDisplay() const { return m_display; } |
47bc1060 JS |
101 | inline bool GetAutoSetting() const { return m_autoSetting; } |
102 | inline void SetAutoSetting(bool flag) { m_autoSetting = flag; } | |
103 | ||
dfc54541 JS |
104 | protected: |
105 | WXGC m_gc; | |
106 | WXGC m_gcBacking; | |
107 | WXDisplay* m_display; | |
108 | wxWindow* m_window; | |
16c1f7f3 JS |
109 | WXRegion m_currentRegion; // Current clipping region (incl. paint clip region) |
110 | WXRegion m_userRegion; // User-defined clipping region | |
111 | WXPixmap m_pixmap; // Pixmap for drawing on | |
dfc54541 JS |
112 | |
113 | // Not sure if we'll need all of these | |
114 | int m_backgroundPixel; | |
115 | wxColour m_currentColour; | |
16c1f7f3 | 116 | // int m_currentBkMode; |
dfc54541 JS |
117 | int m_currentPenWidth ; |
118 | int m_currentPenJoin ; | |
119 | int m_currentPenCap ; | |
120 | int m_currentPenDashCount ; | |
121 | char* m_currentPenDash ; | |
122 | wxBitmap m_currentStipple ; | |
123 | int m_currentStyle ; | |
124 | int m_currentFill ; | |
16c1f7f3 | 125 | int m_autoSetting ; // See comment in dcclient.cpp |
e97f20a0 | 126 | WXFont m_oldFont; |
16c1f7f3 JS |
127 | }; |
128 | ||
129 | class WXDLLEXPORT wxPaintDC: public wxWindowDC | |
130 | { | |
131 | DECLARE_DYNAMIC_CLASS(wxPaintDC) | |
132 | public: | |
133 | wxPaintDC() {} | |
55acd85e JS |
134 | wxPaintDC(wxWindow* win); |
135 | ~wxPaintDC(); | |
16c1f7f3 JS |
136 | }; |
137 | ||
138 | class WXDLLEXPORT wxClientDC: public wxWindowDC | |
139 | { | |
140 | DECLARE_DYNAMIC_CLASS(wxClientDC) | |
141 | public: | |
142 | wxClientDC() {} | |
143 | wxClientDC(wxWindow* win): wxWindowDC(win) {} | |
9b6dbb09 JS |
144 | }; |
145 | ||
146 | #endif | |
147 | // _WX_DCCLIENT_H_ |