#include <wx/docview.h>
The wxDocManager class is part of the document/view framework supported by wxWidgets, and cooperates with the wxView, wxDocument and wxDocTemplate classes.
Public Member Functions | |
wxDocManager (long flags=0, bool initialize=true) | |
Constructor. | |
virtual | ~wxDocManager () |
Destructor. | |
virtual void | ActivateView (wxView *doc, bool activate=true) |
Sets the current view. | |
void | AddDocument (wxDocument *doc) |
Adds the document to the list of documents. | |
virtual void | AddFileToHistory (const wxString &filename) |
Adds a file to the file history list, if we have a pointer to an appropriate file menu. | |
void | AssociateTemplate (wxDocTemplate *temp) |
Adds the template to the document manager's template list. | |
wxDocTemplate * | FindTemplate (const wxClassInfo *classinfo) |
Search for a particular document template. | |
wxDocument * | FindDocumentByPath (const wxString &path) const |
Search for the document corresponding to the given file. | |
bool | CloseDocument (wxDocument *doc, bool force=false) |
Closes the specified document. | |
bool | CloseDocuments (bool force=true) |
Closes all currently opened documents. | |
virtual wxDocument * | CreateDocument (const wxString &path, long flags=0) |
Creates a new document. | |
wxDocument * | CreateNewDocument () |
Creates an empty new document. | |
virtual wxView * | CreateView (wxDocument *doc, long flags=0) |
Creates a new view for the given document. | |
void | DisassociateTemplate (wxDocTemplate *temp) |
Removes the template from the list of templates. | |
virtual void | FileHistoryAddFilesToMenu () |
Appends the files in the history list to all menus managed by the file history object. | |
virtual void | FileHistoryAddFilesToMenu (wxMenu *menu) |
Appends the files in the history list to the given menu only. | |
virtual void | FileHistoryLoad (const wxConfigBase &config) |
Loads the file history from a config object. | |
virtual void | FileHistoryRemoveMenu (wxMenu *menu) |
Removes the given menu from the list of menus managed by the file history object. | |
virtual void | FileHistorySave (wxConfigBase &resourceFile) |
Saves the file history into a config object. | |
virtual void | FileHistoryUseMenu (wxMenu *menu) |
Use this menu for appending recently-visited document filenames, for convenient access. | |
virtual wxDocTemplate * | FindTemplateForPath (const wxString &path) |
Given a path, try to find template that matches the extension. | |
wxView * | GetAnyUsableView () const |
Returns the view to apply a user command to. | |
wxDocument * | GetCurrentDocument () const |
Returns the document associated with the currently active view (if any). | |
virtual wxView * | GetCurrentView () const |
Returns the currently active view. | |
wxDocVector | GetDocumentsVector () const |
Returns a vector of wxDocument pointers. | |
wxDocTemplateVector | GetTemplatesVector () const |
Returns a vector of wxDocTemplate pointers. | |
wxList & | GetDocuments () |
Returns a reference to the list of documents. | |
virtual wxFileHistory * | GetFileHistory () const |
Returns a pointer to file history. | |
virtual size_t | GetHistoryFilesCount () const |
Returns the number of files currently stored in the file history. | |
wxString | GetLastDirectory () const |
Returns the directory last selected by the user when opening a file. | |
int | GetMaxDocsOpen () const |
Returns the number of documents that can be open simultaneously. | |
wxList & | GetTemplates () |
Returns a reference to the list of associated templates. | |
virtual bool | Initialize () |
Initializes data; currently just calls OnCreateFileHistory(). | |
virtual wxString | MakeNewDocumentName () |
Return a string containing a suitable default name for a new document. | |
virtual wxFileHistory * | OnCreateFileHistory () |
A hook to allow a derived class to create a different type of file history. | |
void | OnFileClose (wxCommandEvent &event) |
Closes and deletes the currently active document. | |
void | OnFileCloseAll (wxCommandEvent &event) |
Closes and deletes all the currently opened documents. | |
void | OnFileNew (wxCommandEvent &event) |
Creates a document from a list of templates (if more than one template). | |
void | OnFileOpen (wxCommandEvent &event) |
Creates a new document and reads in the selected file. | |
void | OnFileRevert (wxCommandEvent &event) |
Reverts the current document by calling wxDocument::Revert() for the current document. | |
void | OnFileSave (wxCommandEvent &event) |
Saves the current document by calling wxDocument::Save() for the current document. | |
void | OnFileSaveAs (wxCommandEvent &event) |
Calls wxDocument::SaveAs() for the current document. | |
void | RemoveDocument (wxDocument *doc) |
Removes the document from the list of documents. | |
virtual wxDocTemplate * | SelectDocumentPath (wxDocTemplate **templates, int noTemplates, wxString &path, long flags, bool save=false) |
Under Windows, pops up a file selector with a list of filters corresponding to document templates. | |
virtual wxDocTemplate * | SelectDocumentType (wxDocTemplate **templates, int noTemplates, bool sort=false) |
Returns a document template by asking the user (if there is more than one template). | |
virtual wxDocTemplate * | SelectViewType (wxDocTemplate **templates, int noTemplates, bool sort=false) |
Returns a document template by asking the user (if there is more than one template), displaying a list of valid views. | |
void | SetLastDirectory (const wxString &dir) |
Sets the directory to be displayed to the user when opening a file. | |
void | SetMaxDocsOpen (int n) |
Sets the maximum number of documents that can be open at a time. | |
Public Member Functions inherited from wxEvtHandler | |
wxEvtHandler () | |
Constructor. | |
virtual | ~wxEvtHandler () |
Destructor. | |
virtual void | QueueEvent (wxEvent *event) |
Queue event for a later processing. | |
virtual void | AddPendingEvent (const wxEvent &event) |
Post an event to be processed later. | |
template<typename T , typename T1 , ... > | |
void | CallAfter (void(T::*method)(T1,...), T1 x1,...) |
Asynchronously call the given method. | |
template<typename T > | |
void | CallAfter (const T &functor) |
Asynchronously call the given functor. | |
virtual bool | ProcessEvent (wxEvent &event) |
Processes an event, searching event tables and calling zero or more suitable event handler function(s). | |
bool | ProcessEventLocally (wxEvent &event) |
Try to process the event in this handler and all those chained to it. | |
bool | SafelyProcessEvent (wxEvent &event) |
Processes an event by calling ProcessEvent() and handles any exceptions that occur in the process. | |
void | ProcessPendingEvents () |
Processes the pending events previously queued using QueueEvent() or AddPendingEvent(); you must call this function only if you are sure there are pending events for this handler, otherwise a wxCHECK will fail. | |
void | DeletePendingEvents () |
Deletes all events queued on this event handler using QueueEvent() or AddPendingEvent(). | |
virtual bool | SearchEventTable (wxEventTable &table, wxEvent &event) |
Searches the event table, executing an event handler function if an appropriate one is found. | |
void | Connect (int id, int lastId, wxEventType eventType, wxObjectEventFunction function, wxObject *userData=NULL, wxEvtHandler *eventSink=NULL) |
Connects the given function dynamically with the event handler, id and event type. | |
void | Connect (int id, wxEventType eventType, wxObjectEventFunction function, wxObject *userData=NULL, wxEvtHandler *eventSink=NULL) |
See the Connect(int, int, wxEventType, wxObjectEventFunction, wxObject*, wxEvtHandler*) overload for more info. | |
void | Connect (wxEventType eventType, wxObjectEventFunction function, wxObject *userData=NULL, wxEvtHandler *eventSink=NULL) |
See the Connect(int, int, wxEventType, wxObjectEventFunction, wxObject*, wxEvtHandler*) overload for more info. | |
bool | Disconnect (wxEventType eventType, wxObjectEventFunction function, wxObject *userData=NULL, wxEvtHandler *eventSink=NULL) |
Disconnects the given function dynamically from the event handler, using the specified parameters as search criteria and returning true if a matching function has been found and removed. | |
bool | Disconnect (int id=wxID_ANY, wxEventType eventType=wxEVT_NULL, wxObjectEventFunction function=NULL, wxObject *userData=NULL, wxEvtHandler *eventSink=NULL) |
See the Disconnect(wxEventType, wxObjectEventFunction, wxObject*, wxEvtHandler*) overload for more info. | |
bool | Disconnect (int id, int lastId, wxEventType eventType, wxObjectEventFunction function=NULL, wxObject *userData=NULL, wxEvtHandler *eventSink=NULL) |
See the Disconnect(wxEventType, wxObjectEventFunction, wxObject*, wxEvtHandler*) overload for more info. | |
template<typename EventTag , typename Functor > | |
void | Bind (const EventTag &eventType, Functor functor, int id=wxID_ANY, int lastId=wxID_ANY, wxObject *userData=NULL) |
Binds the given function, functor or method dynamically with the event. | |
template<typename EventTag , typename Class , typename EventArg , typename EventHandler > | |
void | Bind (const EventTag &eventType, void(Class::*method)(EventArg &), EventHandler *handler, int id=wxID_ANY, int lastId=wxID_ANY, wxObject *userData=NULL) |
See the Bind<>(const EventTag&, Functor, int, int, wxObject*) overload for more info. | |
template<typename EventTag , typename Functor > | |
bool | Unbind (const EventTag &eventType, Functor functor, int id=wxID_ANY, int lastId=wxID_ANY, wxObject *userData=NULL) |
Unbinds the given function, functor or method dynamically from the event handler, using the specified parameters as search criteria and returning true if a matching function has been found and removed. | |
template<typename EventTag , typename Class , typename EventArg , typename EventHandler > | |
bool | Unbind (const EventTag &eventType, void(Class::*method)(EventArg &), EventHandler *handler, int id=wxID_ANY, int lastId=wxID_ANY, wxObject *userData=NULL) |
See the Unbind<>(const EventTag&, Functor, int, int, wxObject*) overload for more info. | |
void * | GetClientData () const |
Returns user-supplied client data. | |
wxClientData * | GetClientObject () const |
Returns a pointer to the user-supplied client data object. | |
void | SetClientData (void *data) |
Sets user-supplied client data. | |
void | SetClientObject (wxClientData *data) |
Set the client data object. | |
bool | GetEvtHandlerEnabled () const |
Returns true if the event handler is enabled, false otherwise. | |
wxEvtHandler * | GetNextHandler () const |
Returns the pointer to the next handler in the chain. | |
wxEvtHandler * | GetPreviousHandler () const |
Returns the pointer to the previous handler in the chain. | |
void | SetEvtHandlerEnabled (bool enabled) |
Enables or disables the event handler. | |
virtual void | SetNextHandler (wxEvtHandler *handler) |
Sets the pointer to the next handler. | |
virtual void | SetPreviousHandler (wxEvtHandler *handler) |
Sets the pointer to the previous handler. | |
void | Unlink () |
Unlinks this event handler from the chain it's part of (if any); then links the "previous" event handler to the "next" one (so that the chain won't be interrupted). | |
bool | IsUnlinked () const |
Returns true if the next and the previous handler pointers of this event handler instance are NULL. | |
Public Member Functions inherited from wxObject | |
wxObject () | |
Default ctor; initializes to NULL the internal reference data. | |
wxObject (const wxObject &other) | |
Copy ctor. | |
virtual | ~wxObject () |
Destructor. | |
virtual wxClassInfo * | GetClassInfo () const |
This virtual function is redefined for every class that requires run-time type information, when using the wxDECLARE_CLASS macro (or similar). | |
wxObjectRefData * | GetRefData () const |
Returns the wxObject::m_refData pointer, i.e. the data referenced by this object. | |
bool | IsKindOf (const wxClassInfo *info) const |
Determines whether this class is a subclass of (or the same class as) the given class. | |
bool | IsSameAs (const wxObject &obj) const |
Returns true if this object has the same data pointer as obj. | |
void | Ref (const wxObject &clone) |
Makes this object refer to the data in clone. | |
void | SetRefData (wxObjectRefData *data) |
Sets the wxObject::m_refData pointer. | |
void | UnRef () |
Decrements the reference count in the associated data, and if it is zero, deletes the data. | |
void | UnShare () |
This is the same of AllocExclusive() but this method is public. | |
void | operator delete (void *buf) |
The delete operator is defined for debugging versions of the library only, when the identifier WXDEBUG is defined. | |
void * | operator new (size_t size, const wxString &filename=NULL, int lineNum=0) |
The new operator is defined for debugging versions of the library only, when the identifier WXDEBUG is defined. | |
Protected Member Functions | |
virtual void | OnMRUFileNotExist (unsigned n, const wxString &filename) |
Called when a file selected from the MRU list doesn't exist any more. | |
virtual wxPreviewFrame * | CreatePreviewFrame (wxPrintPreviewBase *preview, wxWindow *parent, const wxString &title) |
Create the frame used for print preview. | |
Protected Member Functions inherited from wxEvtHandler | |
virtual bool | TryBefore (wxEvent &event) |
Method called by ProcessEvent() before examining this object event tables. | |
virtual bool | TryAfter (wxEvent &event) |
Method called by ProcessEvent() as last resort. | |
Protected Member Functions inherited from wxObject | |
void | AllocExclusive () |
Ensure that this object's data is not shared with any other object. | |
virtual wxObjectRefData * | CreateRefData () const |
Creates a new instance of the wxObjectRefData-derived class specific to this object and returns it. | |
virtual wxObjectRefData * | CloneRefData (const wxObjectRefData *data) const |
Creates a new instance of the wxObjectRefData-derived class specific to this object and initializes it copying data. | |
Protected Attributes | |
wxView * | m_currentView |
The currently active view. | |
int | m_defaultDocumentNameCounter |
Stores the integer to be used for the next default document name. | |
wxList | m_docs |
A list of all documents. | |
wxFileHistory * | m_fileHistory |
A pointer to an instance of wxFileHistory, which manages the history of recently-visited files on the File menu. | |
wxString | m_lastDirectory |
The directory last selected by the user when opening a file. | |
int | m_maxDocsOpen |
Stores the maximum number of documents that can be opened before existing documents are closed. | |
Additional Inherited Members | |
Static Public Member Functions inherited from wxEvtHandler | |
static void | AddFilter (wxEventFilter *filter) |
Add an event filter whose FilterEvent() method will be called for each and every event processed by wxWidgets. | |
static void | RemoveFilter (wxEventFilter *filter) |
Remove a filter previously installed with AddFilter(). | |
wxDocManager::wxDocManager | ( | long | flags = 0 , |
bool | initialize = true |
||
) |
Constructor.
Create a document manager instance dynamically near the start of your application before doing any document or view operations.
If initialize is true, the Initialize() function will be called to create a default history list object. If you derive from wxDocManager, you may wish to call the base constructor with false, and then call Initialize() in your own constructor, to allow your own Initialize() or OnCreateFileHistory functions to be called.
flags | Currently unused. |
initialize | Indicates whether Initialize() should be called by this ctor. |
|
virtual |
Destructor.
|
virtual |
Sets the current view.
void wxDocManager::AddDocument | ( | wxDocument * | doc | ) |
Adds the document to the list of documents.
|
virtual |
Adds a file to the file history list, if we have a pointer to an appropriate file menu.
void wxDocManager::AssociateTemplate | ( | wxDocTemplate * | temp | ) |
Adds the template to the document manager's template list.
bool wxDocManager::CloseDocument | ( | wxDocument * | doc, |
bool | force = false |
||
) |
Closes the specified document.
If force is true, the document is closed even if it has unsaved changes.
doc | The document to close, must be non-NULL. |
force | If true, close the document even if wxDocument::Close() returns false. |
bool wxDocManager::CloseDocuments | ( | bool | force = true | ) |
Closes all currently opened documents.
|
virtual |
Creates a new document.
This function can either create a document corresponding to a new file or to an already existing one depending on whether wxDOC_NEW
is specified in the flags.
By default, this function asks the user for the type of document to open and the path to its file if it's not specified, i.e. if path is empty. Specifying wxDOC_SILENT
flag suppresses any prompts and means that the path must be non-empty and there must be a registered document template handling the extension of this file, otherwise a warning message is logged and the function returns NULL. Notice that wxDOC_SILENT
can be combined with wxDOC_NEW
, however in this case the path must still be specified, even if the file with this path typically won't exist.
Finally notice that if this document manager was configured to allow only a limited number of simultaneously opened documents using SetMaxDocsOpen(), this function will try to close the oldest existing document if this number was reached before creating a new document. And if closing the old document fails (e.g. because it was vetoed by user), this function fails as well.
path | Path to a file or an empty string. If the path is empty, the user will be asked to select it (thus, this is incompatible with the use of wxDOC_SILENT ). The file should exist unless flags includes wxDOC_NEW . |
flags | By default, none. May include wxDOC_NEW to indicate that the new document corresponds to a new file and not an existing one and wxDOC_SILENT to suppress any dialogs asking the user about the file path and type. |
wxDocument* wxDocManager::CreateNewDocument | ( | ) |
Creates an empty new document.
This is equivalent to calling CreateDocument() with wxDOC_NEW
flags and without the file name.
|
protectedvirtual |
Create the frame used for print preview.
This method can be overridden if you need to change the behaviour or appearance of the preview window. By default, a standard wxPreviewFrame is created.
preview | The associated preview object. |
parent | The parent window for the frame. |
title | The suggested title for the print preview frame. |
|
virtual |
Creates a new view for the given document.
If more than one view is allowed for the document (by virtue of multiple templates mentioning the same document type), a choice of view is presented to the user.
void wxDocManager::DisassociateTemplate | ( | wxDocTemplate * | temp | ) |
Removes the template from the list of templates.
|
virtual |
Appends the files in the history list to all menus managed by the file history object.
|
virtual |
Appends the files in the history list to the given menu only.
|
virtual |
Loads the file history from a config object.
|
virtual |
Removes the given menu from the list of menus managed by the file history object.
|
virtual |
Saves the file history into a config object.
This must be called explicitly by the application.
|
virtual |
Use this menu for appending recently-visited document filenames, for convenient access.
Calling this function with a valid menu pointer enables the history list functionality.
wxDocument* wxDocManager::FindDocumentByPath | ( | const wxString & | path | ) | const |
Search for the document corresponding to the given file.
path | Document file path. |
wxDocTemplate* wxDocManager::FindTemplate | ( | const wxClassInfo * | classinfo | ) |
Search for a particular document template.
Example:
classinfo | Class info of a document class for which a wxDocTemplate had been previously created. |
|
virtual |
Given a path, try to find template that matches the extension.
This is only an approximate method of finding a template for creating a document.
wxView* wxDocManager::GetAnyUsableView | ( | ) | const |
Returns the view to apply a user command to.
This method tries to find the view that the user wants to interact with. It returns the same view as GetCurrentDocument() if there is any currently active view but falls back to the first view of the first document if there is no active view.
wxDocument* wxDocManager::GetCurrentDocument | ( | ) | const |
Returns the document associated with the currently active view (if any).
|
virtual |
Returns the currently active view.
This method can return NULL if no view is currently active.
wxList& wxDocManager::GetDocuments | ( | ) |
Returns a reference to the list of documents.
wxDocVector wxDocManager::GetDocumentsVector | ( | ) | const |
Returns a vector of wxDocument pointers.
|
virtual |
Returns a pointer to file history.
|
virtual |
Returns the number of files currently stored in the file history.
wxString wxDocManager::GetLastDirectory | ( | ) | const |
Returns the directory last selected by the user when opening a file.
Initially empty.
int wxDocManager::GetMaxDocsOpen | ( | ) | const |
Returns the number of documents that can be open simultaneously.
wxList& wxDocManager::GetTemplates | ( | ) |
Returns a reference to the list of associated templates.
wxDocTemplateVector wxDocManager::GetTemplatesVector | ( | ) | const |
Returns a vector of wxDocTemplate pointers.
|
virtual |
Initializes data; currently just calls OnCreateFileHistory().
Some data cannot always be initialized in the constructor because the programmer must be given the opportunity to override functionality. If OnCreateFileHistory() was called from the constructor, an overridden virtual OnCreateFileHistory() would not be called due to C++'s 'interesting' constructor semantics. In fact Initialize() is called from the wxDocManager constructor, but this can be vetoed by passing false to the second argument, allowing the derived class's constructor to call Initialize(), possibly calling a different OnCreateFileHistory() from the default.
The bottom line: if you're not deriving from Initialize(), forget it and construct wxDocManager with no arguments.
|
virtual |
Return a string containing a suitable default name for a new document.
By default this is implemented by appending an integer counter to the string unnamed but can be overridden in the derived classes to do something more appropriate.
|
virtual |
A hook to allow a derived class to create a different type of file history.
Called from Initialize().
void wxDocManager::OnFileClose | ( | wxCommandEvent & | event | ) |
Closes and deletes the currently active document.
void wxDocManager::OnFileCloseAll | ( | wxCommandEvent & | event | ) |
Closes and deletes all the currently opened documents.
void wxDocManager::OnFileNew | ( | wxCommandEvent & | event | ) |
Creates a document from a list of templates (if more than one template).
void wxDocManager::OnFileOpen | ( | wxCommandEvent & | event | ) |
Creates a new document and reads in the selected file.
void wxDocManager::OnFileRevert | ( | wxCommandEvent & | event | ) |
Reverts the current document by calling wxDocument::Revert() for the current document.
void wxDocManager::OnFileSave | ( | wxCommandEvent & | event | ) |
Saves the current document by calling wxDocument::Save() for the current document.
void wxDocManager::OnFileSaveAs | ( | wxCommandEvent & | event | ) |
Calls wxDocument::SaveAs() for the current document.
|
protectedvirtual |
Called when a file selected from the MRU list doesn't exist any more.
The default behaviour is to remove the file from the MRU (most recently used) files list and the corresponding menu and notify the user about it but this method can be overridden to customize it.
For example, an application may want to just give an error about the missing file filename but not remove it from the file history. Or it could ask the user whether the file should be kept or removed.
Notice that this method is called only if the file selected by user from the MRU files in the menu doesn't exist, but not if opening it failed for any other reason because in the latter case the default behaviour of removing the file from the MRU list is inappropriate. If you still want to do it, you would need to do it by calling RemoveFileFromHistory() explicitly in the part of the file opening code that may fail.
n | The index of the file in the MRU list, it can be passed to RemoveFileFromHistory() to remove this file from the list. |
filename | The full name of the file. |
void wxDocManager::RemoveDocument | ( | wxDocument * | doc | ) |
Removes the document from the list of documents.
|
virtual |
Under Windows, pops up a file selector with a list of filters corresponding to document templates.
The wxDocTemplate corresponding to the selected file's extension is returned.
On other platforms, if there is more than one document template a choice list is popped up, followed by a file selector.
This function is used in CreateDocument().
wxPerl Note: In wxPerl templates is a reference to a list of templates. If you override this method in your document manager it must return two values, eg:
|
virtual |
Returns a document template by asking the user (if there is more than one template).
This function is used in CreateDocument().
templates | Pointer to an array of templates from which to choose a desired template. |
noTemplates | Number of templates being pointed to by the templates pointer. |
sort | If more than one template is passed into templates, then this parameter indicates whether the list of templates that the user will have to choose from is sorted or not when shown the choice box dialog. Default is false. |
wxPerl Note: In wxPerl templates is a reference to a list of templates.
|
virtual |
Returns a document template by asking the user (if there is more than one template), displaying a list of valid views.
This function is used in CreateView(). The dialog normally will not appear because the array of templates only contains those relevant to the document in question, and often there will only be one such.
templates | Pointer to an array of templates from which to choose a desired template. |
noTemplates | Number of templates being pointed to by the templates pointer. |
sort | If more than one template is passed into templates, then this parameter indicates whether the list of templates that the user will have to choose from is sorted or not when shown the choice box dialog. Default is false. |
wxPerl Note: In wxPerl templates is a reference to a list of templates.
void wxDocManager::SetLastDirectory | ( | const wxString & | dir | ) |
Sets the directory to be displayed to the user when opening a file.
Initially this is empty.
void wxDocManager::SetMaxDocsOpen | ( | int | n | ) |
Sets the maximum number of documents that can be open at a time.
By default, this is INT_MAX
, i.e. the number of documents is unlimited. If you set it to 1, existing documents will be saved and deleted when the user tries to open or create a new one (similar to the behaviour of Windows Write, for example). Allowing multiple documents gives behaviour more akin to MS Word and other Multiple Document Interface applications.
|
protected |
The currently active view.
|
protected |
Stores the integer to be used for the next default document name.
|
protected |
A list of all documents.
|
protected |
A pointer to an instance of wxFileHistory, which manages the history of recently-visited files on the File menu.
|
protected |
The directory last selected by the user when opening a file.
|
protected |
Stores the maximum number of documents that can be opened before existing documents are closed.
By default, this is INT_MAX
i.e. practically unlimited.