Add wxDocManager::GetPageSetupDialogData() accessor.
[wxWidgets.git] / include / wx / docview.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/docview.h
3 // Purpose: Doc/View classes
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 01/02/97
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_DOCH__
13 #define _WX_DOCH__
14
15 #include "wx/defs.h"
16
17 #if wxUSE_DOC_VIEW_ARCHITECTURE
18
19 #include "wx/list.h"
20 #include "wx/string.h"
21 #include "wx/frame.h"
22 #include "wx/filehistory.h"
23
24 #if wxUSE_PRINTING_ARCHITECTURE
25 #include "wx/print.h"
26 #endif
27
28 class WXDLLIMPEXP_FWD_CORE wxWindow;
29 class WXDLLIMPEXP_FWD_CORE wxDocument;
30 class WXDLLIMPEXP_FWD_CORE wxView;
31 class WXDLLIMPEXP_FWD_CORE wxDocTemplate;
32 class WXDLLIMPEXP_FWD_CORE wxDocManager;
33 class WXDLLIMPEXP_FWD_CORE wxPrintInfo;
34 class WXDLLIMPEXP_FWD_CORE wxCommandProcessor;
35 class WXDLLIMPEXP_FWD_BASE wxConfigBase;
36
37 class wxDocChildFrameAnyBase;
38
39 #if wxUSE_STD_IOSTREAM
40 #include "wx/iosfwrap.h"
41 #else
42 #include "wx/stream.h"
43 #endif
44
45 // Flags for wxDocManager (can be combined).
46 enum
47 {
48 wxDOC_NEW = 1,
49 wxDOC_SILENT = 2
50 };
51
52 // Document template flags
53 enum
54 {
55 wxTEMPLATE_VISIBLE = 1,
56 wxTEMPLATE_INVISIBLE = 2,
57 wxDEFAULT_TEMPLATE_FLAGS = wxTEMPLATE_VISIBLE
58 };
59
60 #define wxMAX_FILE_HISTORY 9
61
62 class WXDLLIMPEXP_CORE wxDocument : public wxEvtHandler
63 {
64 public:
65 wxDocument(wxDocument *parent = NULL);
66 virtual ~wxDocument();
67
68 // accessors
69 void SetFilename(const wxString& filename, bool notifyViews = false);
70 wxString GetFilename() const { return m_documentFile; }
71
72 void SetTitle(const wxString& title) { m_documentTitle = title; }
73 wxString GetTitle() const { return m_documentTitle; }
74
75 void SetDocumentName(const wxString& name) { m_documentTypeName = name; }
76 wxString GetDocumentName() const { return m_documentTypeName; }
77
78 // access the flag indicating whether this document had been already saved,
79 // SetDocumentSaved() is only used internally, don't call it
80 bool GetDocumentSaved() const { return m_savedYet; }
81 void SetDocumentSaved(bool saved = true) { m_savedYet = saved; }
82
83 // return true if the document hasn't been modified since the last time it
84 // was saved (implying that it returns false if it was never saved, even if
85 // the document is not modified)
86 bool AlreadySaved() const { return !IsModified() && GetDocumentSaved(); }
87
88 virtual bool Close();
89 virtual bool Save();
90 virtual bool SaveAs();
91 virtual bool Revert();
92
93 #if wxUSE_STD_IOSTREAM
94 virtual wxSTD ostream& SaveObject(wxSTD ostream& stream);
95 virtual wxSTD istream& LoadObject(wxSTD istream& stream);
96 #else
97 virtual wxOutputStream& SaveObject(wxOutputStream& stream);
98 virtual wxInputStream& LoadObject(wxInputStream& stream);
99 #endif
100
101 // Called by wxWidgets
102 virtual bool OnSaveDocument(const wxString& filename);
103 virtual bool OnOpenDocument(const wxString& filename);
104 virtual bool OnNewDocument();
105 virtual bool OnCloseDocument();
106
107 // Prompts for saving if about to close a modified document. Returns true
108 // if ok to close the document (may have saved in the meantime, or set
109 // modified to false)
110 virtual bool OnSaveModified();
111
112 // if you override, remember to call the default
113 // implementation (wxDocument::OnChangeFilename)
114 virtual void OnChangeFilename(bool notifyViews);
115
116 // Called by framework if created automatically by the default document
117 // manager: gives document a chance to initialise and (usually) create a
118 // view
119 virtual bool OnCreate(const wxString& path, long flags);
120
121 // By default, creates a base wxCommandProcessor.
122 virtual wxCommandProcessor *OnCreateCommandProcessor();
123 virtual wxCommandProcessor *GetCommandProcessor() const
124 { return m_commandProcessor; }
125 virtual void SetCommandProcessor(wxCommandProcessor *proc)
126 { m_commandProcessor = proc; }
127
128 // Called after a view is added or removed. The default implementation
129 // deletes the document if this is there are no more views.
130 virtual void OnChangedViewList();
131
132 // Called from OnCloseDocument(), does nothing by default but may be
133 // overridden. Return value is ignored.
134 virtual bool DeleteContents();
135
136 virtual bool Draw(wxDC&);
137 virtual bool IsModified() const { return m_documentModified; }
138 virtual void Modify(bool mod);
139
140 virtual bool AddView(wxView *view);
141 virtual bool RemoveView(wxView *view);
142 wxList& GetViews() { return m_documentViews; }
143 const wxList& GetViews() const { return m_documentViews; }
144 wxView *GetFirstView() const;
145
146 virtual void UpdateAllViews(wxView *sender = NULL, wxObject *hint = NULL);
147 virtual void NotifyClosing();
148
149 // Remove all views (because we're closing the document)
150 virtual bool DeleteAllViews();
151
152 // Other stuff
153 virtual wxDocManager *GetDocumentManager() const;
154 virtual wxDocTemplate *GetDocumentTemplate() const
155 { return m_documentTemplate; }
156 virtual void SetDocumentTemplate(wxDocTemplate *temp)
157 { m_documentTemplate = temp; }
158
159 // Get the document name to be shown to the user: the title if there is
160 // any, otherwise the filename if the document was saved and, finally,
161 // "unnamed" otherwise
162 virtual wxString GetUserReadableName() const;
163
164 #if WXWIN_COMPATIBILITY_2_8
165 // use GetUserReadableName() instead
166 wxDEPRECATED_BUT_USED_INTERNALLY(
167 virtual bool GetPrintableName(wxString& buf) const
168 );
169 #endif // WXWIN_COMPATIBILITY_2_8
170
171 // Returns a window that can be used as a parent for document-related
172 // dialogs. Override if necessary.
173 virtual wxWindow *GetDocumentWindow() const;
174
175 protected:
176 wxList m_documentViews;
177 wxString m_documentFile;
178 wxString m_documentTitle;
179 wxString m_documentTypeName;
180 wxDocTemplate* m_documentTemplate;
181 bool m_documentModified;
182 wxDocument* m_documentParent;
183 wxCommandProcessor* m_commandProcessor;
184 bool m_savedYet;
185
186 // Called by OnSaveDocument and OnOpenDocument to implement standard
187 // Save/Load behaviour. Re-implement in derived class for custom
188 // behaviour.
189 virtual bool DoSaveDocument(const wxString& file);
190 virtual bool DoOpenDocument(const wxString& file);
191
192 // the default implementation of GetUserReadableName()
193 wxString DoGetUserReadableName() const;
194
195 private:
196 DECLARE_ABSTRACT_CLASS(wxDocument)
197 wxDECLARE_NO_COPY_CLASS(wxDocument);
198 };
199
200 class WXDLLIMPEXP_CORE wxView: public wxEvtHandler
201 {
202 public:
203 wxView();
204 virtual ~wxView();
205
206 wxDocument *GetDocument() const { return m_viewDocument; }
207 virtual void SetDocument(wxDocument *doc);
208
209 wxString GetViewName() const { return m_viewTypeName; }
210 void SetViewName(const wxString& name) { m_viewTypeName = name; }
211
212 wxWindow *GetFrame() const { return m_viewFrame ; }
213 void SetFrame(wxWindow *frame) { m_viewFrame = frame; }
214
215 virtual void OnActivateView(bool activate,
216 wxView *activeView,
217 wxView *deactiveView);
218 virtual void OnDraw(wxDC *dc) = 0;
219 virtual void OnPrint(wxDC *dc, wxObject *info);
220 virtual void OnUpdate(wxView *sender, wxObject *hint = NULL);
221 virtual void OnClosingDocument() {}
222 virtual void OnChangeFilename();
223
224 // Called by framework if created automatically by the default document
225 // manager class: gives view a chance to initialise
226 virtual bool OnCreate(wxDocument *WXUNUSED(doc), long WXUNUSED(flags))
227 { return true; }
228
229 // Checks if the view is the last one for the document; if so, asks user
230 // to confirm save data (if modified). If ok, deletes itself and returns
231 // true.
232 virtual bool Close(bool deleteWindow = true);
233
234 // Override to do cleanup/veto close
235 virtual bool OnClose(bool deleteWindow);
236
237 // A view's window can call this to notify the view it is (in)active.
238 // The function then notifies the document manager.
239 virtual void Activate(bool activate);
240
241 wxDocManager *GetDocumentManager() const
242 { return m_viewDocument->GetDocumentManager(); }
243
244 #if wxUSE_PRINTING_ARCHITECTURE
245 virtual wxPrintout *OnCreatePrintout();
246 #endif
247
248 // implementation only
249 // -------------------
250
251 // set the associated frame, it is used to reset its view when we're
252 // destroyed
253 void SetDocChildFrame(wxDocChildFrameAnyBase *docChildFrame);
254
255 protected:
256 // hook the document into event handlers chain here
257 virtual bool TryBefore(wxEvent& event);
258
259 wxDocument* m_viewDocument;
260 wxString m_viewTypeName;
261 wxWindow* m_viewFrame;
262
263 wxDocChildFrameAnyBase *m_docChildFrame;
264
265 private:
266 DECLARE_ABSTRACT_CLASS(wxView)
267 wxDECLARE_NO_COPY_CLASS(wxView);
268 };
269
270 // Represents user interface (and other) properties of documents and views
271 class WXDLLIMPEXP_CORE wxDocTemplate: public wxObject
272 {
273
274 friend class WXDLLIMPEXP_FWD_CORE wxDocManager;
275
276 public:
277 // Associate document and view types. They're for identifying what view is
278 // associated with what template/document type
279 wxDocTemplate(wxDocManager *manager,
280 const wxString& descr,
281 const wxString& filter,
282 const wxString& dir,
283 const wxString& ext,
284 const wxString& docTypeName,
285 const wxString& viewTypeName,
286 wxClassInfo *docClassInfo = NULL,
287 wxClassInfo *viewClassInfo = NULL,
288 long flags = wxDEFAULT_TEMPLATE_FLAGS);
289
290 virtual ~wxDocTemplate();
291
292 // By default, these two member functions dynamically creates document and
293 // view using dynamic instance construction. Override these if you need a
294 // different method of construction.
295 virtual wxDocument *CreateDocument(const wxString& path, long flags = 0);
296 virtual wxView *CreateView(wxDocument *doc, long flags = 0);
297
298 // Helper method for CreateDocument; also allows you to do your own document
299 // creation
300 virtual bool InitDocument(wxDocument* doc,
301 const wxString& path,
302 long flags = 0);
303
304 wxString GetDefaultExtension() const { return m_defaultExt; }
305 wxString GetDescription() const { return m_description; }
306 wxString GetDirectory() const { return m_directory; }
307 wxDocManager *GetDocumentManager() const { return m_documentManager; }
308 void SetDocumentManager(wxDocManager *manager)
309 { m_documentManager = manager; }
310 wxString GetFileFilter() const { return m_fileFilter; }
311 long GetFlags() const { return m_flags; }
312 virtual wxString GetViewName() const { return m_viewTypeName; }
313 virtual wxString GetDocumentName() const { return m_docTypeName; }
314
315 void SetFileFilter(const wxString& filter) { m_fileFilter = filter; }
316 void SetDirectory(const wxString& dir) { m_directory = dir; }
317 void SetDescription(const wxString& descr) { m_description = descr; }
318 void SetDefaultExtension(const wxString& ext) { m_defaultExt = ext; }
319 void SetFlags(long flags) { m_flags = flags; }
320
321 bool IsVisible() const { return (m_flags & wxTEMPLATE_VISIBLE) != 0; }
322
323 wxClassInfo* GetDocClassInfo() const { return m_docClassInfo; }
324 wxClassInfo* GetViewClassInfo() const { return m_viewClassInfo; }
325
326 virtual bool FileMatchesTemplate(const wxString& path);
327
328 protected:
329 long m_flags;
330 wxString m_fileFilter;
331 wxString m_directory;
332 wxString m_description;
333 wxString m_defaultExt;
334 wxString m_docTypeName;
335 wxString m_viewTypeName;
336 wxDocManager* m_documentManager;
337
338 // For dynamic creation of appropriate instances.
339 wxClassInfo* m_docClassInfo;
340 wxClassInfo* m_viewClassInfo;
341
342 // Called by CreateDocument and CreateView to create the actual
343 // document/view object.
344 //
345 // By default uses the ClassInfo provided to the constructor. Override
346 // these functions to provide a different method of creation.
347 virtual wxDocument *DoCreateDocument();
348 virtual wxView *DoCreateView();
349
350 private:
351 DECLARE_CLASS(wxDocTemplate)
352 wxDECLARE_NO_COPY_CLASS(wxDocTemplate);
353 };
354
355 // One object of this class may be created in an application, to manage all
356 // the templates and documents.
357 class WXDLLIMPEXP_CORE wxDocManager: public wxEvtHandler
358 {
359 public:
360 // NB: flags are unused, don't pass wxDOC_XXX to this ctor
361 wxDocManager(long flags = 0, bool initialize = true);
362 virtual ~wxDocManager();
363
364 virtual bool Initialize();
365
366 // Handlers for common user commands
367 void OnFileClose(wxCommandEvent& event);
368 void OnFileCloseAll(wxCommandEvent& event);
369 void OnFileNew(wxCommandEvent& event);
370 void OnFileOpen(wxCommandEvent& event);
371 void OnFileRevert(wxCommandEvent& event);
372 void OnFileSave(wxCommandEvent& event);
373 void OnFileSaveAs(wxCommandEvent& event);
374 void OnMRUFile(wxCommandEvent& event);
375 #if wxUSE_PRINTING_ARCHITECTURE
376 void OnPrint(wxCommandEvent& event);
377 void OnPreview(wxCommandEvent& event);
378 void OnPageSetup(wxCommandEvent& event);
379 #endif // wxUSE_PRINTING_ARCHITECTURE
380 void OnUndo(wxCommandEvent& event);
381 void OnRedo(wxCommandEvent& event);
382
383 // Handlers for UI update commands
384 void OnUpdateFileOpen(wxUpdateUIEvent& event);
385 void OnUpdateDisableIfNoDoc(wxUpdateUIEvent& event);
386 void OnUpdateFileRevert(wxUpdateUIEvent& event);
387 void OnUpdateFileNew(wxUpdateUIEvent& event);
388 void OnUpdateFileSave(wxUpdateUIEvent& event);
389 void OnUpdateUndo(wxUpdateUIEvent& event);
390 void OnUpdateRedo(wxUpdateUIEvent& event);
391
392 // called when file format detection didn't work, can be overridden to do
393 // something in this case
394 virtual void OnOpenFileFailure() { }
395
396 virtual wxDocument *CreateDocument(const wxString& path, long flags = 0);
397
398 // wrapper around CreateDocument() with a more clear name
399 wxDocument *CreateNewDocument()
400 { return CreateDocument(wxString(), wxDOC_NEW); }
401
402 virtual wxView *CreateView(wxDocument *doc, long flags = 0);
403 virtual void DeleteTemplate(wxDocTemplate *temp, long flags = 0);
404 virtual bool FlushDoc(wxDocument *doc);
405 virtual wxDocTemplate *MatchTemplate(const wxString& path);
406 virtual wxDocTemplate *SelectDocumentPath(wxDocTemplate **templates,
407 int noTemplates, wxString& path, long flags, bool save = false);
408 virtual wxDocTemplate *SelectDocumentType(wxDocTemplate **templates,
409 int noTemplates, bool sort = false);
410 virtual wxDocTemplate *SelectViewType(wxDocTemplate **templates,
411 int noTemplates, bool sort = false);
412 virtual wxDocTemplate *FindTemplateForPath(const wxString& path);
413
414 void AssociateTemplate(wxDocTemplate *temp);
415 void DisassociateTemplate(wxDocTemplate *temp);
416
417 // Find template from document class info, may return NULL.
418 wxDocTemplate* FindTemplate(const wxClassInfo* documentClassInfo);
419
420 wxDocument *GetCurrentDocument() const;
421
422 void SetMaxDocsOpen(int n) { m_maxDocsOpen = n; }
423 int GetMaxDocsOpen() const { return m_maxDocsOpen; }
424
425 // Add and remove a document from the manager's list
426 void AddDocument(wxDocument *doc);
427 void RemoveDocument(wxDocument *doc);
428
429 // closes all currently open documents
430 bool CloseDocuments(bool force = true);
431
432 // closes the specified document
433 bool CloseDocument(wxDocument* doc, bool force = false);
434
435 // Clear remaining documents and templates
436 bool Clear(bool force = true);
437
438 // Views or windows should inform the document manager
439 // when a view is going in or out of focus
440 virtual void ActivateView(wxView *view, bool activate = true);
441 virtual wxView *GetCurrentView() const { return m_currentView; }
442
443 wxList& GetDocuments() { return m_docs; }
444 wxList& GetTemplates() { return m_templates; }
445
446 // Return the default name for a new document (by default returns strings
447 // in the form "unnamed <counter>" but can be overridden)
448 virtual wxString MakeNewDocumentName();
449
450 // Make a frame title (override this to do something different)
451 virtual wxString MakeFrameTitle(wxDocument* doc);
452
453 virtual wxFileHistory *OnCreateFileHistory();
454 virtual wxFileHistory *GetFileHistory() const { return m_fileHistory; }
455
456 // File history management
457 virtual void AddFileToHistory(const wxString& file);
458 virtual void RemoveFileFromHistory(size_t i);
459 virtual size_t GetHistoryFilesCount() const;
460 virtual wxString GetHistoryFile(size_t i) const;
461 virtual void FileHistoryUseMenu(wxMenu *menu);
462 virtual void FileHistoryRemoveMenu(wxMenu *menu);
463 #if wxUSE_CONFIG
464 virtual void FileHistoryLoad(const wxConfigBase& config);
465 virtual void FileHistorySave(wxConfigBase& config);
466 #endif // wxUSE_CONFIG
467
468 virtual void FileHistoryAddFilesToMenu();
469 virtual void FileHistoryAddFilesToMenu(wxMenu* menu);
470
471 wxString GetLastDirectory() const;
472 void SetLastDirectory(const wxString& dir) { m_lastDirectory = dir; }
473
474 // Get the current document manager
475 static wxDocManager* GetDocumentManager() { return sm_docManager; }
476
477 #if wxUSE_PRINTING_ARCHITECTURE
478 wxPageSetupDialogData& GetPageSetupDialogData()
479 { return m_pageSetupDialogData; }
480 const wxPageSetupDialogData& GetPageSetupDialogData() const
481 { return m_pageSetupDialogData; }
482 #endif // wxUSE_PRINTING_ARCHITECTURE
483
484 #if WXWIN_COMPATIBILITY_2_8
485 // deprecated, override GetDefaultName() instead
486 wxDEPRECATED_BUT_USED_INTERNALLY(
487 virtual bool MakeDefaultName(wxString& buf)
488 );
489 #endif
490
491 #if WXWIN_COMPATIBILITY_2_6
492 // deprecated, use GetHistoryFilesCount() instead
493 wxDEPRECATED( size_t GetNoHistoryFiles() const );
494 #endif // WXWIN_COMPATIBILITY_2_6
495
496
497 protected:
498 // Open the MRU file with the given index in our associated file history.
499 void DoOpenMRUFile(unsigned n);
500 #if wxUSE_PRINTING_ARCHITECTURE
501 virtual wxPreviewFrame* CreatePreviewFrame(wxPrintPreviewBase* preview,
502 wxWindow *parent,
503 const wxString& title);
504 #endif // wxUSE_PRINTING_ARCHITECTURE
505
506 // hook the currently active view into event handlers chain here
507 virtual bool TryBefore(wxEvent& event);
508
509 // return the command processor for the current document, if any
510 wxCommandProcessor *GetCurrentCommandProcessor() const;
511
512 // this method tries to find an active view harder than GetCurrentView():
513 // if the latter is NULL, it also checks if we don't have just a single
514 // view and returns it then
515 wxView *GetActiveView() const;
516
517 // activate the first view of the given document if any
518 void ActivateDocument(wxDocument *doc);
519
520
521 int m_defaultDocumentNameCounter;
522 int m_maxDocsOpen;
523 wxList m_docs;
524 wxList m_templates;
525 wxView* m_currentView;
526 wxFileHistory* m_fileHistory;
527 wxString m_lastDirectory;
528 static wxDocManager* sm_docManager;
529
530 #if wxUSE_PRINTING_ARCHITECTURE
531 wxPageSetupDialogData m_pageSetupDialogData;
532 #endif // wxUSE_PRINTING_ARCHITECTURE
533
534 DECLARE_EVENT_TABLE()
535 DECLARE_DYNAMIC_CLASS(wxDocManager)
536 wxDECLARE_NO_COPY_CLASS(wxDocManager);
537 };
538
539 #if WXWIN_COMPATIBILITY_2_6
540 inline size_t wxDocManager::GetNoHistoryFiles() const
541 {
542 return GetHistoryFilesCount();
543 }
544 #endif // WXWIN_COMPATIBILITY_2_6
545
546 // ----------------------------------------------------------------------------
547 // Base class for child frames -- this is what wxView renders itself into
548 //
549 // Notice that this is a mix-in class so it doesn't derive from wxWindow, only
550 // wxDocChildFrameAny does
551 // ----------------------------------------------------------------------------
552
553 class WXDLLIMPEXP_CORE wxDocChildFrameAnyBase
554 {
555 public:
556 // default ctor, use Create() after it
557 wxDocChildFrameAnyBase()
558 {
559 m_childDocument = NULL;
560 m_childView = NULL;
561 m_win = NULL;
562 }
563
564 // full ctor equivalent to using the default one and Create(0
565 wxDocChildFrameAnyBase(wxDocument *doc, wxView *view, wxWindow *win)
566 {
567 Create(doc, view, win);
568 }
569
570 // method which must be called for an object created using the default ctor
571 //
572 // note that it returns bool just for consistency with Create() methods in
573 // other classes, we never return false from here
574 bool Create(wxDocument *doc, wxView *view, wxWindow *win)
575 {
576 m_childDocument = doc;
577 m_childView = view;
578 m_win = win;
579
580 if ( view )
581 view->SetDocChildFrame(this);
582
583 return true;
584 }
585
586 // dtor doesn't need to be virtual, an object should never be destroyed via
587 // a pointer to this class
588 ~wxDocChildFrameAnyBase()
589 {
590 // prevent the view from deleting us if we're being deleted directly
591 // (and not via Close() + Destroy())
592 if ( m_childView )
593 m_childView->SetDocChildFrame(NULL);
594 }
595
596 wxDocument *GetDocument() const { return m_childDocument; }
597 wxView *GetView() const { return m_childView; }
598 void SetDocument(wxDocument *doc) { m_childDocument = doc; }
599 void SetView(wxView *view) { m_childView = view; }
600
601 wxWindow *GetWindow() const { return m_win; }
602
603 protected:
604 // we're not a wxEvtHandler but we provide this wxEvtHandler-like function
605 // which is called from TryBefore() of the derived classes to give our view
606 // a chance to process the message before the frame event handlers are used
607 bool TryProcessEvent(wxEvent& event)
608 {
609 return m_childView && m_childView->ProcessEventLocally(event);
610 }
611
612 // called from EVT_CLOSE handler in the frame: check if we can close and do
613 // cleanup if so; veto the event otherwise
614 bool CloseView(wxCloseEvent& event);
615
616
617 wxDocument* m_childDocument;
618 wxView* m_childView;
619
620 // the associated window: having it here is not terribly elegant but it
621 // allows us to avoid having any virtual functions in this class
622 wxWindow* m_win;
623
624
625 wxDECLARE_NO_COPY_CLASS(wxDocChildFrameAnyBase);
626 };
627
628 // ----------------------------------------------------------------------------
629 // Template implementing child frame concept using the given wxFrame-like class
630 //
631 // This is used to define wxDocChildFrame and wxDocMDIChildFrame: ChildFrame is
632 // a wxFrame or wxMDIChildFrame (although in theory it could be any wxWindow-
633 // derived class as long as it provided a ctor with the same signature as
634 // wxFrame and OnActivate() method) and ParentFrame is either wxFrame or
635 // wxMDIParentFrame.
636 // ----------------------------------------------------------------------------
637
638 template <class ChildFrame, class ParentFrame>
639 class WXDLLIMPEXP_CORE wxDocChildFrameAny : public ChildFrame,
640 public wxDocChildFrameAnyBase
641 {
642 public:
643 typedef ChildFrame BaseClass;
644
645 // default ctor, use Create after it
646 wxDocChildFrameAny() { }
647
648 // ctor for a frame showing the given view of the specified document
649 wxDocChildFrameAny(wxDocument *doc,
650 wxView *view,
651 ParentFrame *parent,
652 wxWindowID id,
653 const wxString& title,
654 const wxPoint& pos = wxDefaultPosition,
655 const wxSize& size = wxDefaultSize,
656 long style = wxDEFAULT_FRAME_STYLE,
657 const wxString& name = wxFrameNameStr)
658 {
659 Create(doc, view, parent, id, title, pos, size, style, name);
660 }
661
662 bool Create(wxDocument *doc,
663 wxView *view,
664 ParentFrame *parent,
665 wxWindowID id,
666 const wxString& title,
667 const wxPoint& pos = wxDefaultPosition,
668 const wxSize& size = wxDefaultSize,
669 long style = wxDEFAULT_FRAME_STYLE,
670 const wxString& name = wxFrameNameStr)
671 {
672 if ( !wxDocChildFrameAnyBase::Create(doc, view, this) )
673 return false;
674
675 if ( !BaseClass::Create(parent, id, title, pos, size, style, name) )
676 return false;
677
678 this->Connect(wxEVT_ACTIVATE,
679 wxActivateEventHandler(wxDocChildFrameAny::OnActivate));
680 this->Connect(wxEVT_CLOSE_WINDOW,
681 wxCloseEventHandler(wxDocChildFrameAny::OnCloseWindow));
682
683 return true;
684 }
685
686 virtual bool Destroy()
687 {
688 // FIXME: why exactly do we do this? to avoid activation events during
689 // destructions maybe?
690 m_childView = NULL;
691 return BaseClass::Destroy();
692 }
693
694 protected:
695 // hook the child view into event handlers chain here
696 virtual bool TryBefore(wxEvent& event)
697 {
698 return TryProcessEvent(event) || BaseClass::TryBefore(event);
699 }
700
701 private:
702 void OnActivate(wxActivateEvent& event)
703 {
704 BaseClass::OnActivate(event);
705
706 if ( m_childView )
707 m_childView->Activate(event.GetActive());
708 }
709
710 void OnCloseWindow(wxCloseEvent& event)
711 {
712 if ( CloseView(event) )
713 Destroy();
714 //else: vetoed
715 }
716
717 wxDECLARE_NO_COPY_TEMPLATE_CLASS_2(wxDocChildFrameAny,
718 ChildFrame, ParentFrame);
719 };
720
721 // ----------------------------------------------------------------------------
722 // A default child frame: we need to define it as a class just for wxRTTI,
723 // otherwise we could simply typedef it
724 // ----------------------------------------------------------------------------
725
726 #ifdef __VISUALC6__
727 // "non dll-interface class 'wxDocChildFrameAny<>' used as base interface
728 // for dll-interface class 'wxDocChildFrame'" -- this is bogus as the
729 // template will be DLL-exported but only once it is used as base class
730 // here!
731 #pragma warning (push)
732 #pragma warning (disable:4275)
733 #endif
734
735 typedef wxDocChildFrameAny<wxFrame, wxFrame> wxDocChildFrameBase;
736
737 class WXDLLIMPEXP_CORE wxDocChildFrame : public wxDocChildFrameBase
738 {
739 public:
740 wxDocChildFrame()
741 {
742 }
743
744 wxDocChildFrame(wxDocument *doc,
745 wxView *view,
746 wxFrame *parent,
747 wxWindowID id,
748 const wxString& title,
749 const wxPoint& pos = wxDefaultPosition,
750 const wxSize& size = wxDefaultSize,
751 long style = wxDEFAULT_FRAME_STYLE,
752 const wxString& name = wxFrameNameStr)
753 : wxDocChildFrameBase(doc, view,
754 parent, id, title, pos, size, style, name)
755 {
756 }
757
758 bool Create(wxDocument *doc,
759 wxView *view,
760 wxFrame *parent,
761 wxWindowID id,
762 const wxString& title,
763 const wxPoint& pos = wxDefaultPosition,
764 const wxSize& size = wxDefaultSize,
765 long style = wxDEFAULT_FRAME_STYLE,
766 const wxString& name = wxFrameNameStr)
767 {
768 return wxDocChildFrameBase::Create
769 (
770 doc, view,
771 parent, id, title, pos, size, style, name
772 );
773 }
774
775 private:
776 DECLARE_CLASS(wxDocChildFrame)
777 wxDECLARE_NO_COPY_CLASS(wxDocChildFrame);
778 };
779
780 // ----------------------------------------------------------------------------
781 // wxDocParentFrame and related classes.
782 //
783 // As with wxDocChildFrame we define a template base class used by both normal
784 // and MDI versions
785 // ----------------------------------------------------------------------------
786
787 // Base class containing type-independent code of wxDocParentFrameAny
788 //
789 // Similarly to wxDocChildFrameAnyBase, this class is a mix-in and doesn't
790 // derive from wxWindow.
791 class WXDLLIMPEXP_CORE wxDocParentFrameAnyBase
792 {
793 public:
794 wxDocParentFrameAnyBase() { m_docManager = NULL; }
795
796 wxDocManager *GetDocumentManager() const { return m_docManager; }
797
798 protected:
799 wxDocManager *m_docManager;
800
801 wxDECLARE_NO_COPY_CLASS(wxDocParentFrameAnyBase);
802 };
803
804 // This is similar to wxDocChildFrameAny and is used to provide common
805 // implementation for both wxDocParentFrame and wxDocMDIParentFrame
806 template <class BaseFrame>
807 class WXDLLIMPEXP_CORE wxDocParentFrameAny : public BaseFrame,
808 public wxDocParentFrameAnyBase
809 {
810 public:
811 wxDocParentFrameAny() { }
812 wxDocParentFrameAny(wxDocManager *manager,
813 wxFrame *frame,
814 wxWindowID id,
815 const wxString& title,
816 const wxPoint& pos = wxDefaultPosition,
817 const wxSize& size = wxDefaultSize,
818 long style = wxDEFAULT_FRAME_STYLE,
819 const wxString& name = wxFrameNameStr)
820 {
821 Create(manager, frame, id, title, pos, size, style, name);
822 }
823
824 bool Create(wxDocManager *manager,
825 wxFrame *frame,
826 wxWindowID id,
827 const wxString& title,
828 const wxPoint& pos = wxDefaultPosition,
829 const wxSize& size = wxDefaultSize,
830 long style = wxDEFAULT_FRAME_STYLE,
831 const wxString& name = wxFrameNameStr)
832 {
833 m_docManager = manager;
834
835 if ( !BaseFrame::Create(frame, id, title, pos, size, style, name) )
836 return false;
837
838 this->Connect(wxID_EXIT, wxEVT_COMMAND_MENU_SELECTED,
839 wxCommandEventHandler(wxDocParentFrameAny::OnExit));
840 this->Connect(wxEVT_CLOSE_WINDOW,
841 wxCloseEventHandler(wxDocParentFrameAny::OnCloseWindow));
842
843 return true;
844 }
845
846 protected:
847 // hook the document manager into event handling chain here
848 virtual bool TryBefore(wxEvent& event)
849 {
850 if ( m_docManager && m_docManager->ProcessEventLocally(event) )
851 return true;
852
853 return BaseFrame::TryBefore(event);
854 }
855
856 private:
857 void OnExit(wxCommandEvent& WXUNUSED(event))
858 {
859 this->Close();
860 }
861
862 void OnCloseWindow(wxCloseEvent& event)
863 {
864 if ( m_docManager && !m_docManager->Clear(!event.CanVeto()) )
865 {
866 // The user decided not to close finally, abort.
867 event.Veto();
868 }
869 else
870 {
871 // Just skip the event, base class handler will destroy the window.
872 event.Skip();
873 }
874 }
875
876
877 wxDECLARE_NO_COPY_CLASS(wxDocParentFrameAny);
878 };
879
880 typedef wxDocParentFrameAny<wxFrame> wxDocParentFrameBase;
881
882 class WXDLLIMPEXP_CORE wxDocParentFrame : public wxDocParentFrameBase
883 {
884 public:
885 wxDocParentFrame() : wxDocParentFrameBase() { }
886
887 wxDocParentFrame(wxDocManager *manager,
888 wxFrame *parent,
889 wxWindowID id,
890 const wxString& title,
891 const wxPoint& pos = wxDefaultPosition,
892 const wxSize& size = wxDefaultSize,
893 long style = wxDEFAULT_FRAME_STYLE,
894 const wxString& name = wxFrameNameStr)
895 : wxDocParentFrameBase(manager,
896 parent, id, title, pos, size, style, name)
897 {
898 }
899
900 bool Create(wxDocManager *manager,
901 wxFrame *parent,
902 wxWindowID id,
903 const wxString& title,
904 const wxPoint& pos = wxDefaultPosition,
905 const wxSize& size = wxDefaultSize,
906 long style = wxDEFAULT_FRAME_STYLE,
907 const wxString& name = wxFrameNameStr)
908 {
909 return wxDocParentFrameBase::Create(manager,
910 parent, id, title,
911 pos, size, style, name);
912 }
913
914 private:
915 DECLARE_CLASS(wxDocParentFrame)
916 wxDECLARE_NO_COPY_CLASS(wxDocParentFrame);
917 };
918
919 #ifdef __VISUALC6__
920 // reenable warning 4275
921 #pragma warning (pop)
922 #endif
923
924 // ----------------------------------------------------------------------------
925 // Provide simple default printing facilities
926 // ----------------------------------------------------------------------------
927
928 #if wxUSE_PRINTING_ARCHITECTURE
929 class WXDLLIMPEXP_CORE wxDocPrintout : public wxPrintout
930 {
931 public:
932 wxDocPrintout(wxView *view = NULL, const wxString& title = wxString());
933
934 // implement wxPrintout methods
935 virtual bool OnPrintPage(int page);
936 virtual bool HasPage(int page);
937 virtual bool OnBeginDocument(int startPage, int endPage);
938 virtual void GetPageInfo(int *minPage, int *maxPage,
939 int *selPageFrom, int *selPageTo);
940
941 virtual wxView *GetView() { return m_printoutView; }
942
943 protected:
944 wxView* m_printoutView;
945
946 private:
947 DECLARE_DYNAMIC_CLASS(wxDocPrintout)
948 wxDECLARE_NO_COPY_CLASS(wxDocPrintout);
949 };
950 #endif // wxUSE_PRINTING_ARCHITECTURE
951
952 // For compatibility with existing file formats:
953 // converts from/to a stream to/from a temporary file.
954 #if wxUSE_STD_IOSTREAM
955 bool WXDLLIMPEXP_CORE
956 wxTransferFileToStream(const wxString& filename, wxSTD ostream& stream);
957 bool WXDLLIMPEXP_CORE
958 wxTransferStreamToFile(wxSTD istream& stream, const wxString& filename);
959 #else
960 bool WXDLLIMPEXP_CORE
961 wxTransferFileToStream(const wxString& filename, wxOutputStream& stream);
962 bool WXDLLIMPEXP_CORE
963 wxTransferStreamToFile(wxInputStream& stream, const wxString& filename);
964 #endif // wxUSE_STD_IOSTREAM
965
966
967 // these flags are not used anywhere by wxWidgets and kept only for an unlikely
968 // case of existing user code using them for its own purposes
969 #ifdef WXWIN_COMPATIBILITY_2_8
970 enum
971 {
972 wxDOC_SDI = 1,
973 wxDOC_MDI,
974 wxDEFAULT_DOCMAN_FLAGS = wxDOC_SDI
975 };
976 #endif // WXWIN_COMPATIBILITY_2_8
977
978 #endif // wxUSE_DOC_VIEW_ARCHITECTURE
979
980 #endif // _WX_DOCH__