]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/frame.h
Finished review/fixes of GDI category of functions and macros.
[wxWidgets.git] / interface / frame.h
index 1ade0d6b385d17cf305ad9cc05a6c0fece75d6e6..070270286f81c23fa5e968d8bbb55de47f9f3f78 100644 (file)
@@ -1,6 +1,6 @@
 /////////////////////////////////////////////////////////////////////////////
 // Name:        frame.h
-// Purpose:     documentation for wxFrame class
+// Purpose:     interface of wxFrame
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
 // Licence:     wxWindows license
@@ -82,8 +82,7 @@
     @library{wxcore}
     @category{managedwnd}
 
-    @seealso
-    wxMDIParentFrame, wxMDIChildFrame, wxMiniFrame, wxDialog
+    @see wxMDIParentFrame, wxMDIChildFrame, wxMiniFrame, wxDialog
 */
 class wxFrame : public wxTopLevelWindow
 {
@@ -214,14 +213,14 @@ public:
         Returns the origin of the frame client area (in client coordinates). It may be
         different from (0, 0) if the frame has a toolbar.
     */
-    wxPoint GetClientAreaOrigin();
+    wxPoint GetClientAreaOrigin() const;
 
     /**
         Returns a pointer to the menubar currently associated with the frame (if any).
         
         @see SetMenuBar(), wxMenuBar, wxMenu
     */
-    wxMenuBar* GetMenuBar();
+    wxMenuBar* GetMenuBar() const;
 
     /**
         Returns a pointer to the status bar currently associated with the frame (if
@@ -229,7 +228,7 @@ public:
         
         @see CreateStatusBar(), wxStatusBar
     */
-    wxStatusBar* GetStatusBar();
+    wxStatusBar* GetStatusBar() const;
 
     /**
         Returns the status bar pane used to display menu and toolbar help.
@@ -243,7 +242,7 @@ public:
         
         @see CreateToolBar(), wxToolBar, SetToolBar()
     */
-    wxToolBar* GetToolBar();
+    wxToolBar* GetToolBar() const;
 
     /**
         Virtual function called when a status bar is requested by CreateStatusBar().
@@ -380,3 +379,4 @@ public:
     */
     void SetToolBar(wxToolBar* toolBar);
 };
+