]>
Commit | Line | Data |
---|---|---|
6762286d SC |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: dcclient.h | |
3 | // Purpose: wxClientDC, wxPaintDC and wxWindowDC classes | |
4 | // Author: Stefan Csomor | |
5 | // Modified by: | |
6 | // Created: 1998-01-01 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Stefan Csomor | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_DCCLIENT_H_ | |
13 | #define _WX_DCCLIENT_H_ | |
14 | ||
15 | #include "wx/dc.h" | |
16 | #include "wx/dcgraph.h" | |
17 | ||
18 | //----------------------------------------------------------------------------- | |
19 | // classes | |
20 | //----------------------------------------------------------------------------- | |
21 | ||
22 | class WXDLLIMPEXP_FWD_CORE wxPaintDC; | |
23 | class WXDLLIMPEXP_FWD_CORE wxWindow; | |
24 | ||
25 | class WXDLLIMPEXP_CORE wxWindowDCImpl: public wxGCDCImpl | |
26 | { | |
27 | public: | |
28 | wxWindowDCImpl( wxDC *owner ); | |
29 | wxWindowDCImpl( wxDC *owner, wxWindow *window ); | |
30 | virtual ~wxWindowDCImpl(); | |
31 | ||
32 | virtual void DoGetSize( int *width, int *height ) const; | |
33 | virtual wxBitmap DoGetAsBitmap(const wxRect *subrect) const; | |
34 | ||
35 | protected: | |
36 | bool m_release; | |
37 | int m_width; | |
38 | int m_height; | |
39 | ||
40 | DECLARE_CLASS(wxWindowDCImpl) | |
41 | DECLARE_NO_COPY_CLASS(wxWindowDCImpl) | |
42 | }; | |
43 | ||
44 | ||
45 | class WXDLLIMPEXP_CORE wxClientDCImpl: public wxWindowDCImpl | |
46 | { | |
47 | public: | |
48 | wxClientDCImpl( wxDC *owner ); | |
49 | wxClientDCImpl( wxDC *owner, wxWindow *window ); | |
50 | virtual ~wxClientDCImpl(); | |
51 | ||
52 | private: | |
53 | DECLARE_CLASS(wxClientDCImpl) | |
54 | DECLARE_NO_COPY_CLASS(wxClientDCImpl) | |
55 | }; | |
56 | ||
57 | ||
58 | class WXDLLIMPEXP_CORE wxPaintDCImpl: public wxWindowDCImpl | |
59 | { | |
60 | public: | |
61 | wxPaintDCImpl( wxDC *owner ); | |
62 | wxPaintDCImpl( wxDC *owner, wxWindow *win ); | |
63 | virtual ~wxPaintDCImpl(); | |
64 | ||
65 | protected: | |
66 | DECLARE_CLASS(wxPaintDCImpl) | |
67 | DECLARE_NO_COPY_CLASS(wxPaintDCImpl) | |
68 | }; | |
69 | ||
70 | ||
5c6eb3a8 | 71 | #endif |
6762286d | 72 | // _WX_DCCLIENT_H_ |