]>
Commit | Line | Data |
---|---|---|
c801d85f | 1 | ///////////////////////////////////////////////////////////////////////////// |
ca3e85cf | 2 | // Name: wx/docview.h |
c801d85f KB |
3 | // Purpose: Doc/View classes |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
99d80019 | 8 | // Copyright: (c) Julian Smart |
65571936 | 9 | // Licence: wxWindows licence |
c801d85f KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
34138703 JS |
12 | #ifndef _WX_DOCH__ |
13 | #define _WX_DOCH__ | |
c801d85f | 14 | |
c801d85f | 15 | #include "wx/defs.h" |
e30285ab VZ |
16 | |
17 | #if wxUSE_DOC_VIEW_ARCHITECTURE | |
18 | ||
c801d85f | 19 | #include "wx/list.h" |
c801d85f | 20 | #include "wx/string.h" |
2f7adba0 | 21 | #include "wx/frame.h" |
a0219e45 | 22 | #include "wx/filehistory.h" |
c801d85f | 23 | |
47d67540 | 24 | #if wxUSE_PRINTING_ARCHITECTURE |
caf0debf | 25 | #include "wx/print.h" |
c801d85f KB |
26 | #endif |
27 | ||
b5dbe15d VS |
28 | class WXDLLIMPEXP_FWD_CORE wxWindow; |
29 | class WXDLLIMPEXP_FWD_CORE wxDocument; | |
30 | class WXDLLIMPEXP_FWD_CORE wxView; | |
31 | class WXDLLIMPEXP_FWD_CORE wxDocTemplate; | |
32 | class WXDLLIMPEXP_FWD_CORE wxDocManager; | |
33 | class WXDLLIMPEXP_FWD_CORE wxPrintInfo; | |
34 | class WXDLLIMPEXP_FWD_CORE wxCommandProcessor; | |
4f7d425f | 35 | class WXDLLIMPEXP_FWD_BASE wxConfigBase; |
c801d85f | 36 | |
a9e2e6e5 VZ |
37 | class wxDocChildFrameAnyBase; |
38 | ||
a533f5c1 | 39 | #if wxUSE_STD_IOSTREAM |
65f19af1 | 40 | #include "wx/iosfwrap.h" |
a533f5c1 RR |
41 | #else |
42 | #include "wx/stream.h" | |
43 | #endif | |
c801d85f | 44 | |
c77049a0 | 45 | // Flags for wxDocManager (can be combined). |
caf0debf VZ |
46 | enum |
47 | { | |
c77049a0 VZ |
48 | wxDOC_NEW = 1, |
49 | wxDOC_SILENT = 2 | |
caf0debf | 50 | }; |
c801d85f KB |
51 | |
52 | // Document template flags | |
caf0debf VZ |
53 | enum |
54 | { | |
55 | wxTEMPLATE_VISIBLE = 1, | |
89d94e04 | 56 | wxTEMPLATE_INVISIBLE = 2, |
caf0debf VZ |
57 | wxDEFAULT_TEMPLATE_FLAGS = wxTEMPLATE_VISIBLE |
58 | }; | |
c801d85f | 59 | |
caf0debf | 60 | #define wxMAX_FILE_HISTORY 9 |
c801d85f | 61 | |
53a2db12 | 62 | class WXDLLIMPEXP_CORE wxDocument : public wxEvtHandler |
c801d85f | 63 | { |
caf0debf | 64 | public: |
c77049a0 | 65 | wxDocument(wxDocument *parent = NULL); |
d3c7fc99 | 66 | virtual ~wxDocument(); |
caf0debf VZ |
67 | |
68 | // accessors | |
68379eaf | 69 | void SetFilename(const wxString& filename, bool notifyViews = false); |
caf0debf VZ |
70 | wxString GetFilename() const { return m_documentFile; } |
71 | ||
47b378bd | 72 | void SetTitle(const wxString& title) { m_documentTitle = title; } |
caf0debf VZ |
73 | wxString GetTitle() const { return m_documentTitle; } |
74 | ||
47b378bd | 75 | void SetDocumentName(const wxString& name) { m_documentTypeName = name; } |
caf0debf VZ |
76 | wxString GetDocumentName() const { return m_documentTypeName; } |
77 | ||
d7b3a73d VZ |
78 | // access the flag indicating whether this document had been already saved, |
79 | // SetDocumentSaved() is only used internally, don't call it | |
caf0debf | 80 | bool GetDocumentSaved() const { return m_savedYet; } |
68379eaf | 81 | void SetDocumentSaved(bool saved = true) { m_savedYet = saved; } |
caf0debf | 82 | |
de56f240 VZ |
83 | // return true if the document hasn't been modified since the last time it |
84 | // was saved (implying that it returns false if it was never saved, even if | |
85 | // the document is not modified) | |
86 | bool AlreadySaved() const { return !IsModified() && GetDocumentSaved(); } | |
87 | ||
caf0debf VZ |
88 | virtual bool Close(); |
89 | virtual bool Save(); | |
90 | virtual bool SaveAs(); | |
91 | virtual bool Revert(); | |
92 | ||
a533f5c1 | 93 | #if wxUSE_STD_IOSTREAM |
dd107c50 VZ |
94 | virtual wxSTD ostream& SaveObject(wxSTD ostream& stream); |
95 | virtual wxSTD istream& LoadObject(wxSTD istream& stream); | |
a533f5c1 | 96 | #else |
23a54e14 RR |
97 | virtual wxOutputStream& SaveObject(wxOutputStream& stream); |
98 | virtual wxInputStream& LoadObject(wxInputStream& stream); | |
a533f5c1 | 99 | #endif |
caf0debf | 100 | |
77ffb593 | 101 | // Called by wxWidgets |
caf0debf VZ |
102 | virtual bool OnSaveDocument(const wxString& filename); |
103 | virtual bool OnOpenDocument(const wxString& filename); | |
104 | virtual bool OnNewDocument(); | |
105 | virtual bool OnCloseDocument(); | |
106 | ||
68379eaf | 107 | // Prompts for saving if about to close a modified document. Returns true |
caf0debf | 108 | // if ok to close the document (may have saved in the meantime, or set |
68379eaf | 109 | // modified to false) |
caf0debf VZ |
110 | virtual bool OnSaveModified(); |
111 | ||
8cc208e3 | 112 | // if you override, remember to call the default |
00e3ea1c FM |
113 | // implementation (wxDocument::OnChangeFilename) |
114 | virtual void OnChangeFilename(bool notifyViews); | |
115 | ||
caf0debf VZ |
116 | // Called by framework if created automatically by the default document |
117 | // manager: gives document a chance to initialise and (usually) create a | |
118 | // view | |
119 | virtual bool OnCreate(const wxString& path, long flags); | |
120 | ||
121 | // By default, creates a base wxCommandProcessor. | |
122 | virtual wxCommandProcessor *OnCreateCommandProcessor(); | |
89d94e04 VZ |
123 | virtual wxCommandProcessor *GetCommandProcessor() const |
124 | { return m_commandProcessor; } | |
125 | virtual void SetCommandProcessor(wxCommandProcessor *proc) | |
126 | { m_commandProcessor = proc; } | |
caf0debf VZ |
127 | |
128 | // Called after a view is added or removed. The default implementation | |
129 | // deletes the document if this is there are no more views. | |
130 | virtual void OnChangedViewList(); | |
131 | ||
29548835 VZ |
132 | // Called from OnCloseDocument(), does nothing by default but may be |
133 | // overridden. Return value is ignored. | |
caf0debf VZ |
134 | virtual bool DeleteContents(); |
135 | ||
136 | virtual bool Draw(wxDC&); | |
137 | virtual bool IsModified() const { return m_documentModified; } | |
250ab35a | 138 | virtual void Modify(bool mod); |
caf0debf VZ |
139 | |
140 | virtual bool AddView(wxView *view); | |
141 | virtual bool RemoveView(wxView *view); | |
b80388aa VZ |
142 | wxList& GetViews() { return m_documentViews; } |
143 | const wxList& GetViews() const { return m_documentViews; } | |
caf0debf VZ |
144 | wxView *GetFirstView() const; |
145 | ||
c77049a0 | 146 | virtual void UpdateAllViews(wxView *sender = NULL, wxObject *hint = NULL); |
b23e843b | 147 | virtual void NotifyClosing(); |
caf0debf VZ |
148 | |
149 | // Remove all views (because we're closing the document) | |
150 | virtual bool DeleteAllViews(); | |
151 | ||
152 | // Other stuff | |
153 | virtual wxDocManager *GetDocumentManager() const; | |
89d94e04 VZ |
154 | virtual wxDocTemplate *GetDocumentTemplate() const |
155 | { return m_documentTemplate; } | |
156 | virtual void SetDocumentTemplate(wxDocTemplate *temp) | |
157 | { m_documentTemplate = temp; } | |
caf0debf | 158 | |
724b119a VZ |
159 | // Get the document name to be shown to the user: the title if there is |
160 | // any, otherwise the filename if the document was saved and, finally, | |
161 | // "unnamed" otherwise | |
162 | virtual wxString GetUserReadableName() const; | |
163 | ||
164 | #if WXWIN_COMPATIBILITY_2_8 | |
165 | // use GetUserReadableName() instead | |
166 | wxDEPRECATED_BUT_USED_INTERNALLY( | |
167 | virtual bool GetPrintableName(wxString& buf) const | |
168 | ); | |
169 | #endif // WXWIN_COMPATIBILITY_2_8 | |
caf0debf VZ |
170 | |
171 | // Returns a window that can be used as a parent for document-related | |
172 | // dialogs. Override if necessary. | |
173 | virtual wxWindow *GetDocumentWindow() const; | |
174 | ||
175 | protected: | |
176 | wxList m_documentViews; | |
177 | wxString m_documentFile; | |
178 | wxString m_documentTitle; | |
179 | wxString m_documentTypeName; | |
180 | wxDocTemplate* m_documentTemplate; | |
181 | bool m_documentModified; | |
182 | wxDocument* m_documentParent; | |
183 | wxCommandProcessor* m_commandProcessor; | |
184 | bool m_savedYet; | |
b5f159ac | 185 | |
69936aea VZ |
186 | // Called by OnSaveDocument and OnOpenDocument to implement standard |
187 | // Save/Load behavior. Re-implement in derived class for custom | |
188 | // behavior. | |
189 | virtual bool DoSaveDocument(const wxString& file); | |
190 | virtual bool DoOpenDocument(const wxString& file); | |
191 | ||
724b119a VZ |
192 | // the default implementation of GetUserReadableName() |
193 | wxString DoGetUserReadableName() const; | |
194 | ||
2b5f62a0 VZ |
195 | private: |
196 | DECLARE_ABSTRACT_CLASS(wxDocument) | |
c0c133e1 | 197 | wxDECLARE_NO_COPY_CLASS(wxDocument); |
c801d85f KB |
198 | }; |
199 | ||
53a2db12 | 200 | class WXDLLIMPEXP_CORE wxView: public wxEvtHandler |
c801d85f | 201 | { |
caf0debf | 202 | public: |
caf0debf | 203 | wxView(); |
d3c7fc99 | 204 | virtual ~wxView(); |
c801d85f | 205 | |
caf0debf | 206 | wxDocument *GetDocument() const { return m_viewDocument; } |
bb28b477 | 207 | virtual void SetDocument(wxDocument *doc); |
c801d85f | 208 | |
caf0debf | 209 | wxString GetViewName() const { return m_viewTypeName; } |
47b378bd | 210 | void SetViewName(const wxString& name) { m_viewTypeName = name; } |
c801d85f | 211 | |
b9f933ab JS |
212 | wxWindow *GetFrame() const { return m_viewFrame ; } |
213 | void SetFrame(wxWindow *frame) { m_viewFrame = frame; } | |
c801d85f | 214 | |
89d94e04 VZ |
215 | virtual void OnActivateView(bool activate, |
216 | wxView *activeView, | |
217 | wxView *deactiveView); | |
caf0debf VZ |
218 | virtual void OnDraw(wxDC *dc) = 0; |
219 | virtual void OnPrint(wxDC *dc, wxObject *info); | |
c77049a0 | 220 | virtual void OnUpdate(wxView *sender, wxObject *hint = NULL); |
6fb99eb3 | 221 | virtual void OnClosingDocument() {} |
caf0debf | 222 | virtual void OnChangeFilename(); |
c801d85f | 223 | |
caf0debf VZ |
224 | // Called by framework if created automatically by the default document |
225 | // manager class: gives view a chance to initialise | |
c77049a0 VZ |
226 | virtual bool OnCreate(wxDocument *WXUNUSED(doc), long WXUNUSED(flags)) |
227 | { return true; } | |
c801d85f | 228 | |
caf0debf VZ |
229 | // Checks if the view is the last one for the document; if so, asks user |
230 | // to confirm save data (if modified). If ok, deletes itself and returns | |
68379eaf WS |
231 | // true. |
232 | virtual bool Close(bool deleteWindow = true); | |
caf0debf VZ |
233 | |
234 | // Override to do cleanup/veto close | |
235 | virtual bool OnClose(bool deleteWindow); | |
2b854a32 | 236 | |
caf0debf VZ |
237 | // A view's window can call this to notify the view it is (in)active. |
238 | // The function then notifies the document manager. | |
239 | virtual void Activate(bool activate); | |
c801d85f | 240 | |
caf0debf VZ |
241 | wxDocManager *GetDocumentManager() const |
242 | { return m_viewDocument->GetDocumentManager(); } | |
c801d85f | 243 | |
47d67540 | 244 | #if wxUSE_PRINTING_ARCHITECTURE |
caf0debf | 245 | virtual wxPrintout *OnCreatePrintout(); |
c801d85f KB |
246 | #endif |
247 | ||
a9e2e6e5 VZ |
248 | // implementation only |
249 | // ------------------- | |
250 | ||
251 | // set the associated frame, it is used to reset its view when we're | |
252 | // destroyed | |
ada1ff0d | 253 | void SetDocChildFrame(wxDocChildFrameAnyBase *docChildFrame); |
a9e2e6e5 | 254 | |
caf0debf | 255 | protected: |
bba5e72a | 256 | // hook the document into event handlers chain here |
8cc208e3 | 257 | virtual bool TryBefore(wxEvent& event); |
bba5e72a | 258 | |
caf0debf VZ |
259 | wxDocument* m_viewDocument; |
260 | wxString m_viewTypeName; | |
b9f933ab | 261 | wxWindow* m_viewFrame; |
22f3361e | 262 | |
a9e2e6e5 VZ |
263 | wxDocChildFrameAnyBase *m_docChildFrame; |
264 | ||
2b5f62a0 VZ |
265 | private: |
266 | DECLARE_ABSTRACT_CLASS(wxView) | |
c0c133e1 | 267 | wxDECLARE_NO_COPY_CLASS(wxView); |
c801d85f KB |
268 | }; |
269 | ||
270 | // Represents user interface (and other) properties of documents and views | |
53a2db12 | 271 | class WXDLLIMPEXP_CORE wxDocTemplate: public wxObject |
c801d85f | 272 | { |
caf0debf | 273 | |
b5dbe15d | 274 | friend class WXDLLIMPEXP_FWD_CORE wxDocManager; |
caf0debf VZ |
275 | |
276 | public: | |
277 | // Associate document and view types. They're for identifying what view is | |
278 | // associated with what template/document type | |
279 | wxDocTemplate(wxDocManager *manager, | |
280 | const wxString& descr, | |
281 | const wxString& filter, | |
282 | const wxString& dir, | |
283 | const wxString& ext, | |
284 | const wxString& docTypeName, | |
285 | const wxString& viewTypeName, | |
c77049a0 VZ |
286 | wxClassInfo *docClassInfo = NULL, |
287 | wxClassInfo *viewClassInfo = NULL, | |
caf0debf VZ |
288 | long flags = wxDEFAULT_TEMPLATE_FLAGS); |
289 | ||
d3c7fc99 | 290 | virtual ~wxDocTemplate(); |
caf0debf VZ |
291 | |
292 | // By default, these two member functions dynamically creates document and | |
293 | // view using dynamic instance construction. Override these if you need a | |
294 | // different method of construction. | |
295 | virtual wxDocument *CreateDocument(const wxString& path, long flags = 0); | |
296 | virtual wxView *CreateView(wxDocument *doc, long flags = 0); | |
297 | ||
217b7140 JS |
298 | // Helper method for CreateDocument; also allows you to do your own document |
299 | // creation | |
89d94e04 VZ |
300 | virtual bool InitDocument(wxDocument* doc, |
301 | const wxString& path, | |
302 | long flags = 0); | |
217b7140 | 303 | |
47b378bd | 304 | wxString GetDefaultExtension() const { return m_defaultExt; } |
caf0debf | 305 | wxString GetDescription() const { return m_description; } |
47b378bd | 306 | wxString GetDirectory() const { return m_directory; } |
caf0debf | 307 | wxDocManager *GetDocumentManager() const { return m_documentManager; } |
89d94e04 VZ |
308 | void SetDocumentManager(wxDocManager *manager) |
309 | { m_documentManager = manager; } | |
47b378bd VS |
310 | wxString GetFileFilter() const { return m_fileFilter; } |
311 | long GetFlags() const { return m_flags; } | |
caf0debf VZ |
312 | virtual wxString GetViewName() const { return m_viewTypeName; } |
313 | virtual wxString GetDocumentName() const { return m_docTypeName; } | |
314 | ||
47b378bd VS |
315 | void SetFileFilter(const wxString& filter) { m_fileFilter = filter; } |
316 | void SetDirectory(const wxString& dir) { m_directory = dir; } | |
317 | void SetDescription(const wxString& descr) { m_description = descr; } | |
318 | void SetDefaultExtension(const wxString& ext) { m_defaultExt = ext; } | |
319 | void SetFlags(long flags) { m_flags = flags; } | |
caf0debf | 320 | |
89d94e04 | 321 | bool IsVisible() const { return (m_flags & wxTEMPLATE_VISIBLE) != 0; } |
caf0debf | 322 | |
04129514 JS |
323 | wxClassInfo* GetDocClassInfo() const { return m_docClassInfo; } |
324 | wxClassInfo* GetViewClassInfo() const { return m_viewClassInfo; } | |
325 | ||
caf0debf VZ |
326 | virtual bool FileMatchesTemplate(const wxString& path); |
327 | ||
328 | protected: | |
329 | long m_flags; | |
330 | wxString m_fileFilter; | |
331 | wxString m_directory; | |
332 | wxString m_description; | |
333 | wxString m_defaultExt; | |
334 | wxString m_docTypeName; | |
335 | wxString m_viewTypeName; | |
336 | wxDocManager* m_documentManager; | |
337 | ||
338 | // For dynamic creation of appropriate instances. | |
339 | wxClassInfo* m_docClassInfo; | |
340 | wxClassInfo* m_viewClassInfo; | |
b5f159ac | 341 | |
89d94e04 VZ |
342 | // Called by CreateDocument and CreateView to create the actual |
343 | // document/view object. | |
344 | // | |
345 | // By default uses the ClassInfo provided to the constructor. Override | |
346 | // these functions to provide a different method of creation. | |
69936aea VZ |
347 | virtual wxDocument *DoCreateDocument(); |
348 | virtual wxView *DoCreateView(); | |
349 | ||
2b5f62a0 VZ |
350 | private: |
351 | DECLARE_CLASS(wxDocTemplate) | |
c0c133e1 | 352 | wxDECLARE_NO_COPY_CLASS(wxDocTemplate); |
c801d85f KB |
353 | }; |
354 | ||
caf0debf VZ |
355 | // One object of this class may be created in an application, to manage all |
356 | // the templates and documents. | |
53a2db12 | 357 | class WXDLLIMPEXP_CORE wxDocManager: public wxEvtHandler |
c801d85f | 358 | { |
caf0debf | 359 | public: |
c77049a0 VZ |
360 | // NB: flags are unused, don't pass wxDOC_XXX to this ctor |
361 | wxDocManager(long flags = 0, bool initialize = true); | |
d3c7fc99 | 362 | virtual ~wxDocManager(); |
caf0debf VZ |
363 | |
364 | virtual bool Initialize(); | |
365 | ||
366 | // Handlers for common user commands | |
367 | void OnFileClose(wxCommandEvent& event); | |
33a20136 | 368 | void OnFileCloseAll(wxCommandEvent& event); |
caf0debf VZ |
369 | void OnFileNew(wxCommandEvent& event); |
370 | void OnFileOpen(wxCommandEvent& event); | |
371 | void OnFileRevert(wxCommandEvent& event); | |
372 | void OnFileSave(wxCommandEvent& event); | |
373 | void OnFileSaveAs(wxCommandEvent& event); | |
c70da1a2 | 374 | void OnMRUFile(wxCommandEvent& event); |
b99017ce | 375 | #if wxUSE_PRINTING_ARCHITECTURE |
caf0debf | 376 | void OnPrint(wxCommandEvent& event); |
caf0debf | 377 | void OnPreview(wxCommandEvent& event); |
b99017ce VZ |
378 | void OnPageSetup(wxCommandEvent& event); |
379 | #endif // wxUSE_PRINTING_ARCHITECTURE | |
caf0debf VZ |
380 | void OnUndo(wxCommandEvent& event); |
381 | void OnRedo(wxCommandEvent& event); | |
382 | ||
f2506310 JS |
383 | // Handlers for UI update commands |
384 | void OnUpdateFileOpen(wxUpdateUIEvent& event); | |
c77049a0 | 385 | void OnUpdateDisableIfNoDoc(wxUpdateUIEvent& event); |
4311588b | 386 | void OnUpdateFileRevert(wxUpdateUIEvent& event); |
f2506310 JS |
387 | void OnUpdateFileNew(wxUpdateUIEvent& event); |
388 | void OnUpdateFileSave(wxUpdateUIEvent& event); | |
f2506310 JS |
389 | void OnUpdateUndo(wxUpdateUIEvent& event); |
390 | void OnUpdateRedo(wxUpdateUIEvent& event); | |
391 | ||
5f170f33 VZ |
392 | // called when file format detection didn't work, can be overridden to do |
393 | // something in this case | |
0a0352f2 | 394 | virtual void OnOpenFileFailure() { } |
5f170f33 | 395 | |
caf0debf | 396 | virtual wxDocument *CreateDocument(const wxString& path, long flags = 0); |
b5412983 VZ |
397 | |
398 | // wrapper around CreateDocument() with a more clear name | |
399 | wxDocument *CreateNewDocument() | |
400 | { return CreateDocument(wxString(), wxDOC_NEW); } | |
401 | ||
caf0debf VZ |
402 | virtual wxView *CreateView(wxDocument *doc, long flags = 0); |
403 | virtual void DeleteTemplate(wxDocTemplate *temp, long flags = 0); | |
404 | virtual bool FlushDoc(wxDocument *doc); | |
405 | virtual wxDocTemplate *MatchTemplate(const wxString& path); | |
406 | virtual wxDocTemplate *SelectDocumentPath(wxDocTemplate **templates, | |
68379eaf | 407 | int noTemplates, wxString& path, long flags, bool save = false); |
caf0debf | 408 | virtual wxDocTemplate *SelectDocumentType(wxDocTemplate **templates, |
68379eaf | 409 | int noTemplates, bool sort = false); |
caf0debf | 410 | virtual wxDocTemplate *SelectViewType(wxDocTemplate **templates, |
68379eaf | 411 | int noTemplates, bool sort = false); |
caf0debf VZ |
412 | virtual wxDocTemplate *FindTemplateForPath(const wxString& path); |
413 | ||
414 | void AssociateTemplate(wxDocTemplate *temp); | |
415 | void DisassociateTemplate(wxDocTemplate *temp); | |
416 | ||
417 | wxDocument *GetCurrentDocument() const; | |
418 | ||
419 | void SetMaxDocsOpen(int n) { m_maxDocsOpen = n; } | |
420 | int GetMaxDocsOpen() const { return m_maxDocsOpen; } | |
421 | ||
422 | // Add and remove a document from the manager's list | |
423 | void AddDocument(wxDocument *doc); | |
424 | void RemoveDocument(wxDocument *doc); | |
425 | ||
33a20136 | 426 | // closes all currently open documents |
68379eaf | 427 | bool CloseDocuments(bool force = true); |
33a20136 | 428 | |
b72b1920 | 429 | // closes the specified document |
68379eaf | 430 | bool CloseDocument(wxDocument* doc, bool force = false); |
b72b1920 | 431 | |
caf0debf | 432 | // Clear remaining documents and templates |
68379eaf | 433 | bool Clear(bool force = true); |
caf0debf VZ |
434 | |
435 | // Views or windows should inform the document manager | |
436 | // when a view is going in or out of focus | |
68379eaf | 437 | virtual void ActivateView(wxView *view, bool activate = true); |
575e4cd6 | 438 | virtual wxView *GetCurrentView() const { return m_currentView; } |
caf0debf | 439 | |
0b237b67 JS |
440 | wxList& GetDocuments() { return m_docs; } |
441 | wxList& GetTemplates() { return m_templates; } | |
caf0debf | 442 | |
724b119a VZ |
443 | // Return the default name for a new document (by default returns strings |
444 | // in the form "unnamed <counter>" but can be overridden) | |
445 | virtual wxString MakeNewDocumentName(); | |
caf0debf | 446 | |
f2506310 JS |
447 | // Make a frame title (override this to do something different) |
448 | virtual wxString MakeFrameTitle(wxDocument* doc); | |
449 | ||
caf0debf VZ |
450 | virtual wxFileHistory *OnCreateFileHistory(); |
451 | virtual wxFileHistory *GetFileHistory() const { return m_fileHistory; } | |
452 | ||
453 | // File history management | |
454 | virtual void AddFileToHistory(const wxString& file); | |
e49c85af | 455 | virtual void RemoveFileFromHistory(size_t i); |
7af6b69e | 456 | virtual size_t GetHistoryFilesCount() const; |
e49c85af | 457 | virtual wxString GetHistoryFile(size_t i) const; |
caf0debf VZ |
458 | virtual void FileHistoryUseMenu(wxMenu *menu); |
459 | virtual void FileHistoryRemoveMenu(wxMenu *menu); | |
702ca7c0 | 460 | #if wxUSE_CONFIG |
9c8116f8 | 461 | virtual void FileHistoryLoad(const wxConfigBase& config); |
caf0debf VZ |
462 | virtual void FileHistorySave(wxConfigBase& config); |
463 | #endif // wxUSE_CONFIG | |
464 | ||
465 | virtual void FileHistoryAddFilesToMenu(); | |
466 | virtual void FileHistoryAddFilesToMenu(wxMenu* menu); | |
467 | ||
d8efd219 | 468 | wxString GetLastDirectory() const; |
7af6b69e | 469 | void SetLastDirectory(const wxString& dir) { m_lastDirectory = dir; } |
ac0ac824 | 470 | |
f2506310 JS |
471 | // Get the current document manager |
472 | static wxDocManager* GetDocumentManager() { return sm_docManager; } | |
473 | ||
724b119a VZ |
474 | #if WXWIN_COMPATIBILITY_2_8 |
475 | // deprecated, override GetDefaultName() instead | |
476 | wxDEPRECATED_BUT_USED_INTERNALLY( | |
477 | virtual bool MakeDefaultName(wxString& buf) | |
478 | ); | |
479 | #endif | |
480 | ||
ca3e85cf | 481 | #if WXWIN_COMPATIBILITY_2_6 |
b5f159ac VZ |
482 | // deprecated, use GetHistoryFilesCount() instead |
483 | wxDEPRECATED( size_t GetNoHistoryFiles() const ); | |
ca3e85cf | 484 | #endif // WXWIN_COMPATIBILITY_2_6 |
7af6b69e | 485 | |
b99017ce | 486 | |
caf0debf | 487 | protected: |
c70da1a2 VZ |
488 | // Open the MRU file with the given index in our associated file history. |
489 | void DoOpenMRUFile(unsigned n); | |
94dc70d1 VZ |
490 | #if wxUSE_PRINTING_ARCHITECTURE |
491 | virtual wxPreviewFrame* CreatePreviewFrame(wxPrintPreviewBase* preview, | |
492 | wxWindow *parent, | |
493 | const wxString& title); | |
494 | #endif // wxUSE_PRINTING_ARCHITECTURE | |
495 | ||
bba5e72a | 496 | // hook the currently active view into event handlers chain here |
8cc208e3 | 497 | virtual bool TryBefore(wxEvent& event); |
bba5e72a | 498 | |
89d94e04 VZ |
499 | // return the command processor for the current document, if any |
500 | wxCommandProcessor *GetCurrentCommandProcessor() const; | |
501 | ||
575e4cd6 VZ |
502 | // this method tries to find an active view harder than GetCurrentView(): |
503 | // if the latter is NULL, it also checks if we don't have just a single | |
504 | // view and returns it then | |
505 | wxView *GetActiveView() const; | |
506 | ||
8325504f VZ |
507 | // activate the first view of the given document if any |
508 | void ActivateDocument(wxDocument *doc); | |
509 | ||
89d94e04 | 510 | |
caf0debf VZ |
511 | int m_defaultDocumentNameCounter; |
512 | int m_maxDocsOpen; | |
513 | wxList m_docs; | |
514 | wxList m_templates; | |
515 | wxView* m_currentView; | |
516 | wxFileHistory* m_fileHistory; | |
ac0ac824 | 517 | wxString m_lastDirectory; |
f2506310 | 518 | static wxDocManager* sm_docManager; |
caf0debf | 519 | |
b99017ce VZ |
520 | #if wxUSE_PRINTING_ARCHITECTURE |
521 | wxPageSetupDialogData m_pageSetupDialogData; | |
522 | #endif // wxUSE_PRINTING_ARCHITECTURE | |
523 | ||
caf0debf | 524 | DECLARE_EVENT_TABLE() |
b5f159ac | 525 | DECLARE_DYNAMIC_CLASS(wxDocManager) |
c0c133e1 | 526 | wxDECLARE_NO_COPY_CLASS(wxDocManager); |
c801d85f KB |
527 | }; |
528 | ||
ca3e85cf | 529 | #if WXWIN_COMPATIBILITY_2_6 |
b5f159ac VZ |
530 | inline size_t wxDocManager::GetNoHistoryFiles() const |
531 | { | |
532 | return GetHistoryFilesCount(); | |
533 | } | |
ca3e85cf | 534 | #endif // WXWIN_COMPATIBILITY_2_6 |
b5f159ac | 535 | |
caf0debf | 536 | // ---------------------------------------------------------------------------- |
a9e2e6e5 VZ |
537 | // Base class for child frames -- this is what wxView renders itself into |
538 | // | |
539 | // Notice that this is a mix-in class so it doesn't derive from wxWindow, only | |
540 | // wxDocChildFrameAny does | |
caf0debf | 541 | // ---------------------------------------------------------------------------- |
c801d85f | 542 | |
73bde1ef | 543 | class WXDLLIMPEXP_CORE wxDocChildFrameAnyBase |
c801d85f | 544 | { |
caf0debf | 545 | public: |
c65c67be | 546 | // default ctor, use Create() after it |
e5033ed2 VZ |
547 | wxDocChildFrameAnyBase() |
548 | { | |
549 | m_childDocument = NULL; | |
550 | m_childView = NULL; | |
551 | m_win = NULL; | |
552 | } | |
c65c67be VZ |
553 | |
554 | // full ctor equivalent to using the default one and Create(0 | |
ada1ff0d | 555 | wxDocChildFrameAnyBase(wxDocument *doc, wxView *view, wxWindow *win) |
c65c67be VZ |
556 | { |
557 | Create(doc, view, win); | |
558 | } | |
559 | ||
560 | // method which must be called for an object created using the default ctor | |
561 | // | |
562 | // note that it returns bool just for consistency with Create() methods in | |
563 | // other classes, we never return false from here | |
564 | bool Create(wxDocument *doc, wxView *view, wxWindow *win) | |
a9e2e6e5 VZ |
565 | { |
566 | m_childDocument = doc; | |
567 | m_childView = view; | |
c65c67be | 568 | m_win = win; |
caf0debf | 569 | |
a9e2e6e5 VZ |
570 | if ( view ) |
571 | view->SetDocChildFrame(this); | |
c65c67be VZ |
572 | |
573 | return true; | |
a9e2e6e5 | 574 | } |
caf0debf | 575 | |
c65c67be VZ |
576 | // dtor doesn't need to be virtual, an object should never be destroyed via |
577 | // a pointer to this class | |
b7341fe0 VZ |
578 | ~wxDocChildFrameAnyBase() |
579 | { | |
580 | // prevent the view from deleting us if we're being deleted directly | |
581 | // (and not via Close() + Destroy()) | |
582 | if ( m_childView ) | |
583 | m_childView->SetDocChildFrame(NULL); | |
584 | } | |
585 | ||
caf0debf VZ |
586 | wxDocument *GetDocument() const { return m_childDocument; } |
587 | wxView *GetView() const { return m_childView; } | |
588 | void SetDocument(wxDocument *doc) { m_childDocument = doc; } | |
589 | void SetView(wxView *view) { m_childView = view; } | |
590 | ||
ada1ff0d VZ |
591 | wxWindow *GetWindow() const { return m_win; } |
592 | ||
caf0debf | 593 | protected: |
a9e2e6e5 VZ |
594 | // we're not a wxEvtHandler but we provide this wxEvtHandler-like function |
595 | // which is called from TryBefore() of the derived classes to give our view | |
596 | // a chance to process the message before the frame event handlers are used | |
597 | bool TryProcessEvent(wxEvent& event) | |
598 | { | |
44070fd3 | 599 | return m_childView && m_childView->ProcessEventLocally(event); |
a9e2e6e5 VZ |
600 | } |
601 | ||
602 | // called from EVT_CLOSE handler in the frame: check if we can close and do | |
603 | // cleanup if so; veto the event otherwise | |
604 | bool CloseView(wxCloseEvent& event); | |
605 | ||
bba5e72a | 606 | |
caf0debf VZ |
607 | wxDocument* m_childDocument; |
608 | wxView* m_childView; | |
609 | ||
ada1ff0d VZ |
610 | // the associated window: having it here is not terribly elegant but it |
611 | // allows us to avoid having any virtual functions in this class | |
c65c67be | 612 | wxWindow* m_win; |
ada1ff0d VZ |
613 | |
614 | ||
a9e2e6e5 VZ |
615 | wxDECLARE_NO_COPY_CLASS(wxDocChildFrameAnyBase); |
616 | }; | |
617 | ||
618 | // ---------------------------------------------------------------------------- | |
619 | // Template implementing child frame concept using the given wxFrame-like class | |
620 | // | |
621 | // This is used to define wxDocChildFrame and wxDocMDIChildFrame: ChildFrame is | |
622 | // a wxFrame or wxMDIChildFrame (although in theory it could be any wxWindow- | |
623 | // derived class as long as it provided a ctor with the same signature as | |
624 | // wxFrame and OnActivate() method) and ParentFrame is either wxFrame or | |
625 | // wxMDIParentFrame. | |
626 | // ---------------------------------------------------------------------------- | |
627 | ||
628 | template <class ChildFrame, class ParentFrame> | |
629 | class WXDLLIMPEXP_CORE wxDocChildFrameAny : public ChildFrame, | |
630 | public wxDocChildFrameAnyBase | |
631 | { | |
632 | public: | |
633 | typedef ChildFrame BaseClass; | |
634 | ||
c65c67be VZ |
635 | // default ctor, use Create after it |
636 | wxDocChildFrameAny() { } | |
637 | ||
a9e2e6e5 VZ |
638 | // ctor for a frame showing the given view of the specified document |
639 | wxDocChildFrameAny(wxDocument *doc, | |
640 | wxView *view, | |
641 | ParentFrame *parent, | |
642 | wxWindowID id, | |
643 | const wxString& title, | |
644 | const wxPoint& pos = wxDefaultPosition, | |
645 | const wxSize& size = wxDefaultSize, | |
646 | long style = wxDEFAULT_FRAME_STYLE, | |
647 | const wxString& name = wxFrameNameStr) | |
a9e2e6e5 | 648 | { |
c65c67be VZ |
649 | Create(doc, view, parent, id, title, pos, size, style, name); |
650 | } | |
651 | ||
652 | bool Create(wxDocument *doc, | |
653 | wxView *view, | |
654 | ParentFrame *parent, | |
655 | wxWindowID id, | |
656 | const wxString& title, | |
657 | const wxPoint& pos = wxDefaultPosition, | |
658 | const wxSize& size = wxDefaultSize, | |
659 | long style = wxDEFAULT_FRAME_STYLE, | |
660 | const wxString& name = wxFrameNameStr) | |
661 | { | |
e5033ed2 | 662 | if ( !wxDocChildFrameAnyBase::Create(doc, view, this) ) |
c65c67be VZ |
663 | return false; |
664 | ||
e5033ed2 | 665 | if ( !BaseClass::Create(parent, id, title, pos, size, style, name) ) |
c65c67be VZ |
666 | return false; |
667 | ||
a9e2e6e5 VZ |
668 | this->Connect(wxEVT_ACTIVATE, |
669 | wxActivateEventHandler(wxDocChildFrameAny::OnActivate)); | |
670 | this->Connect(wxEVT_CLOSE_WINDOW, | |
671 | wxCloseEventHandler(wxDocChildFrameAny::OnCloseWindow)); | |
c65c67be VZ |
672 | |
673 | return true; | |
a9e2e6e5 VZ |
674 | } |
675 | ||
676 | virtual bool Destroy() | |
677 | { | |
678 | // FIXME: why exactly do we do this? to avoid activation events during | |
679 | // destructions maybe? | |
680 | m_childView = NULL; | |
681 | return BaseClass::Destroy(); | |
682 | } | |
683 | ||
684 | protected: | |
685 | // hook the child view into event handlers chain here | |
686 | virtual bool TryBefore(wxEvent& event) | |
687 | { | |
688 | return TryProcessEvent(event) || BaseClass::TryBefore(event); | |
689 | } | |
690 | ||
691 | private: | |
692 | void OnActivate(wxActivateEvent& event) | |
693 | { | |
694 | BaseClass::OnActivate(event); | |
695 | ||
696 | if ( m_childView ) | |
697 | m_childView->Activate(event.GetActive()); | |
698 | } | |
699 | ||
700 | void OnCloseWindow(wxCloseEvent& event) | |
701 | { | |
702 | if ( CloseView(event) ) | |
703 | Destroy(); | |
704 | //else: vetoed | |
705 | } | |
706 | ||
707 | wxDECLARE_NO_COPY_TEMPLATE_CLASS_2(wxDocChildFrameAny, | |
708 | ChildFrame, ParentFrame); | |
709 | }; | |
710 | ||
711 | // ---------------------------------------------------------------------------- | |
712 | // A default child frame: we need to define it as a class just for wxRTTI, | |
713 | // otherwise we could simply typedef it | |
714 | // ---------------------------------------------------------------------------- | |
715 | ||
27d77a59 VZ |
716 | #ifdef __VISUALC6__ |
717 | // "non dll-interface class 'wxDocChildFrameAny<>' used as base interface | |
718 | // for dll-interface class 'wxDocChildFrame'" -- this is bogus as the | |
719 | // template will be DLL-exported but only once it is used as base class | |
720 | // here! | |
fb330c2e | 721 | #pragma warning (push) |
27d77a59 VZ |
722 | #pragma warning (disable:4275) |
723 | #endif | |
724 | ||
a9e2e6e5 VZ |
725 | typedef wxDocChildFrameAny<wxFrame, wxFrame> wxDocChildFrameBase; |
726 | ||
727 | class WXDLLIMPEXP_CORE wxDocChildFrame : public wxDocChildFrameBase | |
728 | { | |
729 | public: | |
c65c67be VZ |
730 | wxDocChildFrame() |
731 | { | |
732 | } | |
733 | ||
a9e2e6e5 VZ |
734 | wxDocChildFrame(wxDocument *doc, |
735 | wxView *view, | |
736 | wxFrame *parent, | |
737 | wxWindowID id, | |
738 | const wxString& title, | |
739 | const wxPoint& pos = wxDefaultPosition, | |
740 | const wxSize& size = wxDefaultSize, | |
741 | long style = wxDEFAULT_FRAME_STYLE, | |
742 | const wxString& name = wxFrameNameStr) | |
743 | : wxDocChildFrameBase(doc, view, | |
744 | parent, id, title, pos, size, style, name) | |
745 | { | |
746 | } | |
747 | ||
c65c67be VZ |
748 | bool Create(wxDocument *doc, |
749 | wxView *view, | |
750 | wxFrame *parent, | |
751 | wxWindowID id, | |
752 | const wxString& title, | |
753 | const wxPoint& pos = wxDefaultPosition, | |
754 | const wxSize& size = wxDefaultSize, | |
755 | long style = wxDEFAULT_FRAME_STYLE, | |
756 | const wxString& name = wxFrameNameStr) | |
757 | { | |
758 | return wxDocChildFrameBase::Create | |
759 | ( | |
760 | doc, view, | |
761 | parent, id, title, pos, size, style, name | |
762 | ); | |
763 | } | |
764 | ||
2b5f62a0 VZ |
765 | private: |
766 | DECLARE_CLASS(wxDocChildFrame) | |
c0c133e1 | 767 | wxDECLARE_NO_COPY_CLASS(wxDocChildFrame); |
caf0debf | 768 | }; |
c801d85f | 769 | |
caf0debf | 770 | // ---------------------------------------------------------------------------- |
c48bdb0c VZ |
771 | // wxDocParentFrame and related classes. |
772 | // | |
773 | // As with wxDocChildFrame we define a template base class used by both normal | |
774 | // and MDI versions | |
caf0debf | 775 | // ---------------------------------------------------------------------------- |
c801d85f | 776 | |
c48bdb0c VZ |
777 | // Base class containing type-independent code of wxDocParentFrameAny |
778 | // | |
779 | // Similarly to wxDocChildFrameAnyBase, this class is a mix-in and doesn't | |
780 | // derive from wxWindow. | |
781 | class WXDLLIMPEXP_CORE wxDocParentFrameAnyBase | |
caf0debf | 782 | { |
caf0debf | 783 | public: |
c48bdb0c VZ |
784 | wxDocParentFrameAnyBase() { m_docManager = NULL; } |
785 | ||
786 | wxDocManager *GetDocumentManager() const { return m_docManager; } | |
787 | ||
788 | protected: | |
c48bdb0c VZ |
789 | wxDocManager *m_docManager; |
790 | ||
791 | wxDECLARE_NO_COPY_CLASS(wxDocParentFrameAnyBase); | |
792 | }; | |
793 | ||
794 | // This is similar to wxDocChildFrameAny and is used to provide common | |
795 | // implementation for both wxDocParentFrame and wxDocMDIParentFrame | |
796 | template <class BaseFrame> | |
797 | class WXDLLIMPEXP_CORE wxDocParentFrameAny : public BaseFrame, | |
798 | public wxDocParentFrameAnyBase | |
799 | { | |
800 | public: | |
801 | wxDocParentFrameAny() { } | |
802 | wxDocParentFrameAny(wxDocManager *manager, | |
803 | wxFrame *frame, | |
804 | wxWindowID id, | |
805 | const wxString& title, | |
806 | const wxPoint& pos = wxDefaultPosition, | |
807 | const wxSize& size = wxDefaultSize, | |
808 | long style = wxDEFAULT_FRAME_STYLE, | |
809 | const wxString& name = wxFrameNameStr) | |
810 | { | |
811 | Create(manager, frame, id, title, pos, size, style, name); | |
812 | } | |
0c246b3c PC |
813 | |
814 | bool Create(wxDocManager *manager, | |
815 | wxFrame *frame, | |
816 | wxWindowID id, | |
817 | const wxString& title, | |
818 | const wxPoint& pos = wxDefaultPosition, | |
819 | const wxSize& size = wxDefaultSize, | |
820 | long style = wxDEFAULT_FRAME_STYLE, | |
c48bdb0c VZ |
821 | const wxString& name = wxFrameNameStr) |
822 | { | |
823 | m_docManager = manager; | |
c801d85f | 824 | |
c48bdb0c VZ |
825 | if ( !BaseFrame::Create(frame, id, title, pos, size, style, name) ) |
826 | return false; | |
827 | ||
828 | this->Connect(wxID_EXIT, wxEVT_COMMAND_MENU_SELECTED, | |
829 | wxCommandEventHandler(wxDocParentFrameAny::OnExit)); | |
c48bdb0c VZ |
830 | this->Connect(wxEVT_CLOSE_WINDOW, |
831 | wxCloseEventHandler(wxDocParentFrameAny::OnCloseWindow)); | |
c801d85f | 832 | |
c48bdb0c VZ |
833 | return true; |
834 | } | |
c801d85f | 835 | |
caf0debf | 836 | protected: |
bba5e72a | 837 | // hook the document manager into event handling chain here |
c48bdb0c VZ |
838 | virtual bool TryBefore(wxEvent& event) |
839 | { | |
840 | if ( m_docManager && m_docManager->ProcessEventLocally(event) ) | |
841 | return true; | |
bba5e72a | 842 | |
c48bdb0c VZ |
843 | return BaseFrame::TryBefore(event); |
844 | } | |
845 | ||
846 | private: | |
847 | void OnExit(wxCommandEvent& WXUNUSED(event)) | |
848 | { | |
849 | this->Close(); | |
850 | } | |
851 | ||
c48bdb0c VZ |
852 | void OnCloseWindow(wxCloseEvent& event) |
853 | { | |
854 | if ( m_docManager && !m_docManager->Clear(!event.CanVeto()) ) | |
855 | { | |
856 | // The user decided not to close finally, abort. | |
857 | event.Veto(); | |
858 | } | |
859 | else | |
860 | { | |
861 | // Just skip the event, base class handler will destroy the window. | |
862 | event.Skip(); | |
863 | } | |
864 | } | |
865 | ||
866 | ||
867 | wxDECLARE_NO_COPY_CLASS(wxDocParentFrameAny); | |
868 | }; | |
869 | ||
870 | typedef wxDocParentFrameAny<wxFrame> wxDocParentFrameBase; | |
871 | ||
872 | class WXDLLIMPEXP_CORE wxDocParentFrame : public wxDocParentFrameBase | |
873 | { | |
874 | public: | |
875 | wxDocParentFrame() : wxDocParentFrameBase() { } | |
876 | ||
877 | wxDocParentFrame(wxDocManager *manager, | |
878 | wxFrame *parent, | |
879 | wxWindowID id, | |
880 | const wxString& title, | |
881 | const wxPoint& pos = wxDefaultPosition, | |
882 | const wxSize& size = wxDefaultSize, | |
883 | long style = wxDEFAULT_FRAME_STYLE, | |
884 | const wxString& name = wxFrameNameStr) | |
885 | : wxDocParentFrameBase(manager, | |
886 | parent, id, title, pos, size, style, name) | |
887 | { | |
888 | } | |
889 | ||
890 | bool Create(wxDocManager *manager, | |
891 | wxFrame *parent, | |
892 | wxWindowID id, | |
893 | const wxString& title, | |
894 | const wxPoint& pos = wxDefaultPosition, | |
895 | const wxSize& size = wxDefaultSize, | |
896 | long style = wxDEFAULT_FRAME_STYLE, | |
897 | const wxString& name = wxFrameNameStr) | |
898 | { | |
899 | return wxDocParentFrameBase::Create(manager, | |
900 | parent, id, title, | |
901 | pos, size, style, name); | |
902 | } | |
caf0debf | 903 | |
2b5f62a0 VZ |
904 | private: |
905 | DECLARE_CLASS(wxDocParentFrame) | |
c0c133e1 | 906 | wxDECLARE_NO_COPY_CLASS(wxDocParentFrame); |
caf0debf | 907 | }; |
c801d85f | 908 | |
c48bdb0c VZ |
909 | #ifdef __VISUALC6__ |
910 | // reenable warning 4275 | |
911 | #pragma warning (pop) | |
912 | #endif | |
913 | ||
caf0debf VZ |
914 | // ---------------------------------------------------------------------------- |
915 | // Provide simple default printing facilities | |
916 | // ---------------------------------------------------------------------------- | |
c801d85f | 917 | |
caf0debf | 918 | #if wxUSE_PRINTING_ARCHITECTURE |
53a2db12 | 919 | class WXDLLIMPEXP_CORE wxDocPrintout : public wxPrintout |
caf0debf | 920 | { |
caf0debf | 921 | public: |
6c4da6d6 | 922 | wxDocPrintout(wxView *view = NULL, const wxString& title = _("Printout")); |
89d94e04 VZ |
923 | |
924 | // implement wxPrintout methods | |
925 | virtual bool OnPrintPage(int page); | |
926 | virtual bool HasPage(int page); | |
927 | virtual bool OnBeginDocument(int startPage, int endPage); | |
928 | virtual void GetPageInfo(int *minPage, int *maxPage, | |
929 | int *selPageFrom, int *selPageTo); | |
c801d85f | 930 | |
caf0debf | 931 | virtual wxView *GetView() { return m_printoutView; } |
c801d85f | 932 | |
caf0debf VZ |
933 | protected: |
934 | wxView* m_printoutView; | |
2b5f62a0 VZ |
935 | |
936 | private: | |
937 | DECLARE_DYNAMIC_CLASS(wxDocPrintout) | |
c0c133e1 | 938 | wxDECLARE_NO_COPY_CLASS(wxDocPrintout); |
c801d85f | 939 | }; |
caf0debf | 940 | #endif // wxUSE_PRINTING_ARCHITECTURE |
c801d85f | 941 | |
c801d85f KB |
942 | // For compatibility with existing file formats: |
943 | // converts from/to a stream to/from a temporary file. | |
89d94e04 VZ |
944 | #if wxUSE_STD_IOSTREAM |
945 | bool WXDLLIMPEXP_CORE | |
946 | wxTransferFileToStream(const wxString& filename, wxSTD ostream& stream); | |
947 | bool WXDLLIMPEXP_CORE | |
948 | wxTransferStreamToFile(wxSTD istream& stream, const wxString& filename); | |
dc1efb1d | 949 | #else |
89d94e04 VZ |
950 | bool WXDLLIMPEXP_CORE |
951 | wxTransferFileToStream(const wxString& filename, wxOutputStream& stream); | |
952 | bool WXDLLIMPEXP_CORE | |
953 | wxTransferStreamToFile(wxInputStream& stream, const wxString& filename); | |
e30285ab VZ |
954 | #endif // wxUSE_STD_IOSTREAM |
955 | ||
c77049a0 VZ |
956 | |
957 | // these flags are not used anywhere by wxWidgets and kept only for an unlikely | |
958 | // case of existing user code using them for its own purposes | |
959 | #ifdef WXWIN_COMPATIBILITY_2_8 | |
960 | enum | |
961 | { | |
962 | wxDOC_SDI = 1, | |
963 | wxDOC_MDI, | |
964 | wxDEFAULT_DOCMAN_FLAGS = wxDOC_SDI | |
965 | }; | |
966 | #endif // WXWIN_COMPATIBILITY_2_8 | |
967 | ||
e30285ab | 968 | #endif // wxUSE_DOC_VIEW_ARCHITECTURE |
c801d85f | 969 | |
caf0debf | 970 | #endif // _WX_DOCH__ |