]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/cmdproc.h
more utils.h fixes
[wxWidgets.git] / interface / cmdproc.h
index 89cd956dfdf9085423d9386ecc490b1636fb1948..21b5adc151b415156abc3d95c69bb97abcb5f910 100644 (file)
@@ -1,6 +1,6 @@
 /////////////////////////////////////////////////////////////////////////////
 // Name:        cmdproc.h
-// Purpose:     documentation for wxCommand class
+// Purpose:     interface of wxCommand
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
 // Licence:     wxWindows license
@@ -18,8 +18,7 @@
     @library{wxcore}
     @category{FIXME}
 
-    @seealso
-    Overview
+    @see Overview()
 */
 class wxCommand : public wxObject
 {
@@ -81,6 +80,7 @@ public:
 };
 
 
+
 /**
     @class wxCommandProcessor
     @wxheader{cmdproc.h}
@@ -92,8 +92,7 @@ public:
     @library{wxcore}
     @category{FIXME}
 
-    @seealso
-    @ref overview_wxcommandprocessoroverview "wxCommandProcessor overview",
+    @see @ref overview_wxcommandprocessoroverview "wxCommandProcessor overview",
     wxCommand
 */
 class wxCommandProcessor : public wxObject
@@ -126,37 +125,37 @@ public:
     /**
         Returns the list of commands.
     */
-    wxList GetCommands();
+    wxList GetCommands() const;
 
     /**
         Returns the edit menu associated with the command processor.
     */
-    wxMenu* GetEditMenu();
+    wxMenu* GetEditMenu() const;
 
     /**
         Returns the maximum number of commands that the command processor stores.
     */
-    int GetMaxCommands();
+    int GetMaxCommands() const;
 
     /**
         Returns the string that will be appended to the Redo menu item.
     */
-    const wxString GetRedoAccelerator();
+    const wxString GetRedoAccelerator() const;
 
     /**
         Returns the string that will be shown for the redo menu item.
     */
-    wxString GetRedoMenuLabel();
+    wxString GetRedoMenuLabel() const;
 
     /**
         Returns the string that will be appended to the Undo menu item.
     */
-    const wxString GetUndoAccelerator();
+    const wxString GetUndoAccelerator() const;
 
     /**
         Returns the string that will be shown for the undo menu item.
     */
-    wxString GetUndoMenuLabel();
+    wxString GetUndoMenuLabel() const;
 
     /**
         Initializes the command processor, setting the current command to the
@@ -226,3 +225,4 @@ public:
     */
     virtual bool Undo();
 };
+