]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/frame.h
(blind) fixes for Motif compilation
[wxWidgets.git] / include / wx / msw / frame.h
index f17f7e57dfbfe722952eb74ed3c05c68b81add57..325f0acc510b96a4772cc5df38a7d6a830a022b4 100644 (file)
@@ -141,6 +141,8 @@ protected:
 
     // window proc for the frames
     long MSWWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lParam);
+    
+    virtual bool IsMDIChild() const { return FALSE; }
 
     bool                  m_iconized;
     WXHICON               m_defaultIcon;
@@ -149,6 +151,9 @@ protected:
     static bool           m_useNativeStatusBar;
 #endif // wxUSE_STATUSBAR
 
+    // the last focused child: we restore focus to it on activation
+    wxWindow             *m_winLastFocused;
+
     // Data to save/restore when calling ShowFullScreen
     long                  m_fsStyle; // Passed to ShowFullScreen
     wxRect                m_fsOldSize;