]> git.saurik.com Git - wxWidgets.git/blame - include/wx/docview.h
Fix for drag object bug
[wxWidgets.git] / include / wx / docview.h
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: 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)
65571936 9// Licence: wxWindows licence
c801d85f
KB
10/////////////////////////////////////////////////////////////////////////////
11
34138703
JS
12#ifndef _WX_DOCH__
13#define _WX_DOCH__
c801d85f 14
12028905 15#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
caf0debf 16 #pragma interface "docview.h"
c801d85f
KB
17#endif
18
19#include "wx/defs.h"
e30285ab
VZ
20
21#if wxUSE_DOC_VIEW_ARCHITECTURE
22
c801d85f
KB
23#include "wx/list.h"
24#include "wx/cmndata.h"
25#include "wx/string.h"
2f7adba0 26#include "wx/frame.h"
c801d85f 27
47d67540 28#if wxUSE_PRINTING_ARCHITECTURE
caf0debf 29 #include "wx/print.h"
c801d85f
KB
30#endif
31
32class WXDLLEXPORT wxWindow;
33class WXDLLEXPORT wxDocument;
34class WXDLLEXPORT wxView;
35class WXDLLEXPORT wxDocTemplate;
36class WXDLLEXPORT wxDocManager;
37class WXDLLEXPORT wxPrintInfo;
c801d85f
KB
38class WXDLLEXPORT wxCommandProcessor;
39class WXDLLEXPORT wxFileHistory;
7f555861 40class WXDLLEXPORT wxConfigBase;
c801d85f 41
a533f5c1 42#if wxUSE_STD_IOSTREAM
65f19af1 43 #include "wx/iosfwrap.h"
a533f5c1
RR
44#else
45 #include "wx/stream.h"
46#endif
c801d85f
KB
47
48// Document manager flags
caf0debf
VZ
49enum
50{
51 wxDOC_SDI = 1,
52 wxDOC_MDI,
53 wxDOC_NEW,
54 wxDOC_SILENT,
55 wxDEFAULT_DOCMAN_FLAGS = wxDOC_SDI
56};
c801d85f
KB
57
58// Document template flags
caf0debf
VZ
59enum
60{
61 wxTEMPLATE_VISIBLE = 1,
62 wxTEMPLATE_INVISIBLE,
63 wxDEFAULT_TEMPLATE_FLAGS = wxTEMPLATE_VISIBLE
64};
c801d85f 65
caf0debf 66#define wxMAX_FILE_HISTORY 9
c801d85f
KB
67
68class WXDLLEXPORT wxDocument : public wxEvtHandler
69{
caf0debf
VZ
70public:
71 wxDocument(wxDocument *parent = (wxDocument *) NULL);
72 ~wxDocument();
73
74 // accessors
75 void SetFilename(const wxString& filename, bool notifyViews = FALSE);
76 wxString GetFilename() const { return m_documentFile; }
77
78 void SetTitle(const wxString& title) { m_documentTitle = title; };
79 wxString GetTitle() const { return m_documentTitle; }
80
81 void SetDocumentName(const wxString& name) { m_documentTypeName = name; };
82 wxString GetDocumentName() const { return m_documentTypeName; }
83
84 bool GetDocumentSaved() const { return m_savedYet; }
85 void SetDocumentSaved(bool saved = TRUE) { m_savedYet = saved; }
86
87 virtual bool Close();
88 virtual bool Save();
89 virtual bool SaveAs();
90 virtual bool Revert();
91
a533f5c1 92#if wxUSE_STD_IOSTREAM
dd107c50
VZ
93 virtual wxSTD ostream& SaveObject(wxSTD ostream& stream);
94 virtual wxSTD istream& LoadObject(wxSTD istream& stream);
a533f5c1 95#else
23a54e14
RR
96 virtual wxOutputStream& SaveObject(wxOutputStream& stream);
97 virtual wxInputStream& LoadObject(wxInputStream& stream);
a533f5c1 98#endif
caf0debf 99
77ffb593 100 // Called by wxWidgets
caf0debf
VZ
101 virtual bool OnSaveDocument(const wxString& filename);
102 virtual bool OnOpenDocument(const wxString& filename);
103 virtual bool OnNewDocument();
104 virtual bool OnCloseDocument();
105
106 // Prompts for saving if about to close a modified document. Returns TRUE
107 // if ok to close the document (may have saved in the meantime, or set
108 // modified to FALSE)
109 virtual bool OnSaveModified();
110
111 // Called by framework if created automatically by the default document
112 // manager: gives document a chance to initialise and (usually) create a
113 // view
114 virtual bool OnCreate(const wxString& path, long flags);
115
116 // By default, creates a base wxCommandProcessor.
117 virtual wxCommandProcessor *OnCreateCommandProcessor();
118 virtual wxCommandProcessor *GetCommandProcessor() const { return m_commandProcessor; }
119 virtual void SetCommandProcessor(wxCommandProcessor *proc) { m_commandProcessor = proc; }
120
121 // Called after a view is added or removed. The default implementation
122 // deletes the document if this is there are no more views.
123 virtual void OnChangedViewList();
124
125 virtual bool DeleteContents();
126
127 virtual bool Draw(wxDC&);
128 virtual bool IsModified() const { return m_documentModified; }
129 virtual void Modify(bool mod) { m_documentModified = mod; }
130
131 virtual bool AddView(wxView *view);
132 virtual bool RemoveView(wxView *view);
133 wxList& GetViews() const { return (wxList&) m_documentViews; }
134 wxView *GetFirstView() const;
135
136 virtual void UpdateAllViews(wxView *sender = (wxView *) NULL, wxObject *hint = (wxObject *) NULL);
b23e843b 137 virtual void NotifyClosing();
caf0debf
VZ
138
139 // Remove all views (because we're closing the document)
140 virtual bool DeleteAllViews();
141
142 // Other stuff
143 virtual wxDocManager *GetDocumentManager() const;
144 virtual wxDocTemplate *GetDocumentTemplate() const { return m_documentTemplate; }
145 virtual void SetDocumentTemplate(wxDocTemplate *temp) { m_documentTemplate = temp; }
146
147 // Get title, or filename if no title, else [unnamed]
148 virtual bool GetPrintableName(wxString& buf) const;
149
150 // Returns a window that can be used as a parent for document-related
151 // dialogs. Override if necessary.
152 virtual wxWindow *GetDocumentWindow() const;
153
154protected:
155 wxList m_documentViews;
156 wxString m_documentFile;
157 wxString m_documentTitle;
158 wxString m_documentTypeName;
159 wxDocTemplate* m_documentTemplate;
160 bool m_documentModified;
161 wxDocument* m_documentParent;
162 wxCommandProcessor* m_commandProcessor;
163 bool m_savedYet;
b5f159ac 164
2b5f62a0
VZ
165private:
166 DECLARE_ABSTRACT_CLASS(wxDocument)
22f3361e 167 DECLARE_NO_COPY_CLASS(wxDocument)
c801d85f
KB
168};
169
170class WXDLLEXPORT wxView: public wxEvtHandler
171{
caf0debf
VZ
172public:
173 // wxView(wxDocument *doc = (wxDocument *) NULL);
174 wxView();
175 ~wxView();
c801d85f 176
caf0debf 177 wxDocument *GetDocument() const { return m_viewDocument; }
bb28b477 178 virtual void SetDocument(wxDocument *doc);
c801d85f 179
caf0debf
VZ
180 wxString GetViewName() const { return m_viewTypeName; }
181 void SetViewName(const wxString& name) { m_viewTypeName = name; };
c801d85f 182
b9f933ab
JS
183 wxWindow *GetFrame() const { return m_viewFrame ; }
184 void SetFrame(wxWindow *frame) { m_viewFrame = frame; }
c801d85f 185
caf0debf
VZ
186 virtual void OnActivateView(bool activate, wxView *activeView, wxView *deactiveView);
187 virtual void OnDraw(wxDC *dc) = 0;
188 virtual void OnPrint(wxDC *dc, wxObject *info);
189 virtual void OnUpdate(wxView *sender, wxObject *hint = (wxObject *) NULL);
b23e843b 190 virtual void OnClosingDocument() {};
caf0debf 191 virtual void OnChangeFilename();
c801d85f 192
caf0debf
VZ
193 // Called by framework if created automatically by the default document
194 // manager class: gives view a chance to initialise
195 virtual bool OnCreate(wxDocument *WXUNUSED(doc), long WXUNUSED(flags)) { return TRUE; };
c801d85f 196
caf0debf
VZ
197 // Checks if the view is the last one for the document; if so, asks user
198 // to confirm save data (if modified). If ok, deletes itself and returns
199 // TRUE.
200 virtual bool Close(bool deleteWindow = TRUE);
201
202 // Override to do cleanup/veto close
203 virtual bool OnClose(bool deleteWindow);
2b854a32 204
caf0debf
VZ
205 // Extend event processing to search the document's event table
206 virtual bool ProcessEvent(wxEvent& event);
c801d85f 207
caf0debf
VZ
208 // A view's window can call this to notify the view it is (in)active.
209 // The function then notifies the document manager.
210 virtual void Activate(bool activate);
c801d85f 211
caf0debf
VZ
212 wxDocManager *GetDocumentManager() const
213 { return m_viewDocument->GetDocumentManager(); }
c801d85f 214
47d67540 215#if wxUSE_PRINTING_ARCHITECTURE
caf0debf 216 virtual wxPrintout *OnCreatePrintout();
c801d85f
KB
217#endif
218
caf0debf
VZ
219protected:
220 wxDocument* m_viewDocument;
221 wxString m_viewTypeName;
b9f933ab 222 wxWindow* m_viewFrame;
22f3361e 223
2b5f62a0
VZ
224private:
225 DECLARE_ABSTRACT_CLASS(wxView)
22f3361e 226 DECLARE_NO_COPY_CLASS(wxView)
c801d85f
KB
227};
228
229// Represents user interface (and other) properties of documents and views
230class WXDLLEXPORT wxDocTemplate: public wxObject
231{
caf0debf
VZ
232
233friend class WXDLLEXPORT wxDocManager;
234
235public:
236 // Associate document and view types. They're for identifying what view is
237 // associated with what template/document type
238 wxDocTemplate(wxDocManager *manager,
239 const wxString& descr,
240 const wxString& filter,
241 const wxString& dir,
242 const wxString& ext,
243 const wxString& docTypeName,
244 const wxString& viewTypeName,
245 wxClassInfo *docClassInfo = (wxClassInfo *) NULL,
246 wxClassInfo *viewClassInfo = (wxClassInfo *)NULL,
247 long flags = wxDEFAULT_TEMPLATE_FLAGS);
248
249 ~wxDocTemplate();
250
251 // By default, these two member functions dynamically creates document and
252 // view using dynamic instance construction. Override these if you need a
253 // different method of construction.
254 virtual wxDocument *CreateDocument(const wxString& path, long flags = 0);
255 virtual wxView *CreateView(wxDocument *doc, long flags = 0);
256
217b7140
JS
257 // Helper method for CreateDocument; also allows you to do your own document
258 // creation
259 virtual bool InitDocument(wxDocument* doc, const wxString& path, long flags = 0);
260
caf0debf
VZ
261 wxString GetDefaultExtension() const { return m_defaultExt; };
262 wxString GetDescription() const { return m_description; }
263 wxString GetDirectory() const { return m_directory; };
264 wxDocManager *GetDocumentManager() const { return m_documentManager; }
265 void SetDocumentManager(wxDocManager *manager) { m_documentManager = manager; }
266 wxString GetFileFilter() const { return m_fileFilter; };
267 long GetFlags() const { return m_flags; };
268 virtual wxString GetViewName() const { return m_viewTypeName; }
269 virtual wxString GetDocumentName() const { return m_docTypeName; }
270
271 void SetFileFilter(const wxString& filter) { m_fileFilter = filter; };
272 void SetDirectory(const wxString& dir) { m_directory = dir; };
273 void SetDescription(const wxString& descr) { m_description = descr; };
274 void SetDefaultExtension(const wxString& ext) { m_defaultExt = ext; };
275 void SetFlags(long flags) { m_flags = flags; };
276
277 bool IsVisible() const { return ((m_flags & wxTEMPLATE_VISIBLE) == wxTEMPLATE_VISIBLE); }
278
04129514
JS
279 wxClassInfo* GetDocClassInfo() const { return m_docClassInfo; }
280 wxClassInfo* GetViewClassInfo() const { return m_viewClassInfo; }
281
caf0debf
VZ
282 virtual bool FileMatchesTemplate(const wxString& path);
283
284protected:
285 long m_flags;
286 wxString m_fileFilter;
287 wxString m_directory;
288 wxString m_description;
289 wxString m_defaultExt;
290 wxString m_docTypeName;
291 wxString m_viewTypeName;
292 wxDocManager* m_documentManager;
293
294 // For dynamic creation of appropriate instances.
295 wxClassInfo* m_docClassInfo;
296 wxClassInfo* m_viewClassInfo;
b5f159ac 297
2b5f62a0
VZ
298private:
299 DECLARE_CLASS(wxDocTemplate)
22f3361e 300 DECLARE_NO_COPY_CLASS(wxDocTemplate)
c801d85f
KB
301};
302
caf0debf
VZ
303// One object of this class may be created in an application, to manage all
304// the templates and documents.
c801d85f
KB
305class WXDLLEXPORT wxDocManager: public wxEvtHandler
306{
caf0debf
VZ
307public:
308 wxDocManager(long flags = wxDEFAULT_DOCMAN_FLAGS, bool initialize = TRUE);
309 ~wxDocManager();
310
311 virtual bool Initialize();
312
313 // Handlers for common user commands
314 void OnFileClose(wxCommandEvent& event);
33a20136 315 void OnFileCloseAll(wxCommandEvent& event);
caf0debf
VZ
316 void OnFileNew(wxCommandEvent& event);
317 void OnFileOpen(wxCommandEvent& event);
318 void OnFileRevert(wxCommandEvent& event);
319 void OnFileSave(wxCommandEvent& event);
320 void OnFileSaveAs(wxCommandEvent& event);
321 void OnPrint(wxCommandEvent& event);
322 void OnPrintSetup(wxCommandEvent& event);
323 void OnPreview(wxCommandEvent& event);
324 void OnUndo(wxCommandEvent& event);
325 void OnRedo(wxCommandEvent& event);
326
f2506310
JS
327 // Handlers for UI update commands
328 void OnUpdateFileOpen(wxUpdateUIEvent& event);
329 void OnUpdateFileClose(wxUpdateUIEvent& event);
330 void OnUpdateFileRevert(wxUpdateUIEvent& event);
331 void OnUpdateFileNew(wxUpdateUIEvent& event);
332 void OnUpdateFileSave(wxUpdateUIEvent& event);
333 void OnUpdateFileSaveAs(wxUpdateUIEvent& event);
334 void OnUpdateUndo(wxUpdateUIEvent& event);
335 void OnUpdateRedo(wxUpdateUIEvent& event);
336
337 void OnUpdatePrint(wxUpdateUIEvent& event);
338 void OnUpdatePrintSetup(wxUpdateUIEvent& event);
339 void OnUpdatePreview(wxUpdateUIEvent& event);
340
caf0debf
VZ
341 // Extend event processing to search the view's event table
342 virtual bool ProcessEvent(wxEvent& event);
343
5f170f33
VZ
344 // called when file format detection didn't work, can be overridden to do
345 // something in this case
0a0352f2 346 virtual void OnOpenFileFailure() { }
5f170f33 347
caf0debf
VZ
348 virtual wxDocument *CreateDocument(const wxString& path, long flags = 0);
349 virtual wxView *CreateView(wxDocument *doc, long flags = 0);
350 virtual void DeleteTemplate(wxDocTemplate *temp, long flags = 0);
351 virtual bool FlushDoc(wxDocument *doc);
352 virtual wxDocTemplate *MatchTemplate(const wxString& path);
353 virtual wxDocTemplate *SelectDocumentPath(wxDocTemplate **templates,
354 int noTemplates, wxString& path, long flags, bool save = FALSE);
355 virtual wxDocTemplate *SelectDocumentType(wxDocTemplate **templates,
52b9ca21 356 int noTemplates, bool sort = FALSE);
caf0debf 357 virtual wxDocTemplate *SelectViewType(wxDocTemplate **templates,
52b9ca21 358 int noTemplates, bool sort = FALSE);
caf0debf
VZ
359 virtual wxDocTemplate *FindTemplateForPath(const wxString& path);
360
361 void AssociateTemplate(wxDocTemplate *temp);
362 void DisassociateTemplate(wxDocTemplate *temp);
363
364 wxDocument *GetCurrentDocument() const;
365
366 void SetMaxDocsOpen(int n) { m_maxDocsOpen = n; }
367 int GetMaxDocsOpen() const { return m_maxDocsOpen; }
368
369 // Add and remove a document from the manager's list
370 void AddDocument(wxDocument *doc);
371 void RemoveDocument(wxDocument *doc);
372
33a20136
VZ
373 // closes all currently open documents
374 bool CloseDocuments(bool force = TRUE);
375
b72b1920
JS
376 // closes the specified document
377 bool CloseDocument(wxDocument* doc, bool force = FALSE);
378
caf0debf
VZ
379 // Clear remaining documents and templates
380 bool Clear(bool force = TRUE);
381
382 // Views or windows should inform the document manager
383 // when a view is going in or out of focus
18759f78 384 virtual void ActivateView(wxView *view, bool activate = TRUE);
caf0debf
VZ
385 virtual wxView *GetCurrentView() const;
386
0b237b67
JS
387 wxList& GetDocuments() { return m_docs; }
388 wxList& GetTemplates() { return m_templates; }
caf0debf
VZ
389
390 // Make a default document name
391 virtual bool MakeDefaultName(wxString& buf);
392
f2506310
JS
393 // Make a frame title (override this to do something different)
394 virtual wxString MakeFrameTitle(wxDocument* doc);
395
caf0debf
VZ
396 virtual wxFileHistory *OnCreateFileHistory();
397 virtual wxFileHistory *GetFileHistory() const { return m_fileHistory; }
398
399 // File history management
400 virtual void AddFileToHistory(const wxString& file);
e49c85af 401 virtual void RemoveFileFromHistory(size_t i);
7af6b69e 402 virtual size_t GetHistoryFilesCount() const;
e49c85af 403 virtual wxString GetHistoryFile(size_t i) const;
caf0debf
VZ
404 virtual void FileHistoryUseMenu(wxMenu *menu);
405 virtual void FileHistoryRemoveMenu(wxMenu *menu);
702ca7c0 406#if wxUSE_CONFIG
caf0debf
VZ
407 virtual void FileHistoryLoad(wxConfigBase& config);
408 virtual void FileHistorySave(wxConfigBase& config);
409#endif // wxUSE_CONFIG
410
411 virtual void FileHistoryAddFilesToMenu();
412 virtual void FileHistoryAddFilesToMenu(wxMenu* menu);
413
7af6b69e
VZ
414 wxString GetLastDirectory() const { return m_lastDirectory; }
415 void SetLastDirectory(const wxString& dir) { m_lastDirectory = dir; }
ac0ac824 416
f2506310
JS
417 // Get the current document manager
418 static wxDocManager* GetDocumentManager() { return sm_docManager; }
419
b5f159ac
VZ
420 // deprecated, use GetHistoryFilesCount() instead
421 wxDEPRECATED( size_t GetNoHistoryFiles() const );
7af6b69e 422
caf0debf
VZ
423protected:
424 long m_flags;
425 int m_defaultDocumentNameCounter;
426 int m_maxDocsOpen;
427 wxList m_docs;
428 wxList m_templates;
429 wxView* m_currentView;
430 wxFileHistory* m_fileHistory;
ac0ac824 431 wxString m_lastDirectory;
f2506310 432 static wxDocManager* sm_docManager;
caf0debf
VZ
433
434 DECLARE_EVENT_TABLE()
b5f159ac 435 DECLARE_DYNAMIC_CLASS(wxDocManager)
22f3361e 436 DECLARE_NO_COPY_CLASS(wxDocManager)
c801d85f
KB
437};
438
b5f159ac
VZ
439inline size_t wxDocManager::GetNoHistoryFiles() const
440{
441 return GetHistoryFilesCount();
442}
443
caf0debf
VZ
444// ----------------------------------------------------------------------------
445// A default child frame
446// ----------------------------------------------------------------------------
c801d85f 447
caf0debf 448class WXDLLEXPORT wxDocChildFrame : public wxFrame
c801d85f 449{
caf0debf
VZ
450public:
451 wxDocChildFrame(wxDocument *doc,
452 wxView *view,
453 wxFrame *frame,
454 wxWindowID id,
455 const wxString& title,
456 const wxPoint& pos = wxDefaultPosition,
457 const wxSize& size = wxDefaultSize,
458 long type = wxDEFAULT_FRAME_STYLE,
2b5f62a0 459 const wxString& name = wxT("frame"));
caf0debf
VZ
460 ~wxDocChildFrame();
461
462 // Extend event processing to search the view's event table
463 virtual bool ProcessEvent(wxEvent& event);
464
465 void OnActivate(wxActivateEvent& event);
466 void OnCloseWindow(wxCloseEvent& event);
467
468 wxDocument *GetDocument() const { return m_childDocument; }
469 wxView *GetView() const { return m_childView; }
470 void SetDocument(wxDocument *doc) { m_childDocument = doc; }
471 void SetView(wxView *view) { m_childView = view; }
0d8737fd 472 bool Destroy() { m_childView = (wxView *)NULL; return wxFrame::Destroy(); }
caf0debf
VZ
473
474protected:
475 wxDocument* m_childDocument;
476 wxView* m_childView;
477
2b5f62a0
VZ
478private:
479 DECLARE_CLASS(wxDocChildFrame)
caf0debf 480 DECLARE_EVENT_TABLE()
22f3361e 481 DECLARE_NO_COPY_CLASS(wxDocChildFrame)
caf0debf 482};
c801d85f 483
caf0debf
VZ
484// ----------------------------------------------------------------------------
485// A default parent frame
486// ----------------------------------------------------------------------------
c801d85f 487
caf0debf
VZ
488class WXDLLEXPORT wxDocParentFrame : public wxFrame
489{
caf0debf
VZ
490public:
491 wxDocParentFrame(wxDocManager *manager,
492 wxFrame *frame,
493 wxWindowID id,
494 const wxString& title,
495 const wxPoint& pos = wxDefaultPosition,
496 const wxSize& size = wxDefaultSize,
497 long type = wxDEFAULT_FRAME_STYLE,
2b5f62a0 498 const wxString& name = wxT("frame"));
c801d85f 499
caf0debf
VZ
500 // Extend event processing to search the document manager's event table
501 virtual bool ProcessEvent(wxEvent& event);
c801d85f 502
caf0debf 503 wxDocManager *GetDocumentManager() const { return m_docManager; }
c801d85f 504
caf0debf
VZ
505 void OnExit(wxCommandEvent& event);
506 void OnMRUFile(wxCommandEvent& event);
507 void OnCloseWindow(wxCloseEvent& event);
c801d85f 508
caf0debf
VZ
509protected:
510 wxDocManager *m_docManager;
511
2b5f62a0
VZ
512private:
513 DECLARE_CLASS(wxDocParentFrame)
caf0debf 514 DECLARE_EVENT_TABLE()
22f3361e 515 DECLARE_NO_COPY_CLASS(wxDocParentFrame)
caf0debf 516};
c801d85f 517
caf0debf
VZ
518// ----------------------------------------------------------------------------
519// Provide simple default printing facilities
520// ----------------------------------------------------------------------------
c801d85f 521
caf0debf
VZ
522#if wxUSE_PRINTING_ARCHITECTURE
523class WXDLLEXPORT wxDocPrintout : public wxPrintout
524{
caf0debf 525public:
2b5f62a0 526 wxDocPrintout(wxView *view = (wxView *) NULL, const wxString& title = wxT("Printout"));
caf0debf
VZ
527 bool OnPrintPage(int page);
528 bool HasPage(int page);
529 bool OnBeginDocument(int startPage, int endPage);
530 void GetPageInfo(int *minPage, int *maxPage, int *selPageFrom, int *selPageTo);
c801d85f 531
caf0debf 532 virtual wxView *GetView() { return m_printoutView; }
c801d85f 533
caf0debf
VZ
534protected:
535 wxView* m_printoutView;
2b5f62a0
VZ
536
537private:
538 DECLARE_DYNAMIC_CLASS(wxDocPrintout)
22f3361e 539 DECLARE_NO_COPY_CLASS(wxDocPrintout)
c801d85f 540};
caf0debf 541#endif // wxUSE_PRINTING_ARCHITECTURE
c801d85f 542
caf0debf 543// ----------------------------------------------------------------------------
7f555861 544// File history management
caf0debf 545// ----------------------------------------------------------------------------
7f555861 546
caf0debf 547class WXDLLEXPORT wxFileHistory : public wxObject
c801d85f 548{
caf0debf 549public:
e49c85af 550 wxFileHistory(size_t maxFiles = 9, wxWindowID idBase = wxID_FILE1);
caf0debf 551 ~wxFileHistory();
7f555861 552
caf0debf
VZ
553 // Operations
554 virtual void AddFileToHistory(const wxString& file);
e49c85af 555 virtual void RemoveFileFromHistory(size_t i);
caf0debf
VZ
556 virtual int GetMaxFiles() const { return m_fileMaxFiles; }
557 virtual void UseMenu(wxMenu *menu);
7f555861 558
caf0debf
VZ
559 // Remove menu from the list (MDI child may be closing)
560 virtual void RemoveMenu(wxMenu *menu);
7f555861 561
caf0debf
VZ
562#if wxUSE_CONFIG
563 virtual void Load(wxConfigBase& config);
564 virtual void Save(wxConfigBase& config);
565#endif // wxUSE_CONFIG
566
567 virtual void AddFilesToMenu();
568 virtual void AddFilesToMenu(wxMenu* menu); // Single menu
569
570 // Accessors
e49c85af 571 virtual wxString GetHistoryFile(size_t i) const;
e49c85af 572 virtual size_t GetCount() const { return m_fileHistoryN; }
caf0debf 573
ae500232 574 const wxList& GetMenus() const { return m_fileMenus; }
caf0debf 575
b5f159ac
VZ
576 // deprecated, use GetCount() instead
577 wxDEPRECATED( size_t GetNoHistoryFiles() const );
7af6b69e 578
caf0debf
VZ
579protected:
580 // Last n files
581 wxChar** m_fileHistory;
582 // Number of files saved
e49c85af 583 size_t m_fileHistoryN;
caf0debf
VZ
584 // Menus to maintain (may need several for an MDI app)
585 wxList m_fileMenus;
586 // Max files to maintain
e49c85af 587 size_t m_fileMaxFiles;
b5f159ac 588
2b5f62a0 589private:
e49c85af
VZ
590 // The ID of the first history menu item (Doesn't have to be wxID_FILE1)
591 wxWindowID m_idBase;
592
2b5f62a0 593 DECLARE_DYNAMIC_CLASS(wxFileHistory)
22f3361e 594 DECLARE_NO_COPY_CLASS(wxFileHistory)
c801d85f
KB
595};
596
b5f159ac
VZ
597inline size_t wxFileHistory::GetNoHistoryFiles() const
598{
599 return m_fileHistoryN;
600}
601
a533f5c1 602#if wxUSE_STD_IOSTREAM
c801d85f
KB
603// For compatibility with existing file formats:
604// converts from/to a stream to/from a temporary file.
dd107c50
VZ
605bool WXDLLEXPORT wxTransferFileToStream(const wxString& filename, wxSTD ostream& stream);
606bool WXDLLEXPORT wxTransferStreamToFile(wxSTD istream& stream, const wxString& filename);
dc1efb1d
JS
607#else
608// For compatibility with existing file formats:
609// converts from/to a stream to/from a temporary file.
610bool WXDLLEXPORT wxTransferFileToStream(const wxString& filename, wxOutputStream& stream);
611bool WXDLLEXPORT wxTransferStreamToFile(wxInputStream& stream, const wxString& filename);
e30285ab
VZ
612#endif // wxUSE_STD_IOSTREAM
613
614#endif // wxUSE_DOC_VIEW_ARCHITECTURE
c801d85f 615
caf0debf 616#endif // _WX_DOCH__