/////////////////////////////////////////////////////////////////////////////
// Name: docmdi.h
-// Purpose: documentation for wxDocMDIParentFrame class
+// Purpose: interface of wxDocMDIParentFrame
// Author: wxWidgets team
// RCS-ID: $Id$
// Licence: wxWindows license
MDI parent frames.
It cooperates with the wxView, wxDocument,
- wxDocManager and wxDocTemplates classes.
+ wxDocManager and wxDocTemplates() classes.
See the example application in @c samples/docview.
@library{wxcore}
@category{FIXME}
- @seealso
- @ref overview_docviewoverview, wxMDIParentFrame
+ @see @ref overview_docviewoverview, wxMDIParentFrame
*/
class wxDocMDIParentFrame : public wxMDIParentFrame
{
};
+
/**
@class wxDocMDIChildFrame
@wxheader{docmdi.h}
@library{wxcore}
@category{FIXME}
- @seealso
- @ref overview_docviewoverview, wxMDIChildFrame
+ @see @ref overview_docviewoverview, wxMDIChildFrame
*/
class wxDocMDIChildFrame : public wxMDIChildFrame
{
/**
Returns the document associated with this frame.
*/
- wxDocument* GetDocument();
+ wxDocument* GetDocument() const;
/**
Returns the view associated with this frame.
*/
- wxView* GetView();
+ wxView* GetView() const;
/**
Sets the currently active view to be the frame's view. You may need
The view associated with the frame.
*/
};
+