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 void wxDocument::Modify(bool mod
)
238 if (mod
!= m_documentModified
)
240 m_documentModified
= mod
;
242 // Allow views to append asterix to the title
243 wxView
* view
= GetFirstView();
244 if (view
) view
->OnChangeFilename();
248 wxDocManager
*wxDocument::GetDocumentManager() const
250 return m_documentTemplate
? m_documentTemplate
->GetDocumentManager() : NULL
;
253 bool wxDocument::OnNewDocument()
255 // notice that there is no need to neither reset nor even check the
256 // modified flag here as the document itself is a new object (this is only
257 // called from CreateDocument()) and so it shouldn't be saved anyhow even
258 // if it is modified -- this could happen if the user code creates
259 // documents pre-filled with some user-entered (and which hence must not be
262 SetDocumentSaved(false);
264 const wxString name
= GetDocumentManager()->MakeNewDocumentName();
266 SetFilename(name
, true);
271 bool wxDocument::Save()
273 if ( AlreadySaved() )
276 if ( m_documentFile
.empty() || !m_savedYet
)
279 return OnSaveDocument(m_documentFile
);
282 bool wxDocument::SaveAs()
284 wxDocTemplate
*docTemplate
= GetDocumentTemplate();
288 #ifdef wxHAS_MULTIPLE_FILEDLG_FILTERS
289 wxString filter
= docTemplate
->GetDescription() + wxT(" (") +
290 docTemplate
->GetFileFilter() + wxT(")|") +
291 docTemplate
->GetFileFilter();
293 // Now see if there are some other template with identical view and document
294 // classes, whose filters may also be used.
295 if (docTemplate
->GetViewClassInfo() && docTemplate
->GetDocClassInfo())
297 wxList::compatibility_iterator
298 node
= docTemplate
->GetDocumentManager()->GetTemplates().GetFirst();
301 wxDocTemplate
*t
= (wxDocTemplate
*) node
->GetData();
303 if (t
->IsVisible() && t
!= docTemplate
&&
304 t
->GetViewClassInfo() == docTemplate
->GetViewClassInfo() &&
305 t
->GetDocClassInfo() == docTemplate
->GetDocClassInfo())
307 // add a '|' to separate this filter from the previous one
308 if ( !filter
.empty() )
311 filter
<< t
->GetDescription()
312 << wxT(" (") << t
->GetFileFilter() << wxT(") |")
313 << t
->GetFileFilter();
316 node
= node
->GetNext();
320 wxString filter
= docTemplate
->GetFileFilter() ;
323 wxString defaultDir
= docTemplate
->GetDirectory();
324 if ( defaultDir
.empty() )
326 defaultDir
= wxPathOnly(GetFilename());
327 if ( defaultDir
.empty() )
328 defaultDir
= GetDocumentManager()->GetLastDirectory();
331 wxString fileName
= wxFileSelector(_("Save As"),
333 wxFileNameFromPath(GetFilename()),
334 docTemplate
->GetDefaultExtension(),
336 wxFD_SAVE
| wxFD_OVERWRITE_PROMPT
,
337 GetDocumentWindow());
339 if (fileName
.empty())
340 return false; // cancelled by user
342 // Files that were not saved correctly are not added to the FileHistory.
343 if (!OnSaveDocument(fileName
))
346 SetTitle(wxFileNameFromPath(fileName
));
347 SetFilename(fileName
, true); // will call OnChangeFileName automatically
349 // A file that doesn't use the default extension of its document template
350 // cannot be opened via the FileHistory, so we do not add it.
351 if (docTemplate
->FileMatchesTemplate(fileName
))
353 GetDocumentManager()->AddFileToHistory(fileName
);
355 //else: the user will probably not be able to open the file again, so we
356 // could warn about the wrong file-extension here
361 bool wxDocument::OnSaveDocument(const wxString
& file
)
366 if ( !DoSaveDocument(file
) )
371 SetDocumentSaved(true);
372 #if defined( __WXOSX_MAC__ ) && wxOSX_USE_CARBON
373 wxFileName
fn(file
) ;
374 fn
.MacSetDefaultTypeAndCreator() ;
379 bool wxDocument::OnOpenDocument(const wxString
& file
)
381 // notice that there is no need to check the modified flag here for the
382 // reasons explained in OnNewDocument()
384 if ( !DoOpenDocument(file
) )
387 SetFilename(file
, true);
389 // stretching the logic a little this does make sense because the document
390 // had been saved into the file we just loaded it from, it just could have
391 // happened during a previous program execution, it's just that the name of
392 // this method is a bit unfortunate, it should probably have been called
393 // HasAssociatedFileName()
394 SetDocumentSaved(true);
401 #if wxUSE_STD_IOSTREAM
402 wxSTD istream
& wxDocument::LoadObject(wxSTD istream
& stream
)
404 wxInputStream
& wxDocument::LoadObject(wxInputStream
& stream
)
410 #if wxUSE_STD_IOSTREAM
411 wxSTD ostream
& wxDocument::SaveObject(wxSTD ostream
& stream
)
413 wxOutputStream
& wxDocument::SaveObject(wxOutputStream
& stream
)
419 bool wxDocument::Revert()
425 // Get title, or filename if no title, else unnamed
426 #if WXWIN_COMPATIBILITY_2_8
427 bool wxDocument::GetPrintableName(wxString
& buf
) const
429 // this function can not only be overridden by the user code but also
430 // called by it so we need to ensure that we return the same thing as
431 // GetUserReadableName() but we can't call it because this would result in
432 // an infinite recursion, hence we use the helper DoGetUserReadableName()
433 buf
= DoGetUserReadableName();
437 #endif // WXWIN_COMPATIBILITY_2_8
439 wxString
wxDocument::GetUserReadableName() const
441 #if WXWIN_COMPATIBILITY_2_8
442 // we need to call the old virtual function to ensure that the overridden
443 // version of it is still called
445 if ( GetPrintableName(name
) )
447 #endif // WXWIN_COMPATIBILITY_2_8
449 return DoGetUserReadableName();
452 wxString
wxDocument::DoGetUserReadableName() const
454 if ( !m_documentTitle
.empty() )
455 return m_documentTitle
;
457 if ( !m_documentFile
.empty() )
458 return wxFileNameFromPath(m_documentFile
);
463 wxWindow
*wxDocument::GetDocumentWindow() const
465 wxView
* const view
= GetFirstView();
467 return view
? view
->GetFrame() : wxTheApp
->GetTopWindow();
470 wxCommandProcessor
*wxDocument::OnCreateCommandProcessor()
472 return new wxCommandProcessor
;
475 // true if safe to close
476 bool wxDocument::OnSaveModified()
480 switch ( wxMessageBox
484 _("Do you want to save changes to %s?"),
485 GetUserReadableName()
487 wxTheApp
->GetAppDisplayName(),
488 wxYES_NO
| wxCANCEL
| wxICON_QUESTION
| wxCENTRE
506 bool wxDocument::Draw(wxDC
& WXUNUSED(context
))
511 bool wxDocument::AddView(wxView
*view
)
513 if ( !m_documentViews
.Member(view
) )
515 m_documentViews
.Append(view
);
521 bool wxDocument::RemoveView(wxView
*view
)
523 (void)m_documentViews
.DeleteObject(view
);
528 bool wxDocument::OnCreate(const wxString
& WXUNUSED(path
), long flags
)
530 return GetDocumentTemplate()->CreateView(this, flags
) != NULL
;
533 // Called after a view is added or removed.
534 // The default implementation deletes the document if
535 // there are no more views.
536 void wxDocument::OnChangedViewList()
538 if ( m_documentViews
.empty() && OnSaveModified() )
542 void wxDocument::UpdateAllViews(wxView
*sender
, wxObject
*hint
)
544 wxList::compatibility_iterator node
= m_documentViews
.GetFirst();
547 wxView
*view
= (wxView
*)node
->GetData();
549 view
->OnUpdate(sender
, hint
);
550 node
= node
->GetNext();
554 void wxDocument::NotifyClosing()
556 wxList::compatibility_iterator node
= m_documentViews
.GetFirst();
559 wxView
*view
= (wxView
*)node
->GetData();
560 view
->OnClosingDocument();
561 node
= node
->GetNext();
565 void wxDocument::SetFilename(const wxString
& filename
, bool notifyViews
)
567 m_documentFile
= filename
;
568 OnChangeFilename(notifyViews
);
571 void wxDocument::OnChangeFilename(bool notifyViews
)
575 // Notify the views that the filename has changed
576 wxList::compatibility_iterator node
= m_documentViews
.GetFirst();
579 wxView
*view
= (wxView
*)node
->GetData();
580 view
->OnChangeFilename();
581 node
= node
->GetNext();
586 bool wxDocument::DoSaveDocument(const wxString
& file
)
588 #if wxUSE_STD_IOSTREAM
589 wxSTD ofstream
store(file
.mb_str(), wxSTD
ios::binary
);
592 wxFileOutputStream
store(file
);
593 if ( store
.GetLastError() != wxSTREAM_NO_ERROR
)
596 wxLogError(_("File \"%s\" could not be opened for writing."), file
);
600 if (!SaveObject(store
))
602 wxLogError(_("Failed to save document to the file \"%s\"."), file
);
609 bool wxDocument::DoOpenDocument(const wxString
& file
)
611 #if wxUSE_STD_IOSTREAM
612 wxSTD ifstream
store(file
.mb_str(), wxSTD
ios::binary
);
615 wxFileInputStream
store(file
);
616 if (store
.GetLastError() != wxSTREAM_NO_ERROR
|| !store
.IsOk())
619 wxLogError(_("File \"%s\" could not be opened for reading."), file
);
623 #if wxUSE_STD_IOSTREAM
627 int res
= LoadObject(store
).GetLastError();
628 if ( res
!= wxSTREAM_NO_ERROR
&& res
!= wxSTREAM_EOF
)
631 wxLogError(_("Failed to read document from the file \"%s\"."), file
);
639 // ----------------------------------------------------------------------------
641 // ----------------------------------------------------------------------------
645 m_viewDocument
= NULL
;
649 m_docChildFrame
= NULL
;
654 if (m_viewDocument
&& GetDocumentManager())
655 GetDocumentManager()->ActivateView(this, false);
657 // reset our frame view first, before removing it from the document as
658 // SetView(NULL) is a simple call while RemoveView() may result in user
659 // code being executed and this user code can, for example, show a message
660 // box which would result in an activation event for m_docChildFrame and so
661 // could reactivate the view being destroyed -- unless we reset it first
662 if ( m_docChildFrame
&& m_docChildFrame
->GetView() == this )
664 // prevent it from doing anything with us
665 m_docChildFrame
->SetView(NULL
);
667 // it doesn't make sense to leave the frame alive if its associated
668 // view doesn't exist any more so unconditionally close it as well
670 // notice that we only get here if m_docChildFrame is non-NULL in the
671 // first place and it will be always NULL if we're deleted because our
672 // frame was closed, so this only catches the case of directly deleting
673 // the view, as it happens if its creation fails in wxDocTemplate::
674 // CreateView() for example
675 m_docChildFrame
->GetWindow()->Destroy();
678 if ( m_viewDocument
)
679 m_viewDocument
->RemoveView(this);
682 void wxView::SetDocChildFrame(wxDocChildFrameAnyBase
*docChildFrame
)
684 SetFrame(docChildFrame
? docChildFrame
->GetWindow() : NULL
);
685 m_docChildFrame
= docChildFrame
;
688 bool wxView::TryBefore(wxEvent
& event
)
690 wxDocument
* const doc
= GetDocument();
691 return doc
&& doc
->ProcessEventHere(event
);
694 void wxView::OnActivateView(bool WXUNUSED(activate
),
695 wxView
*WXUNUSED(activeView
),
696 wxView
*WXUNUSED(deactiveView
))
700 void wxView::OnPrint(wxDC
*dc
, wxObject
*WXUNUSED(info
))
705 void wxView::OnUpdate(wxView
*WXUNUSED(sender
), wxObject
*WXUNUSED(hint
))
709 void wxView::OnChangeFilename()
711 // GetFrame can return wxWindow rather than wxTopLevelWindow due to
712 // generic MDI implementation so use SetLabel rather than SetTitle.
713 // It should cause SetTitle() for top level windows.
714 wxWindow
*win
= GetFrame();
717 wxDocument
*doc
= GetDocument();
720 wxString label
= doc
->GetUserReadableName();
721 if (doc
->IsModified())
725 win
->SetLabel(label
);
728 void wxView::SetDocument(wxDocument
*doc
)
730 m_viewDocument
= doc
;
735 bool wxView::Close(bool deleteWindow
)
737 return OnClose(deleteWindow
);
740 void wxView::Activate(bool activate
)
742 if (GetDocument() && GetDocumentManager())
744 OnActivateView(activate
, this, GetDocumentManager()->GetCurrentView());
745 GetDocumentManager()->ActivateView(this, activate
);
749 bool wxView::OnClose(bool WXUNUSED(deleteWindow
))
751 return GetDocument() ? GetDocument()->Close() : true;
754 #if wxUSE_PRINTING_ARCHITECTURE
755 wxPrintout
*wxView::OnCreatePrintout()
757 return new wxDocPrintout(this);
759 #endif // wxUSE_PRINTING_ARCHITECTURE
761 // ----------------------------------------------------------------------------
763 // ----------------------------------------------------------------------------
765 wxDocTemplate::wxDocTemplate(wxDocManager
*manager
,
766 const wxString
& descr
,
767 const wxString
& filter
,
770 const wxString
& docTypeName
,
771 const wxString
& viewTypeName
,
772 wxClassInfo
*docClassInfo
,
773 wxClassInfo
*viewClassInfo
,
776 m_documentManager
= manager
;
777 m_description
= descr
;
780 m_fileFilter
= filter
;
782 m_docTypeName
= docTypeName
;
783 m_viewTypeName
= viewTypeName
;
784 m_documentManager
->AssociateTemplate(this);
786 m_docClassInfo
= docClassInfo
;
787 m_viewClassInfo
= viewClassInfo
;
790 wxDocTemplate::~wxDocTemplate()
792 m_documentManager
->DisassociateTemplate(this);
795 // Tries to dynamically construct an object of the right class.
796 wxDocument
*wxDocTemplate::CreateDocument(const wxString
& path
, long flags
)
798 // InitDocument() is supposed to delete the document object if its
799 // initialization fails so don't use wxScopedPtr<> here: this is fragile
800 // but unavoidable because the default implementation uses CreateView()
801 // which may -- or not -- create a wxView and if it does create it and its
802 // initialization fails then the view destructor will delete the document
803 // (via RemoveView()) and as we can't distinguish between the two cases we
804 // just have to assume that it always deletes it in case of failure
805 wxDocument
* const doc
= DoCreateDocument();
807 return doc
&& InitDocument(doc
, path
, flags
) ? doc
: NULL
;
811 wxDocTemplate::InitDocument(wxDocument
* doc
, const wxString
& path
, long flags
)
813 doc
->SetFilename(path
);
814 doc
->SetDocumentTemplate(this);
815 GetDocumentManager()->AddDocument(doc
);
816 doc
->SetCommandProcessor(doc
->OnCreateCommandProcessor());
818 if (doc
->OnCreate(path
, flags
))
821 if (GetDocumentManager()->GetDocuments().Member(doc
))
822 doc
->DeleteAllViews();
826 wxView
*wxDocTemplate::CreateView(wxDocument
*doc
, long flags
)
828 wxScopedPtr
<wxView
> view(DoCreateView());
832 view
->SetDocument(doc
);
833 if ( !view
->OnCreate(doc
, flags
) )
836 return view
.release();
839 // The default (very primitive) format detection: check is the extension is
840 // that of the template
841 bool wxDocTemplate::FileMatchesTemplate(const wxString
& path
)
843 wxStringTokenizer
parser (GetFileFilter(), wxT(";"));
844 wxString anything
= wxT ("*");
845 while (parser
.HasMoreTokens())
847 wxString filter
= parser
.GetNextToken();
848 wxString filterExt
= FindExtension (filter
);
849 if ( filter
.IsSameAs (anything
) ||
850 filterExt
.IsSameAs (anything
) ||
851 filterExt
.IsSameAs (FindExtension (path
)) )
854 return GetDefaultExtension().IsSameAs(FindExtension(path
));
857 wxDocument
*wxDocTemplate::DoCreateDocument()
862 return static_cast<wxDocument
*>(m_docClassInfo
->CreateObject());
865 wxView
*wxDocTemplate::DoCreateView()
867 if (!m_viewClassInfo
)
870 return static_cast<wxView
*>(m_viewClassInfo
->CreateObject());
873 // ----------------------------------------------------------------------------
875 // ----------------------------------------------------------------------------
877 BEGIN_EVENT_TABLE(wxDocManager
, wxEvtHandler
)
878 EVT_MENU(wxID_OPEN
, wxDocManager::OnFileOpen
)
879 EVT_MENU(wxID_CLOSE
, wxDocManager::OnFileClose
)
880 EVT_MENU(wxID_CLOSE_ALL
, wxDocManager::OnFileCloseAll
)
881 EVT_MENU(wxID_REVERT
, wxDocManager::OnFileRevert
)
882 EVT_MENU(wxID_NEW
, wxDocManager::OnFileNew
)
883 EVT_MENU(wxID_SAVE
, wxDocManager::OnFileSave
)
884 EVT_MENU(wxID_SAVEAS
, wxDocManager::OnFileSaveAs
)
885 EVT_MENU(wxID_UNDO
, wxDocManager::OnUndo
)
886 EVT_MENU(wxID_REDO
, wxDocManager::OnRedo
)
888 EVT_UPDATE_UI(wxID_OPEN
, wxDocManager::OnUpdateFileOpen
)
889 EVT_UPDATE_UI(wxID_CLOSE
, wxDocManager::OnUpdateDisableIfNoDoc
)
890 EVT_UPDATE_UI(wxID_CLOSE_ALL
, wxDocManager::OnUpdateDisableIfNoDoc
)
891 EVT_UPDATE_UI(wxID_REVERT
, wxDocManager::OnUpdateDisableIfNoDoc
)
892 EVT_UPDATE_UI(wxID_NEW
, wxDocManager::OnUpdateFileNew
)
893 EVT_UPDATE_UI(wxID_SAVE
, wxDocManager::OnUpdateFileSave
)
894 EVT_UPDATE_UI(wxID_SAVEAS
, wxDocManager::OnUpdateDisableIfNoDoc
)
895 EVT_UPDATE_UI(wxID_UNDO
, wxDocManager::OnUpdateUndo
)
896 EVT_UPDATE_UI(wxID_REDO
, wxDocManager::OnUpdateRedo
)
898 #if wxUSE_PRINTING_ARCHITECTURE
899 EVT_MENU(wxID_PRINT
, wxDocManager::OnPrint
)
900 EVT_MENU(wxID_PREVIEW
, wxDocManager::OnPreview
)
902 EVT_UPDATE_UI(wxID_PRINT
, wxDocManager::OnUpdateDisableIfNoDoc
)
903 EVT_UPDATE_UI(wxID_PREVIEW
, wxDocManager::OnUpdateDisableIfNoDoc
)
907 wxDocManager
* wxDocManager::sm_docManager
= NULL
;
909 wxDocManager::wxDocManager(long WXUNUSED(flags
), bool initialize
)
911 sm_docManager
= this;
913 m_defaultDocumentNameCounter
= 1;
914 m_currentView
= NULL
;
915 m_maxDocsOpen
= INT_MAX
;
916 m_fileHistory
= NULL
;
921 wxDocManager::~wxDocManager()
924 delete m_fileHistory
;
925 sm_docManager
= NULL
;
928 // closes the specified document
929 bool wxDocManager::CloseDocument(wxDocument
* doc
, bool force
)
931 if ( !doc
->Close() && !force
)
934 // Implicitly deletes the document when
935 // the last view is deleted
936 doc
->DeleteAllViews();
938 // Check we're really deleted
939 if (m_docs
.Member(doc
))
945 bool wxDocManager::CloseDocuments(bool force
)
947 wxList::compatibility_iterator node
= m_docs
.GetFirst();
950 wxDocument
*doc
= (wxDocument
*)node
->GetData();
951 wxList::compatibility_iterator next
= node
->GetNext();
953 if (!CloseDocument(doc
, force
))
956 // This assumes that documents are not connected in
957 // any way, i.e. deleting one document does NOT
964 bool wxDocManager::Clear(bool force
)
966 if (!CloseDocuments(force
))
969 m_currentView
= NULL
;
971 wxList::compatibility_iterator node
= m_templates
.GetFirst();
974 wxDocTemplate
*templ
= (wxDocTemplate
*) node
->GetData();
975 wxList::compatibility_iterator next
= node
->GetNext();
982 bool wxDocManager::Initialize()
984 m_fileHistory
= OnCreateFileHistory();
988 wxString
wxDocManager::GetLastDirectory() const
990 // if we haven't determined the last used directory yet, do it now
991 if ( m_lastDirectory
.empty() )
993 // we're going to modify m_lastDirectory in this const method, so do it
994 // via non-const self pointer instead of const this one
995 wxDocManager
* const self
= const_cast<wxDocManager
*>(this);
997 // first try to reuse the directory of the most recently opened file:
998 // this ensures that if the user opens a file, closes the program and
999 // runs it again the "Open file" dialog will open in the directory of
1000 // the last file he used
1001 if ( m_fileHistory
&& m_fileHistory
->GetCount() )
1003 const wxString lastOpened
= m_fileHistory
->GetHistoryFile(0);
1004 const wxFileName
fn(lastOpened
);
1005 if ( fn
.DirExists() )
1007 self
->m_lastDirectory
= fn
.GetPath();
1009 //else: should we try the next one?
1011 //else: no history yet
1013 // if we don't have any files in the history (yet?), use the
1014 // system-dependent default location for the document files
1015 if ( m_lastDirectory
.empty() )
1017 self
->m_lastDirectory
= wxStandardPaths::Get().GetAppDocumentsDir();
1021 return m_lastDirectory
;
1024 wxFileHistory
*wxDocManager::OnCreateFileHistory()
1026 return new wxFileHistory
;
1029 void wxDocManager::OnFileClose(wxCommandEvent
& WXUNUSED(event
))
1031 wxDocument
*doc
= GetCurrentDocument();
1036 doc
->DeleteAllViews();
1037 if (m_docs
.Member(doc
))
1042 void wxDocManager::OnFileCloseAll(wxCommandEvent
& WXUNUSED(event
))
1044 CloseDocuments(false);
1047 void wxDocManager::OnFileNew(wxCommandEvent
& WXUNUSED(event
))
1049 CreateNewDocument();
1052 void wxDocManager::OnFileOpen(wxCommandEvent
& WXUNUSED(event
))
1054 if ( !CreateDocument("") )
1056 OnOpenFileFailure();
1060 void wxDocManager::OnFileRevert(wxCommandEvent
& WXUNUSED(event
))
1062 wxDocument
*doc
= GetCurrentDocument();
1068 void wxDocManager::OnFileSave(wxCommandEvent
& WXUNUSED(event
))
1070 wxDocument
*doc
= GetCurrentDocument();
1076 void wxDocManager::OnFileSaveAs(wxCommandEvent
& WXUNUSED(event
))
1078 wxDocument
*doc
= GetCurrentDocument();
1084 void wxDocManager::OnPrint(wxCommandEvent
& WXUNUSED(event
))
1086 #if wxUSE_PRINTING_ARCHITECTURE
1087 wxView
*view
= GetActiveView();
1091 wxPrintout
*printout
= view
->OnCreatePrintout();
1095 printer
.Print(view
->GetFrame(), printout
, true);
1099 #endif // wxUSE_PRINTING_ARCHITECTURE
1102 void wxDocManager::OnPreview(wxCommandEvent
& WXUNUSED(event
))
1104 #if wxUSE_PRINTING_ARCHITECTURE
1106 wxView
*view
= GetActiveView();
1110 wxPrintout
*printout
= view
->OnCreatePrintout();
1113 // Pass two printout objects: for preview, and possible printing.
1114 wxPrintPreviewBase
*
1115 preview
= new wxPrintPreview(printout
, view
->OnCreatePrintout());
1116 if ( !preview
->Ok() )
1119 wxLogError(_("Print preview creation failed."));
1124 frame
= new wxPreviewFrame(preview
, wxTheApp
->GetTopWindow(),
1125 _("Print Preview"));
1126 frame
->Centre(wxBOTH
);
1127 frame
->Initialize();
1130 #endif // wxUSE_PRINTING_ARCHITECTURE
1133 void wxDocManager::OnUndo(wxCommandEvent
& event
)
1135 wxCommandProcessor
* const cmdproc
= GetCurrentCommandProcessor();
1145 void wxDocManager::OnRedo(wxCommandEvent
& event
)
1147 wxCommandProcessor
* const cmdproc
= GetCurrentCommandProcessor();
1157 // Handlers for UI update commands
1159 void wxDocManager::OnUpdateFileOpen(wxUpdateUIEvent
& event
)
1161 // CreateDocument() (which is called from OnFileOpen) may succeed
1162 // only when there is at least a template:
1163 event
.Enable( GetTemplates().GetCount()>0 );
1166 void wxDocManager::OnUpdateDisableIfNoDoc(wxUpdateUIEvent
& event
)
1168 event
.Enable( GetCurrentDocument() != NULL
);
1171 void wxDocManager::OnUpdateFileNew(wxUpdateUIEvent
& event
)
1173 // CreateDocument() (which is called from OnFileNew) may succeed
1174 // only when there is at least a template:
1175 event
.Enable( GetTemplates().GetCount()>0 );
1178 void wxDocManager::OnUpdateFileSave(wxUpdateUIEvent
& event
)
1180 wxDocument
* const doc
= GetCurrentDocument();
1181 event
.Enable( doc
&& !doc
->AlreadySaved() );
1184 void wxDocManager::OnUpdateUndo(wxUpdateUIEvent
& event
)
1186 wxCommandProcessor
* const cmdproc
= GetCurrentCommandProcessor();
1189 event
.Enable(false);
1193 event
.Enable(cmdproc
->CanUndo());
1194 cmdproc
->SetMenuStrings();
1197 void wxDocManager::OnUpdateRedo(wxUpdateUIEvent
& event
)
1199 wxCommandProcessor
* const cmdproc
= GetCurrentCommandProcessor();
1202 event
.Enable(false);
1206 event
.Enable(cmdproc
->CanRedo());
1207 cmdproc
->SetMenuStrings();
1210 wxView
*wxDocManager::GetActiveView() const
1212 wxView
*view
= GetCurrentView();
1214 if ( !view
&& !m_docs
.empty() )
1216 // if we have exactly one document, consider its view to be the current
1219 // VZ: I'm not exactly sure why is this needed but this is how this
1220 // code used to behave before the bug #9518 was fixed and it seems
1221 // safer to preserve the old logic
1222 wxList::compatibility_iterator node
= m_docs
.GetFirst();
1223 if ( !node
->GetNext() )
1225 wxDocument
*doc
= static_cast<wxDocument
*>(node
->GetData());
1226 view
= doc
->GetFirstView();
1228 //else: we have more than one document
1234 bool wxDocManager::TryBefore(wxEvent
& event
)
1236 wxView
* const view
= GetActiveView();
1237 return view
&& view
->ProcessEventHere(event
);
1243 // helper function: return only the visible templates
1244 wxDocTemplates
GetVisibleTemplates(const wxList
& allTemplates
)
1246 // select only the visible templates
1247 const size_t totalNumTemplates
= allTemplates
.GetCount();
1248 wxDocTemplates templates
;
1249 if ( totalNumTemplates
)
1251 templates
.reserve(totalNumTemplates
);
1253 for ( wxList::const_iterator i
= allTemplates
.begin(),
1254 end
= allTemplates
.end();
1258 wxDocTemplate
* const temp
= (wxDocTemplate
*)*i
;
1259 if ( temp
->IsVisible() )
1260 templates
.push_back(temp
);
1267 } // anonymous namespace
1269 wxDocument
*wxDocManager::CreateDocument(const wxString
& pathOrig
, long flags
)
1271 // this ought to be const but SelectDocumentType/Path() are not
1272 // const-correct and can't be changed as, being virtual, this risks
1273 // breaking user code overriding them
1274 wxDocTemplates
templates(GetVisibleTemplates(m_templates
));
1275 const size_t numTemplates
= templates
.size();
1276 if ( !numTemplates
)
1278 // no templates can be used, can't create document
1283 // normally user should select the template to use but wxDOC_SILENT flag we
1284 // choose one ourselves
1285 wxString path
= pathOrig
; // may be modified below
1286 wxDocTemplate
*temp
;
1287 if ( flags
& wxDOC_SILENT
)
1289 wxASSERT_MSG( !path
.empty(),
1290 "using empty path with wxDOC_SILENT doesn't make sense" );
1292 temp
= FindTemplateForPath(path
);
1295 wxLogWarning(_("The format of file '%s' couldn't be determined."),
1299 else // not silent, ask the user
1301 // for the new file we need just the template, for an existing one we
1302 // need the template and the path, unless it's already specified
1303 if ( (flags
& wxDOC_NEW
) || !path
.empty() )
1304 temp
= SelectDocumentType(&templates
[0], numTemplates
);
1306 temp
= SelectDocumentPath(&templates
[0], numTemplates
, path
, flags
);
1312 // check whether the document with this path is already opened
1313 if ( !path
.empty() )
1315 const wxFileName
fn(path
);
1316 for ( wxList::const_iterator i
= m_docs
.begin(); i
!= m_docs
.end(); ++i
)
1318 wxDocument
* const doc
= (wxDocument
*)*i
;
1320 if ( fn
== doc
->GetFilename() )
1322 // file already open, just activate it and return
1323 if ( doc
->GetFirstView() )
1325 ActivateView(doc
->GetFirstView());
1326 if ( doc
->GetDocumentWindow() )
1327 doc
->GetDocumentWindow()->SetFocus();
1335 // no, we need to create a new document
1338 // if we've reached the max number of docs, close the first one.
1339 if ( (int)GetDocuments().GetCount() >= m_maxDocsOpen
)
1341 if ( !CloseDocument((wxDocument
*)GetDocuments().GetFirst()->GetData()) )
1343 // can't open the new document if closing the old one failed
1349 // do create and initialize the new document finally
1350 wxDocument
* const docNew
= temp
->CreateDocument(path
, flags
);
1354 docNew
->SetDocumentName(temp
->GetDocumentName());
1355 docNew
->SetDocumentTemplate(temp
);
1359 // call the appropriate function depending on whether we're creating a
1360 // new file or opening an existing one
1361 if ( !(flags
& wxDOC_NEW
? docNew
->OnNewDocument()
1362 : docNew
->OnOpenDocument(path
)) )
1364 docNew
->DeleteAllViews();
1368 wxCATCH_ALL( docNew
->DeleteAllViews(); throw; )
1370 // add the successfully opened file to MRU, but only if we're going to be
1371 // able to reopen it successfully later which requires the template for
1372 // this document to be retrievable from the file extension
1373 if ( !(flags
& wxDOC_NEW
) && temp
->FileMatchesTemplate(path
) )
1374 AddFileToHistory(path
);
1379 wxView
*wxDocManager::CreateView(wxDocument
*doc
, long flags
)
1381 wxDocTemplates
templates(GetVisibleTemplates(m_templates
));
1382 const size_t numTemplates
= templates
.size();
1384 if ( numTemplates
== 0 )
1387 wxDocTemplate
* const
1388 temp
= numTemplates
== 1 ? templates
[0]
1389 : SelectViewType(&templates
[0], numTemplates
);
1394 wxView
*view
= temp
->CreateView(doc
, flags
);
1396 view
->SetViewName(temp
->GetViewName());
1400 // Not yet implemented
1402 wxDocManager::DeleteTemplate(wxDocTemplate
*WXUNUSED(temp
), long WXUNUSED(flags
))
1406 // Not yet implemented
1407 bool wxDocManager::FlushDoc(wxDocument
*WXUNUSED(doc
))
1412 wxDocument
*wxDocManager::GetCurrentDocument() const
1414 wxView
* const view
= GetActiveView();
1415 return view
? view
->GetDocument() : NULL
;
1418 wxCommandProcessor
*wxDocManager::GetCurrentCommandProcessor() const
1420 wxDocument
* const doc
= GetCurrentDocument();
1421 return doc
? doc
->GetCommandProcessor() : NULL
;
1424 // Make a default name for a new document
1425 #if WXWIN_COMPATIBILITY_2_8
1426 bool wxDocManager::MakeDefaultName(wxString
& WXUNUSED(name
))
1428 // we consider that this function can only be overridden by the user code,
1429 // not called by it as it only makes sense to call it internally, so we
1430 // don't bother to return anything from here
1433 #endif // WXWIN_COMPATIBILITY_2_8
1435 wxString
wxDocManager::MakeNewDocumentName()
1439 #if WXWIN_COMPATIBILITY_2_8
1440 if ( !MakeDefaultName(name
) )
1441 #endif // WXWIN_COMPATIBILITY_2_8
1443 name
.Printf(_("unnamed%d"), m_defaultDocumentNameCounter
);
1444 m_defaultDocumentNameCounter
++;
1450 // Make a frame title (override this to do something different)
1451 // If docName is empty, a document is not currently active.
1452 wxString
wxDocManager::MakeFrameTitle(wxDocument
* doc
)
1454 wxString appName
= wxTheApp
->GetAppDisplayName();
1460 wxString docName
= doc
->GetUserReadableName();
1461 title
= docName
+ wxString(_(" - ")) + appName
;
1467 // Not yet implemented
1468 wxDocTemplate
*wxDocManager::MatchTemplate(const wxString
& WXUNUSED(path
))
1473 // File history management
1474 void wxDocManager::AddFileToHistory(const wxString
& file
)
1477 m_fileHistory
->AddFileToHistory(file
);
1480 void wxDocManager::RemoveFileFromHistory(size_t i
)
1483 m_fileHistory
->RemoveFileFromHistory(i
);
1486 wxString
wxDocManager::GetHistoryFile(size_t i
) const
1491 histFile
= m_fileHistory
->GetHistoryFile(i
);
1496 void wxDocManager::FileHistoryUseMenu(wxMenu
*menu
)
1499 m_fileHistory
->UseMenu(menu
);
1502 void wxDocManager::FileHistoryRemoveMenu(wxMenu
*menu
)
1505 m_fileHistory
->RemoveMenu(menu
);
1509 void wxDocManager::FileHistoryLoad(const wxConfigBase
& config
)
1512 m_fileHistory
->Load(config
);
1515 void wxDocManager::FileHistorySave(wxConfigBase
& config
)
1518 m_fileHistory
->Save(config
);
1522 void wxDocManager::FileHistoryAddFilesToMenu(wxMenu
* menu
)
1525 m_fileHistory
->AddFilesToMenu(menu
);
1528 void wxDocManager::FileHistoryAddFilesToMenu()
1531 m_fileHistory
->AddFilesToMenu();
1534 size_t wxDocManager::GetHistoryFilesCount() const
1536 return m_fileHistory
? m_fileHistory
->GetCount() : 0;
1540 // Find out the document template via matching in the document file format
1541 // against that of the template
1542 wxDocTemplate
*wxDocManager::FindTemplateForPath(const wxString
& path
)
1544 wxDocTemplate
*theTemplate
= NULL
;
1546 // Find the template which this extension corresponds to
1547 for (size_t i
= 0; i
< m_templates
.GetCount(); i
++)
1549 wxDocTemplate
*temp
= (wxDocTemplate
*)m_templates
.Item(i
)->GetData();
1550 if ( temp
->FileMatchesTemplate(path
) )
1559 // Prompts user to open a file, using file specs in templates.
1560 // Must extend the file selector dialog or implement own; OR
1561 // match the extension to the template extension.
1563 wxDocTemplate
*wxDocManager::SelectDocumentPath(wxDocTemplate
**templates
,
1566 long WXUNUSED(flags
),
1567 bool WXUNUSED(save
))
1569 #ifdef wxHAS_MULTIPLE_FILEDLG_FILTERS
1572 for (int i
= 0; i
< noTemplates
; i
++)
1574 if (templates
[i
]->IsVisible())
1576 // add a '|' to separate this filter from the previous one
1577 if ( !descrBuf
.empty() )
1578 descrBuf
<< wxT('|');
1580 descrBuf
<< templates
[i
]->GetDescription()
1581 << wxT(" (") << templates
[i
]->GetFileFilter() << wxT(") |")
1582 << templates
[i
]->GetFileFilter();
1586 wxString descrBuf
= wxT("*.*");
1587 wxUnusedVar(noTemplates
);
1590 int FilterIndex
= -1;
1592 wxString pathTmp
= wxFileSelectorEx(_("Open File"),
1598 wxDocTemplate
*theTemplate
= NULL
;
1599 if (!pathTmp
.empty())
1601 if (!wxFileExists(pathTmp
))
1604 if (!wxTheApp
->GetAppDisplayName().empty())
1605 msgTitle
= wxTheApp
->GetAppDisplayName();
1607 msgTitle
= wxString(_("File error"));
1609 wxMessageBox(_("Sorry, could not open this file."),
1611 wxOK
| wxICON_EXCLAMATION
| wxCENTRE
);
1613 path
= wxEmptyString
;
1617 SetLastDirectory(wxPathOnly(pathTmp
));
1621 // first choose the template using the extension, if this fails (i.e.
1622 // wxFileSelectorEx() didn't fill it), then use the path
1623 if ( FilterIndex
!= -1 )
1624 theTemplate
= templates
[FilterIndex
];
1626 theTemplate
= FindTemplateForPath(path
);
1629 // Since we do not add files with non-default extensions to the
1630 // file history this can only happen if the application changes the
1631 // allowed templates in runtime.
1632 wxMessageBox(_("Sorry, the format for this file is unknown."),
1634 wxOK
| wxICON_EXCLAMATION
| wxCENTRE
);
1645 wxDocTemplate
*wxDocManager::SelectDocumentType(wxDocTemplate
**templates
,
1646 int noTemplates
, bool sort
)
1648 wxArrayString strings
;
1649 wxScopedArray
<wxDocTemplate
*> data(new wxDocTemplate
*[noTemplates
]);
1653 for (i
= 0; i
< noTemplates
; i
++)
1655 if (templates
[i
]->IsVisible())
1659 for (j
= 0; j
< n
; j
++)
1661 //filter out NOT unique documents + view combinations
1662 if ( templates
[i
]->m_docTypeName
== data
[j
]->m_docTypeName
&&
1663 templates
[i
]->m_viewTypeName
== data
[j
]->m_viewTypeName
1670 strings
.Add(templates
[i
]->m_description
);
1672 data
[n
] = templates
[i
];
1680 strings
.Sort(); // ascending sort
1681 // Yes, this will be slow, but template lists
1682 // are typically short.
1684 n
= strings
.Count();
1685 for (i
= 0; i
< n
; i
++)
1687 for (j
= 0; j
< noTemplates
; j
++)
1689 if (strings
[i
] == templates
[j
]->m_description
)
1690 data
[i
] = templates
[j
];
1695 wxDocTemplate
*theTemplate
;
1700 // no visible templates, hence nothing to choose from
1705 // don't propose the user to choose if he has no choice
1706 theTemplate
= data
[0];
1710 // propose the user to choose one of several
1711 theTemplate
= (wxDocTemplate
*)wxGetSingleChoiceData
1713 _("Select a document template"),
1723 wxDocTemplate
*wxDocManager::SelectViewType(wxDocTemplate
**templates
,
1724 int noTemplates
, bool sort
)
1726 wxArrayString strings
;
1727 wxScopedArray
<wxDocTemplate
*> data(new wxDocTemplate
*[noTemplates
]);
1731 for (i
= 0; i
< noTemplates
; i
++)
1733 wxDocTemplate
*templ
= templates
[i
];
1734 if ( templ
->IsVisible() && !templ
->GetViewName().empty() )
1738 for (j
= 0; j
< n
; j
++)
1740 //filter out NOT unique views
1741 if ( templates
[i
]->m_viewTypeName
== data
[j
]->m_viewTypeName
)
1747 strings
.Add(templ
->m_viewTypeName
);
1756 strings
.Sort(); // ascending sort
1757 // Yes, this will be slow, but template lists
1758 // are typically short.
1760 n
= strings
.Count();
1761 for (i
= 0; i
< n
; i
++)
1763 for (j
= 0; j
< noTemplates
; j
++)
1765 if (strings
[i
] == templates
[j
]->m_viewTypeName
)
1766 data
[i
] = templates
[j
];
1771 wxDocTemplate
*theTemplate
;
1773 // the same logic as above
1781 theTemplate
= data
[0];
1785 theTemplate
= (wxDocTemplate
*)wxGetSingleChoiceData
1787 _("Select a document view"),
1798 void wxDocManager::AssociateTemplate(wxDocTemplate
*temp
)
1800 if (!m_templates
.Member(temp
))
1801 m_templates
.Append(temp
);
1804 void wxDocManager::DisassociateTemplate(wxDocTemplate
*temp
)
1806 m_templates
.DeleteObject(temp
);
1809 // Add and remove a document from the manager's list
1810 void wxDocManager::AddDocument(wxDocument
*doc
)
1812 if (!m_docs
.Member(doc
))
1816 void wxDocManager::RemoveDocument(wxDocument
*doc
)
1818 m_docs
.DeleteObject(doc
);
1821 // Views or windows should inform the document manager
1822 // when a view is going in or out of focus
1823 void wxDocManager::ActivateView(wxView
*view
, bool activate
)
1827 m_currentView
= view
;
1831 if ( m_currentView
== view
)
1833 // don't keep stale pointer
1834 m_currentView
= NULL
;
1839 // ----------------------------------------------------------------------------
1840 // wxDocChildFrameAnyBase
1841 // ----------------------------------------------------------------------------
1843 bool wxDocChildFrameAnyBase::CloseView(wxCloseEvent
& event
)
1847 if ( event
.CanVeto() && !m_childView
->Close(false) )
1853 m_childView
->Activate(false);
1855 // it is important to reset m_childView frame pointer to NULL before
1856 // deleting it because while normally it is the frame which deletes the
1857 // view when it's closed, the view also closes the frame if it is
1858 // deleted directly not by us as indicated by its doc child frame
1859 // pointer still being set
1860 m_childView
->SetDocChildFrame(NULL
);
1865 m_childDocument
= NULL
;
1870 // ----------------------------------------------------------------------------
1871 // Default parent frame
1872 // ----------------------------------------------------------------------------
1874 BEGIN_EVENT_TABLE(wxDocParentFrame
, wxFrame
)
1875 EVT_MENU(wxID_EXIT
, wxDocParentFrame::OnExit
)
1876 EVT_MENU_RANGE(wxID_FILE1
, wxID_FILE9
, wxDocParentFrame::OnMRUFile
)
1877 EVT_CLOSE(wxDocParentFrame::OnCloseWindow
)
1880 wxDocParentFrame::wxDocParentFrame()
1882 m_docManager
= NULL
;
1885 wxDocParentFrame::wxDocParentFrame(wxDocManager
*manager
,
1888 const wxString
& title
,
1892 const wxString
& name
)
1893 : wxFrame(frame
, id
, title
, pos
, size
, style
, name
)
1895 m_docManager
= manager
;
1898 bool wxDocParentFrame::Create(wxDocManager
*manager
,
1901 const wxString
& title
,
1905 const wxString
& name
)
1907 m_docManager
= manager
;
1908 return base_type::Create(frame
, id
, title
, pos
, size
, style
, name
);
1911 void wxDocParentFrame::OnExit(wxCommandEvent
& WXUNUSED(event
))
1916 void wxDocParentFrame::OnMRUFile(wxCommandEvent
& event
)
1918 int n
= event
.GetId() - wxID_FILE1
; // the index in MRU list
1919 wxString
filename(m_docManager
->GetHistoryFile(n
));
1920 if ( filename
.empty() )
1923 wxString errMsg
; // must contain exactly one "%s" if non-empty
1924 if ( wxFile::Exists(filename
) )
1927 if ( m_docManager
->CreateDocument(filename
, wxDOC_SILENT
) )
1930 errMsg
= _("The file '%s' couldn't be opened.");
1932 else // file doesn't exist
1934 errMsg
= _("The file '%s' doesn't exist and couldn't be opened.");
1938 wxASSERT_MSG( !errMsg
.empty(), "should have an error message" );
1940 // remove the file which we can't open from the MRU list
1941 m_docManager
->RemoveFileFromHistory(n
);
1943 // and tell the user about it
1944 wxLogError(errMsg
+ '\n' +
1945 _("It has been removed from the most recently used files list."),
1949 // Extend event processing to search the view's event table
1950 bool wxDocParentFrame::TryBefore(wxEvent
& event
)
1952 if ( m_docManager
&& m_docManager
->ProcessEventHere(event
) )
1955 return wxFrame::TryBefore(event
);
1958 // Define the behaviour for the frame closing
1959 // - must delete all frames except for the main one.
1960 void wxDocParentFrame::OnCloseWindow(wxCloseEvent
& event
)
1962 if (m_docManager
->Clear(!event
.CanVeto()))
1970 #if wxUSE_PRINTING_ARCHITECTURE
1972 wxDocPrintout::wxDocPrintout(wxView
*view
, const wxString
& title
)
1975 m_printoutView
= view
;
1978 bool wxDocPrintout::OnPrintPage(int WXUNUSED(page
))
1982 // Get the logical pixels per inch of screen and printer
1983 int ppiScreenX
, ppiScreenY
;
1984 GetPPIScreen(&ppiScreenX
, &ppiScreenY
);
1985 wxUnusedVar(ppiScreenY
);
1986 int ppiPrinterX
, ppiPrinterY
;
1987 GetPPIPrinter(&ppiPrinterX
, &ppiPrinterY
);
1988 wxUnusedVar(ppiPrinterY
);
1990 // This scales the DC so that the printout roughly represents the
1991 // the screen scaling. The text point size _should_ be the right size
1992 // but in fact is too small for some reason. This is a detail that will
1993 // need to be addressed at some point but can be fudged for the
1995 float scale
= (float)((float)ppiPrinterX
/(float)ppiScreenX
);
1997 // Now we have to check in case our real page size is reduced
1998 // (e.g. because we're drawing to a print preview memory DC)
1999 int pageWidth
, pageHeight
;
2001 dc
->GetSize(&w
, &h
);
2002 GetPageSizePixels(&pageWidth
, &pageHeight
);
2003 wxUnusedVar(pageHeight
);
2005 // If printer pageWidth == current DC width, then this doesn't
2006 // change. But w might be the preview bitmap width, so scale down.
2007 float overallScale
= scale
* (float)(w
/(float)pageWidth
);
2008 dc
->SetUserScale(overallScale
, overallScale
);
2012 m_printoutView
->OnDraw(dc
);
2017 bool wxDocPrintout::HasPage(int pageNum
)
2019 return (pageNum
== 1);
2022 bool wxDocPrintout::OnBeginDocument(int startPage
, int endPage
)
2024 if (!wxPrintout::OnBeginDocument(startPage
, endPage
))
2030 void wxDocPrintout::GetPageInfo(int *minPage
, int *maxPage
,
2031 int *selPageFrom
, int *selPageTo
)
2039 #endif // wxUSE_PRINTING_ARCHITECTURE
2041 // ----------------------------------------------------------------------------
2042 // File history (a.k.a. MRU, most recently used, files list)
2043 // ----------------------------------------------------------------------------
2045 wxFileHistory::wxFileHistory(size_t maxFiles
, wxWindowID idBase
)
2047 m_fileMaxFiles
= maxFiles
;
2051 void wxFileHistory::AddFileToHistory(const wxString
& file
)
2053 // check if we don't already have this file
2054 const wxFileName
fnNew(file
);
2056 numFiles
= m_fileHistory
.size();
2057 for ( i
= 0; i
< numFiles
; i
++ )
2059 if ( fnNew
== m_fileHistory
[i
] )
2061 // we do have it, move it to the top of the history
2062 RemoveFileFromHistory(i
);
2068 // if we already have a full history, delete the one at the end
2069 if ( numFiles
== m_fileMaxFiles
)
2071 RemoveFileFromHistory(--numFiles
);
2074 // add a new menu item to all file menus (they will be updated below)
2075 for ( wxList::compatibility_iterator node
= m_fileMenus
.GetFirst();
2077 node
= node
->GetNext() )
2079 wxMenu
* const menu
= (wxMenu
*)node
->GetData();
2081 if ( !numFiles
&& menu
->GetMenuItemCount() )
2082 menu
->AppendSeparator();
2084 // label doesn't matter, it will be set below anyhow, but it can't
2085 // be empty (this is supposed to indicate a stock item)
2086 menu
->Append(m_idBase
+ numFiles
, " ");
2089 // insert the new file in the beginning of the file history
2090 m_fileHistory
.insert(m_fileHistory
.begin(), file
);
2093 // update the labels in all menus
2094 for ( i
= 0; i
< numFiles
; i
++ )
2096 // if in same directory just show the filename; otherwise the full path
2097 const wxFileName
fnOld(m_fileHistory
[i
]);
2099 wxString pathInMenu
;
2100 if ( fnOld
.GetPath() == fnNew
.GetPath() )
2102 pathInMenu
= fnOld
.GetFullName();
2104 else // file in different directory
2106 // absolute path; could also set relative path
2107 pathInMenu
= m_fileHistory
[i
];
2110 for ( wxList::compatibility_iterator node
= m_fileMenus
.GetFirst();
2112 node
= node
->GetNext() )
2114 wxMenu
* const menu
= (wxMenu
*)node
->GetData();
2116 menu
->SetLabel(m_idBase
+ i
, GetMRUEntryLabel(i
, pathInMenu
));
2121 void wxFileHistory::RemoveFileFromHistory(size_t i
)
2123 size_t numFiles
= m_fileHistory
.size();
2124 wxCHECK_RET( i
< numFiles
,
2125 wxT("invalid index in wxFileHistory::RemoveFileFromHistory") );
2127 // delete the element from the array
2128 m_fileHistory
.RemoveAt(i
);
2131 for ( wxList::compatibility_iterator node
= m_fileMenus
.GetFirst();
2133 node
= node
->GetNext() )
2135 wxMenu
* const menu
= (wxMenu
*) node
->GetData();
2137 // shift filenames up
2138 for ( size_t j
= i
; j
< numFiles
; j
++ )
2140 menu
->SetLabel(m_idBase
+ j
, GetMRUEntryLabel(j
, m_fileHistory
[j
]));
2143 // delete the last menu item which is unused now
2144 const wxWindowID lastItemId
= m_idBase
+ numFiles
;
2145 if ( menu
->FindItem(lastItemId
) )
2146 menu
->Delete(lastItemId
);
2148 // delete the last separator too if no more files are left
2149 if ( m_fileHistory
.empty() )
2151 const wxMenuItemList::compatibility_iterator
2152 nodeLast
= menu
->GetMenuItems().GetLast();
2155 wxMenuItem
* const lastMenuItem
= nodeLast
->GetData();
2156 if ( lastMenuItem
->IsSeparator() )
2157 menu
->Delete(lastMenuItem
);
2159 //else: menu is empty somehow
2164 void wxFileHistory::UseMenu(wxMenu
*menu
)
2166 if ( !m_fileMenus
.Member(menu
) )
2167 m_fileMenus
.Append(menu
);
2170 void wxFileHistory::RemoveMenu(wxMenu
*menu
)
2172 m_fileMenus
.DeleteObject(menu
);
2176 void wxFileHistory::Load(const wxConfigBase
& config
)
2178 m_fileHistory
.Clear();
2181 buf
.Printf(wxT("file%d"), 1);
2183 wxString historyFile
;
2184 while ((m_fileHistory
.GetCount() < m_fileMaxFiles
) &&
2185 config
.Read(buf
, &historyFile
) && !historyFile
.empty())
2187 m_fileHistory
.Add(historyFile
);
2189 buf
.Printf(wxT("file%d"), (int)m_fileHistory
.GetCount()+1);
2190 historyFile
= wxEmptyString
;
2196 void wxFileHistory::Save(wxConfigBase
& config
)
2199 for (i
= 0; i
< m_fileMaxFiles
; i
++)
2202 buf
.Printf(wxT("file%d"), (int)i
+1);
2203 if (i
< m_fileHistory
.GetCount())
2204 config
.Write(buf
, wxString(m_fileHistory
[i
]));
2206 config
.Write(buf
, wxEmptyString
);
2209 #endif // wxUSE_CONFIG
2211 void wxFileHistory::AddFilesToMenu()
2213 if ( m_fileHistory
.empty() )
2216 for ( wxList::compatibility_iterator node
= m_fileMenus
.GetFirst();
2218 node
= node
->GetNext() )
2220 AddFilesToMenu((wxMenu
*) node
->GetData());
2224 void wxFileHistory::AddFilesToMenu(wxMenu
* menu
)
2226 if ( m_fileHistory
.empty() )
2229 if ( menu
->GetMenuItemCount() )
2230 menu
->AppendSeparator();
2232 for ( size_t i
= 0; i
< m_fileHistory
.GetCount(); i
++ )
2234 menu
->Append(m_idBase
+ i
, GetMRUEntryLabel(i
, m_fileHistory
[i
]));
2238 // ----------------------------------------------------------------------------
2239 // Permits compatibility with existing file formats and functions that
2240 // manipulate files directly
2241 // ----------------------------------------------------------------------------
2243 #if wxUSE_STD_IOSTREAM
2245 bool wxTransferFileToStream(const wxString
& filename
, wxSTD ostream
& stream
)
2248 wxFFile
file(filename
, wxT("rb"));
2250 wxFile
file(filename
, wxFile::read
);
2252 if ( !file
.IsOpened() )
2260 nRead
= file
.Read(buf
, WXSIZEOF(buf
));
2264 stream
.write(buf
, nRead
);
2268 while ( !file
.Eof() );
2273 bool wxTransferStreamToFile(wxSTD istream
& stream
, const wxString
& filename
)
2276 wxFFile
file(filename
, wxT("wb"));
2278 wxFile
file(filename
, wxFile::write
);
2280 if ( !file
.IsOpened() )
2286 stream
.read(buf
, WXSIZEOF(buf
));
2287 if ( !stream
.bad() ) // fail may be set on EOF, don't use operator!()
2289 if ( !file
.Write(buf
, stream
.gcount()) )
2293 while ( !stream
.eof() );
2298 #else // !wxUSE_STD_IOSTREAM
2300 bool wxTransferFileToStream(const wxString
& filename
, wxOutputStream
& stream
)
2303 wxFFile
file(filename
, wxT("rb"));
2305 wxFile
file(filename
, wxFile::read
);
2307 if ( !file
.IsOpened() )
2315 nRead
= file
.Read(buf
, WXSIZEOF(buf
));
2319 stream
.Write(buf
, nRead
);
2323 while ( !file
.Eof() );
2328 bool wxTransferStreamToFile(wxInputStream
& stream
, const wxString
& filename
)
2331 wxFFile
file(filename
, wxT("wb"));
2333 wxFile
file(filename
, wxFile::write
);
2335 if ( !file
.IsOpened() )
2341 stream
.Read(buf
, WXSIZEOF(buf
));
2343 const size_t nRead
= stream
.LastRead();
2352 if ( !file
.Write(buf
, nRead
) )
2359 #endif // wxUSE_STD_IOSTREAM/!wxUSE_STD_IOSTREAM
2361 #endif // wxUSE_DOC_VIEW_ARCHITECTURE