1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/docview.cpp
3 // Purpose: Document/view classes
4 // Author: Julian Smart
5 // Modified by: Vadim Zeitlin
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
27 #if wxUSE_DOC_VIEW_ARCHITECTURE
29 #include "wx/docview.h"
33 #include "wx/string.h"
37 #include "wx/dialog.h"
39 #include "wx/filedlg.h"
42 #include "wx/msgdlg.h"
44 #include "wx/choicdlg.h"
47 #if wxUSE_PRINTING_ARCHITECTURE
48 #include "wx/prntbase.h"
49 #include "wx/printdlg.h"
52 #include "wx/confbase.h"
53 #include "wx/filename.h"
56 #include "wx/cmdproc.h"
57 #include "wx/tokenzr.h"
58 #include "wx/filename.h"
59 #include "wx/stdpaths.h"
60 #include "wx/vector.h"
61 #include "wx/scopedarray.h"
62 #include "wx/scopedptr.h"
63 #include "wx/except.h"
65 #if wxUSE_STD_IOSTREAM
66 #include "wx/ioswrap.h"
67 #include "wx/beforestd.h"
73 #include "wx/afterstd.h"
75 #include "wx/wfstream.h"
78 typedef wxVector
<wxDocTemplate
*> wxDocTemplates
;
80 // ----------------------------------------------------------------------------
82 // ----------------------------------------------------------------------------
84 IMPLEMENT_ABSTRACT_CLASS(wxDocument
, wxEvtHandler
)
85 IMPLEMENT_ABSTRACT_CLASS(wxView
, wxEvtHandler
)
86 IMPLEMENT_ABSTRACT_CLASS(wxDocTemplate
, wxObject
)
87 IMPLEMENT_DYNAMIC_CLASS(wxDocManager
, wxEvtHandler
)
88 IMPLEMENT_CLASS(wxDocChildFrame
, wxFrame
)
89 IMPLEMENT_CLASS(wxDocParentFrame
, wxFrame
)
91 #if wxUSE_PRINTING_ARCHITECTURE
92 IMPLEMENT_DYNAMIC_CLASS(wxDocPrintout
, wxPrintout
)
95 IMPLEMENT_DYNAMIC_CLASS(wxFileHistory
, wxObject
)
97 // ============================================================================
99 // ============================================================================
101 // ----------------------------------------------------------------------------
103 // ----------------------------------------------------------------------------
108 wxString
FindExtension(const wxString
& path
)
111 wxFileName::SplitPath(path
, NULL
, NULL
, &ext
);
113 // VZ: extensions are considered not case sensitive - is this really a good
115 return ext
.MakeLower();
118 // return the string used for the MRU list items in the menu
120 // NB: the index n is 0-based, as usual, but the strings start from 1
121 wxString
GetMRUEntryLabel(int n
, const wxString
& path
)
123 // we need to quote '&' characters which are used for mnemonics
124 wxString
pathInMenu(path
);
125 pathInMenu
.Replace("&", "&&");
127 return wxString::Format("&%d %s", n
+ 1, pathInMenu
);
130 } // anonymous namespace
132 // ----------------------------------------------------------------------------
133 // Definition of wxDocument
134 // ----------------------------------------------------------------------------
136 wxDocument::wxDocument(wxDocument
*parent
)
138 m_documentModified
= false;
139 m_documentParent
= parent
;
140 m_documentTemplate
= NULL
;
141 m_commandProcessor
= NULL
;
145 bool wxDocument::DeleteContents()
150 wxDocument::~wxDocument()
154 delete m_commandProcessor
;
156 if (GetDocumentManager())
157 GetDocumentManager()->RemoveDocument(this);
159 // Not safe to do here, since it'll invoke virtual view functions
160 // expecting to see valid derived objects: and by the time we get here,
161 // we've called destructors higher up.
165 bool wxDocument::Close()
167 if ( !OnSaveModified() )
170 return OnCloseDocument();
173 bool wxDocument::OnCloseDocument()
175 // Tell all views that we're about to close
182 // Note that this implicitly deletes the document when the last view is
184 bool wxDocument::DeleteAllViews()
186 wxDocManager
* manager
= GetDocumentManager();
188 // first check if all views agree to be closed
189 const wxList::iterator end
= m_documentViews
.end();
190 for ( wxList::iterator i
= m_documentViews
.begin(); i
!= end
; ++i
)
192 wxView
*view
= (wxView
*)*i
;
193 if ( !view
->Close() )
197 // all views agreed to close, now do close them
198 if ( m_documentViews
.empty() )
200 // normally the document would be implicitly deleted when the last view
201 // is, but if don't have any views, do it here instead
202 if ( manager
&& manager
->GetDocuments().Member(this) )
207 // as we delete elements we iterate over, don't use the usual "from
208 // begin to end" loop
211 wxView
*view
= (wxView
*)*m_documentViews
.begin();
213 bool isLastOne
= m_documentViews
.size() == 1;
215 // this always deletes the node implicitly and if this is the last
216 // view also deletes this object itself (also implicitly, great),
217 // so we can't test for m_documentViews.empty() after calling this!
228 wxView
*wxDocument::GetFirstView() const
230 if ( m_documentViews
.empty() )
233 return static_cast<wxView
*>(m_documentViews
.GetFirst()->GetData());
236 wxDocManager
*wxDocument::GetDocumentManager() const
238 return m_documentTemplate
? m_documentTemplate
->GetDocumentManager() : NULL
;
241 bool wxDocument::OnNewDocument()
243 // notice that there is no need to neither reset nor even check the
244 // modified flag here as the document itself is a new object (this is only
245 // called from CreateDocument()) and so it shouldn't be saved anyhow even
246 // if it is modified -- this could happen if the user code creates
247 // documents pre-filled with some user-entered (and which hence must not be
250 SetDocumentSaved(false);
252 const wxString name
= GetDocumentManager()->MakeNewDocumentName();
254 SetFilename(name
, true);
259 bool wxDocument::Save()
261 if ( AlreadySaved() )
264 if ( m_documentFile
.empty() || !m_savedYet
)
267 return OnSaveDocument(m_documentFile
);
270 bool wxDocument::SaveAs()
272 wxDocTemplate
*docTemplate
= GetDocumentTemplate();
276 #ifdef wxHAS_MULTIPLE_FILEDLG_FILTERS
277 wxString filter
= docTemplate
->GetDescription() + wxT(" (") +
278 docTemplate
->GetFileFilter() + wxT(")|") +
279 docTemplate
->GetFileFilter();
281 // Now see if there are some other template with identical view and document
282 // classes, whose filters may also be used.
283 if (docTemplate
->GetViewClassInfo() && docTemplate
->GetDocClassInfo())
285 wxList::compatibility_iterator
286 node
= docTemplate
->GetDocumentManager()->GetTemplates().GetFirst();
289 wxDocTemplate
*t
= (wxDocTemplate
*) node
->GetData();
291 if (t
->IsVisible() && t
!= docTemplate
&&
292 t
->GetViewClassInfo() == docTemplate
->GetViewClassInfo() &&
293 t
->GetDocClassInfo() == docTemplate
->GetDocClassInfo())
295 // add a '|' to separate this filter from the previous one
296 if ( !filter
.empty() )
299 filter
<< t
->GetDescription()
300 << wxT(" (") << t
->GetFileFilter() << wxT(") |")
301 << t
->GetFileFilter();
304 node
= node
->GetNext();
308 wxString filter
= docTemplate
->GetFileFilter() ;
311 wxString defaultDir
= docTemplate
->GetDirectory();
312 if ( defaultDir
.empty() )
314 defaultDir
= wxPathOnly(GetFilename());
315 if ( defaultDir
.empty() )
316 defaultDir
= GetDocumentManager()->GetLastDirectory();
319 wxString fileName
= wxFileSelector(_("Save As"),
321 wxFileNameFromPath(GetFilename()),
322 docTemplate
->GetDefaultExtension(),
324 wxFD_SAVE
| wxFD_OVERWRITE_PROMPT
,
325 GetDocumentWindow());
327 if (fileName
.empty())
328 return false; // cancelled by user
331 wxFileName::SplitPath(fileName
, NULL
, NULL
, &ext
);
335 fileName
+= wxT(".");
336 fileName
+= docTemplate
->GetDefaultExtension();
339 // Files that were not saved correctly are not added to the FileHistory.
340 if (!OnSaveDocument(fileName
))
343 SetTitle(wxFileNameFromPath(fileName
));
344 SetFilename(fileName
, true); // will call OnChangeFileName automatically
346 // A file that doesn't use the default extension of its document template
347 // cannot be opened via the FileHistory, so we do not add it.
348 if (docTemplate
->FileMatchesTemplate(fileName
))
350 GetDocumentManager()->AddFileToHistory(fileName
);
352 //else: the user will probably not be able to open the file again, so we
353 // could warn about the wrong file-extension here
358 bool wxDocument::OnSaveDocument(const wxString
& file
)
363 if ( !DoSaveDocument(file
) )
368 SetDocumentSaved(true);
369 #if defined( __WXOSX_MAC__ ) && wxOSX_USE_CARBON
370 wxFileName
fn(file
) ;
371 fn
.MacSetDefaultTypeAndCreator() ;
376 bool wxDocument::OnOpenDocument(const wxString
& file
)
378 // notice that there is no need to check the modified flag here for the
379 // reasons explained in OnNewDocument()
381 if ( !DoOpenDocument(file
) )
384 SetFilename(file
, true);
386 // stretching the logic a little this does make sense because the document
387 // had been saved into the file we just loaded it from, it just could have
388 // happened during a previous program execution, it's just that the name of
389 // this method is a bit unfortunate, it should probably have been called
390 // HasAssociatedFileName()
391 SetDocumentSaved(true);
398 #if wxUSE_STD_IOSTREAM
399 wxSTD istream
& wxDocument::LoadObject(wxSTD istream
& stream
)
401 wxInputStream
& wxDocument::LoadObject(wxInputStream
& stream
)
407 #if wxUSE_STD_IOSTREAM
408 wxSTD ostream
& wxDocument::SaveObject(wxSTD ostream
& stream
)
410 wxOutputStream
& wxDocument::SaveObject(wxOutputStream
& stream
)
416 bool wxDocument::Revert()
422 // Get title, or filename if no title, else unnamed
423 #if WXWIN_COMPATIBILITY_2_8
424 bool wxDocument::GetPrintableName(wxString
& buf
) const
426 // this function can not only be overridden by the user code but also
427 // called by it so we need to ensure that we return the same thing as
428 // GetUserReadableName() but we can't call it because this would result in
429 // an infinite recursion, hence we use the helper DoGetUserReadableName()
430 buf
= DoGetUserReadableName();
434 #endif // WXWIN_COMPATIBILITY_2_8
436 wxString
wxDocument::GetUserReadableName() const
438 #if WXWIN_COMPATIBILITY_2_8
439 // we need to call the old virtual function to ensure that the overridden
440 // version of it is still called
442 if ( GetPrintableName(name
) )
444 #endif // WXWIN_COMPATIBILITY_2_8
446 return DoGetUserReadableName();
449 wxString
wxDocument::DoGetUserReadableName() const
451 if ( !m_documentTitle
.empty() )
452 return m_documentTitle
;
454 if ( !m_documentFile
.empty() )
455 return wxFileNameFromPath(m_documentFile
);
460 wxWindow
*wxDocument::GetDocumentWindow() const
462 wxView
* const view
= GetFirstView();
464 return view
? view
->GetFrame() : wxTheApp
->GetTopWindow();
467 wxCommandProcessor
*wxDocument::OnCreateCommandProcessor()
469 return new wxCommandProcessor
;
472 // true if safe to close
473 bool wxDocument::OnSaveModified()
477 switch ( wxMessageBox
481 _("Do you want to save changes to %s?"),
482 GetUserReadableName()
484 wxTheApp
->GetAppDisplayName(),
485 wxYES_NO
| wxCANCEL
| wxICON_QUESTION
| wxCENTRE
503 bool wxDocument::Draw(wxDC
& WXUNUSED(context
))
508 bool wxDocument::AddView(wxView
*view
)
510 if ( !m_documentViews
.Member(view
) )
512 m_documentViews
.Append(view
);
518 bool wxDocument::RemoveView(wxView
*view
)
520 (void)m_documentViews
.DeleteObject(view
);
525 bool wxDocument::OnCreate(const wxString
& WXUNUSED(path
), long flags
)
527 return GetDocumentTemplate()->CreateView(this, flags
) != NULL
;
530 // Called after a view is added or removed.
531 // The default implementation deletes the document if
532 // there are no more views.
533 void wxDocument::OnChangedViewList()
535 if ( m_documentViews
.empty() && OnSaveModified() )
539 void wxDocument::UpdateAllViews(wxView
*sender
, wxObject
*hint
)
541 wxList::compatibility_iterator node
= m_documentViews
.GetFirst();
544 wxView
*view
= (wxView
*)node
->GetData();
546 view
->OnUpdate(sender
, hint
);
547 node
= node
->GetNext();
551 void wxDocument::NotifyClosing()
553 wxList::compatibility_iterator node
= m_documentViews
.GetFirst();
556 wxView
*view
= (wxView
*)node
->GetData();
557 view
->OnClosingDocument();
558 node
= node
->GetNext();
562 void wxDocument::SetFilename(const wxString
& filename
, bool notifyViews
)
564 m_documentFile
= filename
;
565 OnChangeFilename(notifyViews
);
568 void wxDocument::OnChangeFilename(bool notifyViews
)
572 // Notify the views that the filename has changed
573 wxList::compatibility_iterator node
= m_documentViews
.GetFirst();
576 wxView
*view
= (wxView
*)node
->GetData();
577 view
->OnChangeFilename();
578 node
= node
->GetNext();
583 bool wxDocument::DoSaveDocument(const wxString
& file
)
585 #if wxUSE_STD_IOSTREAM
586 wxSTD ofstream
store(file
.mb_str(), wxSTD
ios::binary
);
589 wxFileOutputStream
store(file
);
590 if ( store
.GetLastError() != wxSTREAM_NO_ERROR
)
593 wxLogError(_("File \"%s\" could not be opened for writing."), file
);
597 if (!SaveObject(store
))
599 wxLogError(_("Failed to save document to the file \"%s\"."), file
);
606 bool wxDocument::DoOpenDocument(const wxString
& file
)
608 #if wxUSE_STD_IOSTREAM
609 wxSTD ifstream
store(file
.mb_str(), wxSTD
ios::binary
);
612 wxFileInputStream
store(file
);
613 if (store
.GetLastError() != wxSTREAM_NO_ERROR
|| !store
.IsOk())
616 wxLogError(_("File \"%s\" could not be opened for reading."), file
);
620 #if wxUSE_STD_IOSTREAM
624 int res
= LoadObject(store
).GetLastError();
625 if ( res
!= wxSTREAM_NO_ERROR
&& res
!= wxSTREAM_EOF
)
628 wxLogError(_("Failed to read document from the file \"%s\"."), file
);
636 // ----------------------------------------------------------------------------
638 // ----------------------------------------------------------------------------
642 m_viewDocument
= NULL
;
646 m_docChildFrame
= NULL
;
651 GetDocumentManager()->ActivateView(this, false);
653 // reset our frame view first, before removing it from the document as
654 // SetView(NULL) is a simple call while RemoveView() may result in user
655 // code being executed and this user code can, for example, show a message
656 // box which would result in an activation event for m_docChildFrame and so
657 // could reactivate the view being destroyed -- unless we reset it first
658 if ( m_docChildFrame
&& m_docChildFrame
->GetView() == this )
660 // prevent it from doing anything with us
661 m_docChildFrame
->SetView(NULL
);
663 // it doesn't make sense to leave the frame alive if its associated
664 // view doesn't exist any more so unconditionally close it as well
666 // notice that we only get here if m_docChildFrame is non-NULL in the
667 // first place and it will be always NULL if we're deleted because our
668 // frame was closed, so this only catches the case of directly deleting
669 // the view, as it happens if its creation fails in wxDocTemplate::
670 // CreateView() for example
671 m_docChildFrame
->GetWindow()->Destroy();
674 if ( m_viewDocument
)
675 m_viewDocument
->RemoveView(this);
678 void wxView::SetDocChildFrame(wxDocChildFrameAnyBase
*docChildFrame
)
680 SetFrame(docChildFrame
? docChildFrame
->GetWindow() : NULL
);
681 m_docChildFrame
= docChildFrame
;
684 bool wxView::TryBefore(wxEvent
& event
)
686 wxDocument
* const doc
= GetDocument();
687 return doc
&& doc
->ProcessEventHere(event
);
690 void wxView::OnActivateView(bool WXUNUSED(activate
),
691 wxView
*WXUNUSED(activeView
),
692 wxView
*WXUNUSED(deactiveView
))
696 void wxView::OnPrint(wxDC
*dc
, wxObject
*WXUNUSED(info
))
701 void wxView::OnUpdate(wxView
*WXUNUSED(sender
), wxObject
*WXUNUSED(hint
))
705 void wxView::OnChangeFilename()
707 // GetFrame can return wxWindow rather than wxTopLevelWindow due to
708 // generic MDI implementation so use SetLabel rather than SetTitle.
709 // It should cause SetTitle() for top level windows.
710 wxWindow
*win
= GetFrame();
713 wxDocument
*doc
= GetDocument();
716 win
->SetLabel(doc
->GetUserReadableName());
719 void wxView::SetDocument(wxDocument
*doc
)
721 m_viewDocument
= doc
;
726 bool wxView::Close(bool deleteWindow
)
728 return OnClose(deleteWindow
);
731 void wxView::Activate(bool activate
)
733 if (GetDocument() && GetDocumentManager())
735 OnActivateView(activate
, this, GetDocumentManager()->GetCurrentView());
736 GetDocumentManager()->ActivateView(this, activate
);
740 bool wxView::OnClose(bool WXUNUSED(deleteWindow
))
742 return GetDocument() ? GetDocument()->Close() : true;
745 #if wxUSE_PRINTING_ARCHITECTURE
746 wxPrintout
*wxView::OnCreatePrintout()
748 return new wxDocPrintout(this);
750 #endif // wxUSE_PRINTING_ARCHITECTURE
752 // ----------------------------------------------------------------------------
754 // ----------------------------------------------------------------------------
756 wxDocTemplate::wxDocTemplate(wxDocManager
*manager
,
757 const wxString
& descr
,
758 const wxString
& filter
,
761 const wxString
& docTypeName
,
762 const wxString
& viewTypeName
,
763 wxClassInfo
*docClassInfo
,
764 wxClassInfo
*viewClassInfo
,
767 m_documentManager
= manager
;
768 m_description
= descr
;
771 m_fileFilter
= filter
;
773 m_docTypeName
= docTypeName
;
774 m_viewTypeName
= viewTypeName
;
775 m_documentManager
->AssociateTemplate(this);
777 m_docClassInfo
= docClassInfo
;
778 m_viewClassInfo
= viewClassInfo
;
781 wxDocTemplate::~wxDocTemplate()
783 m_documentManager
->DisassociateTemplate(this);
786 // Tries to dynamically construct an object of the right class.
787 wxDocument
*wxDocTemplate::CreateDocument(const wxString
& path
, long flags
)
789 // InitDocument() is supposed to delete the document object if its
790 // initialization fails so don't use wxScopedPtr<> here: this is fragile
791 // but unavoidable because the default implementation uses CreateView()
792 // which may -- or not -- create a wxView and if it does create it and its
793 // initialization fails then the view destructor will delete the document
794 // (via RemoveView()) and as we can't distinguish between the two cases we
795 // just have to assume that it always deletes it in case of failure
796 wxDocument
* const doc
= DoCreateDocument();
798 return doc
&& InitDocument(doc
, path
, flags
) ? doc
: NULL
;
802 wxDocTemplate::InitDocument(wxDocument
* doc
, const wxString
& path
, long flags
)
804 doc
->SetFilename(path
);
805 doc
->SetDocumentTemplate(this);
806 GetDocumentManager()->AddDocument(doc
);
807 doc
->SetCommandProcessor(doc
->OnCreateCommandProcessor());
809 if (doc
->OnCreate(path
, flags
))
812 if (GetDocumentManager()->GetDocuments().Member(doc
))
813 doc
->DeleteAllViews();
817 wxView
*wxDocTemplate::CreateView(wxDocument
*doc
, long flags
)
819 wxScopedPtr
<wxView
> view(DoCreateView());
823 view
->SetDocument(doc
);
824 if ( !view
->OnCreate(doc
, flags
) )
827 return view
.release();
830 // The default (very primitive) format detection: check is the extension is
831 // that of the template
832 bool wxDocTemplate::FileMatchesTemplate(const wxString
& path
)
834 wxStringTokenizer
parser (GetFileFilter(), wxT(";"));
835 wxString anything
= wxT ("*");
836 while (parser
.HasMoreTokens())
838 wxString filter
= parser
.GetNextToken();
839 wxString filterExt
= FindExtension (filter
);
840 if ( filter
.IsSameAs (anything
) ||
841 filterExt
.IsSameAs (anything
) ||
842 filterExt
.IsSameAs (FindExtension (path
)) )
845 return GetDefaultExtension().IsSameAs(FindExtension(path
));
848 wxDocument
*wxDocTemplate::DoCreateDocument()
853 return static_cast<wxDocument
*>(m_docClassInfo
->CreateObject());
856 wxView
*wxDocTemplate::DoCreateView()
858 if (!m_viewClassInfo
)
861 return static_cast<wxView
*>(m_viewClassInfo
->CreateObject());
864 // ----------------------------------------------------------------------------
866 // ----------------------------------------------------------------------------
868 BEGIN_EVENT_TABLE(wxDocManager
, wxEvtHandler
)
869 EVT_MENU(wxID_OPEN
, wxDocManager::OnFileOpen
)
870 EVT_MENU(wxID_CLOSE
, wxDocManager::OnFileClose
)
871 EVT_MENU(wxID_CLOSE_ALL
, wxDocManager::OnFileCloseAll
)
872 EVT_MENU(wxID_REVERT
, wxDocManager::OnFileRevert
)
873 EVT_MENU(wxID_NEW
, wxDocManager::OnFileNew
)
874 EVT_MENU(wxID_SAVE
, wxDocManager::OnFileSave
)
875 EVT_MENU(wxID_SAVEAS
, wxDocManager::OnFileSaveAs
)
876 EVT_MENU(wxID_UNDO
, wxDocManager::OnUndo
)
877 EVT_MENU(wxID_REDO
, wxDocManager::OnRedo
)
879 EVT_UPDATE_UI(wxID_OPEN
, wxDocManager::OnUpdateFileOpen
)
880 EVT_UPDATE_UI(wxID_CLOSE
, wxDocManager::OnUpdateDisableIfNoDoc
)
881 EVT_UPDATE_UI(wxID_CLOSE_ALL
, wxDocManager::OnUpdateDisableIfNoDoc
)
882 EVT_UPDATE_UI(wxID_REVERT
, wxDocManager::OnUpdateDisableIfNoDoc
)
883 EVT_UPDATE_UI(wxID_NEW
, wxDocManager::OnUpdateFileNew
)
884 EVT_UPDATE_UI(wxID_SAVE
, wxDocManager::OnUpdateFileSave
)
885 EVT_UPDATE_UI(wxID_SAVEAS
, wxDocManager::OnUpdateDisableIfNoDoc
)
886 EVT_UPDATE_UI(wxID_UNDO
, wxDocManager::OnUpdateUndo
)
887 EVT_UPDATE_UI(wxID_REDO
, wxDocManager::OnUpdateRedo
)
889 #if wxUSE_PRINTING_ARCHITECTURE
890 EVT_MENU(wxID_PRINT
, wxDocManager::OnPrint
)
891 EVT_MENU(wxID_PREVIEW
, wxDocManager::OnPreview
)
893 EVT_UPDATE_UI(wxID_PRINT
, wxDocManager::OnUpdateDisableIfNoDoc
)
894 EVT_UPDATE_UI(wxID_PREVIEW
, wxDocManager::OnUpdateDisableIfNoDoc
)
898 wxDocManager
* wxDocManager::sm_docManager
= NULL
;
900 wxDocManager::wxDocManager(long WXUNUSED(flags
), bool initialize
)
902 wxASSERT_MSG( !sm_docManager
, "multiple wxDocManagers not allowed" );
904 sm_docManager
= this;
906 m_defaultDocumentNameCounter
= 1;
907 m_currentView
= NULL
;
908 m_maxDocsOpen
= INT_MAX
;
909 m_fileHistory
= NULL
;
914 wxDocManager::~wxDocManager()
917 delete m_fileHistory
;
918 sm_docManager
= NULL
;
921 // closes the specified document
922 bool wxDocManager::CloseDocument(wxDocument
* doc
, bool force
)
924 if ( !doc
->Close() && !force
)
927 // Implicitly deletes the document when
928 // the last view is deleted
929 doc
->DeleteAllViews();
931 // Check we're really deleted
932 if (m_docs
.Member(doc
))
938 bool wxDocManager::CloseDocuments(bool force
)
940 wxList::compatibility_iterator node
= m_docs
.GetFirst();
943 wxDocument
*doc
= (wxDocument
*)node
->GetData();
944 wxList::compatibility_iterator next
= node
->GetNext();
946 if (!CloseDocument(doc
, force
))
949 // This assumes that documents are not connected in
950 // any way, i.e. deleting one document does NOT
957 bool wxDocManager::Clear(bool force
)
959 if (!CloseDocuments(force
))
962 m_currentView
= NULL
;
964 wxList::compatibility_iterator node
= m_templates
.GetFirst();
967 wxDocTemplate
*templ
= (wxDocTemplate
*) node
->GetData();
968 wxList::compatibility_iterator next
= node
->GetNext();
975 bool wxDocManager::Initialize()
977 m_fileHistory
= OnCreateFileHistory();
981 wxString
wxDocManager::GetLastDirectory() const
983 // if we haven't determined the last used directory yet, do it now
984 if ( m_lastDirectory
.empty() )
986 // we're going to modify m_lastDirectory in this const method, so do it
987 // via non-const self pointer instead of const this one
988 wxDocManager
* const self
= const_cast<wxDocManager
*>(this);
990 // first try to reuse the directory of the most recently opened file:
991 // this ensures that if the user opens a file, closes the program and
992 // runs it again the "Open file" dialog will open in the directory of
993 // the last file he used
994 wxString lastOpened
= GetHistoryFile(0);
995 if ( !lastOpened
.empty() )
997 const wxFileName
fn(lastOpened
);
998 if ( fn
.DirExists() )
1000 self
->m_lastDirectory
= fn
.GetPath();
1002 //else: should we try the next one?
1005 // if we don't have any files in the history (yet?), use the
1006 // system-dependent default location for the document files
1007 if ( m_lastDirectory
.empty() )
1009 self
->m_lastDirectory
= wxStandardPaths::Get().GetAppDocumentsDir();
1013 return m_lastDirectory
;
1016 wxFileHistory
*wxDocManager::OnCreateFileHistory()
1018 return new wxFileHistory
;
1021 void wxDocManager::OnFileClose(wxCommandEvent
& WXUNUSED(event
))
1023 wxDocument
*doc
= GetCurrentDocument();
1028 doc
->DeleteAllViews();
1029 if (m_docs
.Member(doc
))
1034 void wxDocManager::OnFileCloseAll(wxCommandEvent
& WXUNUSED(event
))
1036 CloseDocuments(false);
1039 void wxDocManager::OnFileNew(wxCommandEvent
& WXUNUSED(event
))
1041 CreateNewDocument();
1044 void wxDocManager::OnFileOpen(wxCommandEvent
& WXUNUSED(event
))
1046 if ( !CreateDocument("") )
1048 OnOpenFileFailure();
1052 void wxDocManager::OnFileRevert(wxCommandEvent
& WXUNUSED(event
))
1054 wxDocument
*doc
= GetCurrentDocument();
1060 void wxDocManager::OnFileSave(wxCommandEvent
& WXUNUSED(event
))
1062 wxDocument
*doc
= GetCurrentDocument();
1068 void wxDocManager::OnFileSaveAs(wxCommandEvent
& WXUNUSED(event
))
1070 wxDocument
*doc
= GetCurrentDocument();
1076 void wxDocManager::OnPrint(wxCommandEvent
& WXUNUSED(event
))
1078 #if wxUSE_PRINTING_ARCHITECTURE
1079 wxView
*view
= GetActiveView();
1083 wxPrintout
*printout
= view
->OnCreatePrintout();
1087 printer
.Print(view
->GetFrame(), printout
, true);
1091 #endif // wxUSE_PRINTING_ARCHITECTURE
1094 void wxDocManager::OnPreview(wxCommandEvent
& WXUNUSED(event
))
1096 #if wxUSE_PRINTING_ARCHITECTURE
1097 wxView
*view
= GetActiveView();
1101 wxPrintout
*printout
= view
->OnCreatePrintout();
1104 // Pass two printout objects: for preview, and possible printing.
1105 wxPrintPreviewBase
*
1106 preview
= new wxPrintPreview(printout
, view
->OnCreatePrintout());
1107 if ( !preview
->Ok() )
1110 wxLogError(_("Print preview creation failed."));
1115 frame
= new wxPreviewFrame(preview
, wxTheApp
->GetTopWindow(),
1116 _("Print Preview"));
1117 frame
->Centre(wxBOTH
);
1118 frame
->Initialize();
1121 #endif // wxUSE_PRINTING_ARCHITECTURE
1124 void wxDocManager::OnUndo(wxCommandEvent
& event
)
1126 wxCommandProcessor
* const cmdproc
= GetCurrentCommandProcessor();
1136 void wxDocManager::OnRedo(wxCommandEvent
& event
)
1138 wxCommandProcessor
* const cmdproc
= GetCurrentCommandProcessor();
1148 // Handlers for UI update commands
1150 void wxDocManager::OnUpdateFileOpen(wxUpdateUIEvent
& event
)
1152 // CreateDocument() (which is called from OnFileOpen) may succeed
1153 // only when there is at least a template:
1154 event
.Enable( GetTemplates().GetCount()>0 );
1157 void wxDocManager::OnUpdateDisableIfNoDoc(wxUpdateUIEvent
& event
)
1159 event
.Enable( GetCurrentDocument() != NULL
);
1162 void wxDocManager::OnUpdateFileNew(wxUpdateUIEvent
& event
)
1164 // CreateDocument() (which is called from OnFileNew) may succeed
1165 // only when there is at least a template:
1166 event
.Enable( GetTemplates().GetCount()>0 );
1169 void wxDocManager::OnUpdateFileSave(wxUpdateUIEvent
& event
)
1171 wxDocument
* const doc
= GetCurrentDocument();
1172 event
.Enable( doc
&& !doc
->AlreadySaved() );
1175 void wxDocManager::OnUpdateUndo(wxUpdateUIEvent
& event
)
1177 wxCommandProcessor
* const cmdproc
= GetCurrentCommandProcessor();
1180 event
.Enable(false);
1184 event
.Enable(cmdproc
->CanUndo());
1185 cmdproc
->SetMenuStrings();
1188 void wxDocManager::OnUpdateRedo(wxUpdateUIEvent
& event
)
1190 wxCommandProcessor
* const cmdproc
= GetCurrentCommandProcessor();
1193 event
.Enable(false);
1197 event
.Enable(cmdproc
->CanRedo());
1198 cmdproc
->SetMenuStrings();
1201 wxView
*wxDocManager::GetActiveView() const
1203 wxView
*view
= GetCurrentView();
1205 if ( !view
&& !m_docs
.empty() )
1207 // if we have exactly one document, consider its view to be the current
1210 // VZ: I'm not exactly sure why is this needed but this is how this
1211 // code used to behave before the bug #9518 was fixed and it seems
1212 // safer to preserve the old logic
1213 wxList::compatibility_iterator node
= m_docs
.GetFirst();
1214 if ( !node
->GetNext() )
1216 wxDocument
*doc
= static_cast<wxDocument
*>(node
->GetData());
1217 view
= doc
->GetFirstView();
1219 //else: we have more than one document
1225 bool wxDocManager::TryBefore(wxEvent
& event
)
1227 wxView
* const view
= GetActiveView();
1228 return view
&& view
->ProcessEventHere(event
);
1234 // helper function: return only the visible templates
1235 wxDocTemplates
GetVisibleTemplates(const wxList
& allTemplates
)
1237 // select only the visible templates
1238 const size_t totalNumTemplates
= allTemplates
.GetCount();
1239 wxDocTemplates templates
;
1240 if ( totalNumTemplates
)
1242 templates
.reserve(totalNumTemplates
);
1244 for ( wxList::const_iterator i
= allTemplates
.begin(),
1245 end
= allTemplates
.end();
1249 wxDocTemplate
* const temp
= (wxDocTemplate
*)*i
;
1250 if ( temp
->IsVisible() )
1251 templates
.push_back(temp
);
1258 } // anonymous namespace
1260 wxDocument
*wxDocManager::CreateDocument(const wxString
& pathOrig
, long flags
)
1262 // this ought to be const but SelectDocumentType/Path() are not
1263 // const-correct and can't be changed as, being virtual, this risks
1264 // breaking user code overriding them
1265 wxDocTemplates
templates(GetVisibleTemplates(m_templates
));
1266 const size_t numTemplates
= templates
.size();
1267 if ( !numTemplates
)
1269 // no templates can be used, can't create document
1274 // normally user should select the template to use but wxDOC_SILENT flag we
1275 // choose one ourselves
1276 wxString path
= pathOrig
; // may be modified below
1277 wxDocTemplate
*temp
;
1278 if ( flags
& wxDOC_SILENT
)
1280 wxASSERT_MSG( !path
.empty(),
1281 "using empty path with wxDOC_SILENT doesn't make sense" );
1283 temp
= FindTemplateForPath(path
);
1286 wxLogWarning(_("The format of file '%s' couldn't be determined."),
1290 else // not silent, ask the user
1292 // for the new file we need just the template, for an existing one we
1293 // need the template and the path, unless it's already specified
1294 if ( (flags
& wxDOC_NEW
) || !path
.empty() )
1295 temp
= SelectDocumentType(&templates
[0], numTemplates
);
1297 temp
= SelectDocumentPath(&templates
[0], numTemplates
, path
, flags
);
1303 // check whether the document with this path is already opened
1304 if ( !path
.empty() )
1306 const wxFileName
fn(path
);
1307 for ( wxList::const_iterator i
= m_docs
.begin(); i
!= m_docs
.end(); ++i
)
1309 wxDocument
* const doc
= (wxDocument
*)*i
;
1311 if ( fn
== doc
->GetFilename() )
1313 // file already open, just activate it and return
1314 if ( doc
->GetFirstView() )
1316 ActivateView(doc
->GetFirstView());
1317 if ( doc
->GetDocumentWindow() )
1318 doc
->GetDocumentWindow()->SetFocus();
1326 // no, we need to create a new document
1329 // if we've reached the max number of docs, close the first one.
1330 if ( (int)GetDocuments().GetCount() >= m_maxDocsOpen
)
1332 if ( !CloseDocument((wxDocument
*)GetDocuments().GetFirst()->GetData()) )
1334 // can't open the new document if closing the old one failed
1340 // do create and initialize the new document finally
1341 wxDocument
* const docNew
= temp
->CreateDocument(path
, flags
);
1345 docNew
->SetDocumentName(temp
->GetDocumentName());
1346 docNew
->SetDocumentTemplate(temp
);
1350 // call the appropriate function depending on whether we're creating a
1351 // new file or opening an existing one
1352 if ( !(flags
& wxDOC_NEW
? docNew
->OnNewDocument()
1353 : docNew
->OnOpenDocument(path
)) )
1355 docNew
->DeleteAllViews();
1359 wxCATCH_ALL( docNew
->DeleteAllViews(); throw; )
1361 // add the successfully opened file to MRU, but only if we're going to be
1362 // able to reopen it successfully later which requires the template for
1363 // this document to be retrievable from the file extension
1364 if ( !(flags
& wxDOC_NEW
) && temp
->FileMatchesTemplate(path
) )
1365 AddFileToHistory(path
);
1370 wxView
*wxDocManager::CreateView(wxDocument
*doc
, long flags
)
1372 wxDocTemplates
templates(GetVisibleTemplates(m_templates
));
1373 const size_t numTemplates
= templates
.size();
1375 if ( numTemplates
== 0 )
1378 wxDocTemplate
* const
1379 temp
= numTemplates
== 1 ? templates
[0]
1380 : SelectViewType(&templates
[0], numTemplates
);
1385 wxView
*view
= temp
->CreateView(doc
, flags
);
1387 view
->SetViewName(temp
->GetViewName());
1391 // Not yet implemented
1393 wxDocManager::DeleteTemplate(wxDocTemplate
*WXUNUSED(temp
), long WXUNUSED(flags
))
1397 // Not yet implemented
1398 bool wxDocManager::FlushDoc(wxDocument
*WXUNUSED(doc
))
1403 wxDocument
*wxDocManager::GetCurrentDocument() const
1405 wxView
* const view
= GetActiveView();
1406 return view
? view
->GetDocument() : NULL
;
1409 wxCommandProcessor
*wxDocManager::GetCurrentCommandProcessor() const
1411 wxDocument
* const doc
= GetCurrentDocument();
1412 return doc
? doc
->GetCommandProcessor() : NULL
;
1415 // Make a default name for a new document
1416 #if WXWIN_COMPATIBILITY_2_8
1417 bool wxDocManager::MakeDefaultName(wxString
& WXUNUSED(name
))
1419 // we consider that this function can only be overridden by the user code,
1420 // not called by it as it only makes sense to call it internally, so we
1421 // don't bother to return anything from here
1424 #endif // WXWIN_COMPATIBILITY_2_8
1426 wxString
wxDocManager::MakeNewDocumentName()
1430 #if WXWIN_COMPATIBILITY_2_8
1431 if ( !MakeDefaultName(name
) )
1432 #endif // WXWIN_COMPATIBILITY_2_8
1434 name
.Printf(_("unnamed%d"), m_defaultDocumentNameCounter
);
1435 m_defaultDocumentNameCounter
++;
1441 // Make a frame title (override this to do something different)
1442 // If docName is empty, a document is not currently active.
1443 wxString
wxDocManager::MakeFrameTitle(wxDocument
* doc
)
1445 wxString appName
= wxTheApp
->GetAppDisplayName();
1451 wxString docName
= doc
->GetUserReadableName();
1452 title
= docName
+ wxString(_(" - ")) + appName
;
1458 // Not yet implemented
1459 wxDocTemplate
*wxDocManager::MatchTemplate(const wxString
& WXUNUSED(path
))
1464 // File history management
1465 void wxDocManager::AddFileToHistory(const wxString
& file
)
1468 m_fileHistory
->AddFileToHistory(file
);
1471 void wxDocManager::RemoveFileFromHistory(size_t i
)
1474 m_fileHistory
->RemoveFileFromHistory(i
);
1477 wxString
wxDocManager::GetHistoryFile(size_t i
) const
1482 histFile
= m_fileHistory
->GetHistoryFile(i
);
1487 void wxDocManager::FileHistoryUseMenu(wxMenu
*menu
)
1490 m_fileHistory
->UseMenu(menu
);
1493 void wxDocManager::FileHistoryRemoveMenu(wxMenu
*menu
)
1496 m_fileHistory
->RemoveMenu(menu
);
1500 void wxDocManager::FileHistoryLoad(const wxConfigBase
& config
)
1503 m_fileHistory
->Load(config
);
1506 void wxDocManager::FileHistorySave(wxConfigBase
& config
)
1509 m_fileHistory
->Save(config
);
1513 void wxDocManager::FileHistoryAddFilesToMenu(wxMenu
* menu
)
1516 m_fileHistory
->AddFilesToMenu(menu
);
1519 void wxDocManager::FileHistoryAddFilesToMenu()
1522 m_fileHistory
->AddFilesToMenu();
1525 size_t wxDocManager::GetHistoryFilesCount() const
1527 return m_fileHistory
? m_fileHistory
->GetCount() : 0;
1531 // Find out the document template via matching in the document file format
1532 // against that of the template
1533 wxDocTemplate
*wxDocManager::FindTemplateForPath(const wxString
& path
)
1535 wxDocTemplate
*theTemplate
= NULL
;
1537 // Find the template which this extension corresponds to
1538 for (size_t i
= 0; i
< m_templates
.GetCount(); i
++)
1540 wxDocTemplate
*temp
= (wxDocTemplate
*)m_templates
.Item(i
)->GetData();
1541 if ( temp
->FileMatchesTemplate(path
) )
1550 // Prompts user to open a file, using file specs in templates.
1551 // Must extend the file selector dialog or implement own; OR
1552 // match the extension to the template extension.
1554 wxDocTemplate
*wxDocManager::SelectDocumentPath(wxDocTemplate
**templates
,
1557 long WXUNUSED(flags
),
1558 bool WXUNUSED(save
))
1560 #ifdef wxHAS_MULTIPLE_FILEDLG_FILTERS
1563 for (int i
= 0; i
< noTemplates
; i
++)
1565 if (templates
[i
]->IsVisible())
1567 // add a '|' to separate this filter from the previous one
1568 if ( !descrBuf
.empty() )
1569 descrBuf
<< wxT('|');
1571 descrBuf
<< templates
[i
]->GetDescription()
1572 << wxT(" (") << templates
[i
]->GetFileFilter() << wxT(") |")
1573 << templates
[i
]->GetFileFilter();
1577 wxString descrBuf
= wxT("*.*");
1578 wxUnusedVar(noTemplates
);
1581 int FilterIndex
= -1;
1583 wxString pathTmp
= wxFileSelectorEx(_("Open File"),
1589 wxDocTemplate
*theTemplate
= NULL
;
1590 if (!pathTmp
.empty())
1592 if (!wxFileExists(pathTmp
))
1595 if (!wxTheApp
->GetAppDisplayName().empty())
1596 msgTitle
= wxTheApp
->GetAppDisplayName();
1598 msgTitle
= wxString(_("File error"));
1600 wxMessageBox(_("Sorry, could not open this file."),
1602 wxOK
| wxICON_EXCLAMATION
| wxCENTRE
);
1604 path
= wxEmptyString
;
1608 SetLastDirectory(wxPathOnly(pathTmp
));
1612 // first choose the template using the extension, if this fails (i.e.
1613 // wxFileSelectorEx() didn't fill it), then use the path
1614 if ( FilterIndex
!= -1 )
1615 theTemplate
= templates
[FilterIndex
];
1617 theTemplate
= FindTemplateForPath(path
);
1620 // Since we do not add files with non-default extensions to the
1621 // file history this can only happen if the application changes the
1622 // allowed templates in runtime.
1623 wxMessageBox(_("Sorry, the format for this file is unknown."),
1625 wxOK
| wxICON_EXCLAMATION
| wxCENTRE
);
1636 wxDocTemplate
*wxDocManager::SelectDocumentType(wxDocTemplate
**templates
,
1637 int noTemplates
, bool sort
)
1639 wxArrayString strings
;
1640 wxScopedArray
<wxDocTemplate
*> data(new wxDocTemplate
*[noTemplates
]);
1644 for (i
= 0; i
< noTemplates
; i
++)
1646 if (templates
[i
]->IsVisible())
1650 for (j
= 0; j
< n
; j
++)
1652 //filter out NOT unique documents + view combinations
1653 if ( templates
[i
]->m_docTypeName
== data
[j
]->m_docTypeName
&&
1654 templates
[i
]->m_viewTypeName
== data
[j
]->m_viewTypeName
1661 strings
.Add(templates
[i
]->m_description
);
1663 data
[n
] = templates
[i
];
1671 strings
.Sort(); // ascending sort
1672 // Yes, this will be slow, but template lists
1673 // are typically short.
1675 n
= strings
.Count();
1676 for (i
= 0; i
< n
; i
++)
1678 for (j
= 0; j
< noTemplates
; j
++)
1680 if (strings
[i
] == templates
[j
]->m_description
)
1681 data
[i
] = templates
[j
];
1686 wxDocTemplate
*theTemplate
;
1691 // no visible templates, hence nothing to choose from
1696 // don't propose the user to choose if he has no choice
1697 theTemplate
= data
[0];
1701 // propose the user to choose one of several
1702 theTemplate
= (wxDocTemplate
*)wxGetSingleChoiceData
1704 _("Select a document template"),
1714 wxDocTemplate
*wxDocManager::SelectViewType(wxDocTemplate
**templates
,
1715 int noTemplates
, bool sort
)
1717 wxArrayString strings
;
1718 wxScopedArray
<wxDocTemplate
*> data(new wxDocTemplate
*[noTemplates
]);
1722 for (i
= 0; i
< noTemplates
; i
++)
1724 wxDocTemplate
*templ
= templates
[i
];
1725 if ( templ
->IsVisible() && !templ
->GetViewName().empty() )
1729 for (j
= 0; j
< n
; j
++)
1731 //filter out NOT unique views
1732 if ( templates
[i
]->m_viewTypeName
== data
[j
]->m_viewTypeName
)
1738 strings
.Add(templ
->m_viewTypeName
);
1747 strings
.Sort(); // ascending sort
1748 // Yes, this will be slow, but template lists
1749 // are typically short.
1751 n
= strings
.Count();
1752 for (i
= 0; i
< n
; i
++)
1754 for (j
= 0; j
< noTemplates
; j
++)
1756 if (strings
[i
] == templates
[j
]->m_viewTypeName
)
1757 data
[i
] = templates
[j
];
1762 wxDocTemplate
*theTemplate
;
1764 // the same logic as above
1772 theTemplate
= data
[0];
1776 theTemplate
= (wxDocTemplate
*)wxGetSingleChoiceData
1778 _("Select a document view"),
1789 void wxDocManager::AssociateTemplate(wxDocTemplate
*temp
)
1791 if (!m_templates
.Member(temp
))
1792 m_templates
.Append(temp
);
1795 void wxDocManager::DisassociateTemplate(wxDocTemplate
*temp
)
1797 m_templates
.DeleteObject(temp
);
1800 // Add and remove a document from the manager's list
1801 void wxDocManager::AddDocument(wxDocument
*doc
)
1803 if (!m_docs
.Member(doc
))
1807 void wxDocManager::RemoveDocument(wxDocument
*doc
)
1809 m_docs
.DeleteObject(doc
);
1812 // Views or windows should inform the document manager
1813 // when a view is going in or out of focus
1814 void wxDocManager::ActivateView(wxView
*view
, bool activate
)
1818 m_currentView
= view
;
1822 if ( m_currentView
== view
)
1824 // don't keep stale pointer
1825 m_currentView
= NULL
;
1830 // ----------------------------------------------------------------------------
1831 // wxDocChildFrameAnyBase
1832 // ----------------------------------------------------------------------------
1834 bool wxDocChildFrameAnyBase::CloseView(wxCloseEvent
& event
)
1838 if ( event
.CanVeto() && !m_childView
->Close(false) )
1844 m_childView
->Activate(false);
1846 // it is important to reset m_childView frame pointer to NULL before
1847 // deleting it because while normally it is the frame which deletes the
1848 // view when it's closed, the view also closes the frame if it is
1849 // deleted directly not by us as indicated by its doc child frame
1850 // pointer still being set
1851 m_childView
->SetDocChildFrame(NULL
);
1856 m_childDocument
= NULL
;
1861 // ----------------------------------------------------------------------------
1862 // Default parent frame
1863 // ----------------------------------------------------------------------------
1865 BEGIN_EVENT_TABLE(wxDocParentFrame
, wxFrame
)
1866 EVT_MENU(wxID_EXIT
, wxDocParentFrame::OnExit
)
1867 EVT_MENU_RANGE(wxID_FILE1
, wxID_FILE9
, wxDocParentFrame::OnMRUFile
)
1868 EVT_CLOSE(wxDocParentFrame::OnCloseWindow
)
1871 wxDocParentFrame::wxDocParentFrame()
1873 m_docManager
= NULL
;
1876 wxDocParentFrame::wxDocParentFrame(wxDocManager
*manager
,
1879 const wxString
& title
,
1883 const wxString
& name
)
1884 : wxFrame(frame
, id
, title
, pos
, size
, style
, name
)
1886 m_docManager
= manager
;
1889 bool wxDocParentFrame::Create(wxDocManager
*manager
,
1892 const wxString
& title
,
1896 const wxString
& name
)
1898 m_docManager
= manager
;
1899 return base_type::Create(frame
, id
, title
, pos
, size
, style
, name
);
1902 void wxDocParentFrame::OnExit(wxCommandEvent
& WXUNUSED(event
))
1907 void wxDocParentFrame::OnMRUFile(wxCommandEvent
& event
)
1909 int n
= event
.GetId() - wxID_FILE1
; // the index in MRU list
1910 wxString
filename(m_docManager
->GetHistoryFile(n
));
1911 if ( filename
.empty() )
1914 wxString errMsg
; // must contain exactly one "%s" if non-empty
1915 if ( wxFile::Exists(filename
) )
1918 if ( m_docManager
->CreateDocument(filename
, wxDOC_SILENT
) )
1921 errMsg
= _("The file '%s' couldn't be opened.");
1923 else // file doesn't exist
1925 errMsg
= _("The file '%s' doesn't exist and couldn't be opened.");
1929 wxASSERT_MSG( !errMsg
.empty(), "should have an error message" );
1931 // remove the file which we can't open from the MRU list
1932 m_docManager
->RemoveFileFromHistory(n
);
1934 // and tell the user about it
1935 wxLogError(errMsg
+ '\n' +
1936 _("It has been removed from the most recently used files list."),
1940 // Extend event processing to search the view's event table
1941 bool wxDocParentFrame::TryBefore(wxEvent
& event
)
1943 if ( m_docManager
&& m_docManager
->ProcessEventHere(event
) )
1946 return wxFrame::TryBefore(event
);
1949 // Define the behaviour for the frame closing
1950 // - must delete all frames except for the main one.
1951 void wxDocParentFrame::OnCloseWindow(wxCloseEvent
& event
)
1953 if (m_docManager
->Clear(!event
.CanVeto()))
1961 #if wxUSE_PRINTING_ARCHITECTURE
1963 wxDocPrintout::wxDocPrintout(wxView
*view
, const wxString
& title
)
1966 m_printoutView
= view
;
1969 bool wxDocPrintout::OnPrintPage(int WXUNUSED(page
))
1973 // Get the logical pixels per inch of screen and printer
1974 int ppiScreenX
, ppiScreenY
;
1975 GetPPIScreen(&ppiScreenX
, &ppiScreenY
);
1976 wxUnusedVar(ppiScreenY
);
1977 int ppiPrinterX
, ppiPrinterY
;
1978 GetPPIPrinter(&ppiPrinterX
, &ppiPrinterY
);
1979 wxUnusedVar(ppiPrinterY
);
1981 // This scales the DC so that the printout roughly represents the
1982 // the screen scaling. The text point size _should_ be the right size
1983 // but in fact is too small for some reason. This is a detail that will
1984 // need to be addressed at some point but can be fudged for the
1986 float scale
= (float)((float)ppiPrinterX
/(float)ppiScreenX
);
1988 // Now we have to check in case our real page size is reduced
1989 // (e.g. because we're drawing to a print preview memory DC)
1990 int pageWidth
, pageHeight
;
1992 dc
->GetSize(&w
, &h
);
1993 GetPageSizePixels(&pageWidth
, &pageHeight
);
1994 wxUnusedVar(pageHeight
);
1996 // If printer pageWidth == current DC width, then this doesn't
1997 // change. But w might be the preview bitmap width, so scale down.
1998 float overallScale
= scale
* (float)(w
/(float)pageWidth
);
1999 dc
->SetUserScale(overallScale
, overallScale
);
2003 m_printoutView
->OnDraw(dc
);
2008 bool wxDocPrintout::HasPage(int pageNum
)
2010 return (pageNum
== 1);
2013 bool wxDocPrintout::OnBeginDocument(int startPage
, int endPage
)
2015 if (!wxPrintout::OnBeginDocument(startPage
, endPage
))
2021 void wxDocPrintout::GetPageInfo(int *minPage
, int *maxPage
,
2022 int *selPageFrom
, int *selPageTo
)
2030 #endif // wxUSE_PRINTING_ARCHITECTURE
2032 // ----------------------------------------------------------------------------
2033 // File history (a.k.a. MRU, most recently used, files list)
2034 // ----------------------------------------------------------------------------
2036 wxFileHistory::wxFileHistory(size_t maxFiles
, wxWindowID idBase
)
2038 m_fileMaxFiles
= maxFiles
;
2042 void wxFileHistory::AddFileToHistory(const wxString
& file
)
2044 // check if we don't already have this file
2045 const wxFileName
fnNew(file
);
2047 numFiles
= m_fileHistory
.size();
2048 for ( i
= 0; i
< numFiles
; i
++ )
2050 if ( fnNew
== m_fileHistory
[i
] )
2052 // we do have it, move it to the top of the history
2053 RemoveFileFromHistory(i
);
2059 // if we already have a full history, delete the one at the end
2060 if ( numFiles
== m_fileMaxFiles
)
2062 RemoveFileFromHistory(--numFiles
);
2065 // add a new menu item to all file menus (they will be updated below)
2066 for ( wxList::compatibility_iterator node
= m_fileMenus
.GetFirst();
2068 node
= node
->GetNext() )
2070 wxMenu
* const menu
= (wxMenu
*)node
->GetData();
2072 if ( !numFiles
&& menu
->GetMenuItemCount() )
2073 menu
->AppendSeparator();
2075 // label doesn't matter, it will be set below anyhow, but it can't
2076 // be empty (this is supposed to indicate a stock item)
2077 menu
->Append(m_idBase
+ numFiles
, " ");
2080 // insert the new file in the beginning of the file history
2081 m_fileHistory
.insert(m_fileHistory
.begin(), file
);
2084 // update the labels in all menus
2085 for ( i
= 0; i
< numFiles
; i
++ )
2087 // if in same directory just show the filename; otherwise the full path
2088 const wxFileName
fnOld(m_fileHistory
[i
]);
2090 wxString pathInMenu
;
2091 if ( fnOld
.GetPath() == fnNew
.GetPath() )
2093 pathInMenu
= fnOld
.GetFullName();
2095 else // file in different directory
2097 // absolute path; could also set relative path
2098 pathInMenu
= m_fileHistory
[i
];
2101 for ( wxList::compatibility_iterator node
= m_fileMenus
.GetFirst();
2103 node
= node
->GetNext() )
2105 wxMenu
* const menu
= (wxMenu
*)node
->GetData();
2107 menu
->SetLabel(m_idBase
+ i
, GetMRUEntryLabel(i
, pathInMenu
));
2112 void wxFileHistory::RemoveFileFromHistory(size_t i
)
2114 size_t numFiles
= m_fileHistory
.size();
2115 wxCHECK_RET( i
< numFiles
,
2116 wxT("invalid index in wxFileHistory::RemoveFileFromHistory") );
2118 // delete the element from the array
2119 m_fileHistory
.RemoveAt(i
);
2122 for ( wxList::compatibility_iterator node
= m_fileMenus
.GetFirst();
2124 node
= node
->GetNext() )
2126 wxMenu
* const menu
= (wxMenu
*) node
->GetData();
2128 // shift filenames up
2129 for ( size_t j
= i
; j
< numFiles
; j
++ )
2131 menu
->SetLabel(m_idBase
+ j
, GetMRUEntryLabel(j
, m_fileHistory
[j
]));
2134 // delete the last menu item which is unused now
2135 const wxWindowID lastItemId
= m_idBase
+ numFiles
;
2136 if ( menu
->FindItem(lastItemId
) )
2137 menu
->Delete(lastItemId
);
2139 // delete the last separator too if no more files are left
2140 if ( m_fileHistory
.empty() )
2142 const wxMenuItemList::compatibility_iterator
2143 nodeLast
= menu
->GetMenuItems().GetLast();
2146 wxMenuItem
* const lastMenuItem
= nodeLast
->GetData();
2147 if ( lastMenuItem
->IsSeparator() )
2148 menu
->Delete(lastMenuItem
);
2150 //else: menu is empty somehow
2155 void wxFileHistory::UseMenu(wxMenu
*menu
)
2157 if ( !m_fileMenus
.Member(menu
) )
2158 m_fileMenus
.Append(menu
);
2161 void wxFileHistory::RemoveMenu(wxMenu
*menu
)
2163 m_fileMenus
.DeleteObject(menu
);
2167 void wxFileHistory::Load(const wxConfigBase
& config
)
2169 m_fileHistory
.Clear();
2172 buf
.Printf(wxT("file%d"), 1);
2174 wxString historyFile
;
2175 while ((m_fileHistory
.GetCount() < m_fileMaxFiles
) &&
2176 config
.Read(buf
, &historyFile
) && !historyFile
.empty())
2178 m_fileHistory
.Add(historyFile
);
2180 buf
.Printf(wxT("file%d"), (int)m_fileHistory
.GetCount()+1);
2181 historyFile
= wxEmptyString
;
2187 void wxFileHistory::Save(wxConfigBase
& config
)
2190 for (i
= 0; i
< m_fileMaxFiles
; i
++)
2193 buf
.Printf(wxT("file%d"), (int)i
+1);
2194 if (i
< m_fileHistory
.GetCount())
2195 config
.Write(buf
, wxString(m_fileHistory
[i
]));
2197 config
.Write(buf
, wxEmptyString
);
2200 #endif // wxUSE_CONFIG
2202 void wxFileHistory::AddFilesToMenu()
2204 if ( m_fileHistory
.empty() )
2207 for ( wxList::compatibility_iterator node
= m_fileMenus
.GetFirst();
2209 node
= node
->GetNext() )
2211 AddFilesToMenu((wxMenu
*) node
->GetData());
2215 void wxFileHistory::AddFilesToMenu(wxMenu
* menu
)
2217 if ( m_fileHistory
.empty() )
2220 if ( menu
->GetMenuItemCount() )
2221 menu
->AppendSeparator();
2223 for ( size_t i
= 0; i
< m_fileHistory
.GetCount(); i
++ )
2225 menu
->Append(m_idBase
+ i
, GetMRUEntryLabel(i
, m_fileHistory
[i
]));
2229 // ----------------------------------------------------------------------------
2230 // Permits compatibility with existing file formats and functions that
2231 // manipulate files directly
2232 // ----------------------------------------------------------------------------
2234 #if wxUSE_STD_IOSTREAM
2236 bool wxTransferFileToStream(const wxString
& filename
, wxSTD ostream
& stream
)
2238 wxFFile
file(filename
, _T("rb"));
2239 if ( !file
.IsOpened() )
2247 nRead
= file
.Read(buf
, WXSIZEOF(buf
));
2251 stream
.write(buf
, nRead
);
2255 while ( !file
.Eof() );
2260 bool wxTransferStreamToFile(wxSTD istream
& stream
, const wxString
& filename
)
2262 wxFFile
file(filename
, _T("wb"));
2263 if ( !file
.IsOpened() )
2269 stream
.read(buf
, WXSIZEOF(buf
));
2270 if ( !stream
.bad() ) // fail may be set on EOF, don't use operator!()
2272 if ( !file
.Write(buf
, stream
.gcount()) )
2276 while ( !stream
.eof() );
2281 #else // !wxUSE_STD_IOSTREAM
2283 bool wxTransferFileToStream(const wxString
& filename
, wxOutputStream
& stream
)
2285 wxFFile
file(filename
, _T("rb"));
2286 if ( !file
.IsOpened() )
2294 nRead
= file
.Read(buf
, WXSIZEOF(buf
));
2298 stream
.Write(buf
, nRead
);
2302 while ( !file
.Eof() );
2307 bool wxTransferStreamToFile(wxInputStream
& stream
, const wxString
& filename
)
2309 wxFFile
file(filename
, _T("wb"));
2310 if ( !file
.IsOpened() )
2316 stream
.Read(buf
, WXSIZEOF(buf
));
2318 const size_t nRead
= stream
.LastRead();
2327 if ( !file
.Write(buf
, nRead
) )
2334 #endif // wxUSE_STD_IOSTREAM/!wxUSE_STD_IOSTREAM
2336 #endif // wxUSE_DOC_VIEW_ARCHITECTURE