1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Doc/View classes
4 // Author: Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
16 #pragma interface "docview.h"
21 #include "wx/cmndata.h"
22 #include "wx/string.h"
24 #if wxUSE_PRINTING_ARCHITECTURE
28 class WXDLLEXPORT wxWindow
;
29 class WXDLLEXPORT wxDocument
;
30 class WXDLLEXPORT wxView
;
31 class WXDLLEXPORT wxDocTemplate
;
32 class WXDLLEXPORT wxDocManager
;
33 class WXDLLEXPORT wxPrintInfo
;
34 class WXDLLEXPORT wxCommand
;
35 class WXDLLEXPORT wxCommandProcessor
;
36 class WXDLLEXPORT wxFileHistory
;
38 class WXDLLEXPORT wxConfigBase
;
42 // N.B. BC++ doesn't have istream.h, ostream.h
43 # include <iostream.h>
52 // Document manager flags
56 #define wxDOC_SILENT 8
57 #define wxDEFAULT_DOCMAN_FLAGS wxDOC_SDI
59 // Document template flags
60 #define wxTEMPLATE_VISIBLE 1
61 #define wxTEMPLATE_INVISIBLE 2
62 #define wxDEFAULT_TEMPLATE_FLAGS wxTEMPLATE_VISIBLE
64 #define wxMAX_FILE_HISTORY 9
66 class WXDLLEXPORT wxDocument
: public wxEvtHandler
68 DECLARE_ABSTRACT_CLASS(wxDocument
)
70 wxDocument(wxDocument
*parent
= (wxDocument
*) NULL
);
73 void SetFilename(const wxString
& filename
, bool notifyViews
= FALSE
);
74 inline wxString
GetFilename(void) const { return m_documentFile
; }
75 inline void SetTitle(const wxString
& title
) { m_documentTitle
= title
; };
76 inline wxString
GetTitle(void) const { return m_documentTitle
; }
77 inline void SetDocumentName(const wxString
& name
) { m_documentTypeName
= name
; };
78 inline wxString
GetDocumentName(void) const { return m_documentTypeName
; }
79 // Has the document been saved yet?
80 inline bool GetDocumentSaved(void) { return m_savedYet
; }
81 inline void SetDocumentSaved(bool saved
= TRUE
) { m_savedYet
= saved
; }
83 virtual bool Close(void);
84 virtual bool Save(void);
85 virtual bool SaveAs(void);
86 virtual bool Revert(void);
88 virtual ostream
& SaveObject(ostream
& stream
);
89 virtual istream
& LoadObject(istream
& stream
);
91 // Called by wxWindows
92 virtual bool OnSaveDocument(const wxString
& filename
);
93 virtual bool OnOpenDocument(const wxString
& filename
);
94 virtual bool OnNewDocument(void);
95 virtual bool OnCloseDocument(void);
97 // Prompts for saving if about to close a modified document.
98 // Returns TRUE if ok to close the document (may have saved in the
99 // meantime, or set modified to FALSE)
100 virtual bool OnSaveModified(void);
102 // Called by framework if created automatically by the
103 // default document manager: gives document a chance to
104 // initialise and (usually) create a view
105 virtual bool OnCreate(const wxString
& path
, long flags
);
107 // By default, creates a base wxCommandProcessor.
108 virtual wxCommandProcessor
*OnCreateCommandProcessor(void);
109 virtual inline wxCommandProcessor
*GetCommandProcessor(void) const { return m_commandProcessor
; }
110 virtual inline void SetCommandProcessor(wxCommandProcessor
*proc
) { m_commandProcessor
= proc
; }
112 // Called after a view is added or removed.
113 // The default implementation deletes the document if this
114 // is there are no more views.
115 virtual void OnChangedViewList(void);
117 virtual bool DeleteContents(void);
119 virtual bool Draw(wxDC
&);
120 virtual inline bool IsModified(void) const { return m_documentModified
; }
121 virtual inline void Modify(bool mod
) { m_documentModified
= mod
; }
123 virtual bool AddView(wxView
*view
);
124 virtual bool RemoveView(wxView
*view
);
125 inline wxList
& GetViews(void) const { return (wxList
&) m_documentViews
; }
126 wxView
*GetFirstView(void) const;
128 virtual void UpdateAllViews(wxView
*sender
= (wxView
*) NULL
, wxObject
*hint
= (wxObject
*) NULL
);
130 // Remove all views (because we're closing the document)
131 virtual bool DeleteAllViews(void);
134 virtual wxDocManager
*GetDocumentManager(void) const;
135 virtual inline wxDocTemplate
*GetDocumentTemplate(void) const { return m_documentTemplate
; }
136 virtual inline void SetDocumentTemplate(wxDocTemplate
*temp
) { m_documentTemplate
= temp
; }
138 // Get title, or filename if no title, else [unnamed]
139 virtual bool GetPrintableName(wxString
& buf
) const;
141 // Returns a window that can be used as a parent for document-related
142 // dialogs. Override if necessary.
143 virtual wxWindow
*GetDocumentWindow(void) const;
145 wxList m_documentViews
;
146 wxString m_documentFile
;
147 wxString m_documentTitle
;
148 wxString m_documentTypeName
;
149 wxDocTemplate
* m_documentTemplate
;
150 bool m_documentModified
;
151 wxDocument
* m_documentParent
;
152 wxCommandProcessor
* m_commandProcessor
;
156 class WXDLLEXPORT wxView
: public wxEvtHandler
158 DECLARE_ABSTRACT_CLASS(wxView
)
160 wxView(wxDocument
*doc
= (wxDocument
*) NULL
);
163 inline wxDocument
*GetDocument(void) const { return m_viewDocument
; }
164 void SetDocument(wxDocument
*doc
);
166 inline wxString
GetViewName(void) const { return m_viewTypeName
; }
167 void SetViewName(const wxString
& name
) { m_viewTypeName
= name
; };
169 inline wxFrame
*GetFrame(void) const { return m_viewFrame
; }
170 inline void SetFrame(wxFrame
*frame
) { m_viewFrame
= frame
; }
172 virtual void OnActivateView(bool activate
, wxView
*activeView
, wxView
*deactiveView
);
173 virtual void OnDraw(wxDC
*dc
) = 0;
174 virtual void OnPrint(wxDC
*dc
, wxObject
*info
);
175 virtual void OnUpdate(wxView
*sender
, wxObject
*hint
= (wxObject
*) NULL
);
176 virtual void OnChangeFilename(void);
178 // Called by framework if created automatically by the
179 // default document manager class: gives view a chance to
181 virtual bool OnCreate(wxDocument
*WXUNUSED(doc
), long WXUNUSED(flags
)) { return TRUE
; };
183 // Checks if the view is the last one for the document; if so,
184 // asks user to confirm save data (if modified). If ok,
185 // deletes itself and returns TRUE.
186 virtual bool Close(bool deleteWindow
= TRUE
);
188 // Override to do cleanup/veto close
189 virtual bool OnClose(bool deleteWindow
);
191 #if WXWIN_COMPATIBILITY
192 // Defeat compiler warning
193 bool OnClose(void) { return wxEvtHandler::OnClose(); }
196 // Extend event processing to search the document's event table
197 virtual bool ProcessEvent(wxEvent
& event
);
199 // A view's window can call this to notify the view it is (in)active.
200 // The function then notifies the document manager.
201 virtual void Activate(bool activate
);
203 wxDocManager
*GetDocumentManager(void) const
204 { return m_viewDocument
->GetDocumentManager(); }
206 #if wxUSE_PRINTING_ARCHITECTURE
207 virtual wxPrintout
*OnCreatePrintout(void);
211 wxDocument
* m_viewDocument
;
212 wxString m_viewTypeName
;
213 wxFrame
* m_viewFrame
;
216 // Represents user interface (and other) properties of documents and views
217 class WXDLLEXPORT wxDocTemplate
: public wxObject
219 DECLARE_CLASS(wxDocTemplate
)
221 friend class WXDLLEXPORT wxDocManager
;
225 // Associate document and view types.
226 // They're for identifying what view is associated with what
227 // template/document type
228 wxDocTemplate(wxDocManager
*manager
, const wxString
& descr
, const wxString
& filter
, const wxString
& dir
,
229 const wxString
& ext
, const wxString
& docTypeName
, const wxString
& viewTypeName
,
230 wxClassInfo
*docClassInfo
= (wxClassInfo
*) NULL
, wxClassInfo
*viewClassInfo
= (wxClassInfo
*)NULL
,
231 long flags
= wxDEFAULT_TEMPLATE_FLAGS
);
233 ~wxDocTemplate(void);
235 // By default, these two member functions dynamically creates document
236 // and view using dynamic instance construction.
237 // Override these if you need a different method of construction.
238 virtual wxDocument
*CreateDocument(const wxString
& path
, long flags
= 0);
239 virtual wxView
*CreateView(wxDocument
*doc
, long flags
= 0);
241 inline wxString
GetDefaultExtension(void) const { return m_defaultExt
; };
242 inline wxString
GetDescription(void) const { return m_description
; }
243 inline wxString
GetDirectory(void) const { return m_directory
; };
244 inline wxDocManager
*GetDocumentManager(void) const { return m_documentManager
; }
245 inline void SetDocumentManager(wxDocManager
*manager
) { m_documentManager
= manager
; }
246 inline wxString
GetFileFilter(void) const { return m_fileFilter
; };
247 inline long GetFlags(void) const { return m_flags
; };
248 virtual wxString
GetViewName(void) const { return m_viewTypeName
; }
249 virtual wxString
GetDocumentName(void) const { return m_docTypeName
; }
251 inline void SetFileFilter(const wxString
& filter
) { m_fileFilter
= filter
; };
252 inline void SetDirectory(const wxString
& dir
) { m_directory
= dir
; };
253 inline void SetDescription(const wxString
& descr
) { m_description
= descr
; };
254 inline void SetDefaultExtension(const wxString
& ext
) { m_defaultExt
= ext
; };
255 inline void SetFlags(long flags
) { m_flags
= flags
; };
257 inline bool IsVisible(void) const { return ((m_flags
& wxTEMPLATE_VISIBLE
) == wxTEMPLATE_VISIBLE
); }
261 wxString m_fileFilter
;
262 wxString m_directory
;
263 wxString m_description
;
264 wxString m_defaultExt
;
265 wxString m_docTypeName
;
266 wxString m_viewTypeName
;
267 wxDocManager
* m_documentManager
;
269 // For dynamic creation of appropriate instances.
270 wxClassInfo
* m_docClassInfo
;
271 wxClassInfo
* m_viewClassInfo
;
275 // One object of this class may be created in an application,
276 // to manage all the templates and documents.
277 class WXDLLEXPORT wxDocManager
: public wxEvtHandler
279 DECLARE_DYNAMIC_CLASS(wxDocManager
)
281 wxDocManager(long flags
= wxDEFAULT_DOCMAN_FLAGS
, bool initialize
= TRUE
);
284 virtual bool Initialize(void);
286 // Handlers for common user commands
287 // virtual void OldOnMenuCommand(int command);
289 void OnFileClose(wxCommandEvent
& event
);
290 void OnFileNew(wxCommandEvent
& event
);
291 void OnFileOpen(wxCommandEvent
& event
);
292 void OnFileRevert(wxCommandEvent
& event
);
293 void OnFileSave(wxCommandEvent
& event
);
294 void OnFileSaveAs(wxCommandEvent
& event
);
295 void OnPrint(wxCommandEvent
& event
);
296 void OnPrintSetup(wxCommandEvent
& event
);
297 void OnPreview(wxCommandEvent
& event
);
298 void OnUndo(wxCommandEvent
& event
);
299 void OnRedo(wxCommandEvent
& event
);
301 // Extend event processing to search the view's event table
302 virtual bool ProcessEvent(wxEvent
& event
);
304 virtual wxDocument
*CreateDocument(const wxString
& path
, long flags
= 0);
305 virtual wxView
*CreateView(wxDocument
*doc
, long flags
= 0);
306 virtual void DeleteTemplate(wxDocTemplate
*temp
, long flags
= 0);
307 virtual bool FlushDoc(wxDocument
*doc
);
308 virtual wxDocTemplate
*MatchTemplate(const wxString
& path
);
309 virtual wxDocTemplate
*SelectDocumentPath(wxDocTemplate
**templates
,
310 int noTemplates
, wxString
& path
, long flags
, bool save
= FALSE
);
311 virtual wxDocTemplate
*SelectDocumentType(wxDocTemplate
**templates
,
313 virtual wxDocTemplate
*SelectViewType(wxDocTemplate
**templates
,
315 virtual wxDocTemplate
*FindTemplateForPath(const wxString
& path
);
317 void AssociateTemplate(wxDocTemplate
*temp
);
318 void DisassociateTemplate(wxDocTemplate
*temp
);
320 wxDocument
*GetCurrentDocument(void) const;
322 inline void SetMaxDocsOpen(int n
) { m_maxDocsOpen
= n
; }
323 inline int GetMaxDocsOpen(void) const { return m_maxDocsOpen
; }
325 // Add and remove a document from the manager's list
326 void AddDocument(wxDocument
*doc
);
327 void RemoveDocument(wxDocument
*doc
);
329 // Clear remaining documents and templates
330 bool Clear(bool force
= TRUE
);
332 // Views or windows should inform the document manager
333 // when a view is going in or out of focus
334 virtual void ActivateView(wxView
*view
, bool activate
= TRUE
, bool deleting
= FALSE
);
335 virtual wxView
*GetCurrentView(void) const;
337 virtual inline wxList
& GetDocuments(void) const { return (wxList
&) m_docs
; }
339 // Make a default document name
340 virtual bool MakeDefaultName(wxString
& buf
);
342 virtual wxFileHistory
*OnCreateFileHistory(void);
343 virtual inline wxFileHistory
*GetFileHistory(void) const { return m_fileHistory
; }
345 // File history management
346 virtual void AddFileToHistory(const wxString
& file
);
347 virtual int GetNoHistoryFiles(void) const;
348 virtual wxString
GetHistoryFile(int i
) const;
349 virtual void FileHistoryUseMenu(wxMenu
*menu
);
350 virtual void FileHistoryRemoveMenu(wxMenu
*menu
);
352 virtual void FileHistoryLoad(wxConfigBase
& config
);
353 virtual void FileHistorySave(wxConfigBase
& config
);
355 virtual void FileHistoryAddFilesToMenu();
356 virtual void FileHistoryAddFilesToMenu(wxMenu
* menu
);
359 int m_defaultDocumentNameCounter
;
363 wxView
* m_currentView
;
364 wxFileHistory
* m_fileHistory
;
366 DECLARE_EVENT_TABLE()
370 * A default child frame
373 class WXDLLEXPORT wxDocChildFrame
: public wxFrame
375 DECLARE_CLASS(wxDocChildFrame
)
378 wxDocChildFrame(wxDocument
*doc
, wxView
*view
, wxFrame
*frame
, wxWindowID id
, const wxString
& title
,
379 const wxPoint
& pos
= wxDefaultPosition
, const wxSize
& size
= wxDefaultSize
,
380 long type
= wxDEFAULT_FRAME_STYLE
, const wxString
& name
= "frame");
381 ~wxDocChildFrame(void);
383 // Extend event processing to search the view's event table
384 virtual bool ProcessEvent(wxEvent
& event
);
386 void OnActivate(wxActivateEvent
& event
);
387 void OnCloseWindow(wxCloseEvent
& event
);
389 inline wxDocument
*GetDocument(void) const { return m_childDocument
; }
390 inline wxView
*GetView(void) const { return m_childView
; }
391 inline void SetDocument(wxDocument
*doc
) { m_childDocument
= doc
; }
392 inline void SetView(wxView
*view
) { m_childView
= view
; }
394 wxDocument
* m_childDocument
;
397 DECLARE_EVENT_TABLE()
402 * A default parent frame
405 class WXDLLEXPORT wxDocParentFrame
: public wxFrame
407 DECLARE_CLASS(wxDocParentFrame
)
409 wxDocParentFrame(wxDocManager
*manager
, wxFrame
*frame
, wxWindowID id
, const wxString
& title
,
410 const wxPoint
& pos
= wxDefaultPosition
, const wxSize
& size
= wxDefaultSize
,
411 long type
= wxDEFAULT_FRAME_STYLE
, const wxString
& name
= "frame");
413 // Extend event processing to search the document manager's event table
414 virtual bool ProcessEvent(wxEvent
& event
);
416 wxDocManager
*GetDocumentManager(void) const { return m_docManager
; }
418 void OnExit(wxCommandEvent
& event
);
419 void OnMRUFile(wxCommandEvent
& event
);
420 void OnCloseWindow(wxCloseEvent
& event
);
423 wxDocManager
*m_docManager
;
425 DECLARE_EVENT_TABLE()
429 * Provide simple default printing facilities
432 #if wxUSE_PRINTING_ARCHITECTURE
433 class WXDLLEXPORT wxDocPrintout
: public wxPrintout
435 DECLARE_DYNAMIC_CLASS(wxDocPrintout
)
437 wxDocPrintout(wxView
*view
= (wxView
*) NULL
, const wxString
& title
= "Printout");
438 bool OnPrintPage(int page
);
439 bool HasPage(int page
);
440 bool OnBeginDocument(int startPage
, int endPage
);
441 void GetPageInfo(int *minPage
, int *maxPage
, int *selPageFrom
, int *selPageTo
);
443 virtual inline wxView
*GetView(void) { return m_printoutView
; }
445 wxView
* m_printoutView
;
450 * Command processing framework
453 class WXDLLEXPORT wxCommand
: public wxObject
455 DECLARE_CLASS(wxCommand
)
457 wxCommand(bool canUndoIt
= FALSE
, const wxString
& name
= "");
460 // Override this to perform a command
461 virtual bool Do(void) = 0;
463 // Override this to undo a command
464 virtual bool Undo(void) = 0;
466 virtual inline bool CanUndo(void) const { return m_canUndo
; }
467 virtual inline wxString
GetName(void) const { return m_commandName
; }
470 wxString m_commandName
;
473 class WXDLLEXPORT wxCommandProcessor
: public wxObject
475 DECLARE_DYNAMIC_CLASS(wxCommandProcessor
)
477 wxCommandProcessor(int maxCommands
= 100);
478 ~wxCommandProcessor(void);
480 // Pass a command to the processor. The processor calls Do();
481 // if successful, is appended to the command history unless
483 virtual bool Submit(wxCommand
*command
, bool storeIt
= TRUE
);
484 virtual bool Undo(void);
485 virtual bool Redo(void);
486 virtual bool CanUndo(void) const;
487 virtual bool CanRedo(void) const;
489 // Call this to manage an edit menu.
490 inline void SetEditMenu(wxMenu
*menu
) { m_commandEditMenu
= menu
; }
491 inline wxMenu
*GetEditMenu(void) const { return m_commandEditMenu
; }
492 virtual void SetMenuStrings(void);
493 virtual void Initialize(void);
495 inline wxList
& GetCommands(void) const { return (wxList
&) m_commands
; }
496 inline int GetMaxCommands(void) const { return m_maxNoCommands
; }
497 virtual void ClearCommands(void);
502 wxNode
* m_currentCommand
;
503 wxMenu
* m_commandEditMenu
;
506 // File history management
508 class WXDLLEXPORT wxFileHistory
: public wxObject
510 DECLARE_DYNAMIC_CLASS(wxFileHistory
)
512 wxFileHistory(int maxFiles
= 9);
513 ~wxFileHistory(void);
516 virtual void AddFileToHistory(const wxString
& file
);
517 virtual int GetMaxFiles(void) const { return m_fileMaxFiles
; }
518 virtual void UseMenu(wxMenu
*menu
);
520 // Remove menu from the list (MDI child may be closing)
521 virtual void RemoveMenu(wxMenu
*menu
);
524 virtual void Load(wxConfigBase
& config
);
525 virtual void Save(wxConfigBase
& config
);
528 virtual void AddFilesToMenu();
529 virtual void AddFilesToMenu(wxMenu
* menu
); // Single menu
532 virtual wxString
GetHistoryFile(int i
) const;
534 // A synonym for GetNoHistoryFiles
535 virtual int GetCount() const { return m_fileHistoryN
; }
536 inline int GetNoHistoryFiles(void) const { return m_fileHistoryN
; }
538 inline wxList
& GetMenus() const { return (wxList
&) m_fileMenus
; }
542 char** m_fileHistory
;
543 // Number of files saved
545 // Menus to maintain (may need several for an MDI app)
547 // Max files to maintain
551 // For compatibility with existing file formats:
552 // converts from/to a stream to/from a temporary file.
553 bool WXDLLEXPORT
wxTransferFileToStream(const wxString
& filename
, ostream
& stream
);
554 bool WXDLLEXPORT
wxTransferStreamToFile(istream
& stream
, const wxString
& filename
);