X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/96dcd41a121908339af548ea4026012e7c73746d..21849f3a8ed2e3ebdc642b349675d1e54095c545:/include/wx/msw/toplevel.h?ds=inline diff --git a/include/wx/msw/toplevel.h b/include/wx/msw/toplevel.h index fb63cda2d9..3647a33b9b 100644 --- a/include/wx/msw/toplevel.h +++ b/include/wx/msw/toplevel.h @@ -92,6 +92,15 @@ public: virtual bool HandleSettingChange(WXWPARAM wParam, WXLPARAM lParam); #endif + // translate wxWidgets flags to Windows ones + virtual WXDWORD MSWGetStyle(long flags, WXDWORD *exstyle) const; + + // choose the right parent to use with CreateWindow() + virtual WXHWND MSWGetParent() const; + + // window proc for the frames + WXLRESULT MSWWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lParam); + protected: // common part of all ctors void Init(); @@ -111,15 +120,6 @@ protected: // common part of Iconize(), Maximize() and Restore() void DoShowWindow(int nShowCmd); - // translate wxWidgets flags to Windows ones - virtual WXDWORD MSWGetStyle(long flags, WXDWORD *exstyle) const; - - // choose the right parent to use with CreateWindow() - virtual WXHWND MSWGetParent() const; - - // window proc for the frames - WXLRESULT MSWWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lParam); - // is the window currently iconized? bool m_iconized;