/////////////////////////////////////////////////////////////////////////////
// Name: wx/cocoa/dcclient.h
/////////////////////////////////////////////////////////////////////////////
// Name: wx/cocoa/dcclient.h
// DFE: A while ago I stumbled upon the fact that retrieving the parent
// NSView of the content view seems to return the entire window rectangle
// (including decorations). Of course, that is not at all part of the
// Cocoa or OpenStep APIs, but it might be a neat hack.
// DFE: A while ago I stumbled upon the fact that retrieving the parent
// NSView of the content view seems to return the entire window rectangle
// (including decorations). Of course, that is not at all part of the
// Cocoa or OpenStep APIs, but it might be a neat hack.
- wxWindowDC(wxWindow *win);
- virtual ~wxWindowDC(void);
+ wxWindowDCImpl(wxDC *owner, wxWindow *win);
+ virtual ~wxWindowDCImpl(void);
- wxClientDC(wxWindow *win);
- virtual ~wxClientDC(void);
+ wxClientDCImpl(wxDC *owner, wxWindow *win);
+ virtual ~wxClientDCImpl(void);
- wxPaintDC(wxWindow *win);
- virtual ~wxPaintDC(void);
+ wxPaintDCImpl(wxDC *owner, wxWindow *win);
+ virtual ~wxPaintDCImpl(void);