]> git.saurik.com Git - wxWidgets.git/blame - src/common/docview.cpp
Traditional Chinese translations update from Wei-Lun Chao.
[wxWidgets.git] / src / common / docview.cpp
CommitLineData
5d9ea849 1/////////////////////////////////////////////////////////////////////////////
1e6feb95 2// Name: src/common/docview.cpp
c801d85f
KB
3// Purpose: Document/view classes
4// Author: Julian Smart
c77049a0 5// Modified by: Vadim Zeitlin
c801d85f
KB
6// Created: 01/02/97
7// RCS-ID: $Id$
55d99c7a 8// Copyright: (c) Julian Smart
65571936 9// Licence: wxWindows licence
c801d85f
KB
10/////////////////////////////////////////////////////////////////////////////
11
0fb67cd1
VZ
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
c801d85f
KB
20// For compilers that support precompilation, includes "wx.h".
21#include "wx/wxprec.h"
22
23#ifdef __BORLANDC__
8ecff181 24 #pragma hdrstop
c801d85f
KB
25#endif
26
47d67540 27#if wxUSE_DOC_VIEW_ARCHITECTURE
c801d85f 28
246c5004
WS
29#include "wx/docview.h"
30
c801d85f 31#ifndef WX_PRECOMP
8ecff181 32 #include "wx/list.h"
0fb67cd1
VZ
33 #include "wx/string.h"
34 #include "wx/utils.h"
35 #include "wx/app.h"
36 #include "wx/dc.h"
d0bdc3ca 37 #include "wx/dialog.h"
0fb67cd1 38 #include "wx/menu.h"
0fb67cd1 39 #include "wx/filedlg.h"
6de2f8b9 40 #include "wx/intl.h"
c0369005 41 #include "wx/log.h"
246c5004 42 #include "wx/msgdlg.h"
59cf2e49 43 #include "wx/mdi.h"
949c9f74 44 #include "wx/choicdlg.h"
f7bd2698
JS
45#endif
46
ce4169a4 47#if wxUSE_PRINTING_ARCHITECTURE
8ecff181
WS
48 #include "wx/prntbase.h"
49 #include "wx/printdlg.h"
ce4169a4
RR
50#endif
51
7f555861 52#include "wx/confbase.h"
c77049a0 53#include "wx/filename.h"
74b31181 54#include "wx/file.h"
c77049a0 55#include "wx/ffile.h"
1e6feb95 56#include "wx/cmdproc.h"
0f30d8e3 57#include "wx/tokenzr.h"
b4a980f4 58#include "wx/filename.h"
d8efd219 59#include "wx/stdpaths.h"
c77049a0 60#include "wx/vector.h"
664e1314
VZ
61#include "wx/scopedarray.h"
62#include "wx/scopedptr.h"
136aafe5 63#include "wx/scopeguard.h"
3a393f8a 64#include "wx/except.h"
c801d85f 65
a533f5c1 66#if wxUSE_STD_IOSTREAM
8ecff181 67 #include "wx/ioswrap.h"
968454db 68 #include "wx/beforestd.h"
8ecff181
WS
69 #if wxUSE_IOSTREAMH
70 #include <fstream.h>
71 #else
72 #include <fstream>
73 #endif
968454db 74 #include "wx/afterstd.h"
a533f5c1 75#else
8ecff181 76 #include "wx/wfstream.h"
c801d85f
KB
77#endif
78
0fb67cd1 79// ----------------------------------------------------------------------------
77ffb593 80// wxWidgets macros
0fb67cd1
VZ
81// ----------------------------------------------------------------------------
82
1e6feb95
VZ
83IMPLEMENT_ABSTRACT_CLASS(wxDocument, wxEvtHandler)
84IMPLEMENT_ABSTRACT_CLASS(wxView, wxEvtHandler)
85IMPLEMENT_ABSTRACT_CLASS(wxDocTemplate, wxObject)
86IMPLEMENT_DYNAMIC_CLASS(wxDocManager, wxEvtHandler)
87IMPLEMENT_CLASS(wxDocChildFrame, wxFrame)
88IMPLEMENT_CLASS(wxDocParentFrame, wxFrame)
0fb67cd1 89
1e6feb95
VZ
90#if wxUSE_PRINTING_ARCHITECTURE
91 IMPLEMENT_DYNAMIC_CLASS(wxDocPrintout, wxPrintout)
92#endif
0fb67cd1 93
0fb67cd1
VZ
94// ============================================================================
95// implementation
96// ============================================================================
97
98// ----------------------------------------------------------------------------
c77049a0 99// private helpers
0fb67cd1
VZ
100// ----------------------------------------------------------------------------
101
c77049a0
VZ
102namespace
103{
104
c77049a0 105wxString FindExtension(const wxString& path)
0fb67cd1
VZ
106{
107 wxString ext;
47d281e6 108 wxFileName::SplitPath(path, NULL, NULL, &ext);
0fb67cd1
VZ
109
110 // VZ: extensions are considered not case sensitive - is this really a good
111 // idea?
112 return ext.MakeLower();
113}
114
c77049a0
VZ
115} // anonymous namespace
116
0fb67cd1
VZ
117// ----------------------------------------------------------------------------
118// Definition of wxDocument
119// ----------------------------------------------------------------------------
c801d85f
KB
120
121wxDocument::wxDocument(wxDocument *parent)
122{
68379eaf 123 m_documentModified = false;
c77049a0 124 m_documentTemplate = NULL;
4db97e24
VZ
125
126 m_documentParent = parent;
127 if ( parent )
128 parent->m_childDocuments.push_back(this);
129
c77049a0 130 m_commandProcessor = NULL;
68379eaf 131 m_savedYet = false;
c801d85f
KB
132}
133
0fb67cd1 134bool wxDocument::DeleteContents()
c801d85f 135{
68379eaf 136 return true;
c801d85f
KB
137}
138
0fb67cd1 139wxDocument::~wxDocument()
c801d85f 140{
89d94e04 141 delete m_commandProcessor;
c801d85f 142
f6bcfd97
BP
143 if (GetDocumentManager())
144 GetDocumentManager()->RemoveDocument(this);
c801d85f 145
4db97e24
VZ
146 if ( m_documentParent )
147 m_documentParent->m_childDocuments.remove(this);
148
0fb67cd1
VZ
149 // Not safe to do here, since it'll invoke virtual view functions
150 // expecting to see valid derived objects: and by the time we get here,
151 // we've called destructors higher up.
152 //DeleteAllViews();
c801d85f 153}
0fb67cd1
VZ
154
155bool wxDocument::Close()
c801d85f 156{
89d94e04 157 if ( !OnSaveModified() )
68379eaf 158 return false;
89d94e04 159
4db97e24
VZ
160 // When the parent document closes, its children must be closed as well as
161 // they can't exist without the parent.
162
163 // As usual, first check if all children can be closed.
164 DocsList::const_iterator it = m_childDocuments.begin();
165 for ( DocsList::const_iterator end = m_childDocuments.end(); it != end; ++it )
166 {
167 if ( !(*it)->OnSaveModified() )
168 {
169 // Leave the parent document opened if a child can't close.
170 return false;
171 }
172 }
173
174 // Now that they all did, do close them: as m_childDocuments is modified as
175 // we iterate over it, don't use the usual for-style iteration here.
176 while ( !m_childDocuments.empty() )
177 {
178 wxDocument * const childDoc = m_childDocuments.front();
179
180 // This will call OnSaveModified() once again but it shouldn't do
181 // anything as the document was just saved or marked as not needing to
182 // be saved by the call to OnSaveModified() that returned true above.
183 if ( !childDoc->Close() )
184 {
185 wxFAIL_MSG( "Closing the child document unexpectedly failed "
186 "after its OnSaveModified() returned true" );
187 }
188
189 // Delete the child document by deleting all its views.
190 childDoc->DeleteAllViews();
191 }
192
193
89d94e04 194 return OnCloseDocument();
c801d85f 195}
0fb67cd1
VZ
196
197bool wxDocument::OnCloseDocument()
c801d85f 198{
b23e843b 199 // Tell all views that we're about to close
42771621 200 NotifyClosing();
0fb67cd1 201 DeleteContents();
68379eaf
WS
202 Modify(false);
203 return true;
c801d85f
KB
204}
205
0fb67cd1
VZ
206// Note that this implicitly deletes the document when the last view is
207// deleted.
208bool wxDocument::DeleteAllViews()
c801d85f 209{
f6bcfd97
BP
210 wxDocManager* manager = GetDocumentManager();
211
40702099
VZ
212 // first check if all views agree to be closed
213 const wxList::iterator end = m_documentViews.end();
214 for ( wxList::iterator i = m_documentViews.begin(); i != end; ++i )
0fb67cd1 215 {
40702099
VZ
216 wxView *view = (wxView *)*i;
217 if ( !view->Close() )
68379eaf 218 return false;
0fb67cd1 219 }
d5a93fda 220
40702099
VZ
221 // all views agreed to close, now do close them
222 if ( m_documentViews.empty() )
223 {
224 // normally the document would be implicitly deleted when the last view
225 // is, but if don't have any views, do it here instead
226 if ( manager && manager->GetDocuments().Member(this) )
227 delete this;
228 }
229 else // have views
230 {
231 // as we delete elements we iterate over, don't use the usual "from
232 // begin to end" loop
233 for ( ;; )
234 {
235 wxView *view = (wxView *)*m_documentViews.begin();
236
237 bool isLastOne = m_documentViews.size() == 1;
238
239 // this always deletes the node implicitly and if this is the last
240 // view also deletes this object itself (also implicitly, great),
241 // so we can't test for m_documentViews.empty() after calling this!
242 delete view;
243
244 if ( isLastOne )
245 break;
246 }
247 }
f6bcfd97 248
68379eaf 249 return true;
c801d85f
KB
250}
251
6de2f8b9 252wxView *wxDocument::GetFirstView() const
c801d85f 253{
89d94e04 254 if ( m_documentViews.empty() )
c77049a0 255 return NULL;
89d94e04
VZ
256
257 return static_cast<wxView *>(m_documentViews.GetFirst()->GetData());
c801d85f
KB
258}
259
250ab35a
JS
260void wxDocument::Modify(bool mod)
261{
262 if (mod != m_documentModified)
263 {
264 m_documentModified = mod;
265
266 // Allow views to append asterix to the title
267 wxView* view = GetFirstView();
268 if (view) view->OnChangeFilename();
269 }
270}
271
6de2f8b9 272wxDocManager *wxDocument::GetDocumentManager() const
c801d85f 273{
4db97e24
VZ
274 // For child documents we use the same document manager as the parent, even
275 // though we don't have our own template (as children are not opened/saved
276 // directly).
277 if ( m_documentParent )
278 return m_documentParent->GetDocumentManager();
279
c77049a0 280 return m_documentTemplate ? m_documentTemplate->GetDocumentManager() : NULL;
c801d85f
KB
281}
282
0fb67cd1 283bool wxDocument::OnNewDocument()
c801d85f 284{
0b108d10
VZ
285 // notice that there is no need to neither reset nor even check the
286 // modified flag here as the document itself is a new object (this is only
287 // called from CreateDocument()) and so it shouldn't be saved anyhow even
288 // if it is modified -- this could happen if the user code creates
289 // documents pre-filled with some user-entered (and which hence must not be
290 // lost) information
c801d85f 291
68379eaf 292 SetDocumentSaved(false);
c801d85f 293
724b119a 294 const wxString name = GetDocumentManager()->MakeNewDocumentName();
0fb67cd1 295 SetTitle(name);
68379eaf 296 SetFilename(name, true);
0fb67cd1 297
68379eaf 298 return true;
c801d85f
KB
299}
300
0fb67cd1 301bool wxDocument::Save()
c801d85f 302{
de56f240 303 if ( AlreadySaved() )
68379eaf 304 return true;
c801d85f 305
d06a66f5
VZ
306 if ( m_documentFile.empty() || !m_savedYet )
307 return SaveAs();
308
309 return OnSaveDocument(m_documentFile);
c801d85f 310}
0fb67cd1
VZ
311
312bool wxDocument::SaveAs()
c801d85f 313{
ba681060
VZ
314 wxDocTemplate *docTemplate = GetDocumentTemplate();
315 if (!docTemplate)
68379eaf 316 return false;
0fb67cd1 317
89d94e04
VZ
318#ifdef wxHAS_MULTIPLE_FILEDLG_FILTERS
319 wxString filter = docTemplate->GetDescription() + wxT(" (") +
320 docTemplate->GetFileFilter() + wxT(")|") +
321 docTemplate->GetFileFilter();
04129514
JS
322
323 // Now see if there are some other template with identical view and document
324 // classes, whose filters may also be used.
04129514
JS
325 if (docTemplate->GetViewClassInfo() && docTemplate->GetDocClassInfo())
326 {
89d94e04
VZ
327 wxList::compatibility_iterator
328 node = docTemplate->GetDocumentManager()->GetTemplates().GetFirst();
04129514
JS
329 while (node)
330 {
331 wxDocTemplate *t = (wxDocTemplate*) node->GetData();
68379eaf 332
04129514
JS
333 if (t->IsVisible() && t != docTemplate &&
334 t->GetViewClassInfo() == docTemplate->GetViewClassInfo() &&
335 t->GetDocClassInfo() == docTemplate->GetDocClassInfo())
336 {
337 // add a '|' to separate this filter from the previous one
b494c48b 338 if ( !filter.empty() )
04129514 339 filter << wxT('|');
68379eaf 340
89d94e04
VZ
341 filter << t->GetDescription()
342 << wxT(" (") << t->GetFileFilter() << wxT(") |")
04129514
JS
343 << t->GetFileFilter();
344 }
345
346 node = node->GetNext();
347 }
348 }
349#else
350 wxString filter = docTemplate->GetFileFilter() ;
351#endif
89d94e04 352
e0214f1f 353 wxString defaultDir = docTemplate->GetDirectory();
d8efd219
VZ
354 if ( defaultDir.empty() )
355 {
e0214f1f 356 defaultDir = wxPathOnly(GetFilename());
d8efd219
VZ
357 if ( defaultDir.empty() )
358 defaultDir = GetDocumentManager()->GetLastDirectory();
359 }
e0214f1f 360
00e3ea1c 361 wxString fileName = wxFileSelector(_("Save As"),
e0214f1f 362 defaultDir,
015e69f3 363 wxFileNameFromPath(GetFilename()),
0fb67cd1 364 docTemplate->GetDefaultExtension(),
04129514 365 filter,
ff3e84ff 366 wxFD_SAVE | wxFD_OVERWRITE_PROMPT,
0fb67cd1
VZ
367 GetDocumentWindow());
368
00e3ea1c 369 if (fileName.empty())
89d94e04 370 return false; // cancelled by user
ba681060 371
9d4a05be 372 // Files that were not saved correctly are not added to the FileHistory.
00e3ea1c 373 if (!OnSaveDocument(fileName))
68379eaf 374 return false;
9d4a05be 375
00e3ea1c
FM
376 SetTitle(wxFileNameFromPath(fileName));
377 SetFilename(fileName, true); // will call OnChangeFileName automatically
378
fd461854
VZ
379 // A file that doesn't use the default extension of its document template
380 // cannot be opened via the FileHistory, so we do not add it.
381 if (docTemplate->FileMatchesTemplate(fileName))
382 {
383 GetDocumentManager()->AddFileToHistory(fileName);
384 }
385 //else: the user will probably not be able to open the file again, so we
386 // could warn about the wrong file-extension here
89d94e04 387
fd461854 388 return true;
c801d85f 389}
0fb67cd1 390
c801d85f
KB
391bool wxDocument::OnSaveDocument(const wxString& file)
392{
0fb67cd1 393 if ( !file )
68379eaf 394 return false;
c801d85f 395
69936aea 396 if ( !DoSaveDocument(file) )
68379eaf 397 return false;
0fb67cd1 398
8c85eb7b
VZ
399 if ( m_commandProcessor )
400 m_commandProcessor->MarkAsSaved();
401
68379eaf 402 Modify(false);
0fb67cd1 403 SetFilename(file);
68379eaf 404 SetDocumentSaved(true);
26eef304 405#if defined( __WXOSX_MAC__ ) && wxOSX_USE_CARBON
b8afeb43
SC
406 wxFileName fn(file) ;
407 fn.MacSetDefaultTypeAndCreator() ;
408#endif
68379eaf 409 return true;
c801d85f 410}
0fb67cd1 411
c801d85f
KB
412bool wxDocument::OnOpenDocument(const wxString& file)
413{
0b108d10
VZ
414 // notice that there is no need to check the modified flag here for the
415 // reasons explained in OnNewDocument()
c801d85f 416
69936aea 417 if ( !DoOpenDocument(file) )
68379eaf 418 return false;
0fb67cd1 419
68379eaf 420 SetFilename(file, true);
0b108d10
VZ
421
422 // stretching the logic a little this does make sense because the document
423 // had been saved into the file we just loaded it from, it just could have
424 // happened during a previous program execution, it's just that the name of
425 // this method is a bit unfortunate, it should probably have been called
426 // HasAssociatedFileName()
427 SetDocumentSaved(true);
0fb67cd1
VZ
428
429 UpdateAllViews();
c801d85f 430
68379eaf 431 return true;
c801d85f 432}
0fb67cd1 433
a533f5c1 434#if wxUSE_STD_IOSTREAM
dd107c50 435wxSTD istream& wxDocument::LoadObject(wxSTD istream& stream)
23a54e14
RR
436#else
437wxInputStream& wxDocument::LoadObject(wxInputStream& stream)
438#endif
c801d85f 439{
0fb67cd1 440 return stream;
c801d85f
KB
441}
442
23a54e14 443#if wxUSE_STD_IOSTREAM
dd107c50 444wxSTD ostream& wxDocument::SaveObject(wxSTD ostream& stream)
a533f5c1 445#else
23a54e14
RR
446wxOutputStream& wxDocument::SaveObject(wxOutputStream& stream)
447#endif
a533f5c1 448{
23a54e14 449 return stream;
a533f5c1 450}
c801d85f 451
0fb67cd1 452bool wxDocument::Revert()
c801d85f 453{
4311588b
VZ
454 if ( wxMessageBox
455 (
456 _("Discard changes and reload the last saved version?"),
457 wxTheApp->GetAppDisplayName(),
458 wxYES_NO | wxCANCEL | wxICON_QUESTION,
459 GetDocumentWindow()
460 ) != wxYES )
461 return false;
462
463 if ( !DoOpenDocument(GetFilename()) )
464 return false;
465
466 Modify(false);
467 UpdateAllViews();
468
469 return true;
c801d85f
KB
470}
471
472
473// Get title, or filename if no title, else unnamed
724b119a 474#if WXWIN_COMPATIBILITY_2_8
c801d85f
KB
475bool wxDocument::GetPrintableName(wxString& buf) const
476{
4c51a665 477 // this function cannot only be overridden by the user code but also
724b119a
VZ
478 // called by it so we need to ensure that we return the same thing as
479 // GetUserReadableName() but we can't call it because this would result in
480 // an infinite recursion, hence we use the helper DoGetUserReadableName()
481 buf = DoGetUserReadableName();
482
483 return true;
484}
485#endif // WXWIN_COMPATIBILITY_2_8
486
487wxString wxDocument::GetUserReadableName() const
488{
489#if WXWIN_COMPATIBILITY_2_8
490 // we need to call the old virtual function to ensure that the overridden
491 // version of it is still called
492 wxString name;
493 if ( GetPrintableName(name) )
494 return name;
495#endif // WXWIN_COMPATIBILITY_2_8
496
497 return DoGetUserReadableName();
498}
499
500wxString wxDocument::DoGetUserReadableName() const
501{
502 if ( !m_documentTitle.empty() )
503 return m_documentTitle;
504
505 if ( !m_documentFile.empty() )
506 return wxFileNameFromPath(m_documentFile);
507
508 return _("unnamed");
c801d85f
KB
509}
510
6de2f8b9 511wxWindow *wxDocument::GetDocumentWindow() const
c801d85f 512{
89d94e04
VZ
513 wxView * const view = GetFirstView();
514
515 return view ? view->GetFrame() : wxTheApp->GetTopWindow();
c801d85f
KB
516}
517
0fb67cd1 518wxCommandProcessor *wxDocument::OnCreateCommandProcessor()
c801d85f 519{
0fb67cd1 520 return new wxCommandProcessor;
c801d85f
KB
521}
522
68379eaf 523// true if safe to close
0fb67cd1 524bool wxDocument::OnSaveModified()
c801d85f 525{
c77049a0
VZ
526 if ( IsModified() )
527 {
528 switch ( wxMessageBox
529 (
530 wxString::Format
531 (
4f57a7bf 532 _("Do you want to save changes to %s?"),
c77049a0
VZ
533 GetUserReadableName()
534 ),
535 wxTheApp->GetAppDisplayName(),
b6e96faf 536 wxYES_NO | wxCANCEL | wxICON_QUESTION | wxCENTRE
c77049a0 537 ) )
0fb67cd1 538 {
c77049a0
VZ
539 case wxNO:
540 Modify(false);
541 break;
542
543 case wxYES:
544 return Save();
545
546 case wxCANCEL:
547 return false;
0fb67cd1 548 }
c801d85f 549 }
c77049a0 550
68379eaf 551 return true;
c801d85f
KB
552}
553
554bool wxDocument::Draw(wxDC& WXUNUSED(context))
555{
68379eaf 556 return true;
c801d85f
KB
557}
558
559bool wxDocument::AddView(wxView *view)
560{
c77049a0 561 if ( !m_documentViews.Member(view) )
0fb67cd1
VZ
562 {
563 m_documentViews.Append(view);
564 OnChangedViewList();
565 }
68379eaf 566 return true;
c801d85f
KB
567}
568
569bool wxDocument::RemoveView(wxView *view)
570{
0fb67cd1
VZ
571 (void)m_documentViews.DeleteObject(view);
572 OnChangedViewList();
68379eaf 573 return true;
c801d85f
KB
574}
575
576bool wxDocument::OnCreate(const wxString& WXUNUSED(path), long flags)
577{
c77049a0 578 return GetDocumentTemplate()->CreateView(this, flags) != NULL;
c801d85f
KB
579}
580
581// Called after a view is added or removed.
582// The default implementation deletes the document if
583// there are no more views.
0fb67cd1 584void wxDocument::OnChangedViewList()
c801d85f 585{
c77049a0
VZ
586 if ( m_documentViews.empty() && OnSaveModified() )
587 delete this;
c801d85f
KB
588}
589
590void wxDocument::UpdateAllViews(wxView *sender, wxObject *hint)
591{
222ed1d6 592 wxList::compatibility_iterator node = m_documentViews.GetFirst();
0fb67cd1
VZ
593 while (node)
594 {
b1d4dd7a 595 wxView *view = (wxView *)node->GetData();
42771621 596 if (view != sender)
2b5f62a0 597 view->OnUpdate(sender, hint);
b1d4dd7a 598 node = node->GetNext();
0fb67cd1 599 }
c801d85f
KB
600}
601
b23e843b
JS
602void wxDocument::NotifyClosing()
603{
222ed1d6 604 wxList::compatibility_iterator node = m_documentViews.GetFirst();
b23e843b
JS
605 while (node)
606 {
b1d4dd7a 607 wxView *view = (wxView *)node->GetData();
b23e843b 608 view->OnClosingDocument();
b1d4dd7a 609 node = node->GetNext();
b23e843b
JS
610 }
611}
612
c801d85f
KB
613void wxDocument::SetFilename(const wxString& filename, bool notifyViews)
614{
0fb67cd1 615 m_documentFile = filename;
00e3ea1c
FM
616 OnChangeFilename(notifyViews);
617}
618
619void wxDocument::OnChangeFilename(bool notifyViews)
620{
0fb67cd1 621 if ( notifyViews )
c801d85f 622 {
0fb67cd1 623 // Notify the views that the filename has changed
222ed1d6 624 wxList::compatibility_iterator node = m_documentViews.GetFirst();
0fb67cd1
VZ
625 while (node)
626 {
b1d4dd7a 627 wxView *view = (wxView *)node->GetData();
0fb67cd1 628 view->OnChangeFilename();
b1d4dd7a 629 node = node->GetNext();
0fb67cd1 630 }
c801d85f 631 }
c801d85f
KB
632}
633
69936aea
VZ
634bool wxDocument::DoSaveDocument(const wxString& file)
635{
69936aea 636#if wxUSE_STD_IOSTREAM
53e2e87c 637 wxSTD ofstream store(file.mb_str(), wxSTD ios::binary);
c09b7217 638 if ( !store )
69936aea
VZ
639#else
640 wxFileOutputStream store(file);
c09b7217 641 if ( store.GetLastError() != wxSTREAM_NO_ERROR )
69936aea
VZ
642#endif
643 {
e58eaff7 644 wxLogError(_("File \"%s\" could not be opened for writing."), file);
68379eaf 645 return false;
69936aea 646 }
e58eaff7 647
69936aea
VZ
648 if (!SaveObject(store))
649 {
e58eaff7 650 wxLogError(_("Failed to save document to the file \"%s\"."), file);
68379eaf 651 return false;
69936aea
VZ
652 }
653
68379eaf 654 return true;
69936aea
VZ
655}
656
657bool wxDocument::DoOpenDocument(const wxString& file)
658{
69936aea 659#if wxUSE_STD_IOSTREAM
53e2e87c 660 wxSTD ifstream store(file.mb_str(), wxSTD ios::binary);
c09b7217 661 if ( !store )
69936aea
VZ
662#else
663 wxFileInputStream store(file);
9690b006 664 if (store.GetLastError() != wxSTREAM_NO_ERROR || !store.IsOk())
69936aea
VZ
665#endif
666 {
e58eaff7
VZ
667 wxLogError(_("File \"%s\" could not be opened for reading."), file);
668 return false;
669 }
670
69936aea 671#if wxUSE_STD_IOSTREAM
e58eaff7 672 LoadObject(store);
c09b7217 673 if ( !store )
69936aea 674#else
e58eaff7
VZ
675 int res = LoadObject(store).GetLastError();
676 if ( res != wxSTREAM_NO_ERROR && res != wxSTREAM_EOF )
69936aea 677#endif
e58eaff7
VZ
678 {
679 wxLogError(_("Failed to read document from the file \"%s\"."), file);
680 return false;
69936aea
VZ
681 }
682
e58eaff7 683 return true;
69936aea
VZ
684}
685
686
0fb67cd1
VZ
687// ----------------------------------------------------------------------------
688// Document view
689// ----------------------------------------------------------------------------
c801d85f 690
dbdb39b2 691wxView::wxView()
c801d85f 692{
c77049a0 693 m_viewDocument = NULL;
0fb67cd1 694
c77049a0 695 m_viewFrame = NULL;
a9e2e6e5
VZ
696
697 m_docChildFrame = NULL;
c801d85f
KB
698}
699
0fb67cd1 700wxView::~wxView()
c801d85f 701{
d3785012 702 if (m_viewDocument && GetDocumentManager())
63c639ec 703 GetDocumentManager()->ActivateView(this, false);
a9e2e6e5
VZ
704
705 // reset our frame view first, before removing it from the document as
706 // SetView(NULL) is a simple call while RemoveView() may result in user
707 // code being executed and this user code can, for example, show a message
708 // box which would result in an activation event for m_docChildFrame and so
709 // could reactivate the view being destroyed -- unless we reset it first
710 if ( m_docChildFrame && m_docChildFrame->GetView() == this )
ada1ff0d
VZ
711 {
712 // prevent it from doing anything with us
a9e2e6e5
VZ
713 m_docChildFrame->SetView(NULL);
714
ada1ff0d
VZ
715 // it doesn't make sense to leave the frame alive if its associated
716 // view doesn't exist any more so unconditionally close it as well
717 //
718 // notice that we only get here if m_docChildFrame is non-NULL in the
719 // first place and it will be always NULL if we're deleted because our
720 // frame was closed, so this only catches the case of directly deleting
721 // the view, as it happens if its creation fails in wxDocTemplate::
722 // CreateView() for example
723 m_docChildFrame->GetWindow()->Destroy();
724 }
725
a9e2e6e5
VZ
726 if ( m_viewDocument )
727 m_viewDocument->RemoveView(this);
c801d85f
KB
728}
729
ada1ff0d
VZ
730void wxView::SetDocChildFrame(wxDocChildFrameAnyBase *docChildFrame)
731{
732 SetFrame(docChildFrame ? docChildFrame->GetWindow() : NULL);
733 m_docChildFrame = docChildFrame;
734}
735
8cc208e3 736bool wxView::TryBefore(wxEvent& event)
c801d85f 737{
bba5e72a 738 wxDocument * const doc = GetDocument();
44070fd3 739 return doc && doc->ProcessEventLocally(event);
c801d85f
KB
740}
741
89d94e04
VZ
742void wxView::OnActivateView(bool WXUNUSED(activate),
743 wxView *WXUNUSED(activeView),
744 wxView *WXUNUSED(deactiveView))
c801d85f
KB
745{
746}
747
748void wxView::OnPrint(wxDC *dc, wxObject *WXUNUSED(info))
749{
0fb67cd1 750 OnDraw(dc);
c801d85f
KB
751}
752
753void wxView::OnUpdate(wxView *WXUNUSED(sender), wxObject *WXUNUSED(hint))
754{
755}
756
0fb67cd1 757void wxView::OnChangeFilename()
c801d85f 758{
faa49bfd
WS
759 // GetFrame can return wxWindow rather than wxTopLevelWindow due to
760 // generic MDI implementation so use SetLabel rather than SetTitle.
761 // It should cause SetTitle() for top level windows.
762 wxWindow *win = GetFrame();
763 if (!win) return;
f2506310 764
faa49bfd
WS
765 wxDocument *doc = GetDocument();
766 if (!doc) return;
c801d85f 767
250ab35a
JS
768 wxString label = doc->GetUserReadableName();
769 if (doc->IsModified())
770 {
771 label += "*";
772 }
773 win->SetLabel(label);
c801d85f
KB
774}
775
776void wxView::SetDocument(wxDocument *doc)
777{
0fb67cd1
VZ
778 m_viewDocument = doc;
779 if (doc)
780 doc->AddView(this);
c801d85f
KB
781}
782
783bool wxView::Close(bool deleteWindow)
784{
c77049a0 785 return OnClose(deleteWindow);
c801d85f
KB
786}
787
788void wxView::Activate(bool activate)
789{
bb28b477 790 if (GetDocument() && GetDocumentManager())
0fb67cd1
VZ
791 {
792 OnActivateView(activate, this, GetDocumentManager()->GetCurrentView());
793 GetDocumentManager()->ActivateView(this, activate);
794 }
c801d85f
KB
795}
796
797bool wxView::OnClose(bool WXUNUSED(deleteWindow))
798{
68379eaf 799 return GetDocument() ? GetDocument()->Close() : true;
c801d85f
KB
800}
801
47d67540 802#if wxUSE_PRINTING_ARCHITECTURE
0fb67cd1 803wxPrintout *wxView::OnCreatePrintout()
c801d85f 804{
0fb67cd1 805 return new wxDocPrintout(this);
c801d85f 806}
6de2f8b9 807#endif // wxUSE_PRINTING_ARCHITECTURE
c801d85f 808
0fb67cd1
VZ
809// ----------------------------------------------------------------------------
810// wxDocTemplate
811// ----------------------------------------------------------------------------
c801d85f 812
0fb67cd1
VZ
813wxDocTemplate::wxDocTemplate(wxDocManager *manager,
814 const wxString& descr,
815 const wxString& filter,
816 const wxString& dir,
817 const wxString& ext,
818 const wxString& docTypeName,
819 const wxString& viewTypeName,
820 wxClassInfo *docClassInfo,
821 wxClassInfo *viewClassInfo,
822 long flags)
c801d85f 823{
0fb67cd1 824 m_documentManager = manager;
0fb67cd1
VZ
825 m_description = descr;
826 m_directory = dir;
827 m_defaultExt = ext;
828 m_fileFilter = filter;
829 m_flags = flags;
830 m_docTypeName = docTypeName;
831 m_viewTypeName = viewTypeName;
832 m_documentManager->AssociateTemplate(this);
c801d85f 833
0fb67cd1
VZ
834 m_docClassInfo = docClassInfo;
835 m_viewClassInfo = viewClassInfo;
c801d85f
KB
836}
837
0fb67cd1 838wxDocTemplate::~wxDocTemplate()
c801d85f 839{
0fb67cd1 840 m_documentManager->DisassociateTemplate(this);
c801d85f 841}
0fb67cd1
VZ
842
843// Tries to dynamically construct an object of the right class.
c801d85f
KB
844wxDocument *wxDocTemplate::CreateDocument(const wxString& path, long flags)
845{
4c7d530a
VZ
846 // InitDocument() is supposed to delete the document object if its
847 // initialization fails so don't use wxScopedPtr<> here: this is fragile
848 // but unavoidable because the default implementation uses CreateView()
849 // which may -- or not -- create a wxView and if it does create it and its
850 // initialization fails then the view destructor will delete the document
851 // (via RemoveView()) and as we can't distinguish between the two cases we
852 // just have to assume that it always deletes it in case of failure
853 wxDocument * const doc = DoCreateDocument();
854
855 return doc && InitDocument(doc, path, flags) ? doc : NULL;
217b7140
JS
856}
857
c77049a0
VZ
858bool
859wxDocTemplate::InitDocument(wxDocument* doc, const wxString& path, long flags)
217b7140 860{
319ff574
VS
861 wxScopeGuard g = wxMakeObjGuard(*doc, &wxDocument::DeleteAllViews);
862
0fb67cd1
VZ
863 doc->SetFilename(path);
864 doc->SetDocumentTemplate(this);
865 GetDocumentManager()->AddDocument(doc);
866 doc->SetCommandProcessor(doc->OnCreateCommandProcessor());
867
319ff574
VS
868 if ( !doc->OnCreate(path, flags) )
869 return false;
89d94e04 870
319ff574
VS
871 g.Dismiss(); // no need to call DeleteAllViews() anymore
872
873 return true;
c801d85f
KB
874}
875
876wxView *wxDocTemplate::CreateView(wxDocument *doc, long flags)
877{
7047d798
VZ
878 wxScopedPtr<wxView> view(DoCreateView());
879 if ( !view )
c77049a0 880 return NULL;
69936aea 881
0fb67cd1 882 view->SetDocument(doc);
7047d798 883 if ( !view->OnCreate(doc, flags) )
c77049a0 884 return NULL;
7047d798
VZ
885
886 return view.release();
c801d85f
KB
887}
888
6de2f8b9
VZ
889// The default (very primitive) format detection: check is the extension is
890// that of the template
891bool wxDocTemplate::FileMatchesTemplate(const wxString& path)
892{
0f30d8e3
WS
893 wxStringTokenizer parser (GetFileFilter(), wxT(";"));
894 wxString anything = wxT ("*");
895 while (parser.HasMoreTokens())
896 {
897 wxString filter = parser.GetNextToken();
898 wxString filterExt = FindExtension (filter);
899 if ( filter.IsSameAs (anything) ||
900 filterExt.IsSameAs (anything) ||
901 filterExt.IsSameAs (FindExtension (path)) )
902 return true;
903 }
6de2f8b9
VZ
904 return GetDefaultExtension().IsSameAs(FindExtension(path));
905}
906
69936aea
VZ
907wxDocument *wxDocTemplate::DoCreateDocument()
908{
909 if (!m_docClassInfo)
c77049a0 910 return NULL;
69936aea 911
89d94e04 912 return static_cast<wxDocument *>(m_docClassInfo->CreateObject());
69936aea
VZ
913}
914
915wxView *wxDocTemplate::DoCreateView()
916{
917 if (!m_viewClassInfo)
c77049a0 918 return NULL;
69936aea 919
89d94e04 920 return static_cast<wxView *>(m_viewClassInfo->CreateObject());
69936aea
VZ
921}
922
0fb67cd1
VZ
923// ----------------------------------------------------------------------------
924// wxDocManager
925// ----------------------------------------------------------------------------
926
c801d85f
KB
927BEGIN_EVENT_TABLE(wxDocManager, wxEvtHandler)
928 EVT_MENU(wxID_OPEN, wxDocManager::OnFileOpen)
929 EVT_MENU(wxID_CLOSE, wxDocManager::OnFileClose)
33a20136 930 EVT_MENU(wxID_CLOSE_ALL, wxDocManager::OnFileCloseAll)
c801d85f
KB
931 EVT_MENU(wxID_REVERT, wxDocManager::OnFileRevert)
932 EVT_MENU(wxID_NEW, wxDocManager::OnFileNew)
933 EVT_MENU(wxID_SAVE, wxDocManager::OnFileSave)
934 EVT_MENU(wxID_SAVEAS, wxDocManager::OnFileSaveAs)
935 EVT_MENU(wxID_UNDO, wxDocManager::OnUndo)
936 EVT_MENU(wxID_REDO, wxDocManager::OnRedo)
f2506310 937
c70da1a2
VZ
938 // We don't know in advance how many items can there be in the MRU files
939 // list so set up OnMRUFile() as a handler for all menu events and do the
940 // check for the id of the menu item clicked inside it.
941 EVT_MENU(wxID_ANY, wxDocManager::OnMRUFile)
942
f2506310 943 EVT_UPDATE_UI(wxID_OPEN, wxDocManager::OnUpdateFileOpen)
c77049a0
VZ
944 EVT_UPDATE_UI(wxID_CLOSE, wxDocManager::OnUpdateDisableIfNoDoc)
945 EVT_UPDATE_UI(wxID_CLOSE_ALL, wxDocManager::OnUpdateDisableIfNoDoc)
4311588b 946 EVT_UPDATE_UI(wxID_REVERT, wxDocManager::OnUpdateFileRevert)
f2506310
JS
947 EVT_UPDATE_UI(wxID_NEW, wxDocManager::OnUpdateFileNew)
948 EVT_UPDATE_UI(wxID_SAVE, wxDocManager::OnUpdateFileSave)
4db97e24 949 EVT_UPDATE_UI(wxID_SAVEAS, wxDocManager::OnUpdateFileSaveAs)
f2506310
JS
950 EVT_UPDATE_UI(wxID_UNDO, wxDocManager::OnUpdateUndo)
951 EVT_UPDATE_UI(wxID_REDO, wxDocManager::OnUpdateRedo)
952
ce4169a4 953#if wxUSE_PRINTING_ARCHITECTURE
c801d85f 954 EVT_MENU(wxID_PRINT, wxDocManager::OnPrint)
c801d85f 955 EVT_MENU(wxID_PREVIEW, wxDocManager::OnPreview)
b99017ce 956 EVT_MENU(wxID_PRINT_SETUP, wxDocManager::OnPageSetup)
f2506310 957
c77049a0
VZ
958 EVT_UPDATE_UI(wxID_PRINT, wxDocManager::OnUpdateDisableIfNoDoc)
959 EVT_UPDATE_UI(wxID_PREVIEW, wxDocManager::OnUpdateDisableIfNoDoc)
b27367a5
VZ
960 // NB: we keep "Print setup" menu item always enabled as it can be used
961 // even without an active document
b99017ce 962#endif // wxUSE_PRINTING_ARCHITECTURE
c801d85f
KB
963END_EVENT_TABLE()
964
c77049a0 965wxDocManager* wxDocManager::sm_docManager = NULL;
f2506310 966
c77049a0 967wxDocManager::wxDocManager(long WXUNUSED(flags), bool initialize)
c801d85f 968{
c77049a0
VZ
969 sm_docManager = this;
970
0fb67cd1 971 m_defaultDocumentNameCounter = 1;
c77049a0
VZ
972 m_currentView = NULL;
973 m_maxDocsOpen = INT_MAX;
974 m_fileHistory = NULL;
975 if ( initialize )
0fb67cd1 976 Initialize();
c801d85f
KB
977}
978
0fb67cd1 979wxDocManager::~wxDocManager()
c801d85f 980{
0fb67cd1 981 Clear();
c77049a0
VZ
982 delete m_fileHistory;
983 sm_docManager = NULL;
c801d85f
KB
984}
985
b72b1920
JS
986// closes the specified document
987bool wxDocManager::CloseDocument(wxDocument* doc, bool force)
988{
89d94e04
VZ
989 if ( !doc->Close() && !force )
990 return false;
b72b1920 991
89d94e04
VZ
992 // Implicitly deletes the document when
993 // the last view is deleted
994 doc->DeleteAllViews();
42771621 995
89d94e04
VZ
996 // Check we're really deleted
997 if (m_docs.Member(doc))
998 delete doc;
999
1000 return true;
b72b1920
JS
1001}
1002
33a20136 1003bool wxDocManager::CloseDocuments(bool force)
c801d85f 1004{
222ed1d6 1005 wxList::compatibility_iterator node = m_docs.GetFirst();
0fb67cd1
VZ
1006 while (node)
1007 {
b1d4dd7a 1008 wxDocument *doc = (wxDocument *)node->GetData();
222ed1d6 1009 wxList::compatibility_iterator next = node->GetNext();
68379eaf 1010
b72b1920 1011 if (!CloseDocument(doc, force))
68379eaf 1012 return false;
0fb67cd1 1013
0fb67cd1
VZ
1014 // This assumes that documents are not connected in
1015 // any way, i.e. deleting one document does NOT
1016 // delete another.
1017 node = next;
1018 }
68379eaf 1019 return true;
33a20136
VZ
1020}
1021
1022bool wxDocManager::Clear(bool force)
1023{
1024 if (!CloseDocuments(force))
68379eaf 1025 return false;
33a20136 1026
8af94d3b
VZ
1027 m_currentView = NULL;
1028
222ed1d6 1029 wxList::compatibility_iterator node = m_templates.GetFirst();
0fb67cd1
VZ
1030 while (node)
1031 {
b1d4dd7a 1032 wxDocTemplate *templ = (wxDocTemplate*) node->GetData();
222ed1d6 1033 wxList::compatibility_iterator next = node->GetNext();
c801d85f
KB
1034 delete templ;
1035 node = next;
0fb67cd1 1036 }
68379eaf 1037 return true;
c801d85f
KB
1038}
1039
0fb67cd1 1040bool wxDocManager::Initialize()
c801d85f 1041{
0fb67cd1 1042 m_fileHistory = OnCreateFileHistory();
68379eaf 1043 return true;
c801d85f
KB
1044}
1045
d8efd219
VZ
1046wxString wxDocManager::GetLastDirectory() const
1047{
bba6891c 1048 // if we haven't determined the last used directory yet, do it now
d8efd219
VZ
1049 if ( m_lastDirectory.empty() )
1050 {
bba6891c
VZ
1051 // we're going to modify m_lastDirectory in this const method, so do it
1052 // via non-const self pointer instead of const this one
d8efd219 1053 wxDocManager * const self = const_cast<wxDocManager *>(this);
bba6891c
VZ
1054
1055 // first try to reuse the directory of the most recently opened file:
1056 // this ensures that if the user opens a file, closes the program and
1057 // runs it again the "Open file" dialog will open in the directory of
1058 // the last file he used
0571b62b 1059 if ( m_fileHistory && m_fileHistory->GetCount() )
bba6891c 1060 {
0571b62b 1061 const wxString lastOpened = m_fileHistory->GetHistoryFile(0);
bba6891c
VZ
1062 const wxFileName fn(lastOpened);
1063 if ( fn.DirExists() )
1064 {
1065 self->m_lastDirectory = fn.GetPath();
1066 }
1067 //else: should we try the next one?
1068 }
0571b62b 1069 //else: no history yet
bba6891c
VZ
1070
1071 // if we don't have any files in the history (yet?), use the
1072 // system-dependent default location for the document files
1073 if ( m_lastDirectory.empty() )
1074 {
1075 self->m_lastDirectory = wxStandardPaths::Get().GetAppDocumentsDir();
1076 }
d8efd219
VZ
1077 }
1078
1079 return m_lastDirectory;
1080}
1081
0fb67cd1 1082wxFileHistory *wxDocManager::OnCreateFileHistory()
c801d85f 1083{
0fb67cd1 1084 return new wxFileHistory;
c801d85f
KB
1085}
1086
1087void wxDocManager::OnFileClose(wxCommandEvent& WXUNUSED(event))
1088{
0fb67cd1 1089 wxDocument *doc = GetCurrentDocument();
568b12fa
VZ
1090 if (doc)
1091 CloseDocument(doc);
c801d85f
KB
1092}
1093
33a20136
VZ
1094void wxDocManager::OnFileCloseAll(wxCommandEvent& WXUNUSED(event))
1095{
68379eaf 1096 CloseDocuments(false);
33a20136
VZ
1097}
1098
c801d85f
KB
1099void wxDocManager::OnFileNew(wxCommandEvent& WXUNUSED(event))
1100{
b5412983 1101 CreateNewDocument();
c801d85f
KB
1102}
1103
1104void wxDocManager::OnFileOpen(wxCommandEvent& WXUNUSED(event))
1105{
89d94e04 1106 if ( !CreateDocument("") )
5f170f33
VZ
1107 {
1108 OnOpenFileFailure();
1109 }
c801d85f
KB
1110}
1111
1112void wxDocManager::OnFileRevert(wxCommandEvent& WXUNUSED(event))
1113{
0fb67cd1
VZ
1114 wxDocument *doc = GetCurrentDocument();
1115 if (!doc)
1116 return;
1117 doc->Revert();
c801d85f
KB
1118}
1119
1120void wxDocManager::OnFileSave(wxCommandEvent& WXUNUSED(event))
1121{
0fb67cd1
VZ
1122 wxDocument *doc = GetCurrentDocument();
1123 if (!doc)
1124 return;
1125 doc->Save();
c801d85f
KB
1126}
1127
1128void wxDocManager::OnFileSaveAs(wxCommandEvent& WXUNUSED(event))
1129{
0fb67cd1
VZ
1130 wxDocument *doc = GetCurrentDocument();
1131 if (!doc)
1132 return;
1133 doc->SaveAs();
c801d85f
KB
1134}
1135
c70da1a2
VZ
1136void wxDocManager::OnMRUFile(wxCommandEvent& event)
1137{
1138 // Check if the id is in the range assigned to MRU list entries.
1139 const int id = event.GetId();
1140 if ( id >= wxID_FILE1 &&
f50d8458 1141 id < wxID_FILE1 + static_cast<int>(m_fileHistory->GetCount()) )
c70da1a2
VZ
1142 {
1143 DoOpenMRUFile(id - wxID_FILE1);
1144 }
1145 else
1146 {
1147 event.Skip();
1148 }
1149}
1150
1151void wxDocManager::DoOpenMRUFile(unsigned n)
1152{
1153 wxString filename(GetHistoryFile(n));
1154 if ( filename.empty() )
1155 return;
1156
1157 wxString errMsg; // must contain exactly one "%s" if non-empty
1158 if ( wxFile::Exists(filename) )
1159 {
d38eb01c
VZ
1160 // Try to open it but don't give an error if it failed: this could be
1161 // normal, e.g. because the user cancelled opening it, and we don't
1162 // have any useful information to put in the error message anyhow, so
1163 // we assume that in case of an error the appropriate message had been
1164 // already logged.
1165 (void)CreateDocument(filename, wxDOC_SILENT);
c70da1a2
VZ
1166 }
1167 else // file doesn't exist
1168 {
d38eb01c 1169 OnMRUFileNotExist(n, filename);
c70da1a2 1170 }
d38eb01c 1171}
c70da1a2 1172
d38eb01c
VZ
1173void wxDocManager::OnMRUFileNotExist(unsigned n, const wxString& filename)
1174{
c70da1a2
VZ
1175 // remove the file which we can't open from the MRU list
1176 RemoveFileFromHistory(n);
1177
1178 // and tell the user about it
d38eb01c
VZ
1179 wxLogError(_("The file '%s' doesn't exist and couldn't be opened.\n"
1180 "It has been removed from the most recently used files list."),
c70da1a2
VZ
1181 filename);
1182}
1183
b99017ce
VZ
1184#if wxUSE_PRINTING_ARCHITECTURE
1185
c801d85f
KB
1186void wxDocManager::OnPrint(wxCommandEvent& WXUNUSED(event))
1187{
575e4cd6 1188 wxView *view = GetActiveView();
0fb67cd1
VZ
1189 if (!view)
1190 return;
c801d85f 1191
0fb67cd1
VZ
1192 wxPrintout *printout = view->OnCreatePrintout();
1193 if (printout)
1194 {
b99017ce
VZ
1195 wxPrintDialogData printDialogData(m_pageSetupDialogData.GetPrintData());
1196 wxPrinter printer(&printDialogData);
68379eaf 1197 printer.Print(view->GetFrame(), printout, true);
c801d85f 1198
0fb67cd1
VZ
1199 delete printout;
1200 }
c801d85f
KB
1201}
1202
b99017ce
VZ
1203void wxDocManager::OnPageSetup(wxCommandEvent& WXUNUSED(event))
1204{
1205 wxPageSetupDialog dlg(wxTheApp->GetTopWindow(), &m_pageSetupDialogData);
1206 if ( dlg.ShowModal() == wxID_OK )
1207 {
1208 m_pageSetupDialogData = dlg.GetPageSetupData();
1209 }
1210}
1211
94dc70d1
VZ
1212wxPreviewFrame* wxDocManager::CreatePreviewFrame(wxPrintPreviewBase* preview,
1213 wxWindow *parent,
1214 const wxString& title)
1215{
1216 return new wxPreviewFrame(preview, parent, title);
1217}
94dc70d1 1218
c801d85f
KB
1219void wxDocManager::OnPreview(wxCommandEvent& WXUNUSED(event))
1220{
84108812 1221 wxBusyCursor busy;
575e4cd6 1222 wxView *view = GetActiveView();
0fb67cd1
VZ
1223 if (!view)
1224 return;
c801d85f 1225
0fb67cd1
VZ
1226 wxPrintout *printout = view->OnCreatePrintout();
1227 if (printout)
1228 {
b99017ce
VZ
1229 wxPrintDialogData printDialogData(m_pageSetupDialogData.GetPrintData());
1230
0fb67cd1 1231 // Pass two printout objects: for preview, and possible printing.
89d94e04 1232 wxPrintPreviewBase *
b99017ce
VZ
1233 preview = new wxPrintPreview(printout,
1234 view->OnCreatePrintout(),
1235 &printDialogData);
a1b806b9 1236 if ( !preview->IsOk() )
3f8b4a3f
JS
1237 {
1238 delete preview;
89d94e04 1239 wxLogError(_("Print preview creation failed."));
3f8b4a3f
JS
1240 return;
1241 }
0fb67cd1 1242
94dc70d1
VZ
1243 wxPreviewFrame* frame = CreatePreviewFrame(preview,
1244 wxTheApp->GetTopWindow(),
1245 _("Print Preview"));
1246 wxCHECK_RET( frame, "should create a print preview frame" );
1247
0fb67cd1
VZ
1248 frame->Centre(wxBOTH);
1249 frame->Initialize();
68379eaf 1250 frame->Show(true);
0fb67cd1 1251 }
c801d85f 1252}
b99017ce 1253#endif // wxUSE_PRINTING_ARCHITECTURE
c801d85f 1254
34aa6140 1255void wxDocManager::OnUndo(wxCommandEvent& event)
c801d85f 1256{
89d94e04
VZ
1257 wxCommandProcessor * const cmdproc = GetCurrentCommandProcessor();
1258 if ( !cmdproc )
1259 {
34aa6140 1260 event.Skip();
89d94e04
VZ
1261 return;
1262 }
1263
1264 cmdproc->Undo();
c801d85f
KB
1265}
1266
34aa6140 1267void wxDocManager::OnRedo(wxCommandEvent& event)
c801d85f 1268{
89d94e04
VZ
1269 wxCommandProcessor * const cmdproc = GetCurrentCommandProcessor();
1270 if ( !cmdproc )
1271 {
34aa6140 1272 event.Skip();
89d94e04
VZ
1273 return;
1274 }
1275
1276 cmdproc->Redo();
c801d85f
KB
1277}
1278
f2506310
JS
1279// Handlers for UI update commands
1280
1281void wxDocManager::OnUpdateFileOpen(wxUpdateUIEvent& event)
1282{
84cae69a
FM
1283 // CreateDocument() (which is called from OnFileOpen) may succeed
1284 // only when there is at least a template:
1285 event.Enable( GetTemplates().GetCount()>0 );
f2506310
JS
1286}
1287
c77049a0 1288void wxDocManager::OnUpdateDisableIfNoDoc(wxUpdateUIEvent& event)
f2506310 1289{
c77049a0 1290 event.Enable( GetCurrentDocument() != NULL );
f2506310
JS
1291}
1292
4311588b
VZ
1293void wxDocManager::OnUpdateFileRevert(wxUpdateUIEvent& event)
1294{
1295 wxDocument* doc = GetCurrentDocument();
1296 event.Enable(doc && doc->IsModified() && doc->GetDocumentSaved());
1297}
1298
f2506310
JS
1299void wxDocManager::OnUpdateFileNew(wxUpdateUIEvent& event)
1300{
84cae69a
FM
1301 // CreateDocument() (which is called from OnFileNew) may succeed
1302 // only when there is at least a template:
1303 event.Enable( GetTemplates().GetCount()>0 );
f2506310
JS
1304}
1305
1306void wxDocManager::OnUpdateFileSave(wxUpdateUIEvent& event)
1307{
de56f240 1308 wxDocument * const doc = GetCurrentDocument();
4db97e24
VZ
1309 event.Enable( doc && !doc->IsChildDocument() && !doc->AlreadySaved() );
1310}
1311
1312void wxDocManager::OnUpdateFileSaveAs(wxUpdateUIEvent& event)
1313{
1314 wxDocument * const doc = GetCurrentDocument();
1315 event.Enable( doc && !doc->IsChildDocument() );
f2506310
JS
1316}
1317
f2506310
JS
1318void wxDocManager::OnUpdateUndo(wxUpdateUIEvent& event)
1319{
89d94e04
VZ
1320 wxCommandProcessor * const cmdproc = GetCurrentCommandProcessor();
1321 if ( !cmdproc )
34aa6140 1322 {
af46dd7b
VZ
1323 // If we don't have any document at all, the menu item should really be
1324 // disabled.
1325 if ( !GetCurrentDocument() )
1326 event.Enable(false);
1327 else // But if we do have it, it might handle wxID_UNDO on its own
1328 event.Skip();
89d94e04 1329 return;
34aa6140 1330 }
89d94e04
VZ
1331 event.Enable(cmdproc->CanUndo());
1332 cmdproc->SetMenuStrings();
f2506310
JS
1333}
1334
1335void wxDocManager::OnUpdateRedo(wxUpdateUIEvent& event)
1336{
89d94e04
VZ
1337 wxCommandProcessor * const cmdproc = GetCurrentCommandProcessor();
1338 if ( !cmdproc )
34aa6140 1339 {
af46dd7b
VZ
1340 // Use same logic as in OnUpdateUndo() above.
1341 if ( !GetCurrentDocument() )
1342 event.Enable(false);
1343 else
1344 event.Skip();
89d94e04 1345 return;
34aa6140 1346 }
89d94e04
VZ
1347 event.Enable(cmdproc->CanRedo());
1348 cmdproc->SetMenuStrings();
f2506310
JS
1349}
1350
575e4cd6 1351wxView *wxDocManager::GetActiveView() const
637f467a 1352{
575e4cd6
VZ
1353 wxView *view = GetCurrentView();
1354
1355 if ( !view && !m_docs.empty() )
637f467a 1356 {
575e4cd6
VZ
1357 // if we have exactly one document, consider its view to be the current
1358 // one
1359 //
1360 // VZ: I'm not exactly sure why is this needed but this is how this
1361 // code used to behave before the bug #9518 was fixed and it seems
1362 // safer to preserve the old logic
1363 wxList::compatibility_iterator node = m_docs.GetFirst();
1364 if ( !node->GetNext() )
1365 {
1366 wxDocument *doc = static_cast<wxDocument *>(node->GetData());
1367 view = doc->GetFirstView();
1368 }
1369 //else: we have more than one document
637f467a 1370 }
575e4cd6
VZ
1371
1372 return view;
637f467a
JS
1373}
1374
8cc208e3 1375bool wxDocManager::TryBefore(wxEvent& event)
637f467a 1376{
575e4cd6 1377 wxView * const view = GetActiveView();
44070fd3 1378 return view && view->ProcessEventLocally(event);
637f467a
JS
1379}
1380
c77049a0 1381namespace
c801d85f 1382{
b1d4dd7a 1383
c77049a0 1384// helper function: return only the visible templates
93d0805b 1385wxDocTemplateVector GetVisibleTemplates(const wxList& allTemplates)
c77049a0
VZ
1386{
1387 // select only the visible templates
1388 const size_t totalNumTemplates = allTemplates.GetCount();
93d0805b 1389 wxDocTemplateVector templates;
c77049a0 1390 if ( totalNumTemplates )
c801d85f 1391 {
c77049a0
VZ
1392 templates.reserve(totalNumTemplates);
1393
1394 for ( wxList::const_iterator i = allTemplates.begin(),
1395 end = allTemplates.end();
1396 i != end;
1397 ++i )
0fb67cd1 1398 {
c77049a0
VZ
1399 wxDocTemplate * const temp = (wxDocTemplate *)*i;
1400 if ( temp->IsVisible() )
1401 templates.push_back(temp);
0fb67cd1 1402 }
c801d85f 1403 }
42771621 1404
c77049a0
VZ
1405 return templates;
1406}
0fb67cd1 1407
c77049a0
VZ
1408} // anonymous namespace
1409
8325504f
VZ
1410void wxDocManager::ActivateDocument(wxDocument *doc)
1411{
1412 wxView * const view = doc->GetFirstView();
1413 if ( !view )
1414 return;
1415
1416 view->Activate(true);
1417 if ( wxWindow *win = view->GetFrame() )
3285e9a3 1418 win->Raise();
8325504f
VZ
1419}
1420
c77049a0
VZ
1421wxDocument *wxDocManager::CreateDocument(const wxString& pathOrig, long flags)
1422{
1423 // this ought to be const but SelectDocumentType/Path() are not
1424 // const-correct and can't be changed as, being virtual, this risks
1425 // breaking user code overriding them
93d0805b 1426 wxDocTemplateVector templates(GetVisibleTemplates(m_templates));
c77049a0
VZ
1427 const size_t numTemplates = templates.size();
1428 if ( !numTemplates )
c801d85f 1429 {
c77049a0
VZ
1430 // no templates can be used, can't create document
1431 return NULL;
c801d85f
KB
1432 }
1433
42771621 1434
c77049a0
VZ
1435 // normally user should select the template to use but wxDOC_SILENT flag we
1436 // choose one ourselves
1437 wxString path = pathOrig; // may be modified below
1438 wxDocTemplate *temp;
1439 if ( flags & wxDOC_SILENT )
1440 {
1441 wxASSERT_MSG( !path.empty(),
1442 "using empty path with wxDOC_SILENT doesn't make sense" );
42771621 1443
c77049a0
VZ
1444 temp = FindTemplateForPath(path);
1445 if ( !temp )
1446 {
1447 wxLogWarning(_("The format of file '%s' couldn't be determined."),
1448 path);
0fb67cd1 1449 }
c77049a0
VZ
1450 }
1451 else // not silent, ask the user
1452 {
1453 // for the new file we need just the template, for an existing one we
1454 // need the template and the path, unless it's already specified
1455 if ( (flags & wxDOC_NEW) || !path.empty() )
1456 temp = SelectDocumentType(&templates[0], numTemplates);
1457 else
1458 temp = SelectDocumentPath(&templates[0], numTemplates, path, flags);
1459 }
0fb67cd1 1460
c77049a0
VZ
1461 if ( !temp )
1462 return NULL;
42771621 1463
c77049a0
VZ
1464 // check whether the document with this path is already opened
1465 if ( !path.empty() )
1466 {
1467 const wxFileName fn(path);
1468 for ( wxList::const_iterator i = m_docs.begin(); i != m_docs.end(); ++i )
1469 {
1470 wxDocument * const doc = (wxDocument*)*i;
b72b1920 1471
c77049a0 1472 if ( fn == doc->GetFilename() )
0fb67cd1 1473 {
c77049a0 1474 // file already open, just activate it and return
8325504f 1475 ActivateDocument(doc);
54cbdc64 1476 return doc;
0fb67cd1 1477 }
0fb67cd1 1478 }
c801d85f 1479 }
c801d85f 1480
c801d85f 1481
c77049a0 1482 // no, we need to create a new document
c801d85f 1483
c77049a0
VZ
1484
1485 // if we've reached the max number of docs, close the first one.
1486 if ( (int)GetDocuments().GetCount() >= m_maxDocsOpen )
9d4a05be 1487 {
c77049a0 1488 if ( !CloseDocument((wxDocument *)GetDocuments().GetFirst()->GetData()) )
9d4a05be 1489 {
c77049a0
VZ
1490 // can't open the new document if closing the old one failed
1491 return NULL;
9d4a05be
JS
1492 }
1493 }
c801d85f 1494
c801d85f 1495
c77049a0
VZ
1496 // do create and initialize the new document finally
1497 wxDocument * const docNew = temp->CreateDocument(path, flags);
1498 if ( !docNew )
1499 return NULL;
42771621 1500
c77049a0
VZ
1501 docNew->SetDocumentName(temp->GetDocumentName());
1502 docNew->SetDocumentTemplate(temp);
6489e7ee 1503
7339d7bd 1504 wxTRY
c77049a0 1505 {
7339d7bd
VZ
1506 // call the appropriate function depending on whether we're creating a
1507 // new file or opening an existing one
1508 if ( !(flags & wxDOC_NEW ? docNew->OnNewDocument()
1509 : docNew->OnOpenDocument(path)) )
1510 {
1511 docNew->DeleteAllViews();
1512 return NULL;
1513 }
c801d85f 1514 }
7339d7bd 1515 wxCATCH_ALL( docNew->DeleteAllViews(); throw; )
3ca6a5f0 1516
c77049a0
VZ
1517 // add the successfully opened file to MRU, but only if we're going to be
1518 // able to reopen it successfully later which requires the template for
1519 // this document to be retrievable from the file extension
1520 if ( !(flags & wxDOC_NEW) && temp->FileMatchesTemplate(path) )
1521 AddFileToHistory(path);
1522
8325504f
VZ
1523 // at least under Mac (where views are top level windows) it seems to be
1524 // necessary to manually activate the new document to bring it to the
1525 // forefront -- and it shouldn't hurt doing this under the other platforms
1526 ActivateDocument(docNew);
1527
c77049a0 1528 return docNew;
c801d85f
KB
1529}
1530
1531wxView *wxDocManager::CreateView(wxDocument *doc, long flags)
1532{
93d0805b 1533 wxDocTemplateVector templates(GetVisibleTemplates(m_templates));
c77049a0 1534 const size_t numTemplates = templates.size();
b1d4dd7a 1535
c77049a0
VZ
1536 if ( numTemplates == 0 )
1537 return NULL;
0fb67cd1 1538
c77049a0
VZ
1539 wxDocTemplate * const
1540 temp = numTemplates == 1 ? templates[0]
1541 : SelectViewType(&templates[0], numTemplates);
1542
1543 if ( !temp )
1544 return NULL;
1545
1546 wxView *view = temp->CreateView(doc, flags);
1547 if ( view )
1548 view->SetViewName(temp->GetViewName());
1549 return view;
c801d85f
KB
1550}
1551
1552// Not yet implemented
c77049a0
VZ
1553void
1554wxDocManager::DeleteTemplate(wxDocTemplate *WXUNUSED(temp), long WXUNUSED(flags))
c801d85f
KB
1555{
1556}
1557
1558// Not yet implemented
1559bool wxDocManager::FlushDoc(wxDocument *WXUNUSED(doc))
1560{
68379eaf 1561 return false;
c801d85f
KB
1562}
1563
6de2f8b9 1564wxDocument *wxDocManager::GetCurrentDocument() const
c801d85f 1565{
575e4cd6 1566 wxView * const view = GetActiveView();
89d94e04
VZ
1567 return view ? view->GetDocument() : NULL;
1568}
1569
1570wxCommandProcessor *wxDocManager::GetCurrentCommandProcessor() const
1571{
1572 wxDocument * const doc = GetCurrentDocument();
1573 return doc ? doc->GetCommandProcessor() : NULL;
c801d85f
KB
1574}
1575
724b119a
VZ
1576// Make a default name for a new document
1577#if WXWIN_COMPATIBILITY_2_8
1578bool wxDocManager::MakeDefaultName(wxString& WXUNUSED(name))
1579{
1580 // we consider that this function can only be overridden by the user code,
1581 // not called by it as it only makes sense to call it internally, so we
1582 // don't bother to return anything from here
1583 return false;
1584}
1585#endif // WXWIN_COMPATIBILITY_2_8
1586
1587wxString wxDocManager::MakeNewDocumentName()
c801d85f 1588{
724b119a 1589 wxString name;
53c6e7cc 1590
724b119a
VZ
1591#if WXWIN_COMPATIBILITY_2_8
1592 if ( !MakeDefaultName(name) )
1593#endif // WXWIN_COMPATIBILITY_2_8
1594 {
1595 name.Printf(_("unnamed%d"), m_defaultDocumentNameCounter);
1596 m_defaultDocumentNameCounter++;
1597 }
1598
1599 return name;
c801d85f
KB
1600}
1601
f2506310
JS
1602// Make a frame title (override this to do something different)
1603// If docName is empty, a document is not currently active.
1604wxString wxDocManager::MakeFrameTitle(wxDocument* doc)
1605{
9cf3d218 1606 wxString appName = wxTheApp->GetAppDisplayName();
f2506310
JS
1607 wxString title;
1608 if (!doc)
1609 title = appName;
1610 else
1611 {
724b119a 1612 wxString docName = doc->GetUserReadableName();
f2506310
JS
1613 title = docName + wxString(_(" - ")) + appName;
1614 }
1615 return title;
1616}
1617
1618
c801d85f
KB
1619// Not yet implemented
1620wxDocTemplate *wxDocManager::MatchTemplate(const wxString& WXUNUSED(path))
1621{
c77049a0 1622 return NULL;
c801d85f
KB
1623}
1624
1625// File history management
1626void wxDocManager::AddFileToHistory(const wxString& file)
1627{
0fb67cd1
VZ
1628 if (m_fileHistory)
1629 m_fileHistory->AddFileToHistory(file);
c801d85f
KB
1630}
1631
e49c85af 1632void wxDocManager::RemoveFileFromHistory(size_t i)
0c5d3e1c
VZ
1633{
1634 if (m_fileHistory)
1635 m_fileHistory->RemoveFileFromHistory(i);
1636}
1637
e49c85af 1638wxString wxDocManager::GetHistoryFile(size_t i) const
c801d85f 1639{
0fb67cd1
VZ
1640 wxString histFile;
1641
1642 if (m_fileHistory)
1643 histFile = m_fileHistory->GetHistoryFile(i);
1644
1645 return histFile;
c801d85f
KB
1646}
1647
1648void wxDocManager::FileHistoryUseMenu(wxMenu *menu)
1649{
0fb67cd1
VZ
1650 if (m_fileHistory)
1651 m_fileHistory->UseMenu(menu);
c801d85f
KB
1652}
1653
7f555861 1654void wxDocManager::FileHistoryRemoveMenu(wxMenu *menu)
c801d85f 1655{
0fb67cd1
VZ
1656 if (m_fileHistory)
1657 m_fileHistory->RemoveMenu(menu);
c801d85f
KB
1658}
1659
702ca7c0 1660#if wxUSE_CONFIG
9c8116f8 1661void wxDocManager::FileHistoryLoad(const wxConfigBase& config)
c801d85f 1662{
0fb67cd1
VZ
1663 if (m_fileHistory)
1664 m_fileHistory->Load(config);
7f555861
JS
1665}
1666
1667void wxDocManager::FileHistorySave(wxConfigBase& config)
1668{
0fb67cd1
VZ
1669 if (m_fileHistory)
1670 m_fileHistory->Save(config);
7f555861 1671}
ac57418f 1672#endif
7f555861
JS
1673
1674void wxDocManager::FileHistoryAddFilesToMenu(wxMenu* menu)
1675{
0fb67cd1
VZ
1676 if (m_fileHistory)
1677 m_fileHistory->AddFilesToMenu(menu);
7f555861
JS
1678}
1679
1680void wxDocManager::FileHistoryAddFilesToMenu()
1681{
0fb67cd1
VZ
1682 if (m_fileHistory)
1683 m_fileHistory->AddFilesToMenu();
c801d85f
KB
1684}
1685
7af6b69e 1686size_t wxDocManager::GetHistoryFilesCount() const
c801d85f 1687{
7af6b69e 1688 return m_fileHistory ? m_fileHistory->GetCount() : 0;
c801d85f
KB
1689}
1690
1691
6de2f8b9
VZ
1692// Find out the document template via matching in the document file format
1693// against that of the template
c801d85f
KB
1694wxDocTemplate *wxDocManager::FindTemplateForPath(const wxString& path)
1695{
c77049a0 1696 wxDocTemplate *theTemplate = NULL;
c801d85f 1697
0fb67cd1 1698 // Find the template which this extension corresponds to
b1d4dd7a 1699 for (size_t i = 0; i < m_templates.GetCount(); i++)
c801d85f 1700 {
b1d4dd7a 1701 wxDocTemplate *temp = (wxDocTemplate *)m_templates.Item(i)->GetData();
6de2f8b9 1702 if ( temp->FileMatchesTemplate(path) )
0fb67cd1
VZ
1703 {
1704 theTemplate = temp;
1705 break;
1706 }
c801d85f 1707 }
0fb67cd1 1708 return theTemplate;
c801d85f
KB
1709}
1710
1711// Prompts user to open a file, using file specs in templates.
9d4a05be
JS
1712// Must extend the file selector dialog or implement own; OR
1713// match the extension to the template extension.
df875e59 1714
c801d85f 1715wxDocTemplate *wxDocManager::SelectDocumentPath(wxDocTemplate **templates,
0fb67cd1
VZ
1716 int noTemplates,
1717 wxString& path,
1718 long WXUNUSED(flags),
1719 bool WXUNUSED(save))
c801d85f 1720{
89d94e04 1721#ifdef wxHAS_MULTIPLE_FILEDLG_FILTERS
ba681060
VZ
1722 wxString descrBuf;
1723
89d94e04 1724 for (int i = 0; i < noTemplates; i++)
c801d85f 1725 {
ba681060
VZ
1726 if (templates[i]->IsVisible())
1727 {
1728 // add a '|' to separate this filter from the previous one
b494c48b 1729 if ( !descrBuf.empty() )
223d09f6 1730 descrBuf << wxT('|');
ba681060
VZ
1731
1732 descrBuf << templates[i]->GetDescription()
223d09f6 1733 << wxT(" (") << templates[i]->GetFileFilter() << wxT(") |")
0fb67cd1 1734 << templates[i]->GetFileFilter();
ba681060 1735 }
c801d85f 1736 }
a4294b78 1737#else
223d09f6 1738 wxString descrBuf = wxT("*.*");
c77049a0 1739 wxUnusedVar(noTemplates);
a4294b78 1740#endif
c801d85f 1741
3ca6a5f0 1742 int FilterIndex = -1;
f6bcfd97 1743
f6fe9f9c 1744 wxString pathTmp = wxFileSelectorEx(_("Open File"),
d8efd219 1745 GetLastDirectory(),
b494c48b 1746 wxEmptyString,
6de2f8b9 1747 &FilterIndex,
97aa1a74
VZ
1748 descrBuf,
1749 wxFD_OPEN | wxFD_FILE_MUST_EXIST);
ba681060 1750
c77049a0 1751 wxDocTemplate *theTemplate = NULL;
b494c48b 1752 if (!pathTmp.empty())
0fb67cd1 1753 {
f6bcfd97
BP
1754 if (!wxFileExists(pathTmp))
1755 {
1756 wxString msgTitle;
9cf3d218
VZ
1757 if (!wxTheApp->GetAppDisplayName().empty())
1758 msgTitle = wxTheApp->GetAppDisplayName();
f6bcfd97
BP
1759 else
1760 msgTitle = wxString(_("File error"));
02718e6a 1761
89d94e04
VZ
1762 wxMessageBox(_("Sorry, could not open this file."),
1763 msgTitle,
b6e96faf 1764 wxOK | wxICON_EXCLAMATION | wxCENTRE);
f6bcfd97 1765
b494c48b 1766 path = wxEmptyString;
c77049a0 1767 return NULL;
f6bcfd97 1768 }
d8efd219
VZ
1769
1770 SetLastDirectory(wxPathOnly(pathTmp));
ac0ac824 1771
0fb67cd1 1772 path = pathTmp;
0fb67cd1 1773
3ca6a5f0
BP
1774 // first choose the template using the extension, if this fails (i.e.
1775 // wxFileSelectorEx() didn't fill it), then use the path
1776 if ( FilterIndex != -1 )
6de2f8b9 1777 theTemplate = templates[FilterIndex];
3ca6a5f0
BP
1778 if ( !theTemplate )
1779 theTemplate = FindTemplateForPath(path);
9d4a05be
JS
1780 if ( !theTemplate )
1781 {
89d94e04
VZ
1782 // Since we do not add files with non-default extensions to the
1783 // file history this can only happen if the application changes the
1784 // allowed templates in runtime.
1785 wxMessageBox(_("Sorry, the format for this file is unknown."),
1786 _("Open File"),
b6e96faf 1787 wxOK | wxICON_EXCLAMATION | wxCENTRE);
9d4a05be 1788 }
0fb67cd1
VZ
1789 }
1790 else
1791 {
89d94e04 1792 path.clear();
0fb67cd1 1793 }
3ca6a5f0
BP
1794
1795 return theTemplate;
c801d85f
KB
1796}
1797
1798wxDocTemplate *wxDocManager::SelectDocumentType(wxDocTemplate **templates,
52b9ca21 1799 int noTemplates, bool sort)
0fb67cd1 1800{
222ed1d6 1801 wxArrayString strings;
89d94e04 1802 wxScopedArray<wxDocTemplate *> data(new wxDocTemplate *[noTemplates]);
0fb67cd1
VZ
1803 int i;
1804 int n = 0;
42771621
VZ
1805
1806 for (i = 0; i < noTemplates; i++)
1807 {
1808 if (templates[i]->IsVisible())
1809 {
1810 int j;
68379eaf 1811 bool want = true;
42771621
VZ
1812 for (j = 0; j < n; j++)
1813 {
bb28b477 1814 //filter out NOT unique documents + view combinations
42771621 1815 if ( templates[i]->m_docTypeName == data[j]->m_docTypeName &&
bb28b477
JS
1816 templates[i]->m_viewTypeName == data[j]->m_viewTypeName
1817 )
68379eaf 1818 want = false;
42771621 1819 }
bb28b477
JS
1820
1821 if ( want )
42771621
VZ
1822 {
1823 strings.Add(templates[i]->m_description);
1824
1825 data[n] = templates[i];
1826 n ++;
1827 }
1828 }
1829 } // for
1830
1831 if (sort)
1832 {
a2a03d78 1833 strings.Sort(); // ascending sort
42771621
VZ
1834 // Yes, this will be slow, but template lists
1835 // are typically short.
1836 int j;
1837 n = strings.Count();
1838 for (i = 0; i < n; i++)
1839 {
1840 for (j = 0; j < noTemplates; j++)
1841 {
1842 if (strings[i] == templates[j]->m_description)
1843 data[i] = templates[j];
1844 }
1845 }
1846 }
17260efd
VZ
1847
1848 wxDocTemplate *theTemplate;
1849
1850 switch ( n )
0fb67cd1 1851 {
17260efd
VZ
1852 case 0:
1853 // no visible templates, hence nothing to choose from
1854 theTemplate = NULL;
1855 break;
0fb67cd1 1856
17260efd 1857 case 1:
c77049a0 1858 // don't propose the user to choose if he has no choice
17260efd
VZ
1859 theTemplate = data[0];
1860 break;
1861
1862 default:
1863 // propose the user to choose one of several
1864 theTemplate = (wxDocTemplate *)wxGetSingleChoiceData
1865 (
1866 _("Select a document template"),
1867 _("Templates"),
1868 strings,
b6e96faf 1869 (void **)data.get()
17260efd
VZ
1870 );
1871 }
f6bcfd97 1872
0fb67cd1 1873 return theTemplate;
c801d85f
KB
1874}
1875
1876wxDocTemplate *wxDocManager::SelectViewType(wxDocTemplate **templates,
52b9ca21 1877 int noTemplates, bool sort)
c801d85f 1878{
222ed1d6 1879 wxArrayString strings;
89d94e04 1880 wxScopedArray<wxDocTemplate *> data(new wxDocTemplate *[noTemplates]);
0fb67cd1
VZ
1881 int i;
1882 int n = 0;
42771621 1883
0fb67cd1 1884 for (i = 0; i < noTemplates; i++)
c801d85f 1885 {
17260efd
VZ
1886 wxDocTemplate *templ = templates[i];
1887 if ( templ->IsVisible() && !templ->GetViewName().empty() )
0fb67cd1 1888 {
42771621 1889 int j;
68379eaf 1890 bool want = true;
42771621
VZ
1891 for (j = 0; j < n; j++)
1892 {
bb28b477 1893 //filter out NOT unique views
42771621 1894 if ( templates[i]->m_viewTypeName == data[j]->m_viewTypeName )
68379eaf 1895 want = false;
42771621 1896 }
bb28b477
JS
1897
1898 if ( want )
1899 {
42771621
VZ
1900 strings.Add(templ->m_viewTypeName);
1901 data[n] = templ;
1902 n ++;
1903 }
0fb67cd1 1904 }
c801d85f 1905 }
f6bcfd97 1906
42771621
VZ
1907 if (sort)
1908 {
a2a03d78 1909 strings.Sort(); // ascending sort
42771621
VZ
1910 // Yes, this will be slow, but template lists
1911 // are typically short.
1912 int j;
1913 n = strings.Count();
1914 for (i = 0; i < n; i++)
1915 {
1916 for (j = 0; j < noTemplates; j++)
1917 {
1918 if (strings[i] == templates[j]->m_viewTypeName)
1919 data[i] = templates[j];
1920 }
1921 }
1922 }
8658ef93 1923
17260efd
VZ
1924 wxDocTemplate *theTemplate;
1925
1926 // the same logic as above
1927 switch ( n )
1928 {
1929 case 0:
c77049a0 1930 theTemplate = NULL;
17260efd
VZ
1931 break;
1932
1933 case 1:
1934 theTemplate = data[0];
1935 break;
1936
1937 default:
1938 theTemplate = (wxDocTemplate *)wxGetSingleChoiceData
1939 (
1940 _("Select a document view"),
1941 _("Views"),
1942 strings,
b6e96faf 1943 (void **)data.get()
17260efd
VZ
1944 );
1945
1946 }
1947
0fb67cd1 1948 return theTemplate;
c801d85f
KB
1949}
1950
1951void wxDocManager::AssociateTemplate(wxDocTemplate *temp)
1952{
0fb67cd1
VZ
1953 if (!m_templates.Member(temp))
1954 m_templates.Append(temp);
c801d85f
KB
1955}
1956
1957void wxDocManager::DisassociateTemplate(wxDocTemplate *temp)
1958{
0fb67cd1 1959 m_templates.DeleteObject(temp);
c801d85f
KB
1960}
1961
a70d268a
VZ
1962wxDocTemplate* wxDocManager::FindTemplate(const wxClassInfo* classinfo)
1963{
1964 for ( wxList::compatibility_iterator node = m_templates.GetFirst();
1965 node;
1966 node = node->GetNext() )
1967 {
1968 wxDocTemplate* t = wxStaticCast(node->GetData(), wxDocTemplate);
1969 if ( t->GetDocClassInfo() == classinfo )
1970 return t;
1971 }
1972
1973 return NULL;
1974}
1975
c801d85f
KB
1976// Add and remove a document from the manager's list
1977void wxDocManager::AddDocument(wxDocument *doc)
1978{
0fb67cd1
VZ
1979 if (!m_docs.Member(doc))
1980 m_docs.Append(doc);
c801d85f
KB
1981}
1982
1983void wxDocManager::RemoveDocument(wxDocument *doc)
1984{
0fb67cd1 1985 m_docs.DeleteObject(doc);
c801d85f
KB
1986}
1987
1988// Views or windows should inform the document manager
1989// when a view is going in or out of focus
18759f78
VZ
1990void wxDocManager::ActivateView(wxView *view, bool activate)
1991{
1992 if ( activate )
0fb67cd1 1993 {
18759f78
VZ
1994 m_currentView = view;
1995 }
1996 else // deactivate
1997 {
1998 if ( m_currentView == view )
1999 {
2000 // don't keep stale pointer
c77049a0 2001 m_currentView = NULL;
18759f78 2002 }
0fb67cd1 2003 }
c801d85f
KB
2004}
2005
0fb67cd1 2006// ----------------------------------------------------------------------------
a9e2e6e5 2007// wxDocChildFrameAnyBase
0fb67cd1 2008// ----------------------------------------------------------------------------
c801d85f 2009
a9e2e6e5 2010bool wxDocChildFrameAnyBase::CloseView(wxCloseEvent& event)
c801d85f 2011{
8cc208e3
VZ
2012 if ( m_childView )
2013 {
cf30eac2
VZ
2014 // notice that we must call wxView::Close() and OnClose() called from
2015 // it in any case, even if we know that we are going to close anyhow
2016 if ( !m_childView->Close(false) && event.CanVeto() )
a9e2e6e5
VZ
2017 {
2018 event.Veto();
2019 return false;
2020 }
89d94e04 2021
a9e2e6e5 2022 m_childView->Activate(false);
ada1ff0d
VZ
2023
2024 // it is important to reset m_childView frame pointer to NULL before
2025 // deleting it because while normally it is the frame which deletes the
2026 // view when it's closed, the view also closes the frame if it is
2027 // deleted directly not by us as indicated by its doc child frame
2028 // pointer still being set
2029 m_childView->SetDocChildFrame(NULL);
5276b0a5 2030 wxDELETE(m_childView);
89d94e04 2031 }
387a3b02 2032
89d94e04 2033 m_childDocument = NULL;
0fb67cd1 2034
a9e2e6e5 2035 return true;
c801d85f
KB
2036}
2037
0fb67cd1 2038// ----------------------------------------------------------------------------
c48bdb0c 2039// wxDocParentFrameAnyBase
0fb67cd1 2040// ----------------------------------------------------------------------------
c801d85f 2041
47d67540 2042#if wxUSE_PRINTING_ARCHITECTURE
c801d85f 2043
302674fe
VZ
2044namespace
2045{
2046
2047wxString GetAppropriateTitle(const wxView *view, const wxString& titleGiven)
2048{
2049 wxString title(titleGiven);
2050 if ( title.empty() )
2051 {
2052 if ( view && view->GetDocument() )
2053 title = view->GetDocument()->GetUserReadableName();
2054 else
2055 title = _("Printout");
2056 }
2057
2058 return title;
2059}
2060
2061} // anonymous namespace
2062
0fb67cd1 2063wxDocPrintout::wxDocPrintout(wxView *view, const wxString& title)
302674fe 2064 : wxPrintout(GetAppropriateTitle(view, title))
c801d85f 2065{
0fb67cd1 2066 m_printoutView = view;
c801d85f
KB
2067}
2068
2069bool wxDocPrintout::OnPrintPage(int WXUNUSED(page))
2070{
0fb67cd1
VZ
2071 wxDC *dc = GetDC();
2072
2073 // Get the logical pixels per inch of screen and printer
2074 int ppiScreenX, ppiScreenY;
2075 GetPPIScreen(&ppiScreenX, &ppiScreenY);
999836aa 2076 wxUnusedVar(ppiScreenY);
0fb67cd1
VZ
2077 int ppiPrinterX, ppiPrinterY;
2078 GetPPIPrinter(&ppiPrinterX, &ppiPrinterY);
999836aa 2079 wxUnusedVar(ppiPrinterY);
0fb67cd1
VZ
2080
2081 // This scales the DC so that the printout roughly represents the
2082 // the screen scaling. The text point size _should_ be the right size
2083 // but in fact is too small for some reason. This is a detail that will
2084 // need to be addressed at some point but can be fudged for the
2085 // moment.
2086 float scale = (float)((float)ppiPrinterX/(float)ppiScreenX);
2087
2088 // Now we have to check in case our real page size is reduced
2089 // (e.g. because we're drawing to a print preview memory DC)
2090 int pageWidth, pageHeight;
2091 int w, h;
2092 dc->GetSize(&w, &h);
2093 GetPageSizePixels(&pageWidth, &pageHeight);
999836aa 2094 wxUnusedVar(pageHeight);
0fb67cd1
VZ
2095
2096 // If printer pageWidth == current DC width, then this doesn't
2097 // change. But w might be the preview bitmap width, so scale down.
2098 float overallScale = scale * (float)(w/(float)pageWidth);
2099 dc->SetUserScale(overallScale, overallScale);
2100
2101 if (m_printoutView)
2102 {
2103 m_printoutView->OnDraw(dc);
2104 }
68379eaf 2105 return true;
c801d85f
KB
2106}
2107
2108bool wxDocPrintout::HasPage(int pageNum)
2109{
0fb67cd1 2110 return (pageNum == 1);
c801d85f
KB
2111}
2112
2113bool wxDocPrintout::OnBeginDocument(int startPage, int endPage)
2114{
0fb67cd1 2115 if (!wxPrintout::OnBeginDocument(startPage, endPage))
68379eaf 2116 return false;
c801d85f 2117
68379eaf 2118 return true;
c801d85f
KB
2119}
2120
89d94e04
VZ
2121void wxDocPrintout::GetPageInfo(int *minPage, int *maxPage,
2122 int *selPageFrom, int *selPageTo)
c801d85f 2123{
0fb67cd1
VZ
2124 *minPage = 1;
2125 *maxPage = 1;
2126 *selPageFrom = 1;
2127 *selPageTo = 1;
c801d85f
KB
2128}
2129
0fb67cd1 2130#endif // wxUSE_PRINTING_ARCHITECTURE
c801d85f 2131
0fb67cd1
VZ
2132// ----------------------------------------------------------------------------
2133// Permits compatibility with existing file formats and functions that
2134// manipulate files directly
2135// ----------------------------------------------------------------------------
c801d85f 2136
a533f5c1 2137#if wxUSE_STD_IOSTREAM
fb6e5b17 2138
dd107c50 2139bool wxTransferFileToStream(const wxString& filename, wxSTD ostream& stream)
c801d85f 2140{
ce0822e1 2141#if wxUSE_FFILE
9a83f860 2142 wxFFile file(filename, wxT("rb"));
ce0822e1
VZ
2143#elif wxUSE_FILE
2144 wxFile file(filename, wxFile::read);
2145#endif
fb6e5b17 2146 if ( !file.IsOpened() )
68379eaf 2147 return false;
c801d85f 2148
fb6e5b17
VZ
2149 char buf[4096];
2150
2151 size_t nRead;
2152 do
2153 {
2154 nRead = file.Read(buf, WXSIZEOF(buf));
2155 if ( file.Error() )
68379eaf 2156 return false;
fb6e5b17
VZ
2157
2158 stream.write(buf, nRead);
2159 if ( !stream )
68379eaf 2160 return false;
fb6e5b17
VZ
2161 }
2162 while ( !file.Eof() );
c801d85f 2163
68379eaf 2164 return true;
c801d85f
KB
2165}
2166
dd107c50 2167bool wxTransferStreamToFile(wxSTD istream& stream, const wxString& filename)
c801d85f 2168{
ce0822e1 2169#if wxUSE_FFILE
9a83f860 2170 wxFFile file(filename, wxT("wb"));
ce0822e1
VZ
2171#elif wxUSE_FILE
2172 wxFile file(filename, wxFile::write);
2173#endif
fb6e5b17 2174 if ( !file.IsOpened() )
68379eaf 2175 return false;
c801d85f 2176
fb6e5b17
VZ
2177 char buf[4096];
2178 do
0fb67cd1 2179 {
fb6e5b17
VZ
2180 stream.read(buf, WXSIZEOF(buf));
2181 if ( !stream.bad() ) // fail may be set on EOF, don't use operator!()
2182 {
2183 if ( !file.Write(buf, stream.gcount()) )
68379eaf 2184 return false;
fb6e5b17 2185 }
0fb67cd1 2186 }
fb6e5b17
VZ
2187 while ( !stream.eof() );
2188
68379eaf 2189 return true;
c801d85f 2190}
fb6e5b17
VZ
2191
2192#else // !wxUSE_STD_IOSTREAM
2193
dc1efb1d
JS
2194bool wxTransferFileToStream(const wxString& filename, wxOutputStream& stream)
2195{
ce0822e1 2196#if wxUSE_FFILE
9a83f860 2197 wxFFile file(filename, wxT("rb"));
ce0822e1
VZ
2198#elif wxUSE_FILE
2199 wxFile file(filename, wxFile::read);
2200#endif
fb6e5b17 2201 if ( !file.IsOpened() )
68379eaf 2202 return false;
dc1efb1d 2203
fb6e5b17
VZ
2204 char buf[4096];
2205
2206 size_t nRead;
2207 do
2208 {
2209 nRead = file.Read(buf, WXSIZEOF(buf));
2210 if ( file.Error() )
68379eaf 2211 return false;
fb6e5b17
VZ
2212
2213 stream.Write(buf, nRead);
2214 if ( !stream )
68379eaf 2215 return false;
fb6e5b17
VZ
2216 }
2217 while ( !file.Eof() );
dc1efb1d 2218
68379eaf 2219 return true;
dc1efb1d
JS
2220}
2221
2222bool wxTransferStreamToFile(wxInputStream& stream, const wxString& filename)
2223{
ce0822e1 2224#if wxUSE_FFILE
9a83f860 2225 wxFFile file(filename, wxT("wb"));
ce0822e1
VZ
2226#elif wxUSE_FILE
2227 wxFile file(filename, wxFile::write);
2228#endif
fb6e5b17 2229 if ( !file.IsOpened() )
68379eaf 2230 return false;
dc1efb1d 2231
fb6e5b17 2232 char buf[4096];
07f87b6b 2233 for ( ;; )
dc1efb1d 2234 {
fb6e5b17
VZ
2235 stream.Read(buf, WXSIZEOF(buf));
2236
2237 const size_t nRead = stream.LastRead();
07f87b6b
VZ
2238 if ( !nRead )
2239 {
2240 if ( stream.Eof() )
2241 break;
2242
2243 return false;
2244 }
2245
2246 if ( !file.Write(buf, nRead) )
68379eaf 2247 return false;
dc1efb1d 2248 }
fb6e5b17 2249
68379eaf 2250 return true;
dc1efb1d 2251}
fb6e5b17
VZ
2252
2253#endif // wxUSE_STD_IOSTREAM/!wxUSE_STD_IOSTREAM
c801d85f 2254
0fb67cd1 2255#endif // wxUSE_DOC_VIEW_ARCHITECTURE