]> git.saurik.com Git - wxWidgets.git/blame - include/wx/dfb/dcclient.h
ignore vc*_msw* build directories
[wxWidgets.git] / include / wx / dfb / dcclient.h
CommitLineData
b3c86150
VS
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/dfb/dcclient.h
4a624f6e 3// Purpose: wxWindowDCImpl, wxClientDCImpl and wxPaintDCImpl
b3c86150
VS
4// Author: Vaclav Slavik
5// Created: 2006-08-10
6// RCS-ID: $Id$
7// Copyright: (c) 2006 REA Elektronik GmbH
8// Licence: wxWindows licence
9/////////////////////////////////////////////////////////////////////////////
10
11#ifndef _WX_DFB_DCCLIENT_H_
12#define _WX_DFB_DCCLIENT_H_
13
4a624f6e 14#include "wx/dfb/dc.h"
b3c86150 15
b5dbe15d 16class WXDLLIMPEXP_FWD_CORE wxWindow;
b3c86150
VS
17
18//-----------------------------------------------------------------------------
4a624f6e 19// wxWindowDCImpl
b3c86150
VS
20//-----------------------------------------------------------------------------
21
4a624f6e 22class WXDLLIMPEXP_CORE wxWindowDCImpl : public wxDFBDCImpl
b3c86150
VS
23{
24public:
4a624f6e
VZ
25 wxWindowDCImpl(wxDC *owner) : wxDFBDCImpl(owner), m_shouldFlip(false) { }
26 wxWindowDCImpl(wxDC *owner, wxWindow *win);
27 virtual ~wxWindowDCImpl();
b3c86150 28
30c841c8
VS
29 virtual wxWindow *GetWindow() const { return m_win; }
30
b3c86150 31protected:
716af436
VS
32 // initializes the DC for painting on given window; if rect!=NULL, then
33 // for painting only on the given region of the window
34 void InitForWin(wxWindow *win, const wxRect *rect);
b3c86150 35
20671963 36private:
30c841c8
VS
37 wxWindow *m_win;
38 wxRect m_winRect; // rectangle of the window being painted
39
4dc9a81d 40 bool m_shouldFlip; // flip the surface when done?
20671963 41
30c841c8
VS
42 friend class wxOverlayImpl; // for m_shouldFlip;
43
4a624f6e
VZ
44 DECLARE_DYNAMIC_CLASS(wxWindowDCImpl)
45 DECLARE_NO_COPY_CLASS(wxWindowDCImpl)
b3c86150
VS
46};
47
b3c86150 48//-----------------------------------------------------------------------------
4a624f6e 49// wxClientDCImpl
b3c86150
VS
50//-----------------------------------------------------------------------------
51
4a624f6e 52class WXDLLIMPEXP_CORE wxClientDCImpl : public wxWindowDCImpl
b3c86150
VS
53{
54public:
4a624f6e
VZ
55 wxClientDCImpl(wxDC *owner) : wxWindowDCImpl(owner) { }
56 wxClientDCImpl(wxDC *owner, wxWindow *win);
b3c86150 57
4a624f6e
VZ
58 DECLARE_DYNAMIC_CLASS(wxClientDCImpl)
59 DECLARE_NO_COPY_CLASS(wxClientDCImpl)
b3c86150
VS
60};
61
62
63//-----------------------------------------------------------------------------
4a624f6e 64// wxPaintDCImpl
b3c86150
VS
65//-----------------------------------------------------------------------------
66
4a624f6e 67class WXDLLIMPEXP_CORE wxPaintDCImpl : public wxClientDCImpl
b3c86150
VS
68{
69public:
4a624f6e
VZ
70 wxPaintDCImpl(wxDC *owner) : wxClientDCImpl(owner) { }
71 wxPaintDCImpl(wxDC *owner, wxWindow *win) : wxClientDCImpl(owner, win) { }
b3c86150 72
4a624f6e
VZ
73 DECLARE_DYNAMIC_CLASS(wxPaintDCImpl)
74 DECLARE_NO_COPY_CLASS(wxPaintDCImpl)
b3c86150
VS
75};
76
77#endif // _WX_DFB_DCCLIENT_H_