X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/655719367ac5e131d9642e5783f3ecf64d1a3385..6926b9c403f8d1917af007042a333b2a04d8b35c:/include/wx/msw/frame.h diff --git a/include/wx/msw/frame.h b/include/wx/msw/frame.h index 8cb8cb3432..a925030e4a 100644 --- a/include/wx/msw/frame.h +++ b/include/wx/msw/frame.h @@ -57,7 +57,7 @@ public: // Toolbar #if wxUSE_TOOLBAR virtual wxToolBar* CreateToolBar(long style = -1, - wxWindowID id = -1, + wxWindowID id = wxID_ANY, const wxString& name = wxToolBarNameStr); virtual void PositionToolBar(); @@ -83,7 +83,9 @@ public: { return m_useNativeStatusBar; }; #endif // wxUSE_STATUSBAR +#if wxUSE_MENUS WXHMENU GetWinMenu() const { return m_hMenu; } +#endif // wxUSE_MENUS // event handlers bool HandlePaint(); @@ -102,6 +104,8 @@ public: // current size - this has an effect of refreshing the window layout virtual void SendSizeEvent(); + virtual wxPoint GetClientAreaOrigin() const; + protected: // common part of all ctors void Init(); @@ -131,7 +135,7 @@ protected: // handle WM_INITMENUPOPUP message bool HandleInitMenuPopup(WXHMENU hMenu); - virtual bool IsMDIChild() const { return FALSE; } + virtual bool IsMDIChild() const { return false; } // get default (wxWidgets) icon for the frame virtual WXHICON GetDefaultIcon() const; @@ -140,15 +144,18 @@ protected: static bool m_useNativeStatusBar; #endif // wxUSE_STATUSBAR - // Data to save/restore when calling ShowFullScreen - int m_fsStatusBarFields; // 0 for no status bar - int m_fsStatusBarHeight; - int m_fsToolBarHeight; +#if wxUSE_MENUS + // frame menu, NULL if none + WXHMENU m_hMenu; +#endif // wxUSE_MENUS private: #if wxUSE_TOOLTIPS WXHWND m_hwndToolTip; #endif // tooltips +#if defined(__SMARTPHONE__) || defined(__POCKETPC__) + void* m_activateInfo; +#endif // used by IconizeChildFrames(), see comments there bool m_wasMinimized;