]>
Commit | Line | Data |
---|---|---|
a660d684 KB |
1 | \section{\class{wxFileHistory}}\label{wxfilehistory} |
2 | ||
3 | The wxFileHistory encapsulates a user interface convenience, the | |
4 | list of most recently visited files as shown on a menu (usually the File menu). | |
5 | ||
7f555861 JS |
6 | wxFileHistory can manage one or more file menus. More than one menu may be required |
7 | in an MDI application, where the file history should appear on each MDI child menu | |
8 | as 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 | ||
b236c10f | 24 | \membersection{wxFileHistory::m\_fileHistory}\label{wxfilehistorymfilehistory} |
a660d684 KB |
25 | |
26 | \member{char**}{m\_fileHistory} | |
27 | ||
28 | A character array of strings corresponding to the most recently opened | |
29 | files. | |
30 | ||
b236c10f | 31 | \membersection{wxFileHistory::m\_fileHistoryN}\label{wxfilehistorymfilehistoryn} |
a660d684 | 32 | |
0f48e3d5 | 33 | \member{size\_t}{m\_fileHistoryN} |
a660d684 KB |
34 | |
35 | The number of files stored in the history array. | |
36 | ||
b236c10f | 37 | \membersection{wxFileHistory::m\_fileMaxFiles}\label{wxfilehistorymfilemaxfiles} |
a660d684 | 38 | |
0f48e3d5 | 39 | \member{size\_t}{m\_fileMaxFiles} |
a660d684 KB |
40 | |
41 | The maximum number of files to be stored and displayed on the menu. | |
42 | ||
b236c10f | 43 | \membersection{wxFileHistory::m\_fileMenu}\label{wxfilehistorymfilemenu} |
a660d684 KB |
44 | |
45 | \member{wxMenu*}{m\_fileMenu} | |
46 | ||
47 | The file menu used to display the file history list (if enabled). | |
48 | ||
b236c10f | 49 | \membersection{wxFileHistory::wxFileHistory}\label{wxfilehistoryctor} |
a660d684 | 50 | |
0f48e3d5 | 51 | \func{}{wxFileHistory}{\param{size\_t}{ maxFiles = 9}, \param{wxWindowID}{ idBase = wxID\_FILE1}} |
a660d684 | 52 | |
0f48e3d5 VS |
53 | Constructor. Pass the maximum number of files that should be stored and |
54 | displayed. | |
e49c85af | 55 | |
0f48e3d5 VS |
56 | {\it idBase} defaults to wxID\_FILE1 and represents the id given to the first |
57 | history menu item. Since menu items can't share the same ID you should change | |
58 | idBase (To one of your own defined IDs) when using more than one wxFileHistory | |
59 | in your application. | |
e49c85af | 60 | |
b236c10f | 61 | \membersection{wxFileHistory::\destruct{wxFileHistory}}\label{wxfilehistorydtor} |
a660d684 KB |
62 | |
63 | \func{}{\destruct{wxFileHistory}}{\void} | |
64 | ||
65 | Destructor. | |
66 | ||
b236c10f | 67 | \membersection{wxFileHistory::AddFileToHistory}\label{wxfilehistoryaddfiletohistory} |
a660d684 KB |
68 | |
69 | \func{void}{AddFileToHistory}{\param{const wxString\& }{filename}} | |
70 | ||
71 | Adds a file to the file history list, if the object has a pointer to an appropriate file menu. | |
72 | ||
7f555861 | 73 | \membersection{wxFileHistory::AddFilesToMenu}\label{wxfilehistoryaddfilestomenu} |
a660d684 | 74 | |
7f555861 | 75 | \func{void}{AddFilesToMenu}{\void} |
a660d684 | 76 | |
7f555861 | 77 | Appends the files in the history list, to all menus managed by the file history object. |
a660d684 | 78 | |
7f555861 | 79 | \func{void}{AddFilesToMenu}{\param{wxMenu*}{ menu}} |
a660d684 | 80 | |
7f555861 | 81 | Appends the files in the history list, to the given menu only. |
a660d684 | 82 | |
7f555861 | 83 | \membersection{wxFileHistory::GetHistoryFile}\label{wxfilehistorygethistoryfile} |
a660d684 | 84 | |
0f48e3d5 | 85 | \constfunc{wxString}{GetHistoryFile}{\param{size\_t}{ index}} |
a660d684 | 86 | |
7f555861 | 87 | Returns the file at this index (zero-based). |
a660d684 | 88 | |
b236c10f | 89 | \membersection{wxFileHistory::GetMaxFiles}\label{wxfilehistorygetmaxfiles} |
a660d684 | 90 | |
0f48e3d5 | 91 | \constfunc{size\_t}{GetMaxFiles}{\void} |
a660d684 KB |
92 | |
93 | Returns the maximum number of files that can be stored. | |
94 | ||
a13438c5 | 95 | \membersection{wxFileHistory::GetCount}\label{wxfilehistorygetcount} |
a660d684 | 96 | |
a13438c5 | 97 | \constfunc{size\_t}{GetCount}{\void} |
a660d684 KB |
98 | |
99 | Returns the number of files currently stored in the file history. | |
100 | ||
b236c10f | 101 | \membersection{wxFileHistory::Load}\label{wxfilehistoryload} |
7f555861 JS |
102 | |
103 | \func{void}{Load}{\param{wxConfigBase\& }{config}} | |
104 | ||
105 | Loads the file history from the given config object. This function should be called explicitly by the application. | |
106 | ||
107 | \wxheading{See also} | |
108 | ||
109 | \helpref{wxConfig}{wxconfigbase} | |
110 | ||
b236c10f | 111 | \membersection{wxFileHistory::RemoveMenu}\label{wxfilehistoryremovemenu} |
7f555861 JS |
112 | |
113 | \func{void}{RemoveMenu}{\param{wxMenu* }{menu}} | |
114 | ||
115 | Removes this menu from the list of those managed by this object. | |
116 | ||
b236c10f | 117 | \membersection{wxFileHistory::Save}\label{wxfilehistorysave} |
7f555861 JS |
118 | |
119 | \func{void}{Save}{\param{wxConfigBase\& }{config}} | |
120 | ||
121 | Saves the file history into the given config object. This must be called | |
122 | explicitly by the application. | |
123 | ||
124 | \wxheading{See also} | |
125 | ||
126 | \helpref{wxConfig}{wxconfigbase} | |
127 | ||
b236c10f | 128 | \membersection{wxFileHistory::UseMenu}\label{wxfilehistoryusemenu} |
7f555861 JS |
129 | |
130 | \func{void}{UseMenu}{\param{wxMenu* }{menu}} | |
131 | ||
132 | Adds this menu to the list of those managed by this object. | |
133 | ||
a660d684 | 134 |