1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/docview.cpp
3 // Purpose: Document/view classes
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
21 #pragma implementation "docview.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
31 #if wxUSE_DOC_VIEW_ARCHITECTURE
34 #include "wx/string.h"
38 #include "wx/dialog.h"
41 #include "wx/filedlg.h"
49 #include "wx/filename.h"
56 #if wxUSE_PRINTING_ARCHITECTURE
57 #include "wx/prntbase.h"
58 #include "wx/printdlg.h"
61 #include "wx/msgdlg.h"
62 #include "wx/choicdlg.h"
63 #include "wx/docview.h"
64 #include "wx/confbase.h"
66 #include "wx/cmdproc.h"
71 #if wxUSE_STD_IOSTREAM
72 #include "wx/ioswrap.h"
79 #include "wx/wfstream.h"
82 // ----------------------------------------------------------------------------
84 // ----------------------------------------------------------------------------
86 IMPLEMENT_ABSTRACT_CLASS(wxDocument
, wxEvtHandler
)
87 IMPLEMENT_ABSTRACT_CLASS(wxView
, wxEvtHandler
)
88 IMPLEMENT_ABSTRACT_CLASS(wxDocTemplate
, wxObject
)
89 IMPLEMENT_DYNAMIC_CLASS(wxDocManager
, wxEvtHandler
)
90 IMPLEMENT_CLASS(wxDocChildFrame
, wxFrame
)
91 IMPLEMENT_CLASS(wxDocParentFrame
, wxFrame
)
93 #if wxUSE_PRINTING_ARCHITECTURE
94 IMPLEMENT_DYNAMIC_CLASS(wxDocPrintout
, wxPrintout
)
97 IMPLEMENT_DYNAMIC_CLASS(wxFileHistory
, wxObject
)
99 // ----------------------------------------------------------------------------
100 // function prototypes
101 // ----------------------------------------------------------------------------
103 static inline wxString
FindExtension(const wxChar
*path
);
104 static wxWindow
* wxFindSuitableParent(void);
106 // ----------------------------------------------------------------------------
108 // ----------------------------------------------------------------------------
110 static const wxChar
*s_MRUEntryFormat
= wxT("&%d %s");
112 // ============================================================================
114 // ============================================================================
116 // ----------------------------------------------------------------------------
118 // ----------------------------------------------------------------------------
120 static wxString
FindExtension(const wxChar
*path
)
123 wxSplitPath(path
, NULL
, NULL
, &ext
);
125 // VZ: extensions are considered not case sensitive - is this really a good
127 return ext
.MakeLower();
130 // ----------------------------------------------------------------------------
131 // Definition of wxDocument
132 // ----------------------------------------------------------------------------
134 wxDocument::wxDocument(wxDocument
*parent
)
136 m_documentModified
= FALSE
;
137 m_documentParent
= parent
;
138 m_documentTemplate
= (wxDocTemplate
*) NULL
;
139 m_commandProcessor
= (wxCommandProcessor
*) NULL
;
143 bool wxDocument::DeleteContents()
148 wxDocument::~wxDocument()
152 if (m_commandProcessor
)
153 delete m_commandProcessor
;
155 if (GetDocumentManager())
156 GetDocumentManager()->RemoveDocument(this);
158 // Not safe to do here, since it'll invoke virtual view functions
159 // expecting to see valid derived objects: and by the time we get here,
160 // we've called destructors higher up.
164 bool wxDocument::Close()
166 if (OnSaveModified())
167 return OnCloseDocument();
172 bool wxDocument::OnCloseDocument()
174 // Tell all views that we're about to close
181 // Note that this implicitly deletes the document when the last view is
183 bool wxDocument::DeleteAllViews()
185 wxDocManager
* manager
= GetDocumentManager();
186 wxList::iterator it
, en
;
188 for ( it
= m_documentViews
.begin(), en
= m_documentViews
.end();
192 wxView
*view
= (wxView
*)*it
;
196 wxList::iterator next
= it
; ++next
;
198 delete view
; // Deletes node implicitly
201 // If we haven't yet deleted the document (for example
202 // if there were no views) then delete it.
203 if (manager
&& manager
->GetDocuments().Member(this))
209 wxView
*wxDocument::GetFirstView() const
211 if (m_documentViews
.GetCount() == 0)
212 return (wxView
*) NULL
;
213 return (wxView
*)m_documentViews
.GetFirst()->GetData();
216 wxDocManager
*wxDocument::GetDocumentManager() const
218 return (m_documentTemplate
? m_documentTemplate
->GetDocumentManager() : (wxDocManager
*) NULL
);
221 bool wxDocument::OnNewDocument()
223 if (!OnSaveModified())
226 if (OnCloseDocument()==FALSE
) return FALSE
;
229 SetDocumentSaved(FALSE
);
232 GetDocumentManager()->MakeDefaultName(name
);
234 SetFilename(name
, TRUE
);
239 bool wxDocument::Save()
241 if (!IsModified() && m_savedYet
)
244 if ( m_documentFile
.empty() || !m_savedYet
)
247 return OnSaveDocument(m_documentFile
);
250 bool wxDocument::SaveAs()
252 wxDocTemplate
*docTemplate
= GetDocumentTemplate();
256 wxString tmp
= wxFileSelector(_("Save as"),
257 docTemplate
->GetDirectory(),
258 wxFileNameFromPath(GetFilename()),
259 docTemplate
->GetDefaultExtension(),
260 docTemplate
->GetFileFilter(),
261 wxSAVE
| wxOVERWRITE_PROMPT
,
262 GetDocumentWindow());
267 wxString
fileName(tmp
);
268 wxString path
, name
, ext
;
269 wxSplitPath(fileName
, & path
, & name
, & ext
);
271 if (ext
.IsEmpty() || ext
== wxT(""))
273 fileName
+= wxT(".");
274 fileName
+= docTemplate
->GetDefaultExtension();
277 SetFilename(fileName
);
278 SetTitle(wxFileNameFromPath(fileName
));
280 // Notify the views that the filename has changed
281 wxList::compatibility_iterator node
= m_documentViews
.GetFirst();
284 wxView
*view
= (wxView
*)node
->GetData();
285 view
->OnChangeFilename();
286 node
= node
->GetNext();
289 // Files that were not saved correctly are not added to the FileHistory.
290 if (!OnSaveDocument(m_documentFile
))
293 // A file that doesn't use the default extension of its document template cannot be opened
294 // via the FileHistory, so we do not add it.
295 if (docTemplate
->FileMatchesTemplate(fileName
))
297 GetDocumentManager()->AddFileToHistory(fileName
);
301 // The user will probably not be able to open the file again, so
302 // we could warn about the wrong file-extension here.
307 bool wxDocument::OnSaveDocument(const wxString
& file
)
313 if (wxTheApp
->GetAppName() != wxT(""))
314 msgTitle
= wxTheApp
->GetAppName();
316 msgTitle
= wxString(_("File error"));
318 #if wxUSE_STD_IOSTREAM
319 wxSTD ofstream
store(file
.mb_str());
320 if (store
.fail() || store
.bad())
322 wxFileOutputStream
store(file
);
323 if (store
.GetLastError() != wxSTREAM_NO_ERROR
)
326 (void)wxMessageBox(_("Sorry, could not open this file for saving."), msgTitle
, wxOK
| wxICON_EXCLAMATION
,
327 GetDocumentWindow());
331 if (!SaveObject(store
))
333 (void)wxMessageBox(_("Sorry, could not save this file."), msgTitle
, wxOK
| wxICON_EXCLAMATION
,
334 GetDocumentWindow());
340 SetDocumentSaved(TRUE
);
342 wxFileName
fn(file
) ;
343 fn
.MacSetDefaultTypeAndCreator() ;
348 bool wxDocument::OnOpenDocument(const wxString
& file
)
350 if (!OnSaveModified())
354 if (wxTheApp
->GetAppName() != wxT(""))
355 msgTitle
= wxTheApp
->GetAppName();
357 msgTitle
= wxString(_("File error"));
359 #if wxUSE_STD_IOSTREAM
360 wxSTD ifstream
store(file
.mb_str());
361 if (store
.fail() || store
.bad())
363 wxFileInputStream
store(file
);
364 if (store
.GetLastError() != wxSTREAM_NO_ERROR
)
367 (void)wxMessageBox(_("Sorry, could not open this file."), msgTitle
, wxOK
|wxICON_EXCLAMATION
,
368 GetDocumentWindow());
371 #if wxUSE_STD_IOSTREAM
373 if ( !store
&& !store
.eof() )
375 int res
= LoadObject(store
).GetLastError();
376 if ((res
!= wxSTREAM_NO_ERROR
) &&
377 (res
!= wxSTREAM_EOF
))
380 (void)wxMessageBox(_("Sorry, could not open this file."), msgTitle
, wxOK
|wxICON_EXCLAMATION
,
381 GetDocumentWindow());
384 SetFilename(file
, TRUE
);
393 #if wxUSE_STD_IOSTREAM
394 wxSTD istream
& wxDocument::LoadObject(wxSTD istream
& stream
)
396 wxInputStream
& wxDocument::LoadObject(wxInputStream
& stream
)
402 #if wxUSE_STD_IOSTREAM
403 wxSTD ostream
& wxDocument::SaveObject(wxSTD ostream
& stream
)
405 wxOutputStream
& wxDocument::SaveObject(wxOutputStream
& stream
)
411 bool wxDocument::Revert()
417 // Get title, or filename if no title, else unnamed
418 bool wxDocument::GetPrintableName(wxString
& buf
) const
420 if (m_documentTitle
!= wxT(""))
422 buf
= m_documentTitle
;
425 else if (m_documentFile
!= wxT(""))
427 buf
= wxFileNameFromPath(m_documentFile
);
437 wxWindow
*wxDocument::GetDocumentWindow() const
439 wxView
*view
= GetFirstView();
441 return view
->GetFrame();
443 return wxTheApp
->GetTopWindow();
446 wxCommandProcessor
*wxDocument::OnCreateCommandProcessor()
448 return new wxCommandProcessor
;
451 // TRUE if safe to close
452 bool wxDocument::OnSaveModified()
457 GetPrintableName(title
);
460 if (wxTheApp
->GetAppName() != wxT(""))
461 msgTitle
= wxTheApp
->GetAppName();
463 msgTitle
= wxString(_("Warning"));
466 prompt
.Printf(_("Do you want to save changes to document %s?"),
467 (const wxChar
*)title
);
468 int res
= wxMessageBox(prompt
, msgTitle
,
469 wxYES_NO
|wxCANCEL
|wxICON_QUESTION
,
470 GetDocumentWindow());
476 else if (res
== wxYES
)
478 else if (res
== wxCANCEL
)
484 bool wxDocument::Draw(wxDC
& WXUNUSED(context
))
489 bool wxDocument::AddView(wxView
*view
)
491 if (!m_documentViews
.Member(view
))
493 m_documentViews
.Append(view
);
499 bool wxDocument::RemoveView(wxView
*view
)
501 (void)m_documentViews
.DeleteObject(view
);
506 bool wxDocument::OnCreate(const wxString
& WXUNUSED(path
), long flags
)
508 if (GetDocumentTemplate()->CreateView(this, flags
))
514 // Called after a view is added or removed.
515 // The default implementation deletes the document if
516 // there are no more views.
517 void wxDocument::OnChangedViewList()
519 if (m_documentViews
.GetCount() == 0)
521 if (OnSaveModified())
528 void wxDocument::UpdateAllViews(wxView
*sender
, wxObject
*hint
)
530 wxList::compatibility_iterator node
= m_documentViews
.GetFirst();
533 wxView
*view
= (wxView
*)node
->GetData();
535 view
->OnUpdate(sender
, hint
);
536 node
= node
->GetNext();
540 void wxDocument::NotifyClosing()
542 wxList::compatibility_iterator node
= m_documentViews
.GetFirst();
545 wxView
*view
= (wxView
*)node
->GetData();
546 view
->OnClosingDocument();
547 node
= node
->GetNext();
551 void wxDocument::SetFilename(const wxString
& filename
, bool notifyViews
)
553 m_documentFile
= filename
;
556 // Notify the views that the filename has changed
557 wxList::compatibility_iterator node
= m_documentViews
.GetFirst();
560 wxView
*view
= (wxView
*)node
->GetData();
561 view
->OnChangeFilename();
562 node
= node
->GetNext();
567 // ----------------------------------------------------------------------------
569 // ----------------------------------------------------------------------------
573 m_viewDocument
= (wxDocument
*) NULL
;
575 m_viewFrame
= (wxFrame
*) NULL
;
580 GetDocumentManager()->ActivateView(this, FALSE
);
581 m_viewDocument
->RemoveView(this);
584 // Extend event processing to search the document's event table
585 bool wxView::ProcessEvent(wxEvent
& event
)
587 if ( !GetDocument() || !GetDocument()->ProcessEvent(event
) )
588 return wxEvtHandler::ProcessEvent(event
);
593 void wxView::OnActivateView(bool WXUNUSED(activate
), wxView
*WXUNUSED(activeView
), wxView
*WXUNUSED(deactiveView
))
597 void wxView::OnPrint(wxDC
*dc
, wxObject
*WXUNUSED(info
))
602 void wxView::OnUpdate(wxView
*WXUNUSED(sender
), wxObject
*WXUNUSED(hint
))
606 void wxView::OnChangeFilename()
608 if (GetFrame() && GetDocument())
612 GetDocument()->GetPrintableName(title
);
614 GetFrame()->SetTitle(title
);
618 void wxView::SetDocument(wxDocument
*doc
)
620 m_viewDocument
= doc
;
625 bool wxView::Close(bool deleteWindow
)
627 if (OnClose(deleteWindow
))
633 void wxView::Activate(bool activate
)
635 if (GetDocument() && GetDocumentManager())
637 OnActivateView(activate
, this, GetDocumentManager()->GetCurrentView());
638 GetDocumentManager()->ActivateView(this, activate
);
642 bool wxView::OnClose(bool WXUNUSED(deleteWindow
))
644 return GetDocument() ? GetDocument()->Close() : TRUE
;
647 #if wxUSE_PRINTING_ARCHITECTURE
648 wxPrintout
*wxView::OnCreatePrintout()
650 return new wxDocPrintout(this);
652 #endif // wxUSE_PRINTING_ARCHITECTURE
654 // ----------------------------------------------------------------------------
656 // ----------------------------------------------------------------------------
658 wxDocTemplate::wxDocTemplate(wxDocManager
*manager
,
659 const wxString
& descr
,
660 const wxString
& filter
,
663 const wxString
& docTypeName
,
664 const wxString
& viewTypeName
,
665 wxClassInfo
*docClassInfo
,
666 wxClassInfo
*viewClassInfo
,
669 m_documentManager
= manager
;
670 m_description
= descr
;
673 m_fileFilter
= filter
;
675 m_docTypeName
= docTypeName
;
676 m_viewTypeName
= viewTypeName
;
677 m_documentManager
->AssociateTemplate(this);
679 m_docClassInfo
= docClassInfo
;
680 m_viewClassInfo
= viewClassInfo
;
683 wxDocTemplate::~wxDocTemplate()
685 m_documentManager
->DisassociateTemplate(this);
688 // Tries to dynamically construct an object of the right class.
689 wxDocument
*wxDocTemplate::CreateDocument(const wxString
& path
, long flags
)
692 return (wxDocument
*) NULL
;
693 wxDocument
*doc
= (wxDocument
*)m_docClassInfo
->CreateObject();
694 doc
->SetFilename(path
);
695 doc
->SetDocumentTemplate(this);
696 GetDocumentManager()->AddDocument(doc
);
697 doc
->SetCommandProcessor(doc
->OnCreateCommandProcessor());
699 if (doc
->OnCreate(path
, flags
))
703 if (GetDocumentManager()->GetDocuments().Member(doc
))
704 doc
->DeleteAllViews();
705 return (wxDocument
*) NULL
;
709 wxView
*wxDocTemplate::CreateView(wxDocument
*doc
, long flags
)
711 if (!m_viewClassInfo
)
712 return (wxView
*) NULL
;
713 wxView
*view
= (wxView
*)m_viewClassInfo
->CreateObject();
714 view
->SetDocument(doc
);
715 if (view
->OnCreate(doc
, flags
))
722 return (wxView
*) NULL
;
726 // The default (very primitive) format detection: check is the extension is
727 // that of the template
728 bool wxDocTemplate::FileMatchesTemplate(const wxString
& path
)
730 return GetDefaultExtension().IsSameAs(FindExtension(path
));
733 // ----------------------------------------------------------------------------
735 // ----------------------------------------------------------------------------
737 BEGIN_EVENT_TABLE(wxDocManager
, wxEvtHandler
)
738 EVT_MENU(wxID_OPEN
, wxDocManager::OnFileOpen
)
739 EVT_MENU(wxID_CLOSE
, wxDocManager::OnFileClose
)
740 EVT_MENU(wxID_CLOSE_ALL
, wxDocManager::OnFileCloseAll
)
741 EVT_MENU(wxID_REVERT
, wxDocManager::OnFileRevert
)
742 EVT_MENU(wxID_NEW
, wxDocManager::OnFileNew
)
743 EVT_MENU(wxID_SAVE
, wxDocManager::OnFileSave
)
744 EVT_MENU(wxID_SAVEAS
, wxDocManager::OnFileSaveAs
)
745 EVT_MENU(wxID_UNDO
, wxDocManager::OnUndo
)
746 EVT_MENU(wxID_REDO
, wxDocManager::OnRedo
)
748 EVT_UPDATE_UI(wxID_OPEN
, wxDocManager::OnUpdateFileOpen
)
749 EVT_UPDATE_UI(wxID_CLOSE
, wxDocManager::OnUpdateFileClose
)
750 EVT_UPDATE_UI(wxID_CLOSE_ALL
, wxDocManager::OnUpdateFileClose
)
751 EVT_UPDATE_UI(wxID_REVERT
, wxDocManager::OnUpdateFileRevert
)
752 EVT_UPDATE_UI(wxID_NEW
, wxDocManager::OnUpdateFileNew
)
753 EVT_UPDATE_UI(wxID_SAVE
, wxDocManager::OnUpdateFileSave
)
754 EVT_UPDATE_UI(wxID_SAVEAS
, wxDocManager::OnUpdateFileSaveAs
)
755 EVT_UPDATE_UI(wxID_UNDO
, wxDocManager::OnUpdateUndo
)
756 EVT_UPDATE_UI(wxID_REDO
, wxDocManager::OnUpdateRedo
)
758 #if wxUSE_PRINTING_ARCHITECTURE
759 EVT_MENU(wxID_PRINT
, wxDocManager::OnPrint
)
760 EVT_MENU(wxID_PRINT_SETUP
, wxDocManager::OnPrintSetup
)
761 EVT_MENU(wxID_PREVIEW
, wxDocManager::OnPreview
)
763 EVT_UPDATE_UI(wxID_PRINT
, wxDocManager::OnUpdatePrint
)
764 EVT_UPDATE_UI(wxID_PRINT_SETUP
, wxDocManager::OnUpdatePrintSetup
)
765 EVT_UPDATE_UI(wxID_PREVIEW
, wxDocManager::OnUpdatePreview
)
769 wxDocManager
* wxDocManager::sm_docManager
= (wxDocManager
*) NULL
;
771 wxDocManager::wxDocManager(long flags
, bool initialize
)
773 m_defaultDocumentNameCounter
= 1;
775 m_currentView
= (wxView
*) NULL
;
776 m_maxDocsOpen
= 10000;
777 m_fileHistory
= (wxFileHistory
*) NULL
;
780 sm_docManager
= this;
783 wxDocManager::~wxDocManager()
787 delete m_fileHistory
;
788 sm_docManager
= (wxDocManager
*) NULL
;
791 // closes the specified document
792 bool wxDocManager::CloseDocument(wxDocument
* doc
, bool force
)
794 if (doc
->Close() || force
)
796 // Implicitly deletes the document when
797 // the last view is deleted
798 doc
->DeleteAllViews();
800 // Check we're really deleted
801 if (m_docs
.Member(doc
))
809 bool wxDocManager::CloseDocuments(bool force
)
811 wxList::compatibility_iterator node
= m_docs
.GetFirst();
814 wxDocument
*doc
= (wxDocument
*)node
->GetData();
815 wxList::compatibility_iterator next
= node
->GetNext();
817 if (!CloseDocument(doc
, force
))
820 // This assumes that documents are not connected in
821 // any way, i.e. deleting one document does NOT
828 bool wxDocManager::Clear(bool force
)
830 if (!CloseDocuments(force
))
833 wxList::compatibility_iterator node
= m_templates
.GetFirst();
836 wxDocTemplate
*templ
= (wxDocTemplate
*) node
->GetData();
837 wxList::compatibility_iterator next
= node
->GetNext();
844 bool wxDocManager::Initialize()
846 m_fileHistory
= OnCreateFileHistory();
850 wxFileHistory
*wxDocManager::OnCreateFileHistory()
852 return new wxFileHistory
;
855 void wxDocManager::OnFileClose(wxCommandEvent
& WXUNUSED(event
))
857 wxDocument
*doc
= GetCurrentDocument();
862 doc
->DeleteAllViews();
863 if (m_docs
.Member(doc
))
868 void wxDocManager::OnFileCloseAll(wxCommandEvent
& WXUNUSED(event
))
870 CloseDocuments(FALSE
);
873 void wxDocManager::OnFileNew(wxCommandEvent
& WXUNUSED(event
))
875 CreateDocument( wxT(""), wxDOC_NEW
);
878 void wxDocManager::OnFileOpen(wxCommandEvent
& WXUNUSED(event
))
880 if ( !CreateDocument( wxT(""), 0) )
886 void wxDocManager::OnFileRevert(wxCommandEvent
& WXUNUSED(event
))
888 wxDocument
*doc
= GetCurrentDocument();
894 void wxDocManager::OnFileSave(wxCommandEvent
& WXUNUSED(event
))
896 wxDocument
*doc
= GetCurrentDocument();
902 void wxDocManager::OnFileSaveAs(wxCommandEvent
& WXUNUSED(event
))
904 wxDocument
*doc
= GetCurrentDocument();
910 void wxDocManager::OnPrint(wxCommandEvent
& WXUNUSED(event
))
912 #if wxUSE_PRINTING_ARCHITECTURE
913 wxView
*view
= GetCurrentView();
917 wxPrintout
*printout
= view
->OnCreatePrintout();
921 printer
.Print(view
->GetFrame(), printout
, TRUE
);
925 #endif // wxUSE_PRINTING_ARCHITECTURE
928 void wxDocManager::OnPrintSetup(wxCommandEvent
& WXUNUSED(event
))
930 #if wxUSE_PRINTING_ARCHITECTURE
931 wxWindow
*parentWin
= wxTheApp
->GetTopWindow();
932 wxView
*view
= GetCurrentView();
934 parentWin
= view
->GetFrame();
936 wxPrintDialogData data
;
938 wxPrintDialog
printerDialog(parentWin
, &data
);
939 printerDialog
.GetPrintDialogData().SetSetupDialog(TRUE
);
940 printerDialog
.ShowModal();
941 #endif // wxUSE_PRINTING_ARCHITECTURE
944 void wxDocManager::OnPreview(wxCommandEvent
& WXUNUSED(event
))
946 #if wxUSE_PRINTING_ARCHITECTURE
947 wxView
*view
= GetCurrentView();
951 wxPrintout
*printout
= view
->OnCreatePrintout();
954 // Pass two printout objects: for preview, and possible printing.
955 wxPrintPreviewBase
*preview
= new wxPrintPreview(printout
, view
->OnCreatePrintout());
957 wxPreviewFrame
*frame
= new wxPreviewFrame(preview
, (wxFrame
*)wxTheApp
->GetTopWindow(), _("Print Preview"),
958 wxPoint(100, 100), wxSize(600, 650));
959 frame
->Centre(wxBOTH
);
963 #endif // wxUSE_PRINTING_ARCHITECTURE
966 void wxDocManager::OnUndo(wxCommandEvent
& event
)
968 wxDocument
*doc
= GetCurrentDocument();
971 if (doc
->GetCommandProcessor())
972 doc
->GetCommandProcessor()->Undo();
977 void wxDocManager::OnRedo(wxCommandEvent
& event
)
979 wxDocument
*doc
= GetCurrentDocument();
982 if (doc
->GetCommandProcessor())
983 doc
->GetCommandProcessor()->Redo();
988 // Handlers for UI update commands
990 void wxDocManager::OnUpdateFileOpen(wxUpdateUIEvent
& event
)
992 event
.Enable( TRUE
);
995 void wxDocManager::OnUpdateFileClose(wxUpdateUIEvent
& event
)
997 wxDocument
*doc
= GetCurrentDocument();
998 event
.Enable( (doc
!= (wxDocument
*) NULL
) );
1001 void wxDocManager::OnUpdateFileRevert(wxUpdateUIEvent
& event
)
1003 wxDocument
*doc
= GetCurrentDocument();
1004 event
.Enable( (doc
!= (wxDocument
*) NULL
) );
1007 void wxDocManager::OnUpdateFileNew(wxUpdateUIEvent
& event
)
1009 event
.Enable( TRUE
);
1012 void wxDocManager::OnUpdateFileSave(wxUpdateUIEvent
& event
)
1014 wxDocument
*doc
= GetCurrentDocument();
1015 event
.Enable( doc
&& doc
->IsModified() );
1018 void wxDocManager::OnUpdateFileSaveAs(wxUpdateUIEvent
& event
)
1020 wxDocument
*doc
= GetCurrentDocument();
1021 event
.Enable( (doc
!= (wxDocument
*) NULL
) );
1024 void wxDocManager::OnUpdateUndo(wxUpdateUIEvent
& event
)
1026 wxDocument
*doc
= GetCurrentDocument();
1028 event
.Enable(FALSE
);
1029 else if (!doc
->GetCommandProcessor())
1033 event
.Enable( doc
->GetCommandProcessor()->CanUndo() );
1034 doc
->GetCommandProcessor()->SetMenuStrings();
1038 void wxDocManager::OnUpdateRedo(wxUpdateUIEvent
& event
)
1040 wxDocument
*doc
= GetCurrentDocument();
1042 event
.Enable(FALSE
);
1043 else if (!doc
->GetCommandProcessor())
1047 event
.Enable( doc
->GetCommandProcessor()->CanRedo() );
1048 doc
->GetCommandProcessor()->SetMenuStrings();
1052 void wxDocManager::OnUpdatePrint(wxUpdateUIEvent
& event
)
1054 wxDocument
*doc
= GetCurrentDocument();
1055 event
.Enable( (doc
!= (wxDocument
*) NULL
) );
1058 void wxDocManager::OnUpdatePrintSetup(wxUpdateUIEvent
& event
)
1060 event
.Enable( TRUE
);
1063 void wxDocManager::OnUpdatePreview(wxUpdateUIEvent
& event
)
1065 wxDocument
*doc
= GetCurrentDocument();
1066 event
.Enable( (doc
!= (wxDocument
*) NULL
) );
1069 wxView
*wxDocManager::GetCurrentView() const
1072 return m_currentView
;
1073 if (m_docs
.GetCount() == 1)
1075 wxDocument
* doc
= (wxDocument
*) m_docs
.GetFirst()->GetData();
1076 return doc
->GetFirstView();
1078 return (wxView
*) NULL
;
1081 // Extend event processing to search the view's event table
1082 bool wxDocManager::ProcessEvent(wxEvent
& event
)
1084 wxView
* view
= GetCurrentView();
1087 if (view
->ProcessEvent(event
))
1090 return wxEvtHandler::ProcessEvent(event
);
1093 wxDocument
*wxDocManager::CreateDocument(const wxString
& path
, long flags
)
1095 wxDocTemplate
**templates
= new wxDocTemplate
*[m_templates
.GetCount()];
1098 for (size_t i
= 0; i
< m_templates
.GetCount(); i
++)
1100 wxDocTemplate
*temp
= (wxDocTemplate
*)(m_templates
.Item(i
)->GetData());
1101 if (temp
->IsVisible())
1103 templates
[n
] = temp
;
1110 return (wxDocument
*) NULL
;
1113 wxDocument
* docToClose
= NULL
;
1115 // If we've reached the max number of docs, close the
1117 if ( (int)GetDocuments().GetCount() >= m_maxDocsOpen
)
1119 wxDocument
*doc
= (wxDocument
*)GetDocuments().GetFirst()->GetData();
1123 // New document: user chooses a template, unless there's only one.
1124 if (flags
& wxDOC_NEW
)
1130 if (!CloseDocument(docToClose
, FALSE
))
1137 wxDocTemplate
*temp
= templates
[0];
1139 wxDocument
*newDoc
= temp
->CreateDocument(path
, flags
);
1143 newDoc
->SetDocumentName(temp
->GetDocumentName());
1144 newDoc
->SetDocumentTemplate(temp
);
1145 newDoc
->OnNewDocument();
1150 wxDocTemplate
*temp
= SelectDocumentType(templates
, n
);
1156 if (!CloseDocument(docToClose
, FALSE
))
1162 wxDocument
*newDoc
= temp
->CreateDocument(path
, flags
);
1166 newDoc
->SetDocumentName(temp
->GetDocumentName());
1167 newDoc
->SetDocumentTemplate(temp
);
1168 newDoc
->OnNewDocument();
1173 return (wxDocument
*) NULL
;
1176 // Existing document
1177 wxDocTemplate
*temp
;
1179 wxString
path2(wxT(""));
1180 if (path
!= wxT(""))
1183 if (flags
& wxDOC_SILENT
)
1185 temp
= FindTemplateForPath(path2
);
1188 // Since we do not add files with non-default extensions to the FileHistory this
1189 // can only happen if the application changes the allowed templates in runtime.
1190 (void)wxMessageBox(_("Sorry, the format for this file is unknown."),
1192 wxOK
| wxICON_EXCLAMATION
, wxFindSuitableParent());
1196 temp
= SelectDocumentPath(templates
, n
, path2
, flags
);
1204 if (!CloseDocument(docToClose
, FALSE
))
1210 wxDocument
*newDoc
= temp
->CreateDocument(path2
, flags
);
1213 newDoc
->SetDocumentName(temp
->GetDocumentName());
1214 newDoc
->SetDocumentTemplate(temp
);
1215 if (!newDoc
->OnOpenDocument(path2
))
1217 newDoc
->DeleteAllViews();
1218 // delete newDoc; // Implicitly deleted by DeleteAllViews
1219 return (wxDocument
*) NULL
;
1221 // A file that doesn't use the default extension of its document
1222 // template cannot be opened via the FileHistory, so we do not
1224 if (temp
->FileMatchesTemplate(path2
))
1225 AddFileToHistory(path2
);
1230 return (wxDocument
*) NULL
;
1233 wxView
*wxDocManager::CreateView(wxDocument
*doc
, long flags
)
1235 wxDocTemplate
**templates
= new wxDocTemplate
*[m_templates
.GetCount()];
1238 for (size_t i
= 0; i
< m_templates
.GetCount(); i
++)
1240 wxDocTemplate
*temp
= (wxDocTemplate
*)(m_templates
.Item(i
)->GetData());
1241 if (temp
->IsVisible())
1243 if (temp
->GetDocumentName() == doc
->GetDocumentName())
1245 templates
[n
] = temp
;
1253 return (wxView
*) NULL
;
1257 wxDocTemplate
*temp
= templates
[0];
1259 wxView
*view
= temp
->CreateView(doc
, flags
);
1261 view
->SetViewName(temp
->GetViewName());
1265 wxDocTemplate
*temp
= SelectViewType(templates
, n
);
1269 wxView
*view
= temp
->CreateView(doc
, flags
);
1271 view
->SetViewName(temp
->GetViewName());
1275 return (wxView
*) NULL
;
1278 // Not yet implemented
1279 void wxDocManager::DeleteTemplate(wxDocTemplate
*WXUNUSED(temp
), long WXUNUSED(flags
))
1283 // Not yet implemented
1284 bool wxDocManager::FlushDoc(wxDocument
*WXUNUSED(doc
))
1289 wxDocument
*wxDocManager::GetCurrentDocument() const
1291 wxView
*view
= GetCurrentView();
1293 return view
->GetDocument();
1295 return (wxDocument
*) NULL
;
1298 // Make a default document name
1299 bool wxDocManager::MakeDefaultName(wxString
& name
)
1301 name
.Printf(_("unnamed%d"), m_defaultDocumentNameCounter
);
1302 m_defaultDocumentNameCounter
++;
1307 // Make a frame title (override this to do something different)
1308 // If docName is empty, a document is not currently active.
1309 wxString
wxDocManager::MakeFrameTitle(wxDocument
* doc
)
1311 wxString appName
= wxTheApp
->GetAppName();
1318 doc
->GetPrintableName(docName
);
1319 title
= docName
+ wxString(_(" - ")) + appName
;
1325 // Not yet implemented
1326 wxDocTemplate
*wxDocManager::MatchTemplate(const wxString
& WXUNUSED(path
))
1328 return (wxDocTemplate
*) NULL
;
1331 // File history management
1332 void wxDocManager::AddFileToHistory(const wxString
& file
)
1335 m_fileHistory
->AddFileToHistory(file
);
1338 void wxDocManager::RemoveFileFromHistory(size_t i
)
1341 m_fileHistory
->RemoveFileFromHistory(i
);
1344 wxString
wxDocManager::GetHistoryFile(size_t i
) const
1349 histFile
= m_fileHistory
->GetHistoryFile(i
);
1354 void wxDocManager::FileHistoryUseMenu(wxMenu
*menu
)
1357 m_fileHistory
->UseMenu(menu
);
1360 void wxDocManager::FileHistoryRemoveMenu(wxMenu
*menu
)
1363 m_fileHistory
->RemoveMenu(menu
);
1367 void wxDocManager::FileHistoryLoad(wxConfigBase
& config
)
1370 m_fileHistory
->Load(config
);
1373 void wxDocManager::FileHistorySave(wxConfigBase
& config
)
1376 m_fileHistory
->Save(config
);
1380 void wxDocManager::FileHistoryAddFilesToMenu(wxMenu
* menu
)
1383 m_fileHistory
->AddFilesToMenu(menu
);
1386 void wxDocManager::FileHistoryAddFilesToMenu()
1389 m_fileHistory
->AddFilesToMenu();
1392 size_t wxDocManager::GetHistoryFilesCount() const
1394 return m_fileHistory
? m_fileHistory
->GetCount() : 0;
1398 // Find out the document template via matching in the document file format
1399 // against that of the template
1400 wxDocTemplate
*wxDocManager::FindTemplateForPath(const wxString
& path
)
1402 wxDocTemplate
*theTemplate
= (wxDocTemplate
*) NULL
;
1404 // Find the template which this extension corresponds to
1405 for (size_t i
= 0; i
< m_templates
.GetCount(); i
++)
1407 wxDocTemplate
*temp
= (wxDocTemplate
*)m_templates
.Item(i
)->GetData();
1408 if ( temp
->FileMatchesTemplate(path
) )
1417 // Try to get a more suitable parent frame than the top window,
1418 // for selection dialogs. Otherwise you may get an unexpected
1419 // window being activated when a dialog is shown.
1420 static wxWindow
* wxFindSuitableParent()
1422 wxWindow
* parent
= wxTheApp
->GetTopWindow();
1424 wxWindow
* focusWindow
= wxWindow::FindFocus();
1427 while (focusWindow
&&
1428 !focusWindow
->IsKindOf(CLASSINFO(wxDialog
)) &&
1429 !focusWindow
->IsKindOf(CLASSINFO(wxFrame
)))
1431 focusWindow
= focusWindow
->GetParent();
1434 parent
= focusWindow
;
1439 // Prompts user to open a file, using file specs in templates.
1440 // Must extend the file selector dialog or implement own; OR
1441 // match the extension to the template extension.
1443 wxDocTemplate
*wxDocManager::SelectDocumentPath(wxDocTemplate
**templates
,
1444 #if defined(__WXMSW__) || defined(__WXGTK__) || defined(__WXMAC__)
1447 int WXUNUSED(noTemplates
),
1450 long WXUNUSED(flags
),
1451 bool WXUNUSED(save
))
1453 // We can only have multiple filters in Windows and GTK
1454 #if defined(__WXMSW__) || defined(__WXGTK__) || defined(__WXMAC__)
1458 for (i
= 0; i
< noTemplates
; i
++)
1460 if (templates
[i
]->IsVisible())
1462 // add a '|' to separate this filter from the previous one
1463 if ( !descrBuf
.IsEmpty() )
1464 descrBuf
<< wxT('|');
1466 descrBuf
<< templates
[i
]->GetDescription()
1467 << wxT(" (") << templates
[i
]->GetFileFilter() << wxT(") |")
1468 << templates
[i
]->GetFileFilter();
1472 wxString descrBuf
= wxT("*.*");
1475 int FilterIndex
= -1;
1477 wxWindow
* parent
= wxFindSuitableParent();
1479 wxString pathTmp
= wxFileSelectorEx(_("Select a file"),
1487 wxDocTemplate
*theTemplate
= (wxDocTemplate
*)NULL
;
1488 if (!pathTmp
.IsEmpty())
1490 if (!wxFileExists(pathTmp
))
1493 if (!wxTheApp
->GetAppName().IsEmpty())
1494 msgTitle
= wxTheApp
->GetAppName();
1496 msgTitle
= wxString(_("File error"));
1498 (void)wxMessageBox(_("Sorry, could not open this file."), msgTitle
, wxOK
| wxICON_EXCLAMATION
,
1502 return (wxDocTemplate
*) NULL
;
1504 m_lastDirectory
= wxPathOnly(pathTmp
);
1508 // first choose the template using the extension, if this fails (i.e.
1509 // wxFileSelectorEx() didn't fill it), then use the path
1510 if ( FilterIndex
!= -1 )
1511 theTemplate
= templates
[FilterIndex
];
1513 theTemplate
= FindTemplateForPath(path
);
1516 // Since we do not add files with non-default extensions to the FileHistory this
1517 // can only happen if the application changes the allowed templates in runtime.
1518 (void)wxMessageBox(_("Sorry, the format for this file is unknown."),
1520 wxOK
| wxICON_EXCLAMATION
, wxFindSuitableParent());
1531 wxDocTemplate
*wxDocManager::SelectDocumentType(wxDocTemplate
**templates
,
1532 int noTemplates
, bool sort
)
1534 wxArrayString strings
;
1535 wxDocTemplate
**data
= new wxDocTemplate
*[noTemplates
];
1539 for (i
= 0; i
< noTemplates
; i
++)
1541 if (templates
[i
]->IsVisible())
1545 for (j
= 0; j
< n
; j
++)
1547 //filter out NOT unique documents + view combinations
1548 if ( templates
[i
]->m_docTypeName
== data
[j
]->m_docTypeName
&&
1549 templates
[i
]->m_viewTypeName
== data
[j
]->m_viewTypeName
1556 strings
.Add(templates
[i
]->m_description
);
1558 data
[n
] = templates
[i
];
1566 strings
.Sort(wxStringSortAscending
);
1567 // Yes, this will be slow, but template lists
1568 // are typically short.
1570 n
= strings
.Count();
1571 for (i
= 0; i
< n
; i
++)
1573 for (j
= 0; j
< noTemplates
; j
++)
1575 if (strings
[i
] == templates
[j
]->m_description
)
1576 data
[i
] = templates
[j
];
1581 wxDocTemplate
*theTemplate
;
1586 // no visible templates, hence nothing to choose from
1591 // don't propose the user to choose if he heas no choice
1592 theTemplate
= data
[0];
1596 // propose the user to choose one of several
1597 theTemplate
= (wxDocTemplate
*)wxGetSingleChoiceData
1599 _("Select a document template"),
1603 wxFindSuitableParent()
1612 wxDocTemplate
*wxDocManager::SelectViewType(wxDocTemplate
**templates
,
1613 int noTemplates
, bool sort
)
1615 wxArrayString strings
;
1616 wxDocTemplate
**data
= new wxDocTemplate
*[noTemplates
];
1620 for (i
= 0; i
< noTemplates
; i
++)
1622 wxDocTemplate
*templ
= templates
[i
];
1623 if ( templ
->IsVisible() && !templ
->GetViewName().empty() )
1627 for (j
= 0; j
< n
; j
++)
1629 //filter out NOT unique views
1630 if ( templates
[i
]->m_viewTypeName
== data
[j
]->m_viewTypeName
)
1636 strings
.Add(templ
->m_viewTypeName
);
1645 strings
.Sort(wxStringSortAscending
);
1646 // Yes, this will be slow, but template lists
1647 // are typically short.
1649 n
= strings
.Count();
1650 for (i
= 0; i
< n
; i
++)
1652 for (j
= 0; j
< noTemplates
; j
++)
1654 if (strings
[i
] == templates
[j
]->m_viewTypeName
)
1655 data
[i
] = templates
[j
];
1660 wxDocTemplate
*theTemplate
;
1662 // the same logic as above
1666 theTemplate
= (wxDocTemplate
*)NULL
;
1670 theTemplate
= data
[0];
1674 theTemplate
= (wxDocTemplate
*)wxGetSingleChoiceData
1676 _("Select a document view"),
1680 wxFindSuitableParent()
1689 void wxDocManager::AssociateTemplate(wxDocTemplate
*temp
)
1691 if (!m_templates
.Member(temp
))
1692 m_templates
.Append(temp
);
1695 void wxDocManager::DisassociateTemplate(wxDocTemplate
*temp
)
1697 m_templates
.DeleteObject(temp
);
1700 // Add and remove a document from the manager's list
1701 void wxDocManager::AddDocument(wxDocument
*doc
)
1703 if (!m_docs
.Member(doc
))
1707 void wxDocManager::RemoveDocument(wxDocument
*doc
)
1709 m_docs
.DeleteObject(doc
);
1712 // Views or windows should inform the document manager
1713 // when a view is going in or out of focus
1714 void wxDocManager::ActivateView(wxView
*view
, bool activate
)
1718 m_currentView
= view
;
1722 if ( m_currentView
== view
)
1724 // don't keep stale pointer
1725 m_currentView
= (wxView
*) NULL
;
1730 // ----------------------------------------------------------------------------
1731 // Default document child frame
1732 // ----------------------------------------------------------------------------
1734 BEGIN_EVENT_TABLE(wxDocChildFrame
, wxFrame
)
1735 EVT_ACTIVATE(wxDocChildFrame::OnActivate
)
1736 EVT_CLOSE(wxDocChildFrame::OnCloseWindow
)
1739 wxDocChildFrame::wxDocChildFrame(wxDocument
*doc
,
1743 const wxString
& title
,
1747 const wxString
& name
)
1748 : wxFrame(frame
, id
, title
, pos
, size
, style
, name
)
1750 m_childDocument
= doc
;
1753 view
->SetFrame(this);
1756 wxDocChildFrame::~wxDocChildFrame()
1760 // Extend event processing to search the view's event table
1761 bool wxDocChildFrame::ProcessEvent(wxEvent
& event
)
1764 m_childView
->Activate(TRUE
);
1766 if ( !m_childView
|| ! m_childView
->ProcessEvent(event
) )
1768 // Only hand up to the parent if it's a menu command
1769 if (!event
.IsKindOf(CLASSINFO(wxCommandEvent
)) || !GetParent() || !GetParent()->ProcessEvent(event
))
1770 return wxEvtHandler::ProcessEvent(event
);
1778 void wxDocChildFrame::OnActivate(wxActivateEvent
& event
)
1780 wxFrame::OnActivate(event
);
1783 m_childView
->Activate(event
.GetActive());
1786 void wxDocChildFrame::OnCloseWindow(wxCloseEvent
& event
)
1790 bool ans
= event
.CanVeto()
1791 ? m_childView
->Close(FALSE
) // FALSE means don't delete associated window
1792 : TRUE
; // Must delete.
1796 m_childView
->Activate(FALSE
);
1798 m_childView
= (wxView
*) NULL
;
1799 m_childDocument
= (wxDocument
*) NULL
;
1810 // ----------------------------------------------------------------------------
1811 // Default parent frame
1812 // ----------------------------------------------------------------------------
1814 BEGIN_EVENT_TABLE(wxDocParentFrame
, wxFrame
)
1815 EVT_MENU(wxID_EXIT
, wxDocParentFrame::OnExit
)
1816 EVT_MENU_RANGE(wxID_FILE1
, wxID_FILE9
, wxDocParentFrame::OnMRUFile
)
1817 EVT_CLOSE(wxDocParentFrame::OnCloseWindow
)
1820 wxDocParentFrame::wxDocParentFrame(wxDocManager
*manager
,
1823 const wxString
& title
,
1827 const wxString
& name
)
1828 : wxFrame(frame
, id
, title
, pos
, size
, style
, name
)
1830 m_docManager
= manager
;
1833 void wxDocParentFrame::OnExit(wxCommandEvent
& WXUNUSED(event
))
1838 void wxDocParentFrame::OnMRUFile(wxCommandEvent
& event
)
1840 int n
= event
.GetId() - wxID_FILE1
; // the index in MRU list
1841 wxString
filename(m_docManager
->GetHistoryFile(n
));
1842 if ( !filename
.IsEmpty() )
1844 // verify that the file exists before doing anything else
1845 if ( wxFile::Exists(filename
) )
1848 if (!m_docManager
->CreateDocument(filename
, wxDOC_SILENT
))
1850 // remove the file from the MRU list. The user should already be notified.
1851 m_docManager
->RemoveFileFromHistory(n
);
1853 wxLogError(_("The file '%s' couldn't be opened.\nIt has been removed from the most recently used files list."),
1859 // remove the bogus filename from the MRU list and notify the user
1861 m_docManager
->RemoveFileFromHistory(n
);
1863 wxLogError(_("The file '%s' doesn't exist and couldn't be opened.\nIt has been removed from the most recently used files list."),
1869 // Extend event processing to search the view's event table
1870 bool wxDocParentFrame::ProcessEvent(wxEvent
& event
)
1872 // Try the document manager, then do default processing
1873 if (!m_docManager
|| !m_docManager
->ProcessEvent(event
))
1874 return wxEvtHandler::ProcessEvent(event
);
1879 // Define the behaviour for the frame closing
1880 // - must delete all frames except for the main one.
1881 void wxDocParentFrame::OnCloseWindow(wxCloseEvent
& event
)
1883 if (m_docManager
->Clear(!event
.CanVeto()))
1891 #if wxUSE_PRINTING_ARCHITECTURE
1893 wxDocPrintout::wxDocPrintout(wxView
*view
, const wxString
& title
)
1896 m_printoutView
= view
;
1899 bool wxDocPrintout::OnPrintPage(int WXUNUSED(page
))
1903 // Get the logical pixels per inch of screen and printer
1904 int ppiScreenX
, ppiScreenY
;
1905 GetPPIScreen(&ppiScreenX
, &ppiScreenY
);
1906 wxUnusedVar(ppiScreenY
);
1907 int ppiPrinterX
, ppiPrinterY
;
1908 GetPPIPrinter(&ppiPrinterX
, &ppiPrinterY
);
1909 wxUnusedVar(ppiPrinterY
);
1911 // This scales the DC so that the printout roughly represents the
1912 // the screen scaling. The text point size _should_ be the right size
1913 // but in fact is too small for some reason. This is a detail that will
1914 // need to be addressed at some point but can be fudged for the
1916 float scale
= (float)((float)ppiPrinterX
/(float)ppiScreenX
);
1918 // Now we have to check in case our real page size is reduced
1919 // (e.g. because we're drawing to a print preview memory DC)
1920 int pageWidth
, pageHeight
;
1922 dc
->GetSize(&w
, &h
);
1923 GetPageSizePixels(&pageWidth
, &pageHeight
);
1924 wxUnusedVar(pageHeight
);
1926 // If printer pageWidth == current DC width, then this doesn't
1927 // change. But w might be the preview bitmap width, so scale down.
1928 float overallScale
= scale
* (float)(w
/(float)pageWidth
);
1929 dc
->SetUserScale(overallScale
, overallScale
);
1933 m_printoutView
->OnDraw(dc
);
1938 bool wxDocPrintout::HasPage(int pageNum
)
1940 return (pageNum
== 1);
1943 bool wxDocPrintout::OnBeginDocument(int startPage
, int endPage
)
1945 if (!wxPrintout::OnBeginDocument(startPage
, endPage
))
1951 void wxDocPrintout::GetPageInfo(int *minPage
, int *maxPage
, int *selPageFrom
, int *selPageTo
)
1959 #endif // wxUSE_PRINTING_ARCHITECTURE
1961 // ----------------------------------------------------------------------------
1962 // File history processor
1963 // ----------------------------------------------------------------------------
1965 static inline wxChar
* MYcopystring(const wxString
& s
)
1967 wxChar
* copy
= new wxChar
[s
.length() + 1];
1968 return wxStrcpy(copy
, s
.c_str());
1971 static inline wxChar
* MYcopystring(const wxChar
* s
)
1973 wxChar
* copy
= new wxChar
[wxStrlen(s
) + 1];
1974 return wxStrcpy(copy
, s
);
1977 wxFileHistory::wxFileHistory(size_t maxFiles
, wxWindowID idBase
)
1979 m_fileMaxFiles
= maxFiles
;
1982 m_fileHistory
= new wxChar
*[m_fileMaxFiles
];
1985 wxFileHistory::~wxFileHistory()
1988 for (i
= 0; i
< m_fileHistoryN
; i
++)
1989 delete[] m_fileHistory
[i
];
1990 delete[] m_fileHistory
;
1993 // File history management
1994 void wxFileHistory::AddFileToHistory(const wxString
& file
)
1998 // Check we don't already have this file
1999 for (i
= 0; i
< m_fileHistoryN
; i
++)
2001 #if defined( __WXMSW__ ) // Add any other OSes with case insensitive file names
2002 wxString testString
;
2003 if ( m_fileHistory
[i
] )
2004 testString
= m_fileHistory
[i
];
2005 if ( m_fileHistory
[i
] && ( file
.Lower() == testString
.Lower() ) )
2007 if ( m_fileHistory
[i
] && ( file
== m_fileHistory
[i
] ) )
2010 // we do have it, move it to the top of the history
2011 RemoveFileFromHistory (i
);
2012 AddFileToHistory (file
);
2017 // if we already have a full history, delete the one at the end
2018 if ( m_fileMaxFiles
== m_fileHistoryN
)
2020 RemoveFileFromHistory (m_fileHistoryN
- 1);
2021 AddFileToHistory (file
);
2025 // Add to the project file history:
2026 // Move existing files (if any) down so we can insert file at beginning.
2027 if (m_fileHistoryN
< m_fileMaxFiles
)
2029 wxList::compatibility_iterator node
= m_fileMenus
.GetFirst();
2032 wxMenu
* menu
= (wxMenu
*) node
->GetData();
2033 if ( m_fileHistoryN
== 0 && menu
->GetMenuItemCount() )
2035 menu
->AppendSeparator();
2037 menu
->Append(m_idBase
+m_fileHistoryN
, _("[EMPTY]"));
2038 node
= node
->GetNext();
2042 // Shuffle filenames down
2043 for (i
= (m_fileHistoryN
-1); i
> 0; i
--)
2045 m_fileHistory
[i
] = m_fileHistory
[i
-1];
2047 m_fileHistory
[0] = MYcopystring(file
);
2049 // this is the directory of the last opened file
2050 wxString pathCurrent
;
2051 wxSplitPath( m_fileHistory
[0], &pathCurrent
, NULL
, NULL
);
2052 for (i
= 0; i
< m_fileHistoryN
; i
++)
2054 if ( m_fileHistory
[i
] )
2056 // if in same directory just show the filename; otherwise the full
2058 wxString pathInMenu
, path
, filename
, ext
;
2059 wxSplitPath( m_fileHistory
[i
], &path
, &filename
, &ext
);
2060 if ( path
== pathCurrent
)
2062 pathInMenu
= filename
;
2064 pathInMenu
= pathInMenu
+ wxFILE_SEP_EXT
+ ext
;
2068 // absolute path; could also set relative path
2069 pathInMenu
= m_fileHistory
[i
];
2073 buf
.Printf(s_MRUEntryFormat
, i
+ 1, pathInMenu
.c_str());
2074 wxList::compatibility_iterator node
= m_fileMenus
.GetFirst();
2077 wxMenu
* menu
= (wxMenu
*) node
->GetData();
2078 menu
->SetLabel(m_idBase
+ i
, buf
);
2079 node
= node
->GetNext();
2085 void wxFileHistory::RemoveFileFromHistory(size_t i
)
2087 wxCHECK_RET( i
< m_fileHistoryN
,
2088 wxT("invalid index in wxFileHistory::RemoveFileFromHistory") );
2090 // delete the element from the array (could use memmove() too...)
2091 delete [] m_fileHistory
[i
];
2094 for ( j
= i
; j
< m_fileHistoryN
- 1; j
++ )
2096 m_fileHistory
[j
] = m_fileHistory
[j
+ 1];
2099 wxList::compatibility_iterator node
= m_fileMenus
.GetFirst();
2102 wxMenu
* menu
= (wxMenu
*) node
->GetData();
2104 // shuffle filenames up
2106 for ( j
= i
; j
< m_fileHistoryN
- 1; j
++ )
2108 buf
.Printf(s_MRUEntryFormat
, j
+ 1, m_fileHistory
[j
]);
2109 menu
->SetLabel(m_idBase
+ j
, buf
);
2112 node
= node
->GetNext();
2114 // delete the last menu item which is unused now
2115 wxWindowID lastItemId
= m_idBase
+ m_fileHistoryN
- 1;
2116 if (menu
->FindItem(lastItemId
))
2118 menu
->Delete(lastItemId
);
2121 // delete the last separator too if no more files are left
2122 if ( m_fileHistoryN
== 1 )
2124 wxMenuItemList::compatibility_iterator node
= menu
->GetMenuItems().GetLast();
2127 wxMenuItem
*menuItem
= node
->GetData();
2128 if ( menuItem
->IsSeparator() )
2130 menu
->Delete(menuItem
);
2132 //else: should we search backwards for the last separator?
2134 //else: menu is empty somehow
2141 wxString
wxFileHistory::GetHistoryFile(size_t i
) const
2144 if ( i
< m_fileHistoryN
)
2146 s
= m_fileHistory
[i
];
2150 wxFAIL_MSG( wxT("bad index in wxFileHistory::GetHistoryFile") );
2156 void wxFileHistory::UseMenu(wxMenu
*menu
)
2158 if (!m_fileMenus
.Member(menu
))
2159 m_fileMenus
.Append(menu
);
2162 void wxFileHistory::RemoveMenu(wxMenu
*menu
)
2164 m_fileMenus
.DeleteObject(menu
);
2168 void wxFileHistory::Load(wxConfigBase
& config
)
2172 buf
.Printf(wxT("file%d"), (int)m_fileHistoryN
+1);
2173 wxString historyFile
;
2174 while ((m_fileHistoryN
< m_fileMaxFiles
) && config
.Read(buf
, &historyFile
) && (historyFile
!= wxT("")))
2176 m_fileHistory
[m_fileHistoryN
] = MYcopystring((const wxChar
*) historyFile
);
2178 buf
.Printf(wxT("file%d"), (int)m_fileHistoryN
+1);
2179 historyFile
= wxT("");
2184 void wxFileHistory::Save(wxConfigBase
& config
)
2187 for (i
= 0; i
< m_fileMaxFiles
; i
++)
2190 buf
.Printf(wxT("file%d"), (int)i
+1);
2191 if (i
< m_fileHistoryN
)
2192 config
.Write(buf
, wxString(m_fileHistory
[i
]));
2194 config
.Write(buf
, wxEmptyString
);
2197 #endif // wxUSE_CONFIG
2199 void wxFileHistory::AddFilesToMenu()
2201 if (m_fileHistoryN
> 0)
2203 wxList::compatibility_iterator node
= m_fileMenus
.GetFirst();
2206 wxMenu
* menu
= (wxMenu
*) node
->GetData();
2207 if (menu
->GetMenuItemCount())
2209 menu
->AppendSeparator();
2213 for (i
= 0; i
< m_fileHistoryN
; i
++)
2215 if (m_fileHistory
[i
])
2218 buf
.Printf(s_MRUEntryFormat
, i
+1, m_fileHistory
[i
]);
2219 menu
->Append(m_idBase
+i
, buf
);
2222 node
= node
->GetNext();
2227 void wxFileHistory::AddFilesToMenu(wxMenu
* menu
)
2229 if (m_fileHistoryN
> 0)
2231 if (menu
->GetMenuItemCount())
2233 menu
->AppendSeparator();
2237 for (i
= 0; i
< m_fileHistoryN
; i
++)
2239 if (m_fileHistory
[i
])
2242 buf
.Printf(s_MRUEntryFormat
, i
+1, m_fileHistory
[i
]);
2243 menu
->Append(m_idBase
+i
, buf
);
2249 // ----------------------------------------------------------------------------
2250 // Permits compatibility with existing file formats and functions that
2251 // manipulate files directly
2252 // ----------------------------------------------------------------------------
2254 #if wxUSE_STD_IOSTREAM
2256 bool wxTransferFileToStream(const wxString
& filename
, wxSTD ostream
& stream
)
2258 wxFFile
file(filename
, _T("rb"));
2259 if ( !file
.IsOpened() )
2267 nRead
= file
.Read(buf
, WXSIZEOF(buf
));
2271 stream
.write(buf
, nRead
);
2275 while ( !file
.Eof() );
2280 bool wxTransferStreamToFile(wxSTD istream
& stream
, const wxString
& filename
)
2282 wxFFile
file(filename
, _T("wb"));
2283 if ( !file
.IsOpened() )
2289 stream
.read(buf
, WXSIZEOF(buf
));
2290 if ( !stream
.bad() ) // fail may be set on EOF, don't use operator!()
2292 if ( !file
.Write(buf
, stream
.gcount()) )
2296 while ( !stream
.eof() );
2301 #else // !wxUSE_STD_IOSTREAM
2303 bool wxTransferFileToStream(const wxString
& filename
, wxOutputStream
& stream
)
2305 wxFFile
file(filename
, _T("rb"));
2306 if ( !file
.IsOpened() )
2314 nRead
= file
.Read(buf
, WXSIZEOF(buf
));
2318 stream
.Write(buf
, nRead
);
2322 while ( !file
.Eof() );
2327 bool wxTransferStreamToFile(wxInputStream
& stream
, const wxString
& filename
)
2329 wxFFile
file(filename
, _T("wb"));
2330 if ( !file
.IsOpened() )
2336 stream
.Read(buf
, WXSIZEOF(buf
));
2338 const size_t nRead
= stream
.LastRead();
2339 if ( !nRead
|| !file
.Write(buf
, nRead
) )
2342 while ( !stream
.Eof() );
2347 #endif // wxUSE_STD_IOSTREAM/!wxUSE_STD_IOSTREAM
2349 #endif // wxUSE_DOC_VIEW_ARCHITECTURE