]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/windowid.h
Remove never implemented wxDateTime::IsGregorianDate().
[wxWidgets.git] / interface / wx / windowid.h
index 58d02cf627a77c078ad672c7deb214155ecb6452..024e10c6902b934a3e6aeb79ac7c1d3cefe4be9c 100644 (file)
@@ -2,10 +2,14 @@
 // Name:        windowid.h
 // Purpose:     interface of wxIdManager
 // Author:      wxWidgets team
 // Name:        windowid.h
 // Purpose:     interface of wxIdManager
 // Author:      wxWidgets team
-// RCS-ID:      $Id$
-// Licence:     wxWindows license
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 /////////////////////////////////////////////////////////////////////////////
 
+/**
+    The type of unique identifiers (ID) used for wxWindow-derived classes.
+*/
+typedef int wxWindowID;
+
 /**
     @class wxIdManager
 
 /**
     @class wxIdManager
 
@@ -14,7 +18,7 @@
     and can also be used be used directly.
 
     @library{wxcore}
     and can also be used be used directly.
 
     @library{wxcore}
-    @category{misc}
+    @category{cfg}
 
     @see wxWindow::NewControlId(), wxWindow::UnreserveControlId(),
          @ref overview_windowids
 
     @see wxWindow::NewControlId(), wxWindow::UnreserveControlId(),
          @ref overview_windowids
@@ -34,7 +38,7 @@ public:
 
         @return The value of the first ID in the sequence, or wxID_NONE.
     */
 
         @return The value of the first ID in the sequence, or wxID_NONE.
     */
-    static wxWindowID ReserveControlId(int count = 1);
+    static wxWindowID ReserveId(int count = 1);
 
     /**
         Called directly by wxWindow::UnreserveControlId(), this function will
 
     /**
         Called directly by wxWindow::UnreserveControlId(), this function will
@@ -49,6 +53,6 @@ public:
 
         @return The value of the first ID in the sequence, or wxID_NONE.
     */
 
         @return The value of the first ID in the sequence, or wxID_NONE.
     */
-    static wxWindowID UnreserveControlId(wxWindowID id, int count = 1);
+    static void UnreserveId(wxWindowID id, int count = 1);
 };
 
 };