wxPoint ClientToScreen(const wxPoint& pt)
    wxPoint ScreenToClient(const wxPoint& pt)

back into class wxWindow


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2488 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
1999-05-17 17:07:46 +00:00
parent 119f7a8c81
commit 7af6f32725
4 changed files with 21 additions and 9 deletions

View File

@@ -611,7 +611,7 @@ public:
virtual WXWidget GetHandle() const = 0;
protected:
// the window id - a number which uniquely identifies a window among
// the window id - a number which uniquely identifies a window among
// its siblings unless it is -1
wxWindowID m_windowId;
@@ -763,8 +763,8 @@ inline wxWindow *wxWindowBase::GetGrandParent() const
// global function
// ----------------------------------------------------------------------------
extern wxWindow* WXDLLEXPORT wxGetActiveWindow();
inline int WXDLLEXPORT NewControlId() { return wxWindowBase::NewControlId(); }
WXDLLEXPORT extern wxWindow* wxGetActiveWindow();
inline WXDLLEXPORT int NewControlId() { return wxWindowBase::NewControlId(); }
#endif
// _WX_WINDOW_H_BASE_