git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@47254 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
		
			
				
	
	
		
			78 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			78 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /////////////////////////////////////////////////////////////////////////////
 | |
| // Name:        wx/dfb/dcclient.h
 | |
| // Purpose:     wxWindowDC, wxClientDC and wxPaintDC
 | |
| // Author:      Vaclav Slavik
 | |
| // Created:     2006-08-10
 | |
| // RCS-ID:      $Id$
 | |
| // Copyright:   (c) 2006 REA Elektronik GmbH
 | |
| // Licence:     wxWindows licence
 | |
| /////////////////////////////////////////////////////////////////////////////
 | |
| 
 | |
| #ifndef _WX_DFB_DCCLIENT_H_
 | |
| #define _WX_DFB_DCCLIENT_H_
 | |
| 
 | |
| #include "wx/dc.h"
 | |
| 
 | |
| class WXDLLIMPEXP_FWD_CORE wxWindow;
 | |
| 
 | |
| //-----------------------------------------------------------------------------
 | |
| // wxWindowDC
 | |
| //-----------------------------------------------------------------------------
 | |
| 
 | |
| class WXDLLIMPEXP_CORE wxWindowDC : public wxDC
 | |
| {
 | |
| public:
 | |
|     wxWindowDC() : m_shouldFlip(false) {}
 | |
|     wxWindowDC(wxWindow *win);
 | |
|     virtual ~wxWindowDC();
 | |
| 
 | |
|     virtual wxWindow *GetWindow() const { return m_win; }
 | |
| 
 | |
| protected:
 | |
|     // initializes the DC for painting on given window; if rect!=NULL, then
 | |
|     // for painting only on the given region of the window
 | |
|     void InitForWin(wxWindow *win, const wxRect *rect);
 | |
| 
 | |
| private:
 | |
|     wxWindow *m_win;
 | |
|     wxRect    m_winRect; // rectangle of the window being painted
 | |
| 
 | |
|     bool m_shouldFlip; // flip the surface when done?
 | |
| 
 | |
|     friend class wxOverlayImpl; // for m_shouldFlip;
 | |
| 
 | |
|     DECLARE_DYNAMIC_CLASS(wxWindowDC)
 | |
|     DECLARE_NO_COPY_CLASS(wxWindowDC)
 | |
| };
 | |
| 
 | |
| //-----------------------------------------------------------------------------
 | |
| // wxClientDC
 | |
| //-----------------------------------------------------------------------------
 | |
| 
 | |
| class WXDLLIMPEXP_CORE wxClientDC : public wxWindowDC
 | |
| {
 | |
| public:
 | |
|     wxClientDC() {}
 | |
|     wxClientDC(wxWindow *win);
 | |
| 
 | |
|     DECLARE_DYNAMIC_CLASS(wxClientDC)
 | |
|     DECLARE_NO_COPY_CLASS(wxClientDC)
 | |
| };
 | |
| 
 | |
| 
 | |
| //-----------------------------------------------------------------------------
 | |
| // wxPaintDC
 | |
| //-----------------------------------------------------------------------------
 | |
| 
 | |
| class WXDLLIMPEXP_CORE wxPaintDC : public wxClientDC
 | |
| {
 | |
| public:
 | |
|     wxPaintDC() {}
 | |
|     wxPaintDC(wxWindow *win) : wxClientDC(win) {}
 | |
| 
 | |
|     DECLARE_DYNAMIC_CLASS(wxPaintDC)
 | |
|     DECLARE_NO_COPY_CLASS(wxPaintDC)
 | |
| };
 | |
| 
 | |
| #endif // _WX_DFB_DCCLIENT_H_
 |