This weeks interface and compile catchup

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14437 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Webster
2002-03-01 19:50:08 +00:00
parent ea1ad04b43
commit bc5a847c1b
5 changed files with 89 additions and 164 deletions

View File

@@ -37,12 +37,21 @@ class WXDLLEXPORT wxWindowDC : public wxDC
public:
wxWindowDC();
//
// Create a DC corresponding to the whole window
//
wxWindowDC(wxWindow* pWin);
protected:
void InitDC(void);
//
// Override some base class virtuals
//
virtual void DoGetSize( int* pWidth
,int* pHeight
) const;
private:
SIZEL m_PageSize;
DECLARE_DYNAMIC_CLASS(wxWindowDC)
@@ -59,6 +68,13 @@ public:
protected:
void InitDC(void);
//
// Override some base class virtuals
//
virtual void DoGetSize( int* pWidth
,int* pHeight
) const;
private:
DECLARE_DYNAMIC_CLASS(wxClientDC)
}; // end of CLASS wxClientDC