]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/frame.h
we don't need to use solid colour for background drawing when we're inside notebook...
[wxWidgets.git] / include / wx / msw / frame.h
index 17fae5715a4b3db6df90070130e65763bcea46f5..c7fb8ed76cfd1435ad3bd5d8083fd83337e6df3d 100644 (file)
@@ -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,10 @@ 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