]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/window.h
Added wxID_PAGE_SETUP standard id
[wxWidgets.git] / include / wx / window.h
index 8f76c9e7e7fc2cad7e11a3bbcbf4802bc7f9337f..6efb7a02497e65633ce96223c800d22312df2558 100644 (file)
@@ -1328,12 +1328,20 @@ protected:
     // implements the window variants
     virtual void DoSetWindowVariant( wxWindowVariant variant ) ;
 
+    // Must be called when mouse capture is lost to send
+    // wxMouseCaptureLostEvent to windows on capture stack.
+    static void NotifyCaptureLost();
+
 private:
     // contains the last id generated by NewControlId
     static int ms_lastControlId;
 
     // the stack of windows which have captured the mouse
     static struct WXDLLEXPORT wxWindowNext *ms_winCaptureNext;
+    // the window that currently has mouse capture
+    static wxWindow *ms_winCaptureCurrent;
+    // indicates if execution is inside CaptureMouse/ReleaseMouse
+    static bool ms_winCaptureChanging;
 
     DECLARE_ABSTRACT_CLASS(wxWindowBase)
     DECLARE_NO_COPY_CLASS(wxWindowBase)