]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/filehist.tex
1. added code to dyntbar to allow bitmap loading from windows resources
[wxWidgets.git] / docs / latex / wx / filehist.tex
CommitLineData
a660d684
KB
1\section{\class{wxFileHistory}}\label{wxfilehistory}
2
3The wxFileHistory encapsulates a user interface convenience, the
4list of most recently visited files as shown on a menu (usually the File menu).
5
7f555861
JS
6wxFileHistory can manage one or more file menus. More than one menu may be required
7in an MDI application, where the file history should appear on each MDI child menu
8as well as the MDI parent frame.
9
a660d684
KB
10\wxheading{Derived from}
11
12\helpref{wxObject}{wxobject}
13
954b8ae6
JS
14\wxheading{Include files}
15
16<wx/docview.h>
17
a660d684
KB
18\wxheading{See also}
19
7f555861 20\helpref{wxFileHistory overview}{wxfilehistoryoverview}, \helpref{wxDocManager}{wxdocmanager}
a660d684
KB
21
22\latexignore{\rtfignore{\wxheading{Members}}}
23
24\membersection{wxFileHistory::m\_fileHistory}
25
26\member{char**}{m\_fileHistory}
27
28A character array of strings corresponding to the most recently opened
29files.
30
31\membersection{wxFileHistory::m\_fileHistoryN}
32
33\member{int}{m\_fileHistoryN}
34
35The number of files stored in the history array.
36
37\membersection{wxFileHistory::m\_fileMaxFiles}
38
39\member{int}{m\_fileMaxFiles}
40
41The maximum number of files to be stored and displayed on the menu.
42
43\membersection{wxFileHistory::m\_fileMenu}
44
45\member{wxMenu*}{m\_fileMenu}
46
47The file menu used to display the file history list (if enabled).
48
49\membersection{wxFileHistory::wxFileHistory}
50
51\func{}{wxFileHistory}{\param{int}{ maxFiles = 9}}
52
53Constructor. Pass the maximum number of files that should be stored and displayed.
54
55\membersection{wxFileHistory::\destruct{wxFileHistory}}
56
57\func{}{\destruct{wxFileHistory}}{\void}
58
59Destructor.
60
61\membersection{wxFileHistory::AddFileToHistory}
62
63\func{void}{AddFileToHistory}{\param{const wxString\& }{filename}}
64
65Adds a file to the file history list, if the object has a pointer to an appropriate file menu.
66
7f555861 67\membersection{wxFileHistory::AddFilesToMenu}\label{wxfilehistoryaddfilestomenu}
a660d684 68
7f555861 69\func{void}{AddFilesToMenu}{\void}
a660d684 70
7f555861 71Appends the files in the history list, to all menus managed by the file history object.
a660d684 72
7f555861 73\func{void}{AddFilesToMenu}{\param{wxMenu*}{ menu}}
a660d684 74
7f555861 75Appends the files in the history list, to the given menu only.
a660d684 76
7f555861 77\membersection{wxFileHistory::GetHistoryFile}\label{wxfilehistorygethistoryfile}
a660d684 78
7f555861 79\constfunc{wxString}{GetHistoryFile}{\param{int}{ index}}
a660d684 80
7f555861 81Returns the file at this index (zero-based).
a660d684
KB
82
83\membersection{wxFileHistory::GetMaxFiles}
84
7f555861 85\constfunc{int}{GetMaxFiles}{\void}
a660d684
KB
86
87Returns the maximum number of files that can be stored.
88
89\membersection{wxFileHistory::GetNoHistoryFiles}
90
7f555861 91\constfunc{int}{GetNoHistoryFiles}{\void}
a660d684
KB
92
93Returns the number of files currently stored in the file history.
94
7f555861
JS
95\membersection{wxFileHistory::Load}
96
97\func{void}{Load}{\param{wxConfigBase\& }{config}}
98
99Loads the file history from the given config object. This function should be called explicitly by the application.
100
101\wxheading{See also}
102
103\helpref{wxConfig}{wxconfigbase}
104
105\membersection{wxFileHistory::RemoveMenu}
106
107\func{void}{RemoveMenu}{\param{wxMenu* }{menu}}
108
109Removes this menu from the list of those managed by this object.
110
111\membersection{wxFileHistory::Save}
112
113\func{void}{Save}{\param{wxConfigBase\& }{config}}
114
115Saves the file history into the given config object. This must be called
116explicitly by the application.
117
118\wxheading{See also}
119
120\helpref{wxConfig}{wxconfigbase}
121
122\membersection{wxFileHistory::UseMenu}
123
124\func{void}{UseMenu}{\param{wxMenu* }{menu}}
125
126Adds this menu to the list of those managed by this object.
127
a660d684 128