The wxFileHistory encapsulates a user interface convenience, the list of most recently visited files as shown on a menu (usually the File menu).
wxFileHistory can manage one or more file menus. More than one menu may be required in an MDI application, where the file history should appear on each MDI child menu as well as the MDI parent frame.
- See Also
- Document/View Framework, wxDocManager
|
| wxFileHistory (size_t maxFiles=9, wxWindowID idBase=wxID_FILE1) |
| Constructor.
|
|
virtual | ~wxFileHistory () |
| Destructor.
|
|
virtual void | AddFileToHistory (const wxString &filename) |
| Adds a file to the file history list, if the object has a pointer to an appropriate file menu.
|
|
virtual void | AddFilesToMenu () |
| Appends the files in the history list, to all menus managed by the file history object.
|
|
virtual void | AddFilesToMenu (wxMenu *menu) |
| Appends the files in the history list, to the given menu only.
|
|
wxWindowID | GetBaseId () const |
| Returns the base identifier for the range used for appending items.
|
|
virtual size_t | GetCount () const |
| Returns the number of files currently stored in the file history.
|
|
virtual wxString | GetHistoryFile (size_t index) const |
| Returns the file at this index (zero-based).
|
|
virtual int | GetMaxFiles () const |
| Returns the maximum number of files that can be stored.
|
|
const wxList & | GetMenus () const |
| Returns the list of menus that are managed by this file history object.
|
|
virtual void | Load (const wxConfigBase &config) |
| Loads the file history from the given config object.
|
|
virtual void | RemoveFileFromHistory (size_t i) |
| Removes the specified file from the history.
|
|
virtual void | RemoveMenu (wxMenu *menu) |
| Removes this menu from the list of those managed by this object.
|
|
virtual void | Save (wxConfigBase &config) |
| Saves the file history into the given config object.
|
|
void | SetBaseId (wxWindowID baseId) |
| Sets the base identifier for the range used for appending items.
|
|
virtual void | UseMenu (wxMenu *menu) |
| Adds this menu to the list of those menus that are managed by this file history object.
|
|
| 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.
|
|