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