X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b01a88e05073b9a86c406d368be8ebb340ba9215..f014d4bf3e18198c273b3c119ad1a08d46d12c82:/include/wx/msw/frame.h?ds=sidebyside diff --git a/include/wx/msw/frame.h b/include/wx/msw/frame.h index 7decd43e5c..a925030e4a 100644 --- a/include/wx/msw/frame.h +++ b/include/wx/msw/frame.h @@ -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(); @@ -142,10 +144,18 @@ protected: static bool m_useNativeStatusBar; #endif // wxUSE_STATUSBAR +#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;