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