DoGetSize overrides
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20669 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
1da7f7a5be
commit
5f965f0b41
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user