#ifndef _WX_FRAME_H_
#define _WX_FRAME_H_
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
- #pragma interface "frame.h"
-#endif
-
class WXDLLEXPORT wxFrame : public wxFrameBase
{
public:
{ return m_useNativeStatusBar; };
#endif // wxUSE_STATUSBAR
+#if wxUSE_MENUS
WXHMENU GetWinMenu() const { return m_hMenu; }
+#endif // wxUSE_MENUS
// event handlers
bool HandlePaint();
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;