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"
64 #if wxUSE_STD_IOSTREAM
65 #include "wx/ioswrap.h"
66 #include "wx/beforestd.h"
72 #include "wx/afterstd.h"
74 #include "wx/wfstream.h"
77 typedef wxVector
<wxDocTemplate
*> wxDocTemplates
;
79 // ----------------------------------------------------------------------------
81 // ----------------------------------------------------------------------------
83 IMPLEMENT_ABSTRACT_CLASS(wxDocument
, wxEvtHandler
)
84 IMPLEMENT_ABSTRACT_CLASS(wxView
, wxEvtHandler
)
85 IMPLEMENT_ABSTRACT_CLASS(wxDocTemplate
, wxObject
)
86 IMPLEMENT_DYNAMIC_CLASS(wxDocManager
, wxEvtHandler
)
87 IMPLEMENT_CLASS(wxDocChildFrame
, wxFrame
)
88 IMPLEMENT_CLASS(wxDocParentFrame
, wxFrame
)
90 #if wxUSE_PRINTING_ARCHITECTURE
91 IMPLEMENT_DYNAMIC_CLASS(wxDocPrintout
, wxPrintout
)
94 IMPLEMENT_DYNAMIC_CLASS(wxFileHistory
, wxObject
)
96 // ============================================================================
98 // ============================================================================
100 // ----------------------------------------------------------------------------
102 // ----------------------------------------------------------------------------
107 wxWindow
*wxFindSuitableParent()
109 wxWindow
* const win
= wxGetTopLevelParent(wxWindow::FindFocus());
111 return win
? win
: wxTheApp
->GetTopWindow();
114 wxString
FindExtension(const wxString
& path
)
117 wxFileName::SplitPath(path
, NULL
, NULL
, &ext
);
119 // VZ: extensions are considered not case sensitive - is this really a good
121 return ext
.MakeLower();
124 // return the string used for the MRU list items in the menu
126 // NB: the index n is 0-based, as usual, but the strings start from 1
127 wxString
GetMRUEntryLabel(int n
, const wxString
& path
)
129 // we need to quote '&' characters which are used for mnemonics
130 wxString
pathInMenu(path
);
131 pathInMenu
.Replace("&", "&&");
133 return wxString::Format("&%d %s", n
+ 1, pathInMenu
);
136 } // anonymous namespace
138 // ----------------------------------------------------------------------------
139 // Definition of wxDocument
140 // ----------------------------------------------------------------------------
142 wxDocument::wxDocument(wxDocument
*parent
)
144 m_documentModified
= false;
145 m_documentParent
= parent
;
146 m_documentTemplate
= NULL
;
147 m_commandProcessor
= NULL
;
151 bool wxDocument::DeleteContents()
156 wxDocument::~wxDocument()
160 delete m_commandProcessor
;
162 if (GetDocumentManager())
163 GetDocumentManager()->RemoveDocument(this);
165 // Not safe to do here, since it'll invoke virtual view functions
166 // expecting to see valid derived objects: and by the time we get here,
167 // we've called destructors higher up.
171 bool wxDocument::Close()
173 if ( !OnSaveModified() )
176 return OnCloseDocument();
179 bool wxDocument::OnCloseDocument()
181 // Tell all views that we're about to close
188 // Note that this implicitly deletes the document when the last view is
190 bool wxDocument::DeleteAllViews()
192 wxDocManager
* manager
= GetDocumentManager();
194 // first check if all views agree to be closed
195 const wxList::iterator end
= m_documentViews
.end();
196 for ( wxList::iterator i
= m_documentViews
.begin(); i
!= end
; ++i
)
198 wxView
*view
= (wxView
*)*i
;
199 if ( !view
->Close() )
203 // all views agreed to close, now do close them
204 if ( m_documentViews
.empty() )
206 // normally the document would be implicitly deleted when the last view
207 // is, but if don't have any views, do it here instead
208 if ( manager
&& manager
->GetDocuments().Member(this) )
213 // as we delete elements we iterate over, don't use the usual "from
214 // begin to end" loop
217 wxView
*view
= (wxView
*)*m_documentViews
.begin();
219 bool isLastOne
= m_documentViews
.size() == 1;
221 // this always deletes the node implicitly and if this is the last
222 // view also deletes this object itself (also implicitly, great),
223 // so we can't test for m_documentViews.empty() after calling this!
234 wxView
*wxDocument::GetFirstView() const
236 if ( m_documentViews
.empty() )
239 return static_cast<wxView
*>(m_documentViews
.GetFirst()->GetData());
242 wxDocManager
*wxDocument::GetDocumentManager() const
244 return m_documentTemplate
? m_documentTemplate
->GetDocumentManager() : NULL
;
247 bool wxDocument::OnNewDocument()
249 // notice that there is no need to neither reset nor even check the
250 // modified flag here as the document itself is a new object (this is only
251 // called from CreateDocument()) and so it shouldn't be saved anyhow even
252 // if it is modified -- this could happen if the user code creates
253 // documents pre-filled with some user-entered (and which hence must not be
256 SetDocumentSaved(false);
258 const wxString name
= GetDocumentManager()->MakeNewDocumentName();
260 SetFilename(name
, true);
265 bool wxDocument::Save()
267 if ( AlreadySaved() )
270 if ( m_documentFile
.empty() || !m_savedYet
)
273 return OnSaveDocument(m_documentFile
);
276 bool wxDocument::SaveAs()
278 wxDocTemplate
*docTemplate
= GetDocumentTemplate();
282 #ifdef wxHAS_MULTIPLE_FILEDLG_FILTERS
283 wxString filter
= docTemplate
->GetDescription() + wxT(" (") +
284 docTemplate
->GetFileFilter() + wxT(")|") +
285 docTemplate
->GetFileFilter();
287 // Now see if there are some other template with identical view and document
288 // classes, whose filters may also be used.
289 if (docTemplate
->GetViewClassInfo() && docTemplate
->GetDocClassInfo())
291 wxList::compatibility_iterator
292 node
= docTemplate
->GetDocumentManager()->GetTemplates().GetFirst();
295 wxDocTemplate
*t
= (wxDocTemplate
*) node
->GetData();
297 if (t
->IsVisible() && t
!= docTemplate
&&
298 t
->GetViewClassInfo() == docTemplate
->GetViewClassInfo() &&
299 t
->GetDocClassInfo() == docTemplate
->GetDocClassInfo())
301 // add a '|' to separate this filter from the previous one
302 if ( !filter
.empty() )
305 filter
<< t
->GetDescription()
306 << wxT(" (") << t
->GetFileFilter() << wxT(") |")
307 << t
->GetFileFilter();
310 node
= node
->GetNext();
314 wxString filter
= docTemplate
->GetFileFilter() ;
317 wxString defaultDir
= docTemplate
->GetDirectory();
318 if ( defaultDir
.empty() )
320 defaultDir
= wxPathOnly(GetFilename());
321 if ( defaultDir
.empty() )
322 defaultDir
= GetDocumentManager()->GetLastDirectory();
325 wxString fileName
= wxFileSelector(_("Save As"),
327 wxFileNameFromPath(GetFilename()),
328 docTemplate
->GetDefaultExtension(),
330 wxFD_SAVE
| wxFD_OVERWRITE_PROMPT
,
331 GetDocumentWindow());
333 if (fileName
.empty())
334 return false; // cancelled by user
337 wxFileName::SplitPath(fileName
, NULL
, NULL
, &ext
);
341 fileName
+= wxT(".");
342 fileName
+= docTemplate
->GetDefaultExtension();
345 // Files that were not saved correctly are not added to the FileHistory.
346 if (!OnSaveDocument(fileName
))
349 SetTitle(wxFileNameFromPath(fileName
));
350 SetFilename(fileName
, true); // will call OnChangeFileName automatically
352 // A file that doesn't use the default extension of its document template
353 // cannot be opened via the FileHistory, so we do not add it.
354 if (docTemplate
->FileMatchesTemplate(fileName
))
356 GetDocumentManager()->AddFileToHistory(fileName
);
358 //else: the user will probably not be able to open the file again, so we
359 // could warn about the wrong file-extension here
364 bool wxDocument::OnSaveDocument(const wxString
& file
)
369 if ( !DoSaveDocument(file
) )
374 SetDocumentSaved(true);
375 #if defined( __WXOSX_MAC__ ) && wxOSX_USE_CARBON
376 wxFileName
fn(file
) ;
377 fn
.MacSetDefaultTypeAndCreator() ;
382 bool wxDocument::OnOpenDocument(const wxString
& file
)
384 // notice that there is no need to check the modified flag here for the
385 // reasons explained in OnNewDocument()
387 if ( !DoOpenDocument(file
) )
390 SetFilename(file
, true);
392 // stretching the logic a little this does make sense because the document
393 // had been saved into the file we just loaded it from, it just could have
394 // happened during a previous program execution, it's just that the name of
395 // this method is a bit unfortunate, it should probably have been called
396 // HasAssociatedFileName()
397 SetDocumentSaved(true);
404 #if wxUSE_STD_IOSTREAM
405 wxSTD istream
& wxDocument::LoadObject(wxSTD istream
& stream
)
407 wxInputStream
& wxDocument::LoadObject(wxInputStream
& stream
)
413 #if wxUSE_STD_IOSTREAM
414 wxSTD ostream
& wxDocument::SaveObject(wxSTD ostream
& stream
)
416 wxOutputStream
& wxDocument::SaveObject(wxOutputStream
& stream
)
422 bool wxDocument::Revert()
428 // Get title, or filename if no title, else unnamed
429 #if WXWIN_COMPATIBILITY_2_8
430 bool wxDocument::GetPrintableName(wxString
& buf
) const
432 // this function can not only be overridden by the user code but also
433 // called by it so we need to ensure that we return the same thing as
434 // GetUserReadableName() but we can't call it because this would result in
435 // an infinite recursion, hence we use the helper DoGetUserReadableName()
436 buf
= DoGetUserReadableName();
440 #endif // WXWIN_COMPATIBILITY_2_8
442 wxString
wxDocument::GetUserReadableName() const
444 #if WXWIN_COMPATIBILITY_2_8
445 // we need to call the old virtual function to ensure that the overridden
446 // version of it is still called
448 if ( GetPrintableName(name
) )
450 #endif // WXWIN_COMPATIBILITY_2_8
452 return DoGetUserReadableName();
455 wxString
wxDocument::DoGetUserReadableName() const
457 if ( !m_documentTitle
.empty() )
458 return m_documentTitle
;
460 if ( !m_documentFile
.empty() )
461 return wxFileNameFromPath(m_documentFile
);
466 wxWindow
*wxDocument::GetDocumentWindow() const
468 wxView
* const view
= GetFirstView();
470 return view
? view
->GetFrame() : wxTheApp
->GetTopWindow();
473 wxCommandProcessor
*wxDocument::OnCreateCommandProcessor()
475 return new wxCommandProcessor
;
478 // true if safe to close
479 bool wxDocument::OnSaveModified()
483 switch ( wxMessageBox
487 _("Do you want to save changes to %s?"),
488 GetUserReadableName()
490 wxTheApp
->GetAppDisplayName(),
491 wxYES_NO
| wxCANCEL
| wxICON_QUESTION
| wxCENTRE
,
492 wxFindSuitableParent()
510 bool wxDocument::Draw(wxDC
& WXUNUSED(context
))
515 bool wxDocument::AddView(wxView
*view
)
517 if ( !m_documentViews
.Member(view
) )
519 m_documentViews
.Append(view
);
525 bool wxDocument::RemoveView(wxView
*view
)
527 (void)m_documentViews
.DeleteObject(view
);
532 bool wxDocument::OnCreate(const wxString
& WXUNUSED(path
), long flags
)
534 return GetDocumentTemplate()->CreateView(this, flags
) != NULL
;
537 // Called after a view is added or removed.
538 // The default implementation deletes the document if
539 // there are no more views.
540 void wxDocument::OnChangedViewList()
542 if ( m_documentViews
.empty() && OnSaveModified() )
546 void wxDocument::UpdateAllViews(wxView
*sender
, wxObject
*hint
)
548 wxList::compatibility_iterator node
= m_documentViews
.GetFirst();
551 wxView
*view
= (wxView
*)node
->GetData();
553 view
->OnUpdate(sender
, hint
);
554 node
= node
->GetNext();
558 void wxDocument::NotifyClosing()
560 wxList::compatibility_iterator node
= m_documentViews
.GetFirst();
563 wxView
*view
= (wxView
*)node
->GetData();
564 view
->OnClosingDocument();
565 node
= node
->GetNext();
569 void wxDocument::SetFilename(const wxString
& filename
, bool notifyViews
)
571 m_documentFile
= filename
;
572 OnChangeFilename(notifyViews
);
575 void wxDocument::OnChangeFilename(bool notifyViews
)
579 // Notify the views that the filename has changed
580 wxList::compatibility_iterator node
= m_documentViews
.GetFirst();
583 wxView
*view
= (wxView
*)node
->GetData();
584 view
->OnChangeFilename();
585 node
= node
->GetNext();
590 bool wxDocument::DoSaveDocument(const wxString
& file
)
592 #if wxUSE_STD_IOSTREAM
593 wxSTD ofstream
store(file
.mb_str(), wxSTD
ios::binary
);
596 wxFileOutputStream
store(file
);
597 if ( store
.GetLastError() != wxSTREAM_NO_ERROR
)
600 wxLogError(_("File \"%s\" could not be opened for writing."), file
);
604 if (!SaveObject(store
))
606 wxLogError(_("Failed to save document to the file \"%s\"."), file
);
613 bool wxDocument::DoOpenDocument(const wxString
& file
)
615 #if wxUSE_STD_IOSTREAM
616 wxSTD ifstream
store(file
.mb_str(), wxSTD
ios::binary
);
619 wxFileInputStream
store(file
);
620 if (store
.GetLastError() != wxSTREAM_NO_ERROR
|| !store
.IsOk())
623 wxLogError(_("File \"%s\" could not be opened for reading."), file
);
627 #if wxUSE_STD_IOSTREAM
631 int res
= LoadObject(store
).GetLastError();
632 if ( res
!= wxSTREAM_NO_ERROR
&& res
!= wxSTREAM_EOF
)
635 wxLogError(_("Failed to read document from the file \"%s\"."), file
);
643 // ----------------------------------------------------------------------------
645 // ----------------------------------------------------------------------------
649 m_viewDocument
= NULL
;
653 m_docChildFrame
= NULL
;
658 GetDocumentManager()->ActivateView(this, false);
660 // reset our frame view first, before removing it from the document as
661 // SetView(NULL) is a simple call while RemoveView() may result in user
662 // code being executed and this user code can, for example, show a message
663 // box which would result in an activation event for m_docChildFrame and so
664 // could reactivate the view being destroyed -- unless we reset it first
665 if ( m_docChildFrame
&& m_docChildFrame
->GetView() == this )
666 m_docChildFrame
->SetView(NULL
);
668 if ( m_viewDocument
)
669 m_viewDocument
->RemoveView(this);
672 bool wxView::TryBefore(wxEvent
& event
)
674 wxDocument
* const doc
= GetDocument();
675 return doc
&& doc
->ProcessEventHere(event
);
678 void wxView::OnActivateView(bool WXUNUSED(activate
),
679 wxView
*WXUNUSED(activeView
),
680 wxView
*WXUNUSED(deactiveView
))
684 void wxView::OnPrint(wxDC
*dc
, wxObject
*WXUNUSED(info
))
689 void wxView::OnUpdate(wxView
*WXUNUSED(sender
), wxObject
*WXUNUSED(hint
))
693 void wxView::OnChangeFilename()
695 // GetFrame can return wxWindow rather than wxTopLevelWindow due to
696 // generic MDI implementation so use SetLabel rather than SetTitle.
697 // It should cause SetTitle() for top level windows.
698 wxWindow
*win
= GetFrame();
701 wxDocument
*doc
= GetDocument();
704 win
->SetLabel(doc
->GetUserReadableName());
707 void wxView::SetDocument(wxDocument
*doc
)
709 m_viewDocument
= doc
;
714 bool wxView::Close(bool deleteWindow
)
716 return OnClose(deleteWindow
);
719 void wxView::Activate(bool activate
)
721 if (GetDocument() && GetDocumentManager())
723 OnActivateView(activate
, this, GetDocumentManager()->GetCurrentView());
724 GetDocumentManager()->ActivateView(this, activate
);
728 bool wxView::OnClose(bool WXUNUSED(deleteWindow
))
730 return GetDocument() ? GetDocument()->Close() : true;
733 #if wxUSE_PRINTING_ARCHITECTURE
734 wxPrintout
*wxView::OnCreatePrintout()
736 return new wxDocPrintout(this);
738 #endif // wxUSE_PRINTING_ARCHITECTURE
740 // ----------------------------------------------------------------------------
742 // ----------------------------------------------------------------------------
744 wxDocTemplate::wxDocTemplate(wxDocManager
*manager
,
745 const wxString
& descr
,
746 const wxString
& filter
,
749 const wxString
& docTypeName
,
750 const wxString
& viewTypeName
,
751 wxClassInfo
*docClassInfo
,
752 wxClassInfo
*viewClassInfo
,
755 m_documentManager
= manager
;
756 m_description
= descr
;
759 m_fileFilter
= filter
;
761 m_docTypeName
= docTypeName
;
762 m_viewTypeName
= viewTypeName
;
763 m_documentManager
->AssociateTemplate(this);
765 m_docClassInfo
= docClassInfo
;
766 m_viewClassInfo
= viewClassInfo
;
769 wxDocTemplate::~wxDocTemplate()
771 m_documentManager
->DisassociateTemplate(this);
774 // Tries to dynamically construct an object of the right class.
775 wxDocument
*wxDocTemplate::CreateDocument(const wxString
& path
, long flags
)
777 wxScopedPtr
<wxDocument
> doc(DoCreateDocument());
779 return doc
&& InitDocument(doc
.get(), path
, flags
) ? doc
.release() : NULL
;
783 wxDocTemplate::InitDocument(wxDocument
* doc
, const wxString
& path
, long flags
)
785 doc
->SetFilename(path
);
786 doc
->SetDocumentTemplate(this);
787 GetDocumentManager()->AddDocument(doc
);
788 doc
->SetCommandProcessor(doc
->OnCreateCommandProcessor());
790 if (doc
->OnCreate(path
, flags
))
793 if (GetDocumentManager()->GetDocuments().Member(doc
))
794 doc
->DeleteAllViews();
798 wxView
*wxDocTemplate::CreateView(wxDocument
*doc
, long flags
)
800 wxScopedPtr
<wxView
> view(DoCreateView());
804 view
->SetDocument(doc
);
805 if ( !view
->OnCreate(doc
, flags
) )
808 return view
.release();
811 // The default (very primitive) format detection: check is the extension is
812 // that of the template
813 bool wxDocTemplate::FileMatchesTemplate(const wxString
& path
)
815 wxStringTokenizer
parser (GetFileFilter(), wxT(";"));
816 wxString anything
= wxT ("*");
817 while (parser
.HasMoreTokens())
819 wxString filter
= parser
.GetNextToken();
820 wxString filterExt
= FindExtension (filter
);
821 if ( filter
.IsSameAs (anything
) ||
822 filterExt
.IsSameAs (anything
) ||
823 filterExt
.IsSameAs (FindExtension (path
)) )
826 return GetDefaultExtension().IsSameAs(FindExtension(path
));
829 wxDocument
*wxDocTemplate::DoCreateDocument()
834 return static_cast<wxDocument
*>(m_docClassInfo
->CreateObject());
837 wxView
*wxDocTemplate::DoCreateView()
839 if (!m_viewClassInfo
)
842 return static_cast<wxView
*>(m_viewClassInfo
->CreateObject());
845 // ----------------------------------------------------------------------------
847 // ----------------------------------------------------------------------------
849 BEGIN_EVENT_TABLE(wxDocManager
, wxEvtHandler
)
850 EVT_MENU(wxID_OPEN
, wxDocManager::OnFileOpen
)
851 EVT_MENU(wxID_CLOSE
, wxDocManager::OnFileClose
)
852 EVT_MENU(wxID_CLOSE_ALL
, wxDocManager::OnFileCloseAll
)
853 EVT_MENU(wxID_REVERT
, wxDocManager::OnFileRevert
)
854 EVT_MENU(wxID_NEW
, wxDocManager::OnFileNew
)
855 EVT_MENU(wxID_SAVE
, wxDocManager::OnFileSave
)
856 EVT_MENU(wxID_SAVEAS
, wxDocManager::OnFileSaveAs
)
857 EVT_MENU(wxID_UNDO
, wxDocManager::OnUndo
)
858 EVT_MENU(wxID_REDO
, wxDocManager::OnRedo
)
860 EVT_UPDATE_UI(wxID_OPEN
, wxDocManager::OnUpdateFileOpen
)
861 EVT_UPDATE_UI(wxID_CLOSE
, wxDocManager::OnUpdateDisableIfNoDoc
)
862 EVT_UPDATE_UI(wxID_CLOSE_ALL
, wxDocManager::OnUpdateDisableIfNoDoc
)
863 EVT_UPDATE_UI(wxID_REVERT
, wxDocManager::OnUpdateDisableIfNoDoc
)
864 EVT_UPDATE_UI(wxID_NEW
, wxDocManager::OnUpdateFileNew
)
865 EVT_UPDATE_UI(wxID_SAVE
, wxDocManager::OnUpdateFileSave
)
866 EVT_UPDATE_UI(wxID_SAVEAS
, wxDocManager::OnUpdateDisableIfNoDoc
)
867 EVT_UPDATE_UI(wxID_UNDO
, wxDocManager::OnUpdateUndo
)
868 EVT_UPDATE_UI(wxID_REDO
, wxDocManager::OnUpdateRedo
)
870 #if wxUSE_PRINTING_ARCHITECTURE
871 EVT_MENU(wxID_PRINT
, wxDocManager::OnPrint
)
872 EVT_MENU(wxID_PREVIEW
, wxDocManager::OnPreview
)
874 EVT_UPDATE_UI(wxID_PRINT
, wxDocManager::OnUpdateDisableIfNoDoc
)
875 EVT_UPDATE_UI(wxID_PREVIEW
, wxDocManager::OnUpdateDisableIfNoDoc
)
879 wxDocManager
* wxDocManager::sm_docManager
= NULL
;
881 wxDocManager::wxDocManager(long WXUNUSED(flags
), bool initialize
)
883 wxASSERT_MSG( !sm_docManager
, "multiple wxDocManagers not allowed" );
885 sm_docManager
= this;
887 m_defaultDocumentNameCounter
= 1;
888 m_currentView
= NULL
;
889 m_maxDocsOpen
= INT_MAX
;
890 m_fileHistory
= NULL
;
895 wxDocManager::~wxDocManager()
898 delete m_fileHistory
;
899 sm_docManager
= NULL
;
902 // closes the specified document
903 bool wxDocManager::CloseDocument(wxDocument
* doc
, bool force
)
905 if ( !doc
->Close() && !force
)
908 // Implicitly deletes the document when
909 // the last view is deleted
910 doc
->DeleteAllViews();
912 // Check we're really deleted
913 if (m_docs
.Member(doc
))
919 bool wxDocManager::CloseDocuments(bool force
)
921 wxList::compatibility_iterator node
= m_docs
.GetFirst();
924 wxDocument
*doc
= (wxDocument
*)node
->GetData();
925 wxList::compatibility_iterator next
= node
->GetNext();
927 if (!CloseDocument(doc
, force
))
930 // This assumes that documents are not connected in
931 // any way, i.e. deleting one document does NOT
938 bool wxDocManager::Clear(bool force
)
940 if (!CloseDocuments(force
))
943 m_currentView
= NULL
;
945 wxList::compatibility_iterator node
= m_templates
.GetFirst();
948 wxDocTemplate
*templ
= (wxDocTemplate
*) node
->GetData();
949 wxList::compatibility_iterator next
= node
->GetNext();
956 bool wxDocManager::Initialize()
958 m_fileHistory
= OnCreateFileHistory();
962 wxString
wxDocManager::GetLastDirectory() const
964 // use the system-dependent default location for the document files if
965 // we're being opened for the first time
966 if ( m_lastDirectory
.empty() )
968 wxDocManager
* const self
= const_cast<wxDocManager
*>(this);
969 self
->m_lastDirectory
= wxStandardPaths::Get().GetAppDocumentsDir();
972 return m_lastDirectory
;
975 wxFileHistory
*wxDocManager::OnCreateFileHistory()
977 return new wxFileHistory
;
980 void wxDocManager::OnFileClose(wxCommandEvent
& WXUNUSED(event
))
982 wxDocument
*doc
= GetCurrentDocument();
987 doc
->DeleteAllViews();
988 if (m_docs
.Member(doc
))
993 void wxDocManager::OnFileCloseAll(wxCommandEvent
& WXUNUSED(event
))
995 CloseDocuments(false);
998 void wxDocManager::OnFileNew(wxCommandEvent
& WXUNUSED(event
))
1000 CreateNewDocument();
1003 void wxDocManager::OnFileOpen(wxCommandEvent
& WXUNUSED(event
))
1005 if ( !CreateDocument("") )
1007 OnOpenFileFailure();
1011 void wxDocManager::OnFileRevert(wxCommandEvent
& WXUNUSED(event
))
1013 wxDocument
*doc
= GetCurrentDocument();
1019 void wxDocManager::OnFileSave(wxCommandEvent
& WXUNUSED(event
))
1021 wxDocument
*doc
= GetCurrentDocument();
1027 void wxDocManager::OnFileSaveAs(wxCommandEvent
& WXUNUSED(event
))
1029 wxDocument
*doc
= GetCurrentDocument();
1035 void wxDocManager::OnPrint(wxCommandEvent
& WXUNUSED(event
))
1037 #if wxUSE_PRINTING_ARCHITECTURE
1038 wxView
*view
= GetActiveView();
1042 wxPrintout
*printout
= view
->OnCreatePrintout();
1046 printer
.Print(view
->GetFrame(), printout
, true);
1050 #endif // wxUSE_PRINTING_ARCHITECTURE
1053 void wxDocManager::OnPreview(wxCommandEvent
& WXUNUSED(event
))
1055 #if wxUSE_PRINTING_ARCHITECTURE
1056 wxView
*view
= GetActiveView();
1060 wxPrintout
*printout
= view
->OnCreatePrintout();
1063 // Pass two printout objects: for preview, and possible printing.
1064 wxPrintPreviewBase
*
1065 preview
= new wxPrintPreview(printout
, view
->OnCreatePrintout());
1066 if ( !preview
->Ok() )
1069 wxLogError(_("Print preview creation failed."));
1074 frame
= new wxPreviewFrame(preview
, wxTheApp
->GetTopWindow(),
1075 _("Print Preview"));
1076 frame
->Centre(wxBOTH
);
1077 frame
->Initialize();
1080 #endif // wxUSE_PRINTING_ARCHITECTURE
1083 void wxDocManager::OnUndo(wxCommandEvent
& event
)
1085 wxCommandProcessor
* const cmdproc
= GetCurrentCommandProcessor();
1095 void wxDocManager::OnRedo(wxCommandEvent
& event
)
1097 wxCommandProcessor
* const cmdproc
= GetCurrentCommandProcessor();
1107 // Handlers for UI update commands
1109 void wxDocManager::OnUpdateFileOpen(wxUpdateUIEvent
& event
)
1111 // CreateDocument() (which is called from OnFileOpen) may succeed
1112 // only when there is at least a template:
1113 event
.Enable( GetTemplates().GetCount()>0 );
1116 void wxDocManager::OnUpdateDisableIfNoDoc(wxUpdateUIEvent
& event
)
1118 event
.Enable( GetCurrentDocument() != NULL
);
1121 void wxDocManager::OnUpdateFileNew(wxUpdateUIEvent
& event
)
1123 // CreateDocument() (which is called from OnFileNew) may succeed
1124 // only when there is at least a template:
1125 event
.Enable( GetTemplates().GetCount()>0 );
1128 void wxDocManager::OnUpdateFileSave(wxUpdateUIEvent
& event
)
1130 wxDocument
* const doc
= GetCurrentDocument();
1131 event
.Enable( doc
&& !doc
->AlreadySaved() );
1134 void wxDocManager::OnUpdateUndo(wxUpdateUIEvent
& event
)
1136 wxCommandProcessor
* const cmdproc
= GetCurrentCommandProcessor();
1139 event
.Enable(false);
1143 event
.Enable(cmdproc
->CanUndo());
1144 cmdproc
->SetMenuStrings();
1147 void wxDocManager::OnUpdateRedo(wxUpdateUIEvent
& event
)
1149 wxCommandProcessor
* const cmdproc
= GetCurrentCommandProcessor();
1152 event
.Enable(false);
1156 event
.Enable(cmdproc
->CanRedo());
1157 cmdproc
->SetMenuStrings();
1160 wxView
*wxDocManager::GetActiveView() const
1162 wxView
*view
= GetCurrentView();
1164 if ( !view
&& !m_docs
.empty() )
1166 // if we have exactly one document, consider its view to be the current
1169 // VZ: I'm not exactly sure why is this needed but this is how this
1170 // code used to behave before the bug #9518 was fixed and it seems
1171 // safer to preserve the old logic
1172 wxList::compatibility_iterator node
= m_docs
.GetFirst();
1173 if ( !node
->GetNext() )
1175 wxDocument
*doc
= static_cast<wxDocument
*>(node
->GetData());
1176 view
= doc
->GetFirstView();
1178 //else: we have more than one document
1184 bool wxDocManager::TryBefore(wxEvent
& event
)
1186 wxView
* const view
= GetActiveView();
1187 return view
&& view
->ProcessEventHere(event
);
1193 // helper function: return only the visible templates
1194 wxDocTemplates
GetVisibleTemplates(const wxList
& allTemplates
)
1196 // select only the visible templates
1197 const size_t totalNumTemplates
= allTemplates
.GetCount();
1198 wxDocTemplates templates
;
1199 if ( totalNumTemplates
)
1201 templates
.reserve(totalNumTemplates
);
1203 for ( wxList::const_iterator i
= allTemplates
.begin(),
1204 end
= allTemplates
.end();
1208 wxDocTemplate
* const temp
= (wxDocTemplate
*)*i
;
1209 if ( temp
->IsVisible() )
1210 templates
.push_back(temp
);
1217 } // anonymous namespace
1219 wxDocument
*wxDocManager::CreateDocument(const wxString
& pathOrig
, long flags
)
1221 // this ought to be const but SelectDocumentType/Path() are not
1222 // const-correct and can't be changed as, being virtual, this risks
1223 // breaking user code overriding them
1224 wxDocTemplates
templates(GetVisibleTemplates(m_templates
));
1225 const size_t numTemplates
= templates
.size();
1226 if ( !numTemplates
)
1228 // no templates can be used, can't create document
1233 // normally user should select the template to use but wxDOC_SILENT flag we
1234 // choose one ourselves
1235 wxString path
= pathOrig
; // may be modified below
1236 wxDocTemplate
*temp
;
1237 if ( flags
& wxDOC_SILENT
)
1239 wxASSERT_MSG( !path
.empty(),
1240 "using empty path with wxDOC_SILENT doesn't make sense" );
1242 temp
= FindTemplateForPath(path
);
1245 wxLogWarning(_("The format of file '%s' couldn't be determined."),
1249 else // not silent, ask the user
1251 // for the new file we need just the template, for an existing one we
1252 // need the template and the path, unless it's already specified
1253 if ( (flags
& wxDOC_NEW
) || !path
.empty() )
1254 temp
= SelectDocumentType(&templates
[0], numTemplates
);
1256 temp
= SelectDocumentPath(&templates
[0], numTemplates
, path
, flags
);
1262 // check whether the document with this path is already opened
1263 if ( !path
.empty() )
1265 const wxFileName
fn(path
);
1266 for ( wxList::const_iterator i
= m_docs
.begin(); i
!= m_docs
.end(); ++i
)
1268 wxDocument
* const doc
= (wxDocument
*)*i
;
1270 if ( fn
== doc
->GetFilename() )
1272 // file already open, just activate it and return
1273 if ( doc
->GetFirstView() )
1275 ActivateView(doc
->GetFirstView());
1276 if ( doc
->GetDocumentWindow() )
1277 doc
->GetDocumentWindow()->SetFocus();
1285 // no, we need to create a new document
1288 // if we've reached the max number of docs, close the first one.
1289 if ( (int)GetDocuments().GetCount() >= m_maxDocsOpen
)
1291 if ( !CloseDocument((wxDocument
*)GetDocuments().GetFirst()->GetData()) )
1293 // can't open the new document if closing the old one failed
1299 // do create and initialize the new document finally
1300 wxDocument
* const docNew
= temp
->CreateDocument(path
, flags
);
1304 docNew
->SetDocumentName(temp
->GetDocumentName());
1305 docNew
->SetDocumentTemplate(temp
);
1309 // call the appropriate function depending on whether we're creating a
1310 // new file or opening an existing one
1311 if ( !(flags
& wxDOC_NEW
? docNew
->OnNewDocument()
1312 : docNew
->OnOpenDocument(path
)) )
1314 docNew
->DeleteAllViews();
1318 wxCATCH_ALL( docNew
->DeleteAllViews(); throw; )
1320 // add the successfully opened file to MRU, but only if we're going to be
1321 // able to reopen it successfully later which requires the template for
1322 // this document to be retrievable from the file extension
1323 if ( !(flags
& wxDOC_NEW
) && temp
->FileMatchesTemplate(path
) )
1324 AddFileToHistory(path
);
1329 wxView
*wxDocManager::CreateView(wxDocument
*doc
, long flags
)
1331 wxDocTemplates
templates(GetVisibleTemplates(m_templates
));
1332 const size_t numTemplates
= templates
.size();
1334 if ( numTemplates
== 0 )
1337 wxDocTemplate
* const
1338 temp
= numTemplates
== 1 ? templates
[0]
1339 : SelectViewType(&templates
[0], numTemplates
);
1344 wxView
*view
= temp
->CreateView(doc
, flags
);
1346 view
->SetViewName(temp
->GetViewName());
1350 // Not yet implemented
1352 wxDocManager::DeleteTemplate(wxDocTemplate
*WXUNUSED(temp
), long WXUNUSED(flags
))
1356 // Not yet implemented
1357 bool wxDocManager::FlushDoc(wxDocument
*WXUNUSED(doc
))
1362 wxDocument
*wxDocManager::GetCurrentDocument() const
1364 wxView
* const view
= GetActiveView();
1365 return view
? view
->GetDocument() : NULL
;
1368 wxCommandProcessor
*wxDocManager::GetCurrentCommandProcessor() const
1370 wxDocument
* const doc
= GetCurrentDocument();
1371 return doc
? doc
->GetCommandProcessor() : NULL
;
1374 // Make a default name for a new document
1375 #if WXWIN_COMPATIBILITY_2_8
1376 bool wxDocManager::MakeDefaultName(wxString
& WXUNUSED(name
))
1378 // we consider that this function can only be overridden by the user code,
1379 // not called by it as it only makes sense to call it internally, so we
1380 // don't bother to return anything from here
1383 #endif // WXWIN_COMPATIBILITY_2_8
1385 wxString
wxDocManager::MakeNewDocumentName()
1389 #if WXWIN_COMPATIBILITY_2_8
1390 if ( !MakeDefaultName(name
) )
1391 #endif // WXWIN_COMPATIBILITY_2_8
1393 name
.Printf(_("unnamed%d"), m_defaultDocumentNameCounter
);
1394 m_defaultDocumentNameCounter
++;
1400 // Make a frame title (override this to do something different)
1401 // If docName is empty, a document is not currently active.
1402 wxString
wxDocManager::MakeFrameTitle(wxDocument
* doc
)
1404 wxString appName
= wxTheApp
->GetAppDisplayName();
1410 wxString docName
= doc
->GetUserReadableName();
1411 title
= docName
+ wxString(_(" - ")) + appName
;
1417 // Not yet implemented
1418 wxDocTemplate
*wxDocManager::MatchTemplate(const wxString
& WXUNUSED(path
))
1423 // File history management
1424 void wxDocManager::AddFileToHistory(const wxString
& file
)
1427 m_fileHistory
->AddFileToHistory(file
);
1430 void wxDocManager::RemoveFileFromHistory(size_t i
)
1433 m_fileHistory
->RemoveFileFromHistory(i
);
1436 wxString
wxDocManager::GetHistoryFile(size_t i
) const
1441 histFile
= m_fileHistory
->GetHistoryFile(i
);
1446 void wxDocManager::FileHistoryUseMenu(wxMenu
*menu
)
1449 m_fileHistory
->UseMenu(menu
);
1452 void wxDocManager::FileHistoryRemoveMenu(wxMenu
*menu
)
1455 m_fileHistory
->RemoveMenu(menu
);
1459 void wxDocManager::FileHistoryLoad(const wxConfigBase
& config
)
1462 m_fileHistory
->Load(config
);
1465 void wxDocManager::FileHistorySave(wxConfigBase
& config
)
1468 m_fileHistory
->Save(config
);
1472 void wxDocManager::FileHistoryAddFilesToMenu(wxMenu
* menu
)
1475 m_fileHistory
->AddFilesToMenu(menu
);
1478 void wxDocManager::FileHistoryAddFilesToMenu()
1481 m_fileHistory
->AddFilesToMenu();
1484 size_t wxDocManager::GetHistoryFilesCount() const
1486 return m_fileHistory
? m_fileHistory
->GetCount() : 0;
1490 // Find out the document template via matching in the document file format
1491 // against that of the template
1492 wxDocTemplate
*wxDocManager::FindTemplateForPath(const wxString
& path
)
1494 wxDocTemplate
*theTemplate
= NULL
;
1496 // Find the template which this extension corresponds to
1497 for (size_t i
= 0; i
< m_templates
.GetCount(); i
++)
1499 wxDocTemplate
*temp
= (wxDocTemplate
*)m_templates
.Item(i
)->GetData();
1500 if ( temp
->FileMatchesTemplate(path
) )
1509 // Prompts user to open a file, using file specs in templates.
1510 // Must extend the file selector dialog or implement own; OR
1511 // match the extension to the template extension.
1513 wxDocTemplate
*wxDocManager::SelectDocumentPath(wxDocTemplate
**templates
,
1516 long WXUNUSED(flags
),
1517 bool WXUNUSED(save
))
1519 #ifdef wxHAS_MULTIPLE_FILEDLG_FILTERS
1522 for (int i
= 0; i
< noTemplates
; i
++)
1524 if (templates
[i
]->IsVisible())
1526 // add a '|' to separate this filter from the previous one
1527 if ( !descrBuf
.empty() )
1528 descrBuf
<< wxT('|');
1530 descrBuf
<< templates
[i
]->GetDescription()
1531 << wxT(" (") << templates
[i
]->GetFileFilter() << wxT(") |")
1532 << templates
[i
]->GetFileFilter();
1536 wxString descrBuf
= wxT("*.*");
1537 wxUnusedVar(noTemplates
);
1540 int FilterIndex
= -1;
1542 wxWindow
* parent
= wxFindSuitableParent();
1544 wxString pathTmp
= wxFileSelectorEx(_("Open File"),
1552 wxDocTemplate
*theTemplate
= NULL
;
1553 if (!pathTmp
.empty())
1555 if (!wxFileExists(pathTmp
))
1558 if (!wxTheApp
->GetAppDisplayName().empty())
1559 msgTitle
= wxTheApp
->GetAppDisplayName();
1561 msgTitle
= wxString(_("File error"));
1563 wxMessageBox(_("Sorry, could not open this file."),
1565 wxOK
| wxICON_EXCLAMATION
| wxCENTRE
,
1568 path
= wxEmptyString
;
1572 SetLastDirectory(wxPathOnly(pathTmp
));
1576 // first choose the template using the extension, if this fails (i.e.
1577 // wxFileSelectorEx() didn't fill it), then use the path
1578 if ( FilterIndex
!= -1 )
1579 theTemplate
= templates
[FilterIndex
];
1581 theTemplate
= FindTemplateForPath(path
);
1584 // Since we do not add files with non-default extensions to the
1585 // file history this can only happen if the application changes the
1586 // allowed templates in runtime.
1587 wxMessageBox(_("Sorry, the format for this file is unknown."),
1589 wxOK
| wxICON_EXCLAMATION
| wxCENTRE
,
1601 wxDocTemplate
*wxDocManager::SelectDocumentType(wxDocTemplate
**templates
,
1602 int noTemplates
, bool sort
)
1604 wxArrayString strings
;
1605 wxScopedArray
<wxDocTemplate
*> data(new wxDocTemplate
*[noTemplates
]);
1609 for (i
= 0; i
< noTemplates
; i
++)
1611 if (templates
[i
]->IsVisible())
1615 for (j
= 0; j
< n
; j
++)
1617 //filter out NOT unique documents + view combinations
1618 if ( templates
[i
]->m_docTypeName
== data
[j
]->m_docTypeName
&&
1619 templates
[i
]->m_viewTypeName
== data
[j
]->m_viewTypeName
1626 strings
.Add(templates
[i
]->m_description
);
1628 data
[n
] = templates
[i
];
1636 strings
.Sort(); // ascending sort
1637 // Yes, this will be slow, but template lists
1638 // are typically short.
1640 n
= strings
.Count();
1641 for (i
= 0; i
< n
; i
++)
1643 for (j
= 0; j
< noTemplates
; j
++)
1645 if (strings
[i
] == templates
[j
]->m_description
)
1646 data
[i
] = templates
[j
];
1651 wxDocTemplate
*theTemplate
;
1656 // no visible templates, hence nothing to choose from
1661 // don't propose the user to choose if he has no choice
1662 theTemplate
= data
[0];
1666 // propose the user to choose one of several
1667 theTemplate
= (wxDocTemplate
*)wxGetSingleChoiceData
1669 _("Select a document template"),
1672 (void **)data
.get(),
1673 wxFindSuitableParent()
1680 wxDocTemplate
*wxDocManager::SelectViewType(wxDocTemplate
**templates
,
1681 int noTemplates
, bool sort
)
1683 wxArrayString strings
;
1684 wxScopedArray
<wxDocTemplate
*> data(new wxDocTemplate
*[noTemplates
]);
1688 for (i
= 0; i
< noTemplates
; i
++)
1690 wxDocTemplate
*templ
= templates
[i
];
1691 if ( templ
->IsVisible() && !templ
->GetViewName().empty() )
1695 for (j
= 0; j
< n
; j
++)
1697 //filter out NOT unique views
1698 if ( templates
[i
]->m_viewTypeName
== data
[j
]->m_viewTypeName
)
1704 strings
.Add(templ
->m_viewTypeName
);
1713 strings
.Sort(); // ascending sort
1714 // Yes, this will be slow, but template lists
1715 // are typically short.
1717 n
= strings
.Count();
1718 for (i
= 0; i
< n
; i
++)
1720 for (j
= 0; j
< noTemplates
; j
++)
1722 if (strings
[i
] == templates
[j
]->m_viewTypeName
)
1723 data
[i
] = templates
[j
];
1728 wxDocTemplate
*theTemplate
;
1730 // the same logic as above
1738 theTemplate
= data
[0];
1742 theTemplate
= (wxDocTemplate
*)wxGetSingleChoiceData
1744 _("Select a document view"),
1747 (void **)data
.get(),
1748 wxFindSuitableParent()
1756 void wxDocManager::AssociateTemplate(wxDocTemplate
*temp
)
1758 if (!m_templates
.Member(temp
))
1759 m_templates
.Append(temp
);
1762 void wxDocManager::DisassociateTemplate(wxDocTemplate
*temp
)
1764 m_templates
.DeleteObject(temp
);
1767 // Add and remove a document from the manager's list
1768 void wxDocManager::AddDocument(wxDocument
*doc
)
1770 if (!m_docs
.Member(doc
))
1774 void wxDocManager::RemoveDocument(wxDocument
*doc
)
1776 m_docs
.DeleteObject(doc
);
1779 // Views or windows should inform the document manager
1780 // when a view is going in or out of focus
1781 void wxDocManager::ActivateView(wxView
*view
, bool activate
)
1785 m_currentView
= view
;
1789 if ( m_currentView
== view
)
1791 // don't keep stale pointer
1792 m_currentView
= NULL
;
1797 // ----------------------------------------------------------------------------
1798 // wxDocChildFrameAnyBase
1799 // ----------------------------------------------------------------------------
1801 bool wxDocChildFrameAnyBase::CloseView(wxCloseEvent
& event
)
1805 if ( event
.CanVeto() && !m_childView
->Close(false) )
1811 m_childView
->Activate(false);
1816 m_childDocument
= NULL
;
1821 // ----------------------------------------------------------------------------
1822 // Default parent frame
1823 // ----------------------------------------------------------------------------
1825 BEGIN_EVENT_TABLE(wxDocParentFrame
, wxFrame
)
1826 EVT_MENU(wxID_EXIT
, wxDocParentFrame::OnExit
)
1827 EVT_MENU_RANGE(wxID_FILE1
, wxID_FILE9
, wxDocParentFrame::OnMRUFile
)
1828 EVT_CLOSE(wxDocParentFrame::OnCloseWindow
)
1831 wxDocParentFrame::wxDocParentFrame()
1833 m_docManager
= NULL
;
1836 wxDocParentFrame::wxDocParentFrame(wxDocManager
*manager
,
1839 const wxString
& title
,
1843 const wxString
& name
)
1844 : wxFrame(frame
, id
, title
, pos
, size
, style
, name
)
1846 m_docManager
= manager
;
1849 bool wxDocParentFrame::Create(wxDocManager
*manager
,
1852 const wxString
& title
,
1856 const wxString
& name
)
1858 m_docManager
= manager
;
1859 return base_type::Create(frame
, id
, title
, pos
, size
, style
, name
);
1862 void wxDocParentFrame::OnExit(wxCommandEvent
& WXUNUSED(event
))
1867 void wxDocParentFrame::OnMRUFile(wxCommandEvent
& event
)
1869 int n
= event
.GetId() - wxID_FILE1
; // the index in MRU list
1870 wxString
filename(m_docManager
->GetHistoryFile(n
));
1871 if ( filename
.empty() )
1874 wxString errMsg
; // must contain exactly one "%s" if non-empty
1875 if ( wxFile::Exists(filename
) )
1878 if ( m_docManager
->CreateDocument(filename
, wxDOC_SILENT
) )
1881 errMsg
= _("The file '%s' couldn't be opened.");
1883 else // file doesn't exist
1885 errMsg
= _("The file '%s' doesn't exist and couldn't be opened.");
1889 wxASSERT_MSG( !errMsg
.empty(), "should have an error message" );
1891 // remove the file which we can't open from the MRU list
1892 m_docManager
->RemoveFileFromHistory(n
);
1894 // and tell the user about it
1895 wxLogError(errMsg
+ '\n' +
1896 _("It has been removed from the most recently used files list."),
1900 // Extend event processing to search the view's event table
1901 bool wxDocParentFrame::TryBefore(wxEvent
& event
)
1903 if ( m_docManager
&& m_docManager
->ProcessEventHere(event
) )
1906 return wxFrame::TryBefore(event
);
1909 // Define the behaviour for the frame closing
1910 // - must delete all frames except for the main one.
1911 void wxDocParentFrame::OnCloseWindow(wxCloseEvent
& event
)
1913 if (m_docManager
->Clear(!event
.CanVeto()))
1921 #if wxUSE_PRINTING_ARCHITECTURE
1923 wxDocPrintout::wxDocPrintout(wxView
*view
, const wxString
& title
)
1926 m_printoutView
= view
;
1929 bool wxDocPrintout::OnPrintPage(int WXUNUSED(page
))
1933 // Get the logical pixels per inch of screen and printer
1934 int ppiScreenX
, ppiScreenY
;
1935 GetPPIScreen(&ppiScreenX
, &ppiScreenY
);
1936 wxUnusedVar(ppiScreenY
);
1937 int ppiPrinterX
, ppiPrinterY
;
1938 GetPPIPrinter(&ppiPrinterX
, &ppiPrinterY
);
1939 wxUnusedVar(ppiPrinterY
);
1941 // This scales the DC so that the printout roughly represents the
1942 // the screen scaling. The text point size _should_ be the right size
1943 // but in fact is too small for some reason. This is a detail that will
1944 // need to be addressed at some point but can be fudged for the
1946 float scale
= (float)((float)ppiPrinterX
/(float)ppiScreenX
);
1948 // Now we have to check in case our real page size is reduced
1949 // (e.g. because we're drawing to a print preview memory DC)
1950 int pageWidth
, pageHeight
;
1952 dc
->GetSize(&w
, &h
);
1953 GetPageSizePixels(&pageWidth
, &pageHeight
);
1954 wxUnusedVar(pageHeight
);
1956 // If printer pageWidth == current DC width, then this doesn't
1957 // change. But w might be the preview bitmap width, so scale down.
1958 float overallScale
= scale
* (float)(w
/(float)pageWidth
);
1959 dc
->SetUserScale(overallScale
, overallScale
);
1963 m_printoutView
->OnDraw(dc
);
1968 bool wxDocPrintout::HasPage(int pageNum
)
1970 return (pageNum
== 1);
1973 bool wxDocPrintout::OnBeginDocument(int startPage
, int endPage
)
1975 if (!wxPrintout::OnBeginDocument(startPage
, endPage
))
1981 void wxDocPrintout::GetPageInfo(int *minPage
, int *maxPage
,
1982 int *selPageFrom
, int *selPageTo
)
1990 #endif // wxUSE_PRINTING_ARCHITECTURE
1992 // ----------------------------------------------------------------------------
1993 // File history (a.k.a. MRU, most recently used, files list)
1994 // ----------------------------------------------------------------------------
1996 wxFileHistory::wxFileHistory(size_t maxFiles
, wxWindowID idBase
)
1998 m_fileMaxFiles
= maxFiles
;
2002 void wxFileHistory::AddFileToHistory(const wxString
& file
)
2004 // check if we don't already have this file
2005 const wxFileName
fnNew(file
);
2007 numFiles
= m_fileHistory
.size();
2008 for ( i
= 0; i
< numFiles
; i
++ )
2010 if ( fnNew
== m_fileHistory
[i
] )
2012 // we do have it, move it to the top of the history
2013 RemoveFileFromHistory(i
);
2019 // if we already have a full history, delete the one at the end
2020 if ( numFiles
== m_fileMaxFiles
)
2022 RemoveFileFromHistory(--numFiles
);
2025 // add a new menu item to all file menus (they will be updated below)
2026 for ( wxList::compatibility_iterator node
= m_fileMenus
.GetFirst();
2028 node
= node
->GetNext() )
2030 wxMenu
* const menu
= (wxMenu
*)node
->GetData();
2032 if ( !numFiles
&& menu
->GetMenuItemCount() )
2033 menu
->AppendSeparator();
2035 // label doesn't matter, it will be set below anyhow, but it can't
2036 // be empty (this is supposed to indicate a stock item)
2037 menu
->Append(m_idBase
+ numFiles
, " ");
2040 // insert the new file in the beginning of the file history
2041 m_fileHistory
.insert(m_fileHistory
.begin(), file
);
2044 // update the labels in all menus
2045 for ( i
= 0; i
< numFiles
; i
++ )
2047 // if in same directory just show the filename; otherwise the full path
2048 const wxFileName
fnOld(m_fileHistory
[i
]);
2050 wxString pathInMenu
;
2051 if ( fnOld
.GetPath() == fnNew
.GetPath() )
2053 pathInMenu
= fnOld
.GetFullName();
2055 else // file in different directory
2057 // absolute path; could also set relative path
2058 pathInMenu
= m_fileHistory
[i
];
2061 for ( wxList::compatibility_iterator node
= m_fileMenus
.GetFirst();
2063 node
= node
->GetNext() )
2065 wxMenu
* const menu
= (wxMenu
*)node
->GetData();
2067 menu
->SetLabel(m_idBase
+ i
, GetMRUEntryLabel(i
, pathInMenu
));
2072 void wxFileHistory::RemoveFileFromHistory(size_t i
)
2074 size_t numFiles
= m_fileHistory
.size();
2075 wxCHECK_RET( i
< numFiles
,
2076 wxT("invalid index in wxFileHistory::RemoveFileFromHistory") );
2078 // delete the element from the array
2079 m_fileHistory
.RemoveAt(i
);
2082 for ( wxList::compatibility_iterator node
= m_fileMenus
.GetFirst();
2084 node
= node
->GetNext() )
2086 wxMenu
* const menu
= (wxMenu
*) node
->GetData();
2088 // shift filenames up
2089 for ( size_t j
= i
; j
< numFiles
; j
++ )
2091 menu
->SetLabel(m_idBase
+ j
, GetMRUEntryLabel(j
, m_fileHistory
[j
]));
2094 // delete the last menu item which is unused now
2095 const wxWindowID lastItemId
= m_idBase
+ numFiles
;
2096 if ( menu
->FindItem(lastItemId
) )
2097 menu
->Delete(lastItemId
);
2099 // delete the last separator too if no more files are left
2100 if ( m_fileHistory
.empty() )
2102 const wxMenuItemList::compatibility_iterator
2103 nodeLast
= menu
->GetMenuItems().GetLast();
2106 wxMenuItem
* const lastMenuItem
= nodeLast
->GetData();
2107 if ( lastMenuItem
->IsSeparator() )
2108 menu
->Delete(lastMenuItem
);
2110 //else: menu is empty somehow
2115 void wxFileHistory::UseMenu(wxMenu
*menu
)
2117 if ( !m_fileMenus
.Member(menu
) )
2118 m_fileMenus
.Append(menu
);
2121 void wxFileHistory::RemoveMenu(wxMenu
*menu
)
2123 m_fileMenus
.DeleteObject(menu
);
2127 void wxFileHistory::Load(const wxConfigBase
& config
)
2129 m_fileHistory
.Clear();
2132 buf
.Printf(wxT("file%d"), 1);
2134 wxString historyFile
;
2135 while ((m_fileHistory
.GetCount() < m_fileMaxFiles
) &&
2136 config
.Read(buf
, &historyFile
) && !historyFile
.empty())
2138 m_fileHistory
.Add(historyFile
);
2140 buf
.Printf(wxT("file%d"), (int)m_fileHistory
.GetCount()+1);
2141 historyFile
= wxEmptyString
;
2147 void wxFileHistory::Save(wxConfigBase
& config
)
2150 for (i
= 0; i
< m_fileMaxFiles
; i
++)
2153 buf
.Printf(wxT("file%d"), (int)i
+1);
2154 if (i
< m_fileHistory
.GetCount())
2155 config
.Write(buf
, wxString(m_fileHistory
[i
]));
2157 config
.Write(buf
, wxEmptyString
);
2160 #endif // wxUSE_CONFIG
2162 void wxFileHistory::AddFilesToMenu()
2164 if ( m_fileHistory
.empty() )
2167 for ( wxList::compatibility_iterator node
= m_fileMenus
.GetFirst();
2169 node
= node
->GetNext() )
2171 AddFilesToMenu((wxMenu
*) node
->GetData());
2175 void wxFileHistory::AddFilesToMenu(wxMenu
* menu
)
2177 if ( m_fileHistory
.empty() )
2180 if ( menu
->GetMenuItemCount() )
2181 menu
->AppendSeparator();
2183 for ( size_t i
= 0; i
< m_fileHistory
.GetCount(); i
++ )
2185 menu
->Append(m_idBase
+ i
, GetMRUEntryLabel(i
, m_fileHistory
[i
]));
2189 // ----------------------------------------------------------------------------
2190 // Permits compatibility with existing file formats and functions that
2191 // manipulate files directly
2192 // ----------------------------------------------------------------------------
2194 #if wxUSE_STD_IOSTREAM
2196 bool wxTransferFileToStream(const wxString
& filename
, wxSTD ostream
& stream
)
2198 wxFFile
file(filename
, _T("rb"));
2199 if ( !file
.IsOpened() )
2207 nRead
= file
.Read(buf
, WXSIZEOF(buf
));
2211 stream
.write(buf
, nRead
);
2215 while ( !file
.Eof() );
2220 bool wxTransferStreamToFile(wxSTD istream
& stream
, const wxString
& filename
)
2222 wxFFile
file(filename
, _T("wb"));
2223 if ( !file
.IsOpened() )
2229 stream
.read(buf
, WXSIZEOF(buf
));
2230 if ( !stream
.bad() ) // fail may be set on EOF, don't use operator!()
2232 if ( !file
.Write(buf
, stream
.gcount()) )
2236 while ( !stream
.eof() );
2241 #else // !wxUSE_STD_IOSTREAM
2243 bool wxTransferFileToStream(const wxString
& filename
, wxOutputStream
& stream
)
2245 wxFFile
file(filename
, _T("rb"));
2246 if ( !file
.IsOpened() )
2254 nRead
= file
.Read(buf
, WXSIZEOF(buf
));
2258 stream
.Write(buf
, nRead
);
2262 while ( !file
.Eof() );
2267 bool wxTransferStreamToFile(wxInputStream
& stream
, const wxString
& filename
)
2269 wxFFile
file(filename
, _T("wb"));
2270 if ( !file
.IsOpened() )
2276 stream
.Read(buf
, WXSIZEOF(buf
));
2278 const size_t nRead
= stream
.LastRead();
2287 if ( !file
.Write(buf
, nRead
) )
2294 #endif // wxUSE_STD_IOSTREAM/!wxUSE_STD_IOSTREAM
2296 #endif // wxUSE_DOC_VIEW_ARCHITECTURE