1 \section{\class{wxDocument
}}\label{wxdocument
}
3 The
document class can be used to model an application's file-based
4 data. It is part of the
document/view framework supported by wxWidgets,
5 and cooperates with the
\helpref{wxView
}{wxview
},
\helpref{wxDocTemplate
}{wxdoctemplate
}\rtfsp
6 and
\helpref{wxDocManager
}{wxdocmanager
} classes.
8 \wxheading{Derived from
}
10 \helpref{wxEvtHandler
}{wxevthandler
}\\
11 \helpref{wxObject
}{wxobject
}
13 \wxheading{Include files
}
19 \helpref{wxCore
}{librarieslist
}
23 \helpref{wxDocument overview
}{wxdocumentoverview
},
\helpref{wxView
}{wxview
},
\rtfsp
24 \helpref{wxDocTemplate
}{wxdoctemplate
},
\helpref{wxDocManager
}{wxdocmanager
}
26 \latexignore{\rtfignore{\wxheading{Members
}}}
28 \membersection{wxDocument::m
\_commandProcessor}\label{wxdocumentmcommandprocessor
}
30 \member{wxCommandProcessor*
}{m
\_commandProcessor}
32 A pointer to the command processor associated with this
document.
34 \membersection{wxDocument::m
\_documentFile}\label{wxdocumentmdocumentfile
}
36 \member{wxString
}{m
\_documentFile}
38 Filename associated with this
document (``" if none).
40 \membersection{wxDocument::m
\_documentModified}\label{wxdocumentmdocumentmodified
}
42 \member{bool
}{m
\_documentModified}
44 true if the
document has been modified, false otherwise.
46 \membersection{wxDocument::m
\_documentTemplate}\label{wxdocumentmdocumenttemplate
}
48 \member{wxDocTemplate *
}{m
\_documentTemplate}
50 A pointer to the template from which this
document was created.
52 \membersection{wxDocument::m
\_documentTitle}\label{wxdocumentmdocumenttitle
}
54 \member{wxString
}{m
\_documentTitle}
56 Document title. The
document title is used for an associated
57 frame (if any), and is usually constructed by the framework from
60 \membersection{wxDocument::m
\_documentTypeName}\label{documenttypename
}
62 \member{wxString
}{m
\_documentTypeName}
64 The
document type name given to the wxDocTemplate constructor, copied to this
65 variable when the
document is created. If several
document templates are
66 created that use the same
document type, this variable is used in wxDocManager::CreateView
67 to collate a list of alternative view types that can be used on this kind of
68 document. Do not change the value of this variable.
70 \membersection{wxDocument::m
\_documentViews}\label{wxdocumentmdocumentviews
}
72 \member{wxList
}{m
\_documentViews}
74 List of wxView instances associated with this
document.
76 \membersection{wxDocument::wxDocument
}\label{wxdocumentctor
}
78 \func{}{wxDocument
}{\void}
80 Constructor. Define your own default constructor to initialize application-specific
83 \membersection{wxDocument::
\destruct{wxDocument
}}\label{wxdocumentdtor
}
85 \func{}{\destruct{wxDocument
}}{\void}
87 Destructor. Removes itself from the
document manager.
89 \membersection{wxDocument::AddView
}\label{wxdocumentaddview
}
91 \func{virtual bool
}{AddView
}{\param{wxView *
}{view
}}
93 If the view is not already in the list of views, adds the view and calls OnChangedViewList.
95 \membersection{wxDocument::Close
}\label{wxdocumentclose
}
97 \func{virtual bool
}{Close
}{\void}
99 Closes the
document, by calling OnSaveModified and then (if this returned true) OnCloseDocument.
100 This does not normally delete the
document object: use DeleteAllViews to do this implicitly.
102 \membersection{wxDocument::DeleteAllViews
}\label{wxdocumentdeleteviews
}
104 \func{virtual bool
}{DeleteAllViews
}{\void}
106 Calls wxView::Close and deletes each view. Deleting the final view will implicitly
107 delete the
document itself, because the wxView destructor calls RemoveView. This
108 in turns calls wxDocument::OnChangedViewList, whose default implemention is to
109 save and delete the
document if no views exist.
111 \membersection{wxDocument::GetCommandProcessor
}\label{wxdocumentgetcommandprocessor
}
113 \constfunc{wxCommandProcessor*
}{GetCommandProcessor
}{\void}
115 Returns a pointer to the command processor associated with this
document.
117 See
\helpref{wxCommandProcessor
}{wxcommandprocessor
}.
119 \membersection{wxDocument::GetDocumentTemplate
}\label{wxdocumentgetdocumenttemplate
}
121 \constfunc{wxDocTemplate*
}{GetDocumentTemplate
}{\void}
123 Gets a pointer to the template that created the
document.
125 \membersection{wxDocument::GetDocumentManager
}\label{wxdocumentgetdocumentmanager
}
127 \constfunc{wxDocManager*
}{GetDocumentManager
}{\void}
129 Gets a pointer to the associated
document manager.
131 \membersection{wxDocument::GetDocumentName
}\label{wxdocumentgetdocumentname
}
133 \constfunc{wxString
}{GetDocumentName
}{\void}
135 Gets the
document type name for this
document. See the comment for
\helpref{documentTypeName
}{documenttypename
}.
137 \membersection{wxDocument::GetDocumentWindow
}\label{wxdocumentgetdocumentwindow
}
139 \constfunc{wxWindow*
}{GetDocumentWindow
}{\void}
141 Intended to return a suitable window for using as a parent for
document-related
142 dialog boxes. By default, uses the frame associated with the first view.
144 \membersection{wxDocument::GetFilename
}\label{wxdocumentgetfilename
}
146 \constfunc{wxString
}{GetFilename
}{\void}
148 Gets the filename associated with this
document, or "" if none is
151 \membersection{wxDocument::GetFirstView
}\label{wxdocumentgetfirstview
}
153 \constfunc{wxView *
}{GetFirstView
}{\void}
155 A convenience function to get the first view for a
document, because
156 in many cases a
document will only have a single view.
158 See also:
\helpref{GetViews
}{wxdocumentgetviews
}
160 \membersection{wxDocument::GetUserReadableName
}\label{wxdocumentgetuserreadablentablename
}
162 \constfunc{virtual wxString
}{GetUserReadableName
}{\void}
164 Return the
document name suitable to be shown to the user. The default
165 implementation uses the
document title, if any, of the name part of the
166 document filename if it was set or, otherwise, the string
{\bf unnamed
}.
168 \membersection{wxDocument::GetTitle
}\label{wxdocumentgettitle
}
170 \constfunc{wxString
}{GetTitle
}{\void}
172 Gets the title for this
document. The
document title is used for an associated
173 frame (if any), and is usually constructed by the framework from
176 \membersection{wxDocument::GetViews
}\label{wxdocumentgetviews
}
178 \constfunc{wxList \&
}{GetViews
}{\void}
180 Returns the list whose elements are the views on the
document.
182 See also:
\helpref{GetFirstView
}{wxdocumentgetfirstview
}
184 \membersection{wxDocument::IsModified
}\label{wxdocumentismodified
}
186 \constfunc{virtual bool
}{IsModified
}{\void}
188 Returns true if the
document has been modified since the last save, false otherwise.
189 You may need to override this if your
document view maintains its own
190 record of being modified (for example if using wxTextWindow to view and edit the
document).
192 See also
\helpref{Modify
}{wxdocumentmodify
}.
194 \membersection{wxDocument::LoadObject
}\label{wxdocumentloadobject
}
196 \func{virtual istream\&
}{LoadObject
}{\param{istream\&
}{stream
}}
198 \func{virtual wxInputStream\&
}{LoadObject
}{\param{wxInputStream\&
}{stream
}}
200 Override this function and call it from your own LoadObject before
201 streaming your own data. LoadObject is called by the framework
202 automatically when the
document contents need to be loaded.
204 Note that only one of these forms exists, depending on how wxWidgets
207 \membersection{wxDocument::Modify
}\label{wxdocumentmodify
}
209 \func{virtual void
}{Modify
}{\param{bool
}{ modify
}}
211 Call with true to mark the
document as modified since the last save, false otherwise.
212 You may need to override this if your
document view maintains its own
213 record of being modified (for example if using wxTextWindow to view and edit the
document).
215 See also
\helpref{IsModified
}{wxdocumentismodified
}.
217 \membersection{wxDocument::OnChangedViewList
}\label{wxdocumentonchangedviewlist
}
219 \func{virtual void
}{OnChangedViewList
}{\void}
221 Called when a view is added to or deleted from this
document. The default
222 implementation saves and deletes the
document if no views exist (the last
223 one has just been removed).
225 \membersection{wxDocument::OnCloseDocument
}\label{wxdocumentonclosedocument
}
227 \func{virtual bool
}{OnCloseDocument
}{\void}
229 The default implementation calls DeleteContents (an empty implementation)
230 sets the modified flag to false. Override this to
231 supply additional behaviour when the
document is closed with Close.
233 \membersection{wxDocument::OnCreate
}\label{wxdocumentoncreate
}
235 \func{virtual bool
}{OnCreate
}{\param{const wxString\&
}{path
},
\param{long
}{ flags
}}
237 Called just after the
document object is created to give it a chance
238 to initialize itself. The default implementation uses the
239 template associated with the
document to create an initial view.
240 If this function returns false, the
document is deleted.
242 \membersection{wxDocument::OnCreateCommandProcessor
}\label{wxdocumentoncreatecommandprocessor
}
244 \func{virtual wxCommandProcessor*
}{OnCreateCommandProcessor
}{\void}
246 Override this function if you want a different (or no) command processor
247 to be created when the
document is created. By default, it returns
248 an instance of wxCommandProcessor.
250 See
\helpref{wxCommandProcessor
}{wxcommandprocessor
}.
252 \membersection{wxDocument::OnNewDocument
}\label{wxdocumentonnewdocument
}
254 \func{virtual bool
}{OnNewDocument
}{\void}
256 The default implementation calls OnSaveModified and DeleteContents, makes a default title for the
257 document, and notifies the views that the filename (in fact, the title) has changed.
259 \membersection{wxDocument::OnOpenDocument
}\label{wxdocumentonopendocument
}
261 \func{virtual bool
}{OnOpenDocument
}{\param{const wxString\&
}{filename
}}
263 Constructs an input file stream for the given filename (which must not be empty),
264 and calls LoadObject. If LoadObject returns true, the
document is set to
265 unmodified; otherwise, an error message box is displayed. The
document's
266 views are notified that the filename has changed, to give windows an opportunity
267 to update their titles. All of the
document's views are then updated.
269 \membersection{wxDocument::OnSaveDocument
}\label{wxdocumentonsavedocument
}
271 \func{virtual bool
}{OnSaveDocument
}{\param{const wxString\&
}{filename
}}
273 Constructs an output file stream for the given filename (which must not be empty),
274 and calls SaveObject. If SaveObject returns true, the
document is set to
275 unmodified; otherwise, an error message box is displayed.
277 \membersection{wxDocument::OnSaveModified
}\label{wxdocumentonsavemodified
}
279 \func{virtual bool
}{OnSaveModified
}{\void}
281 If the
document has been modified, prompts the user to ask if the changes should
282 be changed. If the user replies Yes, the Save function is called. If No, the
283 document is marked as unmodified and the function succeeds. If Cancel, the
286 \membersection{wxDocument::RemoveView
}\label{wxdocumentremoveview
}
288 \func{virtual bool
}{RemoveView
}{\param{wxView*
}{view
}}
290 Removes the view from the
document's list of views, and calls OnChangedViewList.
292 \membersection{wxDocument::Save
}\label{wxdocumentsave
}
294 \func{virtual bool
}{Save
}{\void}
296 Saves the
document by calling OnSaveDocument if there is an associated filename,
297 or SaveAs if there is no filename.
299 \membersection{wxDocument::SaveAs
}\label{wxdocumentsaveas
}
301 \func{virtual bool
}{SaveAs
}{\void}
303 Prompts the user for a file to save to, and then calls OnSaveDocument.
305 \membersection{wxDocument::SaveObject
}\label{wxdocumentsaveobject
}
307 \func{virtual ostream\&
}{SaveObject
}{\param{ostream\&
}{stream
}}
309 \func{virtual wxOutputStream\&
}{SaveObject
}{\param{wxOutputStream\&
}{stream
}}
311 Override this function and call it from your own SaveObject before
312 streaming your own data. SaveObject is called by the framework
313 automatically when the
document contents need to be saved.
315 Note that only one of these forms exists, depending on how wxWidgets
318 \membersection{wxDocument::SetCommandProcessor
}\label{wxdocumentsetcommandprocessor
}
320 \func{virtual void
}{SetCommandProcessor
}{\param{wxCommandProcessor *
}{processor
}}
322 Sets the command processor to be used for this
document. The
document will then be responsible
323 for its deletion. Normally you should not call this; override OnCreateCommandProcessor
326 See
\helpref{wxCommandProcessor
}{wxcommandprocessor
}.
328 \membersection{wxDocument::SetDocumentName
}\label{wxdocumentsetdocumentname
}
330 \func{void
}{SetDocumentName
}{\param{const wxString\&
}{name
}}
332 Sets the
document type name for this
document. See the comment for
\helpref{documentTypeName
}{documenttypename
}.
334 \membersection{wxDocument::SetDocumentTemplate
}\label{wxdocumentsetdocumenttemplate
}
336 \func{void
}{SetDocumentTemplate
}{\param{wxDocTemplate*
}{templ
}}
338 Sets the pointer to the template that created the
document. Should only be called by the
341 \membersection{wxDocument::SetFilename
}\label{wxdocumentsetfilename
}
343 \func{void
}{SetFilename
}{\param{const wxString\&
}{filename
},
\param{bool
}{ notifyViews = false
}}
345 Sets the filename for this
document. Usually called by the framework.
347 If
{\it notifyViews
} is true, wxView::OnChangeFilename is called for all views.
349 \membersection{wxDocument::SetTitle
}\label{wxdocumentsettitle
}
351 \func{void
}{SetTitle
}{\param{const wxString\&
}{title
}}
353 Sets the title for this
document. The
document title is used for an associated
354 frame (if any), and is usually constructed by the framework from
357 \membersection{wxDocument::UpdateAllViews
}\label{wxdocumentupdateallviews
}
359 \func{void
}{UpdateAllViews
}{\param{wxView*
}{sender = NULL
},
\param{wxObject*
}{ hint = NULL
}}
361 Updates all views. If
{\it sender
} is non-NULL, does not update this view.
363 {\it hint
} represents optional information to allow a view to optimize its update.