]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/dcclient.h
moved smart phone test to chkconf.h from features.h
[wxWidgets.git] / include / wx / mac / dcclient.h
index 284f5e3aef1472e18dd9711638d8907cd0a03e7c..02407e06023baf1dec88d77b075d0724ded2411b 100644 (file)
@@ -6,7 +6,7 @@
 // Created:     1998-01-01
 // RCS-ID:      $Id$
 // Copyright:   (c) Stefan Csomor
-// Licence:    wxWindows licence
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 #ifndef _WX_DCCLIENT_H_
@@ -36,6 +36,9 @@ class WXDLLEXPORT wxWindowDC: public wxDC
   wxWindowDC(wxWindow *win);
 
   ~wxWindowDC(void);
+  virtual void DoGetSize( int *width, int *height ) const;
+  protected :
+    wxWindow     *m_window;
 };
 
 
@@ -50,6 +53,7 @@ class WXDLLEXPORT wxClientDC: public wxWindowDC
   wxClientDC(wxWindow *win);
 
   ~wxClientDC(void);
+  virtual void DoGetSize( int *width, int *height ) const;
 };
 
 class WXDLLEXPORT wxPaintDC: public wxWindowDC
@@ -63,6 +67,7 @@ class WXDLLEXPORT wxPaintDC: public wxWindowDC
   wxPaintDC(wxWindow *win);
 
   ~wxPaintDC(void);
+  virtual void DoGetSize( int *width, int *height ) const;
 };
 
 #endif