git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1514 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
		
			
				
	
	
		
			61 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			TeX
		
	
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			TeX
		
	
	
	
	
	
| \section{\class{wxDocParentFrame}}\label{wxdocparentframe}
 | |
| 
 | |
| The wxDocParentFrame class provides a default top-level frame for
 | |
| applications using the document/view framework. This class can only be used for SDI (not MDI) parent frames.
 | |
| 
 | |
| It cooperates with the \helpref{wxView}{wxview}, \helpref{wxDocument}{wxdocument},
 | |
| \rtfsp\helpref{wxDocManager}{wxdocmanager} and \helpref{wxDocTemplates}{wxdoctemplate} classes.
 | |
| 
 | |
| See the example application in {\tt samples/docview}.
 | |
| 
 | |
| \wxheading{Derived from}
 | |
| 
 | |
| \helpref{wxFrame}{wxframe}\\
 | |
| \helpref{wxWindow}{wxwindow}\\
 | |
| \helpref{wxEvtHandler}{wxevthandler}\\
 | |
| \helpref{wxObject}{wxobject}
 | |
| 
 | |
| \wxheading{See also}
 | |
| 
 | |
| \helpref{Document/view overview}{docviewoverview}, \helpref{wxFrame}{wxframe}
 | |
| 
 | |
| \latexignore{\rtfignore{\wxheading{Members}}}
 | |
| 
 | |
| \membersection{wxDocParentFrame::wxDocParentFrame}
 | |
| 
 | |
| \func{}{wxDocParentFrame}{\param{wxDocManager*}{ manager}, \param{wxFrame *}{parent}, \param{wxWindowID}{ id},
 | |
|  \param{const wxString\& }{title}, \param{const wxPoint\&}{ pos = wxDefaultPosition},
 | |
|  \param{const wxSize\&}{ size = wxDefaultSize},
 | |
|  \param{long}{ style = wxDEFAULT\_FRAME\_STYLE}, \param{const wxString\& }{name = "frame"}}
 | |
| 
 | |
| Constructor.
 | |
| 
 | |
| \membersection{wxDocParentFrame::\destruct{wxDocParentFrame}}
 | |
| 
 | |
| \func{}{\destruct{wxDocParentFrame}}{\void}
 | |
| 
 | |
| Destructor.
 | |
| 
 | |
| \membersection{wxDocParentFrame::OnCloseWindow}
 | |
| 
 | |
| \func{void}{OnCloseWindow}{\param{wxCloseEvent\&}{ event}}
 | |
| 
 | |
| Deletes all views and documents. If no user input cancelled the
 | |
| operation, the frame will be destroyed and the application will exit.
 | |
| 
 | |
| Since understanding how document/view clean-up takes place can be difficult,
 | |
| the implementation of this function is shown below.
 | |
| 
 | |
| \begin{verbatim}
 | |
| void wxDocParentFrame::OnCloseWindow(wxCloseEvent& event)
 | |
| {
 | |
|   if (m_docManager->Clear(!event.CanVeto()))
 | |
|   {
 | |
|     this->Destroy();
 | |
|   }
 | |
|   else
 | |
|     event.Veto();
 | |
| }
 | |
| \end{verbatim}
 | |
| 
 |