1. undid the "simplification" of patch 1096066 which resulted in a crash
[wxWidgets.git] / src / common / docview.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/docview.cpp
3 // Purpose: Document/view classes
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 01/02/97
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 // ============================================================================
13 // declarations
14 // ============================================================================
15
16 // ----------------------------------------------------------------------------
17 // headers
18 // ----------------------------------------------------------------------------
19
20 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
21 #pragma implementation "docview.h"
22 #endif
23
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
26
27 #ifdef __BORLANDC__
28 #pragma hdrstop
29 #endif
30
31 #if wxUSE_DOC_VIEW_ARCHITECTURE
32
33 #ifndef WX_PRECOMP
34 #include "wx/string.h"
35 #include "wx/utils.h"
36 #include "wx/app.h"
37 #include "wx/dc.h"
38 #include "wx/dialog.h"
39 #include "wx/menu.h"
40 #include "wx/list.h"
41 #include "wx/filedlg.h"
42 #include "wx/intl.h"
43 #include "wx/log.h"
44 #endif
45
46 #include "wx/ffile.h"
47
48 #ifdef __WXMAC__
49 #include "wx/filename.h"
50 #endif
51
52 #ifdef __WXGTK__
53 #include "wx/mdi.h"
54 #endif
55
56 #if wxUSE_PRINTING_ARCHITECTURE
57 #include "wx/prntbase.h"
58 #include "wx/printdlg.h"
59 #endif
60
61 #include "wx/msgdlg.h"
62 #include "wx/choicdlg.h"
63 #include "wx/docview.h"
64 #include "wx/confbase.h"
65 #include "wx/file.h"
66 #include "wx/cmdproc.h"
67
68 #include <stdio.h>
69 #include <string.h>
70
71 #if wxUSE_STD_IOSTREAM
72 #include "wx/ioswrap.h"
73 #if wxUSE_IOSTREAMH
74 #include <fstream.h>
75 #else
76 #include <fstream>
77 #endif
78 #else
79 #include "wx/wfstream.h"
80 #endif
81
82 // ----------------------------------------------------------------------------
83 // wxWidgets macros
84 // ----------------------------------------------------------------------------
85
86 IMPLEMENT_ABSTRACT_CLASS(wxDocument, wxEvtHandler)
87 IMPLEMENT_ABSTRACT_CLASS(wxView, wxEvtHandler)
88 IMPLEMENT_ABSTRACT_CLASS(wxDocTemplate, wxObject)
89 IMPLEMENT_DYNAMIC_CLASS(wxDocManager, wxEvtHandler)
90 IMPLEMENT_CLASS(wxDocChildFrame, wxFrame)
91 IMPLEMENT_CLASS(wxDocParentFrame, wxFrame)
92
93 #if wxUSE_PRINTING_ARCHITECTURE
94 IMPLEMENT_DYNAMIC_CLASS(wxDocPrintout, wxPrintout)
95 #endif
96
97 IMPLEMENT_DYNAMIC_CLASS(wxFileHistory, wxObject)
98
99 // ----------------------------------------------------------------------------
100 // function prototypes
101 // ----------------------------------------------------------------------------
102
103 static inline wxString FindExtension(const wxChar *path);
104 static wxWindow* wxFindSuitableParent(void);
105
106 // ----------------------------------------------------------------------------
107 // local constants
108 // ----------------------------------------------------------------------------
109
110 static const wxChar *s_MRUEntryFormat = wxT("&%d %s");
111
112 // ============================================================================
113 // implementation
114 // ============================================================================
115
116 // ----------------------------------------------------------------------------
117 // local functions
118 // ----------------------------------------------------------------------------
119
120 static wxString FindExtension(const wxChar *path)
121 {
122 wxString ext;
123 wxSplitPath(path, NULL, NULL, &ext);
124
125 // VZ: extensions are considered not case sensitive - is this really a good
126 // idea?
127 return ext.MakeLower();
128 }
129
130 // ----------------------------------------------------------------------------
131 // Definition of wxDocument
132 // ----------------------------------------------------------------------------
133
134 wxDocument::wxDocument(wxDocument *parent)
135 {
136 m_documentModified = false;
137 m_documentParent = parent;
138 m_documentTemplate = (wxDocTemplate *) NULL;
139 m_commandProcessor = (wxCommandProcessor*) NULL;
140 m_savedYet = false;
141 }
142
143 bool wxDocument::DeleteContents()
144 {
145 return true;
146 }
147
148 wxDocument::~wxDocument()
149 {
150 DeleteContents();
151
152 if (m_commandProcessor)
153 delete m_commandProcessor;
154
155 if (GetDocumentManager())
156 GetDocumentManager()->RemoveDocument(this);
157
158 // Not safe to do here, since it'll invoke virtual view functions
159 // expecting to see valid derived objects: and by the time we get here,
160 // we've called destructors higher up.
161 //DeleteAllViews();
162 }
163
164 bool wxDocument::Close()
165 {
166 if (OnSaveModified())
167 return OnCloseDocument();
168 else
169 return false;
170 }
171
172 bool wxDocument::OnCloseDocument()
173 {
174 // Tell all views that we're about to close
175 NotifyClosing();
176 DeleteContents();
177 Modify(false);
178 return true;
179 }
180
181 // Note that this implicitly deletes the document when the last view is
182 // deleted.
183 bool wxDocument::DeleteAllViews()
184 {
185 wxDocManager* manager = GetDocumentManager();
186
187 // first check if all views agree to be closed
188 const wxList::iterator end = m_documentViews.end();
189 for ( wxList::iterator i = m_documentViews.begin(); i != end; ++i )
190 {
191 wxView *view = (wxView *)*i;
192 if ( !view->Close() )
193 return false;
194 }
195
196 // all views agreed to close, now do close them
197 if ( m_documentViews.empty() )
198 {
199 // normally the document would be implicitly deleted when the last view
200 // is, but if don't have any views, do it here instead
201 if ( manager && manager->GetDocuments().Member(this) )
202 delete this;
203 }
204 else // have views
205 {
206 // as we delete elements we iterate over, don't use the usual "from
207 // begin to end" loop
208 for ( ;; )
209 {
210 wxView *view = (wxView *)*m_documentViews.begin();
211
212 bool isLastOne = m_documentViews.size() == 1;
213
214 // this always deletes the node implicitly and if this is the last
215 // view also deletes this object itself (also implicitly, great),
216 // so we can't test for m_documentViews.empty() after calling this!
217 delete view;
218
219 if ( isLastOne )
220 break;
221 }
222 }
223
224 return true;
225 }
226
227 wxView *wxDocument::GetFirstView() const
228 {
229 if (m_documentViews.GetCount() == 0)
230 return (wxView *) NULL;
231 return (wxView *)m_documentViews.GetFirst()->GetData();
232 }
233
234 wxDocManager *wxDocument::GetDocumentManager() const
235 {
236 return (m_documentTemplate ? m_documentTemplate->GetDocumentManager() : (wxDocManager*) NULL);
237 }
238
239 bool wxDocument::OnNewDocument()
240 {
241 if (!OnSaveModified())
242 return false;
243
244 if (OnCloseDocument()==false) return false;
245 DeleteContents();
246 Modify(false);
247 SetDocumentSaved(false);
248
249 wxString name;
250 GetDocumentManager()->MakeDefaultName(name);
251 SetTitle(name);
252 SetFilename(name, true);
253
254 return true;
255 }
256
257 bool wxDocument::Save()
258 {
259 if (!IsModified() && m_savedYet)
260 return true;
261
262 if ( m_documentFile.empty() || !m_savedYet )
263 return SaveAs();
264
265 return OnSaveDocument(m_documentFile);
266 }
267
268 bool wxDocument::SaveAs()
269 {
270 wxDocTemplate *docTemplate = GetDocumentTemplate();
271 if (!docTemplate)
272 return false;
273
274 #if defined(__WXMSW__) || defined(__WXGTK__) || defined(__WXMAC__)
275 wxString filter = docTemplate->GetDescription() + wxT(" (") + docTemplate->GetFileFilter() + wxT(")|") + docTemplate->GetFileFilter();
276
277 // Now see if there are some other template with identical view and document
278 // classes, whose filters may also be used.
279
280 if (docTemplate->GetViewClassInfo() && docTemplate->GetDocClassInfo())
281 {
282 wxList::compatibility_iterator node = wxDocManager::GetDocumentManager()->GetTemplates().GetFirst();
283 while (node)
284 {
285 wxDocTemplate *t = (wxDocTemplate*) node->GetData();
286
287 if (t->IsVisible() && t != docTemplate &&
288 t->GetViewClassInfo() == docTemplate->GetViewClassInfo() &&
289 t->GetDocClassInfo() == docTemplate->GetDocClassInfo())
290 {
291 // add a '|' to separate this filter from the previous one
292 if ( !filter.empty() )
293 filter << wxT('|');
294
295 filter << t->GetDescription() << wxT(" (") << t->GetFileFilter() << wxT(") |")
296 << t->GetFileFilter();
297 }
298
299 node = node->GetNext();
300 }
301 }
302 #else
303 wxString filter = docTemplate->GetFileFilter() ;
304 #endif
305 wxString tmp = wxFileSelector(_("Save as"),
306 docTemplate->GetDirectory(),
307 wxFileNameFromPath(GetFilename()),
308 docTemplate->GetDefaultExtension(),
309 filter,
310 wxSAVE | wxOVERWRITE_PROMPT,
311 GetDocumentWindow());
312
313 if (tmp.empty())
314 return false;
315
316 wxString fileName(tmp);
317 wxString path, name, ext;
318 wxSplitPath(fileName, & path, & name, & ext);
319
320 if (ext.empty())
321 {
322 fileName += wxT(".");
323 fileName += docTemplate->GetDefaultExtension();
324 }
325
326 SetFilename(fileName);
327 SetTitle(wxFileNameFromPath(fileName));
328
329 // Notify the views that the filename has changed
330 wxList::compatibility_iterator node = m_documentViews.GetFirst();
331 while (node)
332 {
333 wxView *view = (wxView *)node->GetData();
334 view->OnChangeFilename();
335 node = node->GetNext();
336 }
337
338 // Files that were not saved correctly are not added to the FileHistory.
339 if (!OnSaveDocument(m_documentFile))
340 return false;
341
342 // A file that doesn't use the default extension of its document template cannot be opened
343 // via the FileHistory, so we do not add it.
344 if (docTemplate->FileMatchesTemplate(fileName))
345 {
346 GetDocumentManager()->AddFileToHistory(fileName);
347 }
348 else
349 {
350 // The user will probably not be able to open the file again, so
351 // we could warn about the wrong file-extension here.
352 }
353 return true;
354 }
355
356 bool wxDocument::OnSaveDocument(const wxString& file)
357 {
358 if ( !file )
359 return false;
360
361 if ( !DoSaveDocument(file) )
362 return false;
363
364 Modify(false);
365 SetFilename(file);
366 SetDocumentSaved(true);
367 #ifdef __WXMAC__
368 wxFileName fn(file) ;
369 fn.MacSetDefaultTypeAndCreator() ;
370 #endif
371 return true;
372 }
373
374 bool wxDocument::OnOpenDocument(const wxString& file)
375 {
376 if (!OnSaveModified())
377 return false;
378
379 if ( !DoOpenDocument(file) )
380 return false;
381
382 SetFilename(file, true);
383 Modify(false);
384 m_savedYet = true;
385
386 UpdateAllViews();
387
388 return true;
389 }
390
391 #if wxUSE_STD_IOSTREAM
392 wxSTD istream& wxDocument::LoadObject(wxSTD istream& stream)
393 #else
394 wxInputStream& wxDocument::LoadObject(wxInputStream& stream)
395 #endif
396 {
397 return stream;
398 }
399
400 #if wxUSE_STD_IOSTREAM
401 wxSTD ostream& wxDocument::SaveObject(wxSTD ostream& stream)
402 #else
403 wxOutputStream& wxDocument::SaveObject(wxOutputStream& stream)
404 #endif
405 {
406 return stream;
407 }
408
409 bool wxDocument::Revert()
410 {
411 return false;
412 }
413
414
415 // Get title, or filename if no title, else unnamed
416 bool wxDocument::GetPrintableName(wxString& buf) const
417 {
418 if (!m_documentTitle.empty())
419 {
420 buf = m_documentTitle;
421 return true;
422 }
423 else if (!m_documentFile.empty())
424 {
425 buf = wxFileNameFromPath(m_documentFile);
426 return true;
427 }
428 else
429 {
430 buf = _("unnamed");
431 return true;
432 }
433 }
434
435 wxWindow *wxDocument::GetDocumentWindow() const
436 {
437 wxView *view = GetFirstView();
438 if (view)
439 return view->GetFrame();
440 else
441 return wxTheApp->GetTopWindow();
442 }
443
444 wxCommandProcessor *wxDocument::OnCreateCommandProcessor()
445 {
446 return new wxCommandProcessor;
447 }
448
449 // true if safe to close
450 bool wxDocument::OnSaveModified()
451 {
452 if (IsModified())
453 {
454 wxString title;
455 GetPrintableName(title);
456
457 wxString msgTitle;
458 if (!wxTheApp->GetAppName().empty())
459 msgTitle = wxTheApp->GetAppName();
460 else
461 msgTitle = wxString(_("Warning"));
462
463 wxString prompt;
464 prompt.Printf(_("Do you want to save changes to document %s?"),
465 (const wxChar *)title);
466 int res = wxMessageBox(prompt, msgTitle,
467 wxYES_NO|wxCANCEL|wxICON_QUESTION,
468 GetDocumentWindow());
469 if (res == wxNO)
470 {
471 Modify(false);
472 return true;
473 }
474 else if (res == wxYES)
475 return Save();
476 else if (res == wxCANCEL)
477 return false;
478 }
479 return true;
480 }
481
482 bool wxDocument::Draw(wxDC& WXUNUSED(context))
483 {
484 return true;
485 }
486
487 bool wxDocument::AddView(wxView *view)
488 {
489 if (!m_documentViews.Member(view))
490 {
491 m_documentViews.Append(view);
492 OnChangedViewList();
493 }
494 return true;
495 }
496
497 bool wxDocument::RemoveView(wxView *view)
498 {
499 (void)m_documentViews.DeleteObject(view);
500 OnChangedViewList();
501 return true;
502 }
503
504 bool wxDocument::OnCreate(const wxString& WXUNUSED(path), long flags)
505 {
506 if (GetDocumentTemplate()->CreateView(this, flags))
507 return true;
508 else
509 return false;
510 }
511
512 // Called after a view is added or removed.
513 // The default implementation deletes the document if
514 // there are no more views.
515 void wxDocument::OnChangedViewList()
516 {
517 if (m_documentViews.GetCount() == 0)
518 {
519 if (OnSaveModified())
520 {
521 delete this;
522 }
523 }
524 }
525
526 void wxDocument::UpdateAllViews(wxView *sender, wxObject *hint)
527 {
528 wxList::compatibility_iterator node = m_documentViews.GetFirst();
529 while (node)
530 {
531 wxView *view = (wxView *)node->GetData();
532 if (view != sender)
533 view->OnUpdate(sender, hint);
534 node = node->GetNext();
535 }
536 }
537
538 void wxDocument::NotifyClosing()
539 {
540 wxList::compatibility_iterator node = m_documentViews.GetFirst();
541 while (node)
542 {
543 wxView *view = (wxView *)node->GetData();
544 view->OnClosingDocument();
545 node = node->GetNext();
546 }
547 }
548
549 void wxDocument::SetFilename(const wxString& filename, bool notifyViews)
550 {
551 m_documentFile = filename;
552 if ( notifyViews )
553 {
554 // Notify the views that the filename has changed
555 wxList::compatibility_iterator node = m_documentViews.GetFirst();
556 while (node)
557 {
558 wxView *view = (wxView *)node->GetData();
559 view->OnChangeFilename();
560 node = node->GetNext();
561 }
562 }
563 }
564
565 bool wxDocument::DoSaveDocument(const wxString& file)
566 {
567 wxString msgTitle;
568 if (!wxTheApp->GetAppName().empty())
569 msgTitle = wxTheApp->GetAppName();
570 else
571 msgTitle = wxString(_("File error"));
572
573 #if wxUSE_STD_IOSTREAM
574 wxSTD ofstream store(file.mb_str());
575 if (store.fail() || store.bad())
576 #else
577 wxFileOutputStream store(file);
578 if (store.GetLastError() != wxSTREAM_NO_ERROR)
579 #endif
580 {
581 (void)wxMessageBox(_("Sorry, could not open this file for saving."), msgTitle, wxOK | wxICON_EXCLAMATION,
582 GetDocumentWindow());
583 // Saving error
584 return false;
585 }
586 if (!SaveObject(store))
587 {
588 (void)wxMessageBox(_("Sorry, could not save this file."), msgTitle, wxOK | wxICON_EXCLAMATION,
589 GetDocumentWindow());
590 // Saving error
591 return false;
592 }
593
594 return true;
595 }
596
597 bool wxDocument::DoOpenDocument(const wxString& file)
598 {
599 wxString msgTitle;
600 if (!wxTheApp->GetAppName().empty())
601 msgTitle = wxTheApp->GetAppName();
602 else
603 msgTitle = wxString(_("File error"));
604
605 #if wxUSE_STD_IOSTREAM
606 wxSTD ifstream store(file.mb_str());
607 if (store.fail() || store.bad())
608 #else
609 wxFileInputStream store(file);
610 if (store.GetLastError() != wxSTREAM_NO_ERROR)
611 #endif
612 {
613 (void)wxMessageBox(_("Sorry, could not open this file."), msgTitle, wxOK|wxICON_EXCLAMATION,
614 GetDocumentWindow());
615 return false;
616 }
617 #if wxUSE_STD_IOSTREAM
618 LoadObject(store);
619 if ( !store && !store.eof() )
620 #else
621 int res = LoadObject(store).GetLastError();
622 if ((res != wxSTREAM_NO_ERROR) &&
623 (res != wxSTREAM_EOF))
624 #endif
625 {
626 (void)wxMessageBox(_("Sorry, could not open this file."), msgTitle, wxOK|wxICON_EXCLAMATION,
627 GetDocumentWindow());
628 return false;
629 }
630
631 return true;
632 }
633
634
635 // ----------------------------------------------------------------------------
636 // Document view
637 // ----------------------------------------------------------------------------
638
639 wxView::wxView()
640 {
641 m_viewDocument = (wxDocument*) NULL;
642
643 m_viewFrame = (wxFrame *) NULL;
644 }
645
646 wxView::~wxView()
647 {
648 GetDocumentManager()->ActivateView(this, false);
649 m_viewDocument->RemoveView(this);
650 }
651
652 // Extend event processing to search the document's event table
653 bool wxView::ProcessEvent(wxEvent& event)
654 {
655 if ( !GetDocument() || !GetDocument()->ProcessEvent(event) )
656 return wxEvtHandler::ProcessEvent(event);
657
658 return true;
659 }
660
661 void wxView::OnActivateView(bool WXUNUSED(activate), wxView *WXUNUSED(activeView), wxView *WXUNUSED(deactiveView))
662 {
663 }
664
665 void wxView::OnPrint(wxDC *dc, wxObject *WXUNUSED(info))
666 {
667 OnDraw(dc);
668 }
669
670 void wxView::OnUpdate(wxView *WXUNUSED(sender), wxObject *WXUNUSED(hint))
671 {
672 }
673
674 void wxView::OnChangeFilename()
675 {
676 if (GetFrame() && GetDocument())
677 {
678 wxString title;
679
680 GetDocument()->GetPrintableName(title);
681
682 GetFrame()->SetTitle(title);
683 }
684 }
685
686 void wxView::SetDocument(wxDocument *doc)
687 {
688 m_viewDocument = doc;
689 if (doc)
690 doc->AddView(this);
691 }
692
693 bool wxView::Close(bool deleteWindow)
694 {
695 if (OnClose(deleteWindow))
696 return true;
697 else
698 return false;
699 }
700
701 void wxView::Activate(bool activate)
702 {
703 if (GetDocument() && GetDocumentManager())
704 {
705 OnActivateView(activate, this, GetDocumentManager()->GetCurrentView());
706 GetDocumentManager()->ActivateView(this, activate);
707 }
708 }
709
710 bool wxView::OnClose(bool WXUNUSED(deleteWindow))
711 {
712 return GetDocument() ? GetDocument()->Close() : true;
713 }
714
715 #if wxUSE_PRINTING_ARCHITECTURE
716 wxPrintout *wxView::OnCreatePrintout()
717 {
718 return new wxDocPrintout(this);
719 }
720 #endif // wxUSE_PRINTING_ARCHITECTURE
721
722 // ----------------------------------------------------------------------------
723 // wxDocTemplate
724 // ----------------------------------------------------------------------------
725
726 wxDocTemplate::wxDocTemplate(wxDocManager *manager,
727 const wxString& descr,
728 const wxString& filter,
729 const wxString& dir,
730 const wxString& ext,
731 const wxString& docTypeName,
732 const wxString& viewTypeName,
733 wxClassInfo *docClassInfo,
734 wxClassInfo *viewClassInfo,
735 long flags)
736 {
737 m_documentManager = manager;
738 m_description = descr;
739 m_directory = dir;
740 m_defaultExt = ext;
741 m_fileFilter = filter;
742 m_flags = flags;
743 m_docTypeName = docTypeName;
744 m_viewTypeName = viewTypeName;
745 m_documentManager->AssociateTemplate(this);
746
747 m_docClassInfo = docClassInfo;
748 m_viewClassInfo = viewClassInfo;
749 }
750
751 wxDocTemplate::~wxDocTemplate()
752 {
753 m_documentManager->DisassociateTemplate(this);
754 }
755
756 // Tries to dynamically construct an object of the right class.
757 wxDocument *wxDocTemplate::CreateDocument(const wxString& path, long flags)
758 {
759 wxDocument *doc = DoCreateDocument();
760 if ( doc == NULL )
761 return (wxDocument *) NULL;
762
763 if (InitDocument(doc, path, flags))
764 {
765 return doc;
766 }
767 else
768 {
769 return (wxDocument *) NULL;
770 }
771 }
772
773 bool wxDocTemplate::InitDocument(wxDocument* doc, const wxString& path, long flags)
774 {
775 doc->SetFilename(path);
776 doc->SetDocumentTemplate(this);
777 GetDocumentManager()->AddDocument(doc);
778 doc->SetCommandProcessor(doc->OnCreateCommandProcessor());
779
780 if (doc->OnCreate(path, flags))
781 return true;
782 else
783 {
784 if (GetDocumentManager()->GetDocuments().Member(doc))
785 doc->DeleteAllViews();
786 return false;
787 }
788 }
789
790 wxView *wxDocTemplate::CreateView(wxDocument *doc, long flags)
791 {
792 wxView *view = DoCreateView();
793 if ( view == NULL )
794 return (wxView *) NULL;
795
796 view->SetDocument(doc);
797 if (view->OnCreate(doc, flags))
798 {
799 return view;
800 }
801 else
802 {
803 delete view;
804 return (wxView *) NULL;
805 }
806 }
807
808 // The default (very primitive) format detection: check is the extension is
809 // that of the template
810 bool wxDocTemplate::FileMatchesTemplate(const wxString& path)
811 {
812 return GetDefaultExtension().IsSameAs(FindExtension(path));
813 }
814
815 wxDocument *wxDocTemplate::DoCreateDocument()
816 {
817 if (!m_docClassInfo)
818 return (wxDocument *) NULL;
819
820 return (wxDocument *)m_docClassInfo->CreateObject();
821 }
822
823 wxView *wxDocTemplate::DoCreateView()
824 {
825 if (!m_viewClassInfo)
826 return (wxView *) NULL;
827
828 return (wxView *)m_viewClassInfo->CreateObject();
829 }
830
831 // ----------------------------------------------------------------------------
832 // wxDocManager
833 // ----------------------------------------------------------------------------
834
835 BEGIN_EVENT_TABLE(wxDocManager, wxEvtHandler)
836 EVT_MENU(wxID_OPEN, wxDocManager::OnFileOpen)
837 EVT_MENU(wxID_CLOSE, wxDocManager::OnFileClose)
838 EVT_MENU(wxID_CLOSE_ALL, wxDocManager::OnFileCloseAll)
839 EVT_MENU(wxID_REVERT, wxDocManager::OnFileRevert)
840 EVT_MENU(wxID_NEW, wxDocManager::OnFileNew)
841 EVT_MENU(wxID_SAVE, wxDocManager::OnFileSave)
842 EVT_MENU(wxID_SAVEAS, wxDocManager::OnFileSaveAs)
843 EVT_MENU(wxID_UNDO, wxDocManager::OnUndo)
844 EVT_MENU(wxID_REDO, wxDocManager::OnRedo)
845
846 EVT_UPDATE_UI(wxID_OPEN, wxDocManager::OnUpdateFileOpen)
847 EVT_UPDATE_UI(wxID_CLOSE, wxDocManager::OnUpdateFileClose)
848 EVT_UPDATE_UI(wxID_CLOSE_ALL, wxDocManager::OnUpdateFileClose)
849 EVT_UPDATE_UI(wxID_REVERT, wxDocManager::OnUpdateFileRevert)
850 EVT_UPDATE_UI(wxID_NEW, wxDocManager::OnUpdateFileNew)
851 EVT_UPDATE_UI(wxID_SAVE, wxDocManager::OnUpdateFileSave)
852 EVT_UPDATE_UI(wxID_SAVEAS, wxDocManager::OnUpdateFileSaveAs)
853 EVT_UPDATE_UI(wxID_UNDO, wxDocManager::OnUpdateUndo)
854 EVT_UPDATE_UI(wxID_REDO, wxDocManager::OnUpdateRedo)
855
856 #if wxUSE_PRINTING_ARCHITECTURE
857 EVT_MENU(wxID_PRINT, wxDocManager::OnPrint)
858 EVT_MENU(wxID_PREVIEW, wxDocManager::OnPreview)
859
860 EVT_UPDATE_UI(wxID_PRINT, wxDocManager::OnUpdatePrint)
861 EVT_UPDATE_UI(wxID_PREVIEW, wxDocManager::OnUpdatePreview)
862 #endif
863 END_EVENT_TABLE()
864
865 wxDocManager* wxDocManager::sm_docManager = (wxDocManager*) NULL;
866
867 wxDocManager::wxDocManager(long flags, bool initialize)
868 {
869 m_defaultDocumentNameCounter = 1;
870 m_flags = flags;
871 m_currentView = (wxView *) NULL;
872 m_maxDocsOpen = 10000;
873 m_fileHistory = (wxFileHistory *) NULL;
874 if (initialize)
875 Initialize();
876 sm_docManager = this;
877 }
878
879 wxDocManager::~wxDocManager()
880 {
881 Clear();
882 if (m_fileHistory)
883 delete m_fileHistory;
884 sm_docManager = (wxDocManager*) NULL;
885 }
886
887 // closes the specified document
888 bool wxDocManager::CloseDocument(wxDocument* doc, bool force)
889 {
890 if (doc->Close() || force)
891 {
892 // Implicitly deletes the document when
893 // the last view is deleted
894 doc->DeleteAllViews();
895
896 // Check we're really deleted
897 if (m_docs.Member(doc))
898 delete doc;
899
900 return true;
901 }
902 return false;
903 }
904
905 bool wxDocManager::CloseDocuments(bool force)
906 {
907 wxList::compatibility_iterator node = m_docs.GetFirst();
908 while (node)
909 {
910 wxDocument *doc = (wxDocument *)node->GetData();
911 wxList::compatibility_iterator next = node->GetNext();
912
913 if (!CloseDocument(doc, force))
914 return false;
915
916 // This assumes that documents are not connected in
917 // any way, i.e. deleting one document does NOT
918 // delete another.
919 node = next;
920 }
921 return true;
922 }
923
924 bool wxDocManager::Clear(bool force)
925 {
926 if (!CloseDocuments(force))
927 return false;
928
929 m_currentView = NULL;
930
931 wxList::compatibility_iterator node = m_templates.GetFirst();
932 while (node)
933 {
934 wxDocTemplate *templ = (wxDocTemplate*) node->GetData();
935 wxList::compatibility_iterator next = node->GetNext();
936 delete templ;
937 node = next;
938 }
939 return true;
940 }
941
942 bool wxDocManager::Initialize()
943 {
944 m_fileHistory = OnCreateFileHistory();
945 return true;
946 }
947
948 wxFileHistory *wxDocManager::OnCreateFileHistory()
949 {
950 return new wxFileHistory;
951 }
952
953 void wxDocManager::OnFileClose(wxCommandEvent& WXUNUSED(event))
954 {
955 wxDocument *doc = GetCurrentDocument();
956 if (!doc)
957 return;
958 if (doc->Close())
959 {
960 doc->DeleteAllViews();
961 if (m_docs.Member(doc))
962 delete doc;
963 }
964 }
965
966 void wxDocManager::OnFileCloseAll(wxCommandEvent& WXUNUSED(event))
967 {
968 CloseDocuments(false);
969 }
970
971 void wxDocManager::OnFileNew(wxCommandEvent& WXUNUSED(event))
972 {
973 CreateDocument( wxEmptyString, wxDOC_NEW );
974 }
975
976 void wxDocManager::OnFileOpen(wxCommandEvent& WXUNUSED(event))
977 {
978 if ( !CreateDocument( wxEmptyString, 0) )
979 {
980 OnOpenFileFailure();
981 }
982 }
983
984 void wxDocManager::OnFileRevert(wxCommandEvent& WXUNUSED(event))
985 {
986 wxDocument *doc = GetCurrentDocument();
987 if (!doc)
988 return;
989 doc->Revert();
990 }
991
992 void wxDocManager::OnFileSave(wxCommandEvent& WXUNUSED(event))
993 {
994 wxDocument *doc = GetCurrentDocument();
995 if (!doc)
996 return;
997 doc->Save();
998 }
999
1000 void wxDocManager::OnFileSaveAs(wxCommandEvent& WXUNUSED(event))
1001 {
1002 wxDocument *doc = GetCurrentDocument();
1003 if (!doc)
1004 return;
1005 doc->SaveAs();
1006 }
1007
1008 void wxDocManager::OnPrint(wxCommandEvent& WXUNUSED(event))
1009 {
1010 #if wxUSE_PRINTING_ARCHITECTURE
1011 wxView *view = GetCurrentView();
1012 if (!view)
1013 return;
1014
1015 wxPrintout *printout = view->OnCreatePrintout();
1016 if (printout)
1017 {
1018 wxPrinter printer;
1019 printer.Print(view->GetFrame(), printout, true);
1020
1021 delete printout;
1022 }
1023 #endif // wxUSE_PRINTING_ARCHITECTURE
1024 }
1025
1026 void wxDocManager::OnPreview(wxCommandEvent& WXUNUSED(event))
1027 {
1028 #if wxUSE_PRINTING_ARCHITECTURE
1029 wxView *view = GetCurrentView();
1030 if (!view)
1031 return;
1032
1033 wxPrintout *printout = view->OnCreatePrintout();
1034 if (printout)
1035 {
1036 // Pass two printout objects: for preview, and possible printing.
1037 wxPrintPreviewBase *preview = new wxPrintPreview(printout, view->OnCreatePrintout());
1038 if ( !preview->Ok() )
1039 {
1040 delete preview;
1041 wxMessageBox( _("Sorry, print preview needs a printer to be installed.") );
1042 return;
1043 }
1044
1045 wxPreviewFrame *frame = new wxPreviewFrame(preview, (wxFrame *)wxTheApp->GetTopWindow(), _("Print Preview"),
1046 wxPoint(100, 100), wxSize(600, 650));
1047 frame->Centre(wxBOTH);
1048 frame->Initialize();
1049 frame->Show(true);
1050 }
1051 #endif // wxUSE_PRINTING_ARCHITECTURE
1052 }
1053
1054 void wxDocManager::OnUndo(wxCommandEvent& event)
1055 {
1056 wxDocument *doc = GetCurrentDocument();
1057 if (!doc)
1058 return;
1059 if (doc->GetCommandProcessor())
1060 doc->GetCommandProcessor()->Undo();
1061 else
1062 event.Skip();
1063 }
1064
1065 void wxDocManager::OnRedo(wxCommandEvent& event)
1066 {
1067 wxDocument *doc = GetCurrentDocument();
1068 if (!doc)
1069 return;
1070 if (doc->GetCommandProcessor())
1071 doc->GetCommandProcessor()->Redo();
1072 else
1073 event.Skip();
1074 }
1075
1076 // Handlers for UI update commands
1077
1078 void wxDocManager::OnUpdateFileOpen(wxUpdateUIEvent& event)
1079 {
1080 event.Enable( true );
1081 }
1082
1083 void wxDocManager::OnUpdateFileClose(wxUpdateUIEvent& event)
1084 {
1085 wxDocument *doc = GetCurrentDocument();
1086 event.Enable( (doc != (wxDocument*) NULL) );
1087 }
1088
1089 void wxDocManager::OnUpdateFileRevert(wxUpdateUIEvent& event)
1090 {
1091 wxDocument *doc = GetCurrentDocument();
1092 event.Enable( (doc != (wxDocument*) NULL) );
1093 }
1094
1095 void wxDocManager::OnUpdateFileNew(wxUpdateUIEvent& event)
1096 {
1097 event.Enable( true );
1098 }
1099
1100 void wxDocManager::OnUpdateFileSave(wxUpdateUIEvent& event)
1101 {
1102 wxDocument *doc = GetCurrentDocument();
1103 event.Enable( doc && doc->IsModified() );
1104 }
1105
1106 void wxDocManager::OnUpdateFileSaveAs(wxUpdateUIEvent& event)
1107 {
1108 wxDocument *doc = GetCurrentDocument();
1109 event.Enable( (doc != (wxDocument*) NULL) );
1110 }
1111
1112 void wxDocManager::OnUpdateUndo(wxUpdateUIEvent& event)
1113 {
1114 wxDocument *doc = GetCurrentDocument();
1115 if (!doc)
1116 event.Enable(false);
1117 else if (!doc->GetCommandProcessor())
1118 event.Skip();
1119 else
1120 {
1121 event.Enable( doc->GetCommandProcessor()->CanUndo() );
1122 doc->GetCommandProcessor()->SetMenuStrings();
1123 }
1124 }
1125
1126 void wxDocManager::OnUpdateRedo(wxUpdateUIEvent& event)
1127 {
1128 wxDocument *doc = GetCurrentDocument();
1129 if (!doc)
1130 event.Enable(false);
1131 else if (!doc->GetCommandProcessor())
1132 event.Skip();
1133 else
1134 {
1135 event.Enable( doc->GetCommandProcessor()->CanRedo() );
1136 doc->GetCommandProcessor()->SetMenuStrings();
1137 }
1138 }
1139
1140 void wxDocManager::OnUpdatePrint(wxUpdateUIEvent& event)
1141 {
1142 wxDocument *doc = GetCurrentDocument();
1143 event.Enable( (doc != (wxDocument*) NULL) );
1144 }
1145
1146 void wxDocManager::OnUpdatePreview(wxUpdateUIEvent& event)
1147 {
1148 wxDocument *doc = GetCurrentDocument();
1149 event.Enable( (doc != (wxDocument*) NULL) );
1150 }
1151
1152 wxView *wxDocManager::GetCurrentView() const
1153 {
1154 if (m_currentView)
1155 return m_currentView;
1156 if (m_docs.GetCount() == 1)
1157 {
1158 wxDocument* doc = (wxDocument*) m_docs.GetFirst()->GetData();
1159 return doc->GetFirstView();
1160 }
1161 return (wxView *) NULL;
1162 }
1163
1164 // Extend event processing to search the view's event table
1165 bool wxDocManager::ProcessEvent(wxEvent& event)
1166 {
1167 wxView* view = GetCurrentView();
1168 if (view)
1169 {
1170 if (view->ProcessEvent(event))
1171 return true;
1172 }
1173 return wxEvtHandler::ProcessEvent(event);
1174 }
1175
1176 wxDocument *wxDocManager::CreateDocument(const wxString& path, long flags)
1177 {
1178 wxDocTemplate **templates = new wxDocTemplate *[m_templates.GetCount()];
1179 int n = 0;
1180
1181 for (size_t i = 0; i < m_templates.GetCount(); i++)
1182 {
1183 wxDocTemplate *temp = (wxDocTemplate *)(m_templates.Item(i)->GetData());
1184 if (temp->IsVisible())
1185 {
1186 templates[n] = temp;
1187 n ++;
1188 }
1189 }
1190 if (n == 0)
1191 {
1192 delete[] templates;
1193 return (wxDocument *) NULL;
1194 }
1195
1196 wxDocument* docToClose = NULL;
1197
1198 // If we've reached the max number of docs, close the
1199 // first one.
1200 if ( (int)GetDocuments().GetCount() >= m_maxDocsOpen )
1201 {
1202 wxDocument *doc = (wxDocument *)GetDocuments().GetFirst()->GetData();
1203 docToClose = doc;
1204 }
1205
1206 // New document: user chooses a template, unless there's only one.
1207 if (flags & wxDOC_NEW)
1208 {
1209 if (n == 1)
1210 {
1211 if (docToClose)
1212 {
1213 if (!CloseDocument(docToClose, false))
1214 {
1215 delete[] templates;
1216 return NULL;
1217 }
1218 }
1219
1220 wxDocTemplate *temp = templates[0];
1221 delete[] templates;
1222 wxDocument *newDoc = temp->CreateDocument(path, flags);
1223
1224 if (newDoc)
1225 {
1226 newDoc->SetDocumentName(temp->GetDocumentName());
1227 newDoc->SetDocumentTemplate(temp);
1228 newDoc->OnNewDocument();
1229 }
1230 return newDoc;
1231 }
1232
1233 wxDocTemplate *temp = SelectDocumentType(templates, n);
1234 delete[] templates;
1235 if (temp)
1236 {
1237 if (docToClose)
1238 {
1239 if (!CloseDocument(docToClose, false))
1240 {
1241 return NULL;
1242 }
1243 }
1244
1245 wxDocument *newDoc = temp->CreateDocument(path, flags);
1246
1247 if (newDoc)
1248 {
1249 newDoc->SetDocumentName(temp->GetDocumentName());
1250 newDoc->SetDocumentTemplate(temp);
1251 newDoc->OnNewDocument();
1252 }
1253 return newDoc;
1254 }
1255 else
1256 return (wxDocument *) NULL;
1257 }
1258
1259 // Existing document
1260 wxDocTemplate *temp;
1261
1262 wxString path2 = path;
1263
1264 if (flags & wxDOC_SILENT)
1265 {
1266 temp = FindTemplateForPath(path2);
1267 if (!temp)
1268 {
1269 // Since we do not add files with non-default extensions to the FileHistory this
1270 // can only happen if the application changes the allowed templates in runtime.
1271 (void)wxMessageBox(_("Sorry, the format for this file is unknown."),
1272 _("Open File"),
1273 wxOK | wxICON_EXCLAMATION, wxFindSuitableParent());
1274 }
1275 }
1276 else
1277 temp = SelectDocumentPath(templates, n, path2, flags);
1278
1279 delete[] templates;
1280
1281 if (temp)
1282 {
1283 if (docToClose)
1284 {
1285 if (!CloseDocument(docToClose, false))
1286 {
1287 return NULL;
1288 }
1289 }
1290
1291 wxDocument *newDoc = temp->CreateDocument(path2, flags);
1292 if (newDoc)
1293 {
1294 newDoc->SetDocumentName(temp->GetDocumentName());
1295 newDoc->SetDocumentTemplate(temp);
1296 if (!newDoc->OnOpenDocument(path2))
1297 {
1298 newDoc->DeleteAllViews();
1299 // delete newDoc; // Implicitly deleted by DeleteAllViews
1300 return (wxDocument *) NULL;
1301 }
1302 // A file that doesn't use the default extension of its document
1303 // template cannot be opened via the FileHistory, so we do not
1304 // add it.
1305 if (temp->FileMatchesTemplate(path2))
1306 AddFileToHistory(path2);
1307 }
1308 return newDoc;
1309 }
1310
1311 return (wxDocument *) NULL;
1312 }
1313
1314 wxView *wxDocManager::CreateView(wxDocument *doc, long flags)
1315 {
1316 wxDocTemplate **templates = new wxDocTemplate *[m_templates.GetCount()];
1317 int n =0;
1318
1319 for (size_t i = 0; i < m_templates.GetCount(); i++)
1320 {
1321 wxDocTemplate *temp = (wxDocTemplate *)(m_templates.Item(i)->GetData());
1322 if (temp->IsVisible())
1323 {
1324 if (temp->GetDocumentName() == doc->GetDocumentName())
1325 {
1326 templates[n] = temp;
1327 n ++;
1328 }
1329 }
1330 }
1331 if (n == 0)
1332 {
1333 delete[] templates;
1334 return (wxView *) NULL;
1335 }
1336 if (n == 1)
1337 {
1338 wxDocTemplate *temp = templates[0];
1339 delete[] templates;
1340 wxView *view = temp->CreateView(doc, flags);
1341 if (view)
1342 view->SetViewName(temp->GetViewName());
1343 return view;
1344 }
1345
1346 wxDocTemplate *temp = SelectViewType(templates, n);
1347 delete[] templates;
1348 if (temp)
1349 {
1350 wxView *view = temp->CreateView(doc, flags);
1351 if (view)
1352 view->SetViewName(temp->GetViewName());
1353 return view;
1354 }
1355 else
1356 return (wxView *) NULL;
1357 }
1358
1359 // Not yet implemented
1360 void wxDocManager::DeleteTemplate(wxDocTemplate *WXUNUSED(temp), long WXUNUSED(flags))
1361 {
1362 }
1363
1364 // Not yet implemented
1365 bool wxDocManager::FlushDoc(wxDocument *WXUNUSED(doc))
1366 {
1367 return false;
1368 }
1369
1370 wxDocument *wxDocManager::GetCurrentDocument() const
1371 {
1372 wxView *view = GetCurrentView();
1373 if (view)
1374 return view->GetDocument();
1375 else
1376 return (wxDocument *) NULL;
1377 }
1378
1379 // Make a default document name
1380 bool wxDocManager::MakeDefaultName(wxString& name)
1381 {
1382 name.Printf(_("unnamed%d"), m_defaultDocumentNameCounter);
1383 m_defaultDocumentNameCounter++;
1384
1385 return true;
1386 }
1387
1388 // Make a frame title (override this to do something different)
1389 // If docName is empty, a document is not currently active.
1390 wxString wxDocManager::MakeFrameTitle(wxDocument* doc)
1391 {
1392 wxString appName = wxTheApp->GetAppName();
1393 wxString title;
1394 if (!doc)
1395 title = appName;
1396 else
1397 {
1398 wxString docName;
1399 doc->GetPrintableName(docName);
1400 title = docName + wxString(_(" - ")) + appName;
1401 }
1402 return title;
1403 }
1404
1405
1406 // Not yet implemented
1407 wxDocTemplate *wxDocManager::MatchTemplate(const wxString& WXUNUSED(path))
1408 {
1409 return (wxDocTemplate *) NULL;
1410 }
1411
1412 // File history management
1413 void wxDocManager::AddFileToHistory(const wxString& file)
1414 {
1415 if (m_fileHistory)
1416 m_fileHistory->AddFileToHistory(file);
1417 }
1418
1419 void wxDocManager::RemoveFileFromHistory(size_t i)
1420 {
1421 if (m_fileHistory)
1422 m_fileHistory->RemoveFileFromHistory(i);
1423 }
1424
1425 wxString wxDocManager::GetHistoryFile(size_t i) const
1426 {
1427 wxString histFile;
1428
1429 if (m_fileHistory)
1430 histFile = m_fileHistory->GetHistoryFile(i);
1431
1432 return histFile;
1433 }
1434
1435 void wxDocManager::FileHistoryUseMenu(wxMenu *menu)
1436 {
1437 if (m_fileHistory)
1438 m_fileHistory->UseMenu(menu);
1439 }
1440
1441 void wxDocManager::FileHistoryRemoveMenu(wxMenu *menu)
1442 {
1443 if (m_fileHistory)
1444 m_fileHistory->RemoveMenu(menu);
1445 }
1446
1447 #if wxUSE_CONFIG
1448 void wxDocManager::FileHistoryLoad(wxConfigBase& config)
1449 {
1450 if (m_fileHistory)
1451 m_fileHistory->Load(config);
1452 }
1453
1454 void wxDocManager::FileHistorySave(wxConfigBase& config)
1455 {
1456 if (m_fileHistory)
1457 m_fileHistory->Save(config);
1458 }
1459 #endif
1460
1461 void wxDocManager::FileHistoryAddFilesToMenu(wxMenu* menu)
1462 {
1463 if (m_fileHistory)
1464 m_fileHistory->AddFilesToMenu(menu);
1465 }
1466
1467 void wxDocManager::FileHistoryAddFilesToMenu()
1468 {
1469 if (m_fileHistory)
1470 m_fileHistory->AddFilesToMenu();
1471 }
1472
1473 size_t wxDocManager::GetHistoryFilesCount() const
1474 {
1475 return m_fileHistory ? m_fileHistory->GetCount() : 0;
1476 }
1477
1478
1479 // Find out the document template via matching in the document file format
1480 // against that of the template
1481 wxDocTemplate *wxDocManager::FindTemplateForPath(const wxString& path)
1482 {
1483 wxDocTemplate *theTemplate = (wxDocTemplate *) NULL;
1484
1485 // Find the template which this extension corresponds to
1486 for (size_t i = 0; i < m_templates.GetCount(); i++)
1487 {
1488 wxDocTemplate *temp = (wxDocTemplate *)m_templates.Item(i)->GetData();
1489 if ( temp->FileMatchesTemplate(path) )
1490 {
1491 theTemplate = temp;
1492 break;
1493 }
1494 }
1495 return theTemplate;
1496 }
1497
1498 // Try to get a more suitable parent frame than the top window,
1499 // for selection dialogs. Otherwise you may get an unexpected
1500 // window being activated when a dialog is shown.
1501 static wxWindow* wxFindSuitableParent()
1502 {
1503 wxWindow* parent = wxTheApp->GetTopWindow();
1504
1505 wxWindow* focusWindow = wxWindow::FindFocus();
1506 if (focusWindow)
1507 {
1508 while (focusWindow &&
1509 !focusWindow->IsKindOf(CLASSINFO(wxDialog)) &&
1510 !focusWindow->IsKindOf(CLASSINFO(wxFrame)))
1511
1512 focusWindow = focusWindow->GetParent();
1513
1514 if (focusWindow)
1515 parent = focusWindow;
1516 }
1517 return parent;
1518 }
1519
1520 // Prompts user to open a file, using file specs in templates.
1521 // Must extend the file selector dialog or implement own; OR
1522 // match the extension to the template extension.
1523
1524 wxDocTemplate *wxDocManager::SelectDocumentPath(wxDocTemplate **templates,
1525 #if defined(__WXMSW__) || defined(__WXGTK__) || defined(__WXMAC__)
1526 int noTemplates,
1527 #else
1528 int WXUNUSED(noTemplates),
1529 #endif
1530 wxString& path,
1531 long WXUNUSED(flags),
1532 bool WXUNUSED(save))
1533 {
1534 // We can only have multiple filters in Windows and GTK
1535 #if defined(__WXMSW__) || defined(__WXGTK__) || defined(__WXMAC__)
1536 wxString descrBuf;
1537
1538 int i;
1539 for (i = 0; i < noTemplates; i++)
1540 {
1541 if (templates[i]->IsVisible())
1542 {
1543 // add a '|' to separate this filter from the previous one
1544 if ( !descrBuf.empty() )
1545 descrBuf << wxT('|');
1546
1547 descrBuf << templates[i]->GetDescription()
1548 << wxT(" (") << templates[i]->GetFileFilter() << wxT(") |")
1549 << templates[i]->GetFileFilter();
1550 }
1551 }
1552 #else
1553 wxString descrBuf = wxT("*.*");
1554 #endif
1555
1556 int FilterIndex = -1;
1557
1558 wxWindow* parent = wxFindSuitableParent();
1559
1560 wxString pathTmp = wxFileSelectorEx(_("Select a file"),
1561 m_lastDirectory,
1562 wxEmptyString,
1563 &FilterIndex,
1564 descrBuf,
1565 0,
1566 parent);
1567
1568 wxDocTemplate *theTemplate = (wxDocTemplate *)NULL;
1569 if (!pathTmp.empty())
1570 {
1571 if (!wxFileExists(pathTmp))
1572 {
1573 wxString msgTitle;
1574 if (!wxTheApp->GetAppName().empty())
1575 msgTitle = wxTheApp->GetAppName();
1576 else
1577 msgTitle = wxString(_("File error"));
1578
1579 (void)wxMessageBox(_("Sorry, could not open this file."), msgTitle, wxOK | wxICON_EXCLAMATION,
1580 parent);
1581
1582 path = wxEmptyString;
1583 return (wxDocTemplate *) NULL;
1584 }
1585 m_lastDirectory = wxPathOnly(pathTmp);
1586
1587 path = pathTmp;
1588
1589 // first choose the template using the extension, if this fails (i.e.
1590 // wxFileSelectorEx() didn't fill it), then use the path
1591 if ( FilterIndex != -1 )
1592 theTemplate = templates[FilterIndex];
1593 if ( !theTemplate )
1594 theTemplate = FindTemplateForPath(path);
1595 if ( !theTemplate )
1596 {
1597 // Since we do not add files with non-default extensions to the FileHistory this
1598 // can only happen if the application changes the allowed templates in runtime.
1599 (void)wxMessageBox(_("Sorry, the format for this file is unknown."),
1600 _("Open File"),
1601 wxOK | wxICON_EXCLAMATION, wxFindSuitableParent());
1602 }
1603 }
1604 else
1605 {
1606 path = wxEmptyString;
1607 }
1608
1609 return theTemplate;
1610 }
1611
1612 wxDocTemplate *wxDocManager::SelectDocumentType(wxDocTemplate **templates,
1613 int noTemplates, bool sort)
1614 {
1615 wxArrayString strings;
1616 wxDocTemplate **data = new wxDocTemplate *[noTemplates];
1617 int i;
1618 int n = 0;
1619
1620 for (i = 0; i < noTemplates; i++)
1621 {
1622 if (templates[i]->IsVisible())
1623 {
1624 int j;
1625 bool want = true;
1626 for (j = 0; j < n; j++)
1627 {
1628 //filter out NOT unique documents + view combinations
1629 if ( templates[i]->m_docTypeName == data[j]->m_docTypeName &&
1630 templates[i]->m_viewTypeName == data[j]->m_viewTypeName
1631 )
1632 want = false;
1633 }
1634
1635 if ( want )
1636 {
1637 strings.Add(templates[i]->m_description);
1638
1639 data[n] = templates[i];
1640 n ++;
1641 }
1642 }
1643 } // for
1644
1645 if (sort)
1646 {
1647 strings.Sort(); // ascending sort
1648 // Yes, this will be slow, but template lists
1649 // are typically short.
1650 int j;
1651 n = strings.Count();
1652 for (i = 0; i < n; i++)
1653 {
1654 for (j = 0; j < noTemplates; j++)
1655 {
1656 if (strings[i] == templates[j]->m_description)
1657 data[i] = templates[j];
1658 }
1659 }
1660 }
1661
1662 wxDocTemplate *theTemplate;
1663
1664 switch ( n )
1665 {
1666 case 0:
1667 // no visible templates, hence nothing to choose from
1668 theTemplate = NULL;
1669 break;
1670
1671 case 1:
1672 // don't propose the user to choose if he heas no choice
1673 theTemplate = data[0];
1674 break;
1675
1676 default:
1677 // propose the user to choose one of several
1678 theTemplate = (wxDocTemplate *)wxGetSingleChoiceData
1679 (
1680 _("Select a document template"),
1681 _("Templates"),
1682 strings,
1683 (void **)data,
1684 wxFindSuitableParent()
1685 );
1686 }
1687
1688 delete[] data;
1689
1690 return theTemplate;
1691 }
1692
1693 wxDocTemplate *wxDocManager::SelectViewType(wxDocTemplate **templates,
1694 int noTemplates, bool sort)
1695 {
1696 wxArrayString strings;
1697 wxDocTemplate **data = new wxDocTemplate *[noTemplates];
1698 int i;
1699 int n = 0;
1700
1701 for (i = 0; i < noTemplates; i++)
1702 {
1703 wxDocTemplate *templ = templates[i];
1704 if ( templ->IsVisible() && !templ->GetViewName().empty() )
1705 {
1706 int j;
1707 bool want = true;
1708 for (j = 0; j < n; j++)
1709 {
1710 //filter out NOT unique views
1711 if ( templates[i]->m_viewTypeName == data[j]->m_viewTypeName )
1712 want = false;
1713 }
1714
1715 if ( want )
1716 {
1717 strings.Add(templ->m_viewTypeName);
1718 data[n] = templ;
1719 n ++;
1720 }
1721 }
1722 }
1723
1724 if (sort)
1725 {
1726 strings.Sort(); // ascending sort
1727 // Yes, this will be slow, but template lists
1728 // are typically short.
1729 int j;
1730 n = strings.Count();
1731 for (i = 0; i < n; i++)
1732 {
1733 for (j = 0; j < noTemplates; j++)
1734 {
1735 if (strings[i] == templates[j]->m_viewTypeName)
1736 data[i] = templates[j];
1737 }
1738 }
1739 }
1740
1741 wxDocTemplate *theTemplate;
1742
1743 // the same logic as above
1744 switch ( n )
1745 {
1746 case 0:
1747 theTemplate = (wxDocTemplate *)NULL;
1748 break;
1749
1750 case 1:
1751 theTemplate = data[0];
1752 break;
1753
1754 default:
1755 theTemplate = (wxDocTemplate *)wxGetSingleChoiceData
1756 (
1757 _("Select a document view"),
1758 _("Views"),
1759 strings,
1760 (void **)data,
1761 wxFindSuitableParent()
1762 );
1763
1764 }
1765
1766 delete[] data;
1767 return theTemplate;
1768 }
1769
1770 void wxDocManager::AssociateTemplate(wxDocTemplate *temp)
1771 {
1772 if (!m_templates.Member(temp))
1773 m_templates.Append(temp);
1774 }
1775
1776 void wxDocManager::DisassociateTemplate(wxDocTemplate *temp)
1777 {
1778 m_templates.DeleteObject(temp);
1779 }
1780
1781 // Add and remove a document from the manager's list
1782 void wxDocManager::AddDocument(wxDocument *doc)
1783 {
1784 if (!m_docs.Member(doc))
1785 m_docs.Append(doc);
1786 }
1787
1788 void wxDocManager::RemoveDocument(wxDocument *doc)
1789 {
1790 m_docs.DeleteObject(doc);
1791 }
1792
1793 // Views or windows should inform the document manager
1794 // when a view is going in or out of focus
1795 void wxDocManager::ActivateView(wxView *view, bool activate)
1796 {
1797 if ( activate )
1798 {
1799 m_currentView = view;
1800 }
1801 else // deactivate
1802 {
1803 if ( m_currentView == view )
1804 {
1805 // don't keep stale pointer
1806 m_currentView = (wxView *) NULL;
1807 }
1808 }
1809 }
1810
1811 // ----------------------------------------------------------------------------
1812 // Default document child frame
1813 // ----------------------------------------------------------------------------
1814
1815 BEGIN_EVENT_TABLE(wxDocChildFrame, wxFrame)
1816 EVT_ACTIVATE(wxDocChildFrame::OnActivate)
1817 EVT_CLOSE(wxDocChildFrame::OnCloseWindow)
1818 END_EVENT_TABLE()
1819
1820 wxDocChildFrame::wxDocChildFrame(wxDocument *doc,
1821 wxView *view,
1822 wxFrame *frame,
1823 wxWindowID id,
1824 const wxString& title,
1825 const wxPoint& pos,
1826 const wxSize& size,
1827 long style,
1828 const wxString& name)
1829 : wxFrame(frame, id, title, pos, size, style, name)
1830 {
1831 m_childDocument = doc;
1832 m_childView = view;
1833 if (view)
1834 view->SetFrame(this);
1835 }
1836
1837 // Extend event processing to search the view's event table
1838 bool wxDocChildFrame::ProcessEvent(wxEvent& event)
1839 {
1840 if (m_childView)
1841 m_childView->Activate(true);
1842
1843 if ( !m_childView || ! m_childView->ProcessEvent(event) )
1844 {
1845 // Only hand up to the parent if it's a menu command
1846 if (!event.IsKindOf(CLASSINFO(wxCommandEvent)) || !GetParent() || !GetParent()->ProcessEvent(event))
1847 return wxEvtHandler::ProcessEvent(event);
1848 else
1849 return true;
1850 }
1851 else
1852 return true;
1853 }
1854
1855 void wxDocChildFrame::OnActivate(wxActivateEvent& event)
1856 {
1857 wxFrame::OnActivate(event);
1858
1859 if (m_childView)
1860 m_childView->Activate(event.GetActive());
1861 }
1862
1863 void wxDocChildFrame::OnCloseWindow(wxCloseEvent& event)
1864 {
1865 if (m_childView)
1866 {
1867 bool ans = event.CanVeto()
1868 ? m_childView->Close(false) // false means don't delete associated window
1869 : true; // Must delete.
1870
1871 if (ans)
1872 {
1873 m_childView->Activate(false);
1874 delete m_childView;
1875 m_childView = (wxView *) NULL;
1876 m_childDocument = (wxDocument *) NULL;
1877
1878 this->Destroy();
1879 }
1880 else
1881 event.Veto();
1882 }
1883 else
1884 event.Veto();
1885 }
1886
1887 // ----------------------------------------------------------------------------
1888 // Default parent frame
1889 // ----------------------------------------------------------------------------
1890
1891 BEGIN_EVENT_TABLE(wxDocParentFrame, wxFrame)
1892 EVT_MENU(wxID_EXIT, wxDocParentFrame::OnExit)
1893 EVT_MENU_RANGE(wxID_FILE1, wxID_FILE9, wxDocParentFrame::OnMRUFile)
1894 EVT_CLOSE(wxDocParentFrame::OnCloseWindow)
1895 END_EVENT_TABLE()
1896
1897 wxDocParentFrame::wxDocParentFrame(wxDocManager *manager,
1898 wxFrame *frame,
1899 wxWindowID id,
1900 const wxString& title,
1901 const wxPoint& pos,
1902 const wxSize& size,
1903 long style,
1904 const wxString& name)
1905 : wxFrame(frame, id, title, pos, size, style, name)
1906 {
1907 m_docManager = manager;
1908 }
1909
1910 void wxDocParentFrame::OnExit(wxCommandEvent& WXUNUSED(event))
1911 {
1912 Close();
1913 }
1914
1915 void wxDocParentFrame::OnMRUFile(wxCommandEvent& event)
1916 {
1917 int n = event.GetId() - wxID_FILE1; // the index in MRU list
1918 wxString filename(m_docManager->GetHistoryFile(n));
1919 if ( !filename.empty() )
1920 {
1921 // verify that the file exists before doing anything else
1922 if ( wxFile::Exists(filename) )
1923 {
1924 // try to open it
1925 if (!m_docManager->CreateDocument(filename, wxDOC_SILENT))
1926 {
1927 // remove the file from the MRU list. The user should already be notified.
1928 m_docManager->RemoveFileFromHistory(n);
1929
1930 wxLogError(_("The file '%s' couldn't be opened.\nIt has been removed from the most recently used files list."),
1931 filename.c_str());
1932 }
1933 }
1934 else
1935 {
1936 // remove the bogus filename from the MRU list and notify the user
1937 // about it
1938 m_docManager->RemoveFileFromHistory(n);
1939
1940 wxLogError(_("The file '%s' doesn't exist and couldn't be opened.\nIt has been removed from the most recently used files list."),
1941 filename.c_str());
1942 }
1943 }
1944 }
1945
1946 // Extend event processing to search the view's event table
1947 bool wxDocParentFrame::ProcessEvent(wxEvent& event)
1948 {
1949 // Try the document manager, then do default processing
1950 if (!m_docManager || !m_docManager->ProcessEvent(event))
1951 return wxEvtHandler::ProcessEvent(event);
1952 else
1953 return true;
1954 }
1955
1956 // Define the behaviour for the frame closing
1957 // - must delete all frames except for the main one.
1958 void wxDocParentFrame::OnCloseWindow(wxCloseEvent& event)
1959 {
1960 if (m_docManager->Clear(!event.CanVeto()))
1961 {
1962 this->Destroy();
1963 }
1964 else
1965 event.Veto();
1966 }
1967
1968 #if wxUSE_PRINTING_ARCHITECTURE
1969
1970 wxDocPrintout::wxDocPrintout(wxView *view, const wxString& title)
1971 : wxPrintout(title)
1972 {
1973 m_printoutView = view;
1974 }
1975
1976 bool wxDocPrintout::OnPrintPage(int WXUNUSED(page))
1977 {
1978 wxDC *dc = GetDC();
1979
1980 // Get the logical pixels per inch of screen and printer
1981 int ppiScreenX, ppiScreenY;
1982 GetPPIScreen(&ppiScreenX, &ppiScreenY);
1983 wxUnusedVar(ppiScreenY);
1984 int ppiPrinterX, ppiPrinterY;
1985 GetPPIPrinter(&ppiPrinterX, &ppiPrinterY);
1986 wxUnusedVar(ppiPrinterY);
1987
1988 // This scales the DC so that the printout roughly represents the
1989 // the screen scaling. The text point size _should_ be the right size
1990 // but in fact is too small for some reason. This is a detail that will
1991 // need to be addressed at some point but can be fudged for the
1992 // moment.
1993 float scale = (float)((float)ppiPrinterX/(float)ppiScreenX);
1994
1995 // Now we have to check in case our real page size is reduced
1996 // (e.g. because we're drawing to a print preview memory DC)
1997 int pageWidth, pageHeight;
1998 int w, h;
1999 dc->GetSize(&w, &h);
2000 GetPageSizePixels(&pageWidth, &pageHeight);
2001 wxUnusedVar(pageHeight);
2002
2003 // If printer pageWidth == current DC width, then this doesn't
2004 // change. But w might be the preview bitmap width, so scale down.
2005 float overallScale = scale * (float)(w/(float)pageWidth);
2006 dc->SetUserScale(overallScale, overallScale);
2007
2008 if (m_printoutView)
2009 {
2010 m_printoutView->OnDraw(dc);
2011 }
2012 return true;
2013 }
2014
2015 bool wxDocPrintout::HasPage(int pageNum)
2016 {
2017 return (pageNum == 1);
2018 }
2019
2020 bool wxDocPrintout::OnBeginDocument(int startPage, int endPage)
2021 {
2022 if (!wxPrintout::OnBeginDocument(startPage, endPage))
2023 return false;
2024
2025 return true;
2026 }
2027
2028 void wxDocPrintout::GetPageInfo(int *minPage, int *maxPage, int *selPageFrom, int *selPageTo)
2029 {
2030 *minPage = 1;
2031 *maxPage = 1;
2032 *selPageFrom = 1;
2033 *selPageTo = 1;
2034 }
2035
2036 #endif // wxUSE_PRINTING_ARCHITECTURE
2037
2038 // ----------------------------------------------------------------------------
2039 // File history processor
2040 // ----------------------------------------------------------------------------
2041
2042 static inline wxChar* MYcopystring(const wxString& s)
2043 {
2044 wxChar* copy = new wxChar[s.length() + 1];
2045 return wxStrcpy(copy, s.c_str());
2046 }
2047
2048 static inline wxChar* MYcopystring(const wxChar* s)
2049 {
2050 wxChar* copy = new wxChar[wxStrlen(s) + 1];
2051 return wxStrcpy(copy, s);
2052 }
2053
2054 wxFileHistory::wxFileHistory(size_t maxFiles, wxWindowID idBase)
2055 {
2056 m_fileMaxFiles = maxFiles;
2057 m_idBase = idBase;
2058 m_fileHistoryN = 0;
2059 m_fileHistory = new wxChar *[m_fileMaxFiles];
2060 }
2061
2062 wxFileHistory::~wxFileHistory()
2063 {
2064 size_t i;
2065 for (i = 0; i < m_fileHistoryN; i++)
2066 delete[] m_fileHistory[i];
2067 delete[] m_fileHistory;
2068 }
2069
2070 // File history management
2071 void wxFileHistory::AddFileToHistory(const wxString& file)
2072 {
2073 size_t i;
2074
2075 // Check we don't already have this file
2076 for (i = 0; i < m_fileHistoryN; i++)
2077 {
2078 #if defined( __WXMSW__ ) // Add any other OSes with case insensitive file names
2079 wxString testString;
2080 if ( m_fileHistory[i] )
2081 testString = m_fileHistory[i];
2082 if ( m_fileHistory[i] && ( file.Lower() == testString.Lower() ) )
2083 #else
2084 if ( m_fileHistory[i] && ( file == m_fileHistory[i] ) )
2085 #endif
2086 {
2087 // we do have it, move it to the top of the history
2088 RemoveFileFromHistory (i);
2089 AddFileToHistory (file);
2090 return;
2091 }
2092 }
2093
2094 // if we already have a full history, delete the one at the end
2095 if ( m_fileMaxFiles == m_fileHistoryN )
2096 {
2097 RemoveFileFromHistory (m_fileHistoryN - 1);
2098 AddFileToHistory (file);
2099 return;
2100 }
2101
2102 // Add to the project file history:
2103 // Move existing files (if any) down so we can insert file at beginning.
2104 if (m_fileHistoryN < m_fileMaxFiles)
2105 {
2106 wxList::compatibility_iterator node = m_fileMenus.GetFirst();
2107 while (node)
2108 {
2109 wxMenu* menu = (wxMenu*) node->GetData();
2110 if ( m_fileHistoryN == 0 && menu->GetMenuItemCount() )
2111 {
2112 menu->AppendSeparator();
2113 }
2114 menu->Append(m_idBase+m_fileHistoryN, _("[EMPTY]"));
2115 node = node->GetNext();
2116 }
2117 m_fileHistoryN ++;
2118 }
2119 // Shuffle filenames down
2120 for (i = (m_fileHistoryN-1); i > 0; i--)
2121 {
2122 m_fileHistory[i] = m_fileHistory[i-1];
2123 }
2124 m_fileHistory[0] = MYcopystring(file);
2125
2126 // this is the directory of the last opened file
2127 wxString pathCurrent;
2128 wxSplitPath( m_fileHistory[0], &pathCurrent, NULL, NULL );
2129 for (i = 0; i < m_fileHistoryN; i++)
2130 {
2131 if ( m_fileHistory[i] )
2132 {
2133 // if in same directory just show the filename; otherwise the full
2134 // path
2135 wxString pathInMenu, path, filename, ext;
2136 wxSplitPath( m_fileHistory[i], &path, &filename, &ext );
2137 if ( path == pathCurrent )
2138 {
2139 pathInMenu = filename;
2140 if ( !ext.empty() )
2141 pathInMenu = pathInMenu + wxFILE_SEP_EXT + ext;
2142 }
2143 else
2144 {
2145 // absolute path; could also set relative path
2146 pathInMenu = m_fileHistory[i];
2147 }
2148
2149 wxString buf;
2150 buf.Printf(s_MRUEntryFormat, i + 1, pathInMenu.c_str());
2151 wxList::compatibility_iterator node = m_fileMenus.GetFirst();
2152 while (node)
2153 {
2154 wxMenu* menu = (wxMenu*) node->GetData();
2155 menu->SetLabel(m_idBase + i, buf);
2156 node = node->GetNext();
2157 }
2158 }
2159 }
2160 }
2161
2162 void wxFileHistory::RemoveFileFromHistory(size_t i)
2163 {
2164 wxCHECK_RET( i < m_fileHistoryN,
2165 wxT("invalid index in wxFileHistory::RemoveFileFromHistory") );
2166
2167 // delete the element from the array (could use memmove() too...)
2168 delete [] m_fileHistory[i];
2169
2170 size_t j;
2171 for ( j = i; j < m_fileHistoryN - 1; j++ )
2172 {
2173 m_fileHistory[j] = m_fileHistory[j + 1];
2174 }
2175
2176 wxList::compatibility_iterator node = m_fileMenus.GetFirst();
2177 while ( node )
2178 {
2179 wxMenu* menu = (wxMenu*) node->GetData();
2180
2181 // shuffle filenames up
2182 wxString buf;
2183 for ( j = i; j < m_fileHistoryN - 1; j++ )
2184 {
2185 buf.Printf(s_MRUEntryFormat, j + 1, m_fileHistory[j]);
2186 menu->SetLabel(m_idBase + j, buf);
2187 }
2188
2189 node = node->GetNext();
2190
2191 // delete the last menu item which is unused now
2192 wxWindowID lastItemId = m_idBase + m_fileHistoryN - 1;
2193 if (menu->FindItem(lastItemId))
2194 {
2195 menu->Delete(lastItemId);
2196 }
2197
2198 // delete the last separator too if no more files are left
2199 if ( m_fileHistoryN == 1 )
2200 {
2201 wxMenuItemList::compatibility_iterator node = menu->GetMenuItems().GetLast();
2202 if ( node )
2203 {
2204 wxMenuItem *menuItem = node->GetData();
2205 if ( menuItem->IsSeparator() )
2206 {
2207 menu->Delete(menuItem);
2208 }
2209 //else: should we search backwards for the last separator?
2210 }
2211 //else: menu is empty somehow
2212 }
2213 }
2214
2215 m_fileHistoryN--;
2216 }
2217
2218 wxString wxFileHistory::GetHistoryFile(size_t i) const
2219 {
2220 wxString s;
2221 if ( i < m_fileHistoryN )
2222 {
2223 s = m_fileHistory[i];
2224 }
2225 else
2226 {
2227 wxFAIL_MSG( wxT("bad index in wxFileHistory::GetHistoryFile") );
2228 }
2229
2230 return s;
2231 }
2232
2233 void wxFileHistory::UseMenu(wxMenu *menu)
2234 {
2235 if (!m_fileMenus.Member(menu))
2236 m_fileMenus.Append(menu);
2237 }
2238
2239 void wxFileHistory::RemoveMenu(wxMenu *menu)
2240 {
2241 m_fileMenus.DeleteObject(menu);
2242 }
2243
2244 #if wxUSE_CONFIG
2245 void wxFileHistory::Load(wxConfigBase& config)
2246 {
2247 m_fileHistoryN = 0;
2248 wxString buf;
2249 buf.Printf(wxT("file%d"), (int)m_fileHistoryN+1);
2250 wxString historyFile;
2251 while ((m_fileHistoryN < m_fileMaxFiles) && config.Read(buf, &historyFile) && (!historyFile.empty()))
2252 {
2253 m_fileHistory[m_fileHistoryN] = MYcopystring((const wxChar*) historyFile);
2254 m_fileHistoryN ++;
2255 buf.Printf(wxT("file%d"), (int)m_fileHistoryN+1);
2256 historyFile = wxEmptyString;
2257 }
2258 AddFilesToMenu();
2259 }
2260
2261 void wxFileHistory::Save(wxConfigBase& config)
2262 {
2263 size_t i;
2264 for (i = 0; i < m_fileMaxFiles; i++)
2265 {
2266 wxString buf;
2267 buf.Printf(wxT("file%d"), (int)i+1);
2268 if (i < m_fileHistoryN)
2269 config.Write(buf, wxString(m_fileHistory[i]));
2270 else
2271 config.Write(buf, wxEmptyString);
2272 }
2273 }
2274 #endif // wxUSE_CONFIG
2275
2276 void wxFileHistory::AddFilesToMenu()
2277 {
2278 if (m_fileHistoryN > 0)
2279 {
2280 wxList::compatibility_iterator node = m_fileMenus.GetFirst();
2281 while (node)
2282 {
2283 wxMenu* menu = (wxMenu*) node->GetData();
2284 if (menu->GetMenuItemCount())
2285 {
2286 menu->AppendSeparator();
2287 }
2288
2289 size_t i;
2290 for (i = 0; i < m_fileHistoryN; i++)
2291 {
2292 if (m_fileHistory[i])
2293 {
2294 wxString buf;
2295 buf.Printf(s_MRUEntryFormat, i+1, m_fileHistory[i]);
2296 menu->Append(m_idBase+i, buf);
2297 }
2298 }
2299 node = node->GetNext();
2300 }
2301 }
2302 }
2303
2304 void wxFileHistory::AddFilesToMenu(wxMenu* menu)
2305 {
2306 if (m_fileHistoryN > 0)
2307 {
2308 if (menu->GetMenuItemCount())
2309 {
2310 menu->AppendSeparator();
2311 }
2312
2313 size_t i;
2314 for (i = 0; i < m_fileHistoryN; i++)
2315 {
2316 if (m_fileHistory[i])
2317 {
2318 wxString buf;
2319 buf.Printf(s_MRUEntryFormat, i+1, m_fileHistory[i]);
2320 menu->Append(m_idBase+i, buf);
2321 }
2322 }
2323 }
2324 }
2325
2326 // ----------------------------------------------------------------------------
2327 // Permits compatibility with existing file formats and functions that
2328 // manipulate files directly
2329 // ----------------------------------------------------------------------------
2330
2331 #if wxUSE_STD_IOSTREAM
2332
2333 bool wxTransferFileToStream(const wxString& filename, wxSTD ostream& stream)
2334 {
2335 wxFFile file(filename, _T("rb"));
2336 if ( !file.IsOpened() )
2337 return false;
2338
2339 char buf[4096];
2340
2341 size_t nRead;
2342 do
2343 {
2344 nRead = file.Read(buf, WXSIZEOF(buf));
2345 if ( file.Error() )
2346 return false;
2347
2348 stream.write(buf, nRead);
2349 if ( !stream )
2350 return false;
2351 }
2352 while ( !file.Eof() );
2353
2354 return true;
2355 }
2356
2357 bool wxTransferStreamToFile(wxSTD istream& stream, const wxString& filename)
2358 {
2359 wxFFile file(filename, _T("wb"));
2360 if ( !file.IsOpened() )
2361 return false;
2362
2363 char buf[4096];
2364 do
2365 {
2366 stream.read(buf, WXSIZEOF(buf));
2367 if ( !stream.bad() ) // fail may be set on EOF, don't use operator!()
2368 {
2369 if ( !file.Write(buf, stream.gcount()) )
2370 return false;
2371 }
2372 }
2373 while ( !stream.eof() );
2374
2375 return true;
2376 }
2377
2378 #else // !wxUSE_STD_IOSTREAM
2379
2380 bool wxTransferFileToStream(const wxString& filename, wxOutputStream& stream)
2381 {
2382 wxFFile file(filename, _T("rb"));
2383 if ( !file.IsOpened() )
2384 return false;
2385
2386 char buf[4096];
2387
2388 size_t nRead;
2389 do
2390 {
2391 nRead = file.Read(buf, WXSIZEOF(buf));
2392 if ( file.Error() )
2393 return false;
2394
2395 stream.Write(buf, nRead);
2396 if ( !stream )
2397 return false;
2398 }
2399 while ( !file.Eof() );
2400
2401 return true;
2402 }
2403
2404 bool wxTransferStreamToFile(wxInputStream& stream, const wxString& filename)
2405 {
2406 wxFFile file(filename, _T("wb"));
2407 if ( !file.IsOpened() )
2408 return false;
2409
2410 char buf[4096];
2411 do
2412 {
2413 stream.Read(buf, WXSIZEOF(buf));
2414
2415 const size_t nRead = stream.LastRead();
2416 if ( !nRead || !file.Write(buf, nRead) )
2417 return false;
2418 }
2419 while ( !stream.Eof() );
2420
2421 return true;
2422 }
2423
2424 #endif // wxUSE_STD_IOSTREAM/!wxUSE_STD_IOSTREAM
2425
2426 #endif // wxUSE_DOC_VIEW_ARCHITECTURE
2427