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