]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/propgrid/manager.h
User should no longer be able to modify disabled or read only child properties by...
[wxWidgets.git] / include / wx / propgrid / manager.h
index 9db8d251cd77d554180d548fd45fac5b3ded7bf7..5459534ea7cea9b801403989d0f1cb9968d698af 100644 (file)
@@ -4,7 +4,7 @@
 // Author:      Jaakko Salli
 // Modified by:
 // Created:     2005-01-14
-// RCS-ID:      $Id:
+// RCS-ID:      $Id$
 // Copyright:   (c) Jaakko Salli
 // Licence:     wxWindows license
 /////////////////////////////////////////////////////////////////////////////
@@ -466,6 +466,12 @@ public:
     /** Returns index to currently selected page. */
     int GetSelectedPage() const { return m_selPage; }
 
+    /** Alias for GetSelection(). */
+    wxPGProperty* GetSelectedProperty() const
+    {
+        return GetSelection();
+    }
+
     /** Shortcut for GetGrid()->GetSelection(). */
     wxPGProperty* GetSelection() const
     {
@@ -614,8 +620,6 @@ protected:
 
 public:
 
-#ifndef DOXYGEN
-
     //
     // Overridden functions - no documentation required.
     //
@@ -734,7 +738,6 @@ protected:
 private:
     DECLARE_EVENT_TABLE()
 #endif // #ifndef SWIG
-#endif // #ifndef DOXYGEN
 };
 
 // -----------------------------------------------------------------------