]>
Commit | Line | Data |
---|---|---|
8ec2b484 HH |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: helpdata.h | |
3 | // Purpose: wxHtmlHelpData | |
f42b1601 | 4 | // Notes: Based on htmlhelp.cpp, implementing a monolithic |
8ec2b484 HH |
5 | // HTML Help controller class, by Vaclav Slavik |
6 | // Author: Harm van der Heijden and Vaclav Slavik | |
69941f05 | 7 | // RCS-ID: $Id$ |
8ec2b484 | 8 | // Copyright: (c) Harm van der Heijden and Vaclav Slavik |
65571936 | 9 | // Licence: wxWindows licence |
8ec2b484 HH |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_HELPDATA_H_ | |
13 | #define _WX_HELPDATA_H_ | |
14 | ||
8ec2b484 HH |
15 | #include "wx/defs.h" |
16 | ||
17 | #if wxUSE_HTML | |
18 | ||
19 | #include "wx/object.h" | |
20 | #include "wx/string.h" | |
21 | #include "wx/filesys.h" | |
22 | #include "wx/dynarray.h" | |
f890e2d4 | 23 | #include "wx/font.h" |
8ec2b484 | 24 | |
6acba9a7 | 25 | class WXDLLIMPEXP_HTML wxHtmlHelpData; |
97494971 | 26 | |
8ec2b484 HH |
27 | //-------------------------------------------------------------------------------- |
28 | // helper classes & structs | |
29 | //-------------------------------------------------------------------------------- | |
30 | ||
6acba9a7 | 31 | class WXDLLIMPEXP_HTML wxHtmlBookRecord |
8ec2b484 | 32 | { |
97494971 | 33 | public: |
6953da00 | 34 | wxHtmlBookRecord(const wxString& bookfile, const wxString& basepath, |
5ecdcaa7 | 35 | const wxString& title, const wxString& start) |
97494971 | 36 | { |
5ecdcaa7 | 37 | m_BookFile = bookfile; |
97494971 VS |
38 | m_BasePath = basepath; |
39 | m_Title = title; | |
40 | m_Start = start; | |
41 | // for debugging, give the contents index obvious default values | |
42 | m_ContentsStart = m_ContentsEnd = -1; | |
43 | } | |
5ecdcaa7 | 44 | wxString GetBookFile() const { return m_BookFile; } |
97494971 VS |
45 | wxString GetTitle() const { return m_Title; } |
46 | wxString GetStart() const { return m_Start; } | |
47 | wxString GetBasePath() const { return m_BasePath; } | |
48 | /* SetContentsRange: store in the bookrecord where in the index/contents lists the | |
49 | * book's records are stored. This to facilitate searching in a specific book. | |
50 | * This code will have to be revised when loading/removing books becomes dynamic. | |
51 | * (as opposed to appending only) | |
52 | * Note that storing index range is pointless, because the index is alphab. sorted. */ | |
53 | void SetContentsRange(int start, int end) { m_ContentsStart = start; m_ContentsEnd = end; } | |
54 | int GetContentsStart() const { return m_ContentsStart; } | |
55 | int GetContentsEnd() const { return m_ContentsEnd; } | |
56 | ||
57 | void SetTitle(const wxString& title) { m_Title = title; } | |
58 | void SetBasePath(const wxString& path) { m_BasePath = path; } | |
59 | void SetStart(const wxString& start) { m_Start = start; } | |
60 | ||
6953da00 WS |
61 | // returns full filename of page (which is part of the book), |
62 | // i.e. with book's basePath prepended. If page is already absolute | |
468ae730 VS |
63 | // path, basePath is _not_ prepended. |
64 | wxString GetFullPath(const wxString &page) const; | |
65 | ||
97494971 | 66 | protected: |
5ecdcaa7 | 67 | wxString m_BookFile; |
97494971 VS |
68 | wxString m_BasePath; |
69 | wxString m_Title; | |
70 | wxString m_Start; | |
71 | int m_ContentsStart; | |
72 | int m_ContentsEnd; | |
8ec2b484 HH |
73 | }; |
74 | ||
75 | ||
4460b6c4 VS |
76 | WX_DECLARE_USER_EXPORTED_OBJARRAY(wxHtmlBookRecord, wxHtmlBookRecArray, |
77 | WXDLLIMPEXP_HTML); | |
8ec2b484 | 78 | |
91fa114d VS |
79 | struct WXDLLIMPEXP_HTML wxHtmlHelpDataItem |
80 | { | |
6953da00 | 81 | wxHtmlHelpDataItem() : level(0), parent(NULL), id(wxID_ANY), book(NULL) {} |
91fa114d | 82 | |
42841dfc | 83 | int level; |
91fa114d VS |
84 | wxHtmlHelpDataItem *parent; |
85 | int id; | |
86 | wxString name; | |
87 | wxString page; | |
88 | wxHtmlBookRecord *book; | |
6953da00 | 89 | |
91fa114d VS |
90 | // returns full filename of m_Page, i.e. with book's basePath prepended |
91 | wxString GetFullPath() const { return book->GetFullPath(page); } | |
8ec2b484 | 92 | |
91fa114d VS |
93 | // returns item indented with spaces if it has level>1: |
94 | wxString GetIndentedName() const; | |
95 | }; | |
96 | ||
97 | WX_DECLARE_USER_EXPORTED_OBJARRAY(wxHtmlHelpDataItem, wxHtmlHelpDataItems, | |
98 | WXDLLIMPEXP_HTML); | |
99 | ||
100 | #if WXWIN_COMPATIBILITY_2_4 | |
101 | // old interface to contents and index: | |
97494971 | 102 | struct wxHtmlContentsItem |
8ec2b484 | 103 | { |
91fa114d VS |
104 | wxHtmlContentsItem(); |
105 | wxHtmlContentsItem(const wxHtmlHelpDataItem& d); | |
106 | wxHtmlContentsItem& operator=(const wxHtmlContentsItem& d); | |
107 | ~wxHtmlContentsItem(); | |
108 | ||
42841dfc | 109 | int m_Level; |
8ec2b484 | 110 | int m_ID; |
91fa114d VS |
111 | wxChar *m_Name; |
112 | wxChar *m_Page; | |
8ec2b484 | 113 | wxHtmlBookRecord *m_Book; |
6953da00 | 114 | |
468ae730 VS |
115 | // returns full filename of m_Page, i.e. with book's basePath prepended |
116 | wxString GetFullPath() const { return m_Book->GetFullPath(m_Page); } | |
91fa114d VS |
117 | |
118 | private: | |
119 | bool m_autofree; | |
97494971 | 120 | }; |
91fa114d VS |
121 | #endif |
122 | ||
8ec2b484 HH |
123 | |
124 | //------------------------------------------------------------------------------ | |
2b5f62a0 | 125 | // wxHtmlSearchEngine |
8ec2b484 HH |
126 | // This class takes input streams and scans them for occurence |
127 | // of keyword(s) | |
128 | //------------------------------------------------------------------------------ | |
97494971 | 129 | |
6acba9a7 | 130 | class WXDLLIMPEXP_HTML wxHtmlSearchEngine : public wxObject |
8ec2b484 | 131 | { |
97494971 | 132 | public: |
3912b3f8 | 133 | wxHtmlSearchEngine() : wxObject() {} |
d3c7fc99 | 134 | virtual ~wxHtmlSearchEngine() {} |
f42b1601 | 135 | |
97494971 VS |
136 | // Sets the keyword we will be searching for |
137 | virtual void LookFor(const wxString& keyword, bool case_sensitive, bool whole_words_only); | |
8ec2b484 | 138 | |
97494971 | 139 | // Scans the stream for the keyword. |
6953da00 | 140 | // Returns true if the stream contains keyword, fALSE otherwise |
2b5f62a0 | 141 | virtual bool Scan(const wxFSFile& file); |
c4971147 | 142 | |
97494971 | 143 | private: |
3912b3f8 | 144 | wxString m_Keyword; |
97494971 VS |
145 | bool m_CaseSensitive; |
146 | bool m_WholeWords; | |
22f3361e | 147 | |
00e7a427 | 148 | DECLARE_NO_COPY_CLASS(wxHtmlSearchEngine) |
c4971147 | 149 | }; |
8ec2b484 | 150 | |
8ec2b484 | 151 | |
3103e8a9 JS |
152 | // State information of a search action. I'd have preferred to make this a |
153 | // nested class inside wxHtmlHelpData, but that's against coding standards :-( | |
f42b1601 | 154 | // Never construct this class yourself, obtain a copy from |
8ec2b484 | 155 | // wxHtmlHelpData::PrepareKeywordSearch(const wxString& key) |
6acba9a7 | 156 | class WXDLLIMPEXP_HTML wxHtmlSearchStatus |
8ec2b484 | 157 | { |
97494971 VS |
158 | public: |
159 | // constructor; supply wxHtmlHelpData ptr, the keyword and (optionally) the | |
160 | // title of the book to search. By default, all books are searched. | |
161 | wxHtmlSearchStatus(wxHtmlHelpData* base, const wxString& keyword, | |
162 | bool case_sensitive, bool whole_words_only, | |
163 | const wxString& book = wxEmptyString); | |
164 | bool Search(); // do the next iteration | |
165 | bool IsActive() { return m_Active; } | |
166 | int GetCurIndex() { return m_CurIndex; } | |
167 | int GetMaxIndex() { return m_MaxIndex; } | |
168 | const wxString& GetName() { return m_Name; } | |
91fa114d VS |
169 | |
170 | const wxHtmlHelpDataItem *GetCurItem() const { return m_CurItem; } | |
171 | #if WXWIN_COMPATIBILITY_2_4 | |
172 | wxDEPRECATED( wxHtmlContentsItem* GetContentsItem() ); | |
173 | #endif | |
97494971 VS |
174 | |
175 | private: | |
176 | wxHtmlHelpData* m_Data; | |
2b5f62a0 | 177 | wxHtmlSearchEngine m_Engine; |
97494971 | 178 | wxString m_Keyword, m_Name; |
3912b3f8 | 179 | wxString m_LastPage; |
91fa114d | 180 | wxHtmlHelpDataItem* m_CurItem; |
97494971 VS |
181 | bool m_Active; // search is not finished |
182 | int m_CurIndex; // where we are now | |
183 | int m_MaxIndex; // number of files we search | |
184 | // For progress bar: 100*curindex/maxindex = % complete | |
22f3361e VZ |
185 | |
186 | DECLARE_NO_COPY_CLASS(wxHtmlSearchStatus) | |
f35822af | 187 | }; |
8ec2b484 | 188 | |
6acba9a7 | 189 | class WXDLLIMPEXP_HTML wxHtmlHelpData : public wxObject |
8ec2b484 | 190 | { |
97494971 VS |
191 | DECLARE_DYNAMIC_CLASS(wxHtmlHelpData) |
192 | friend class wxHtmlSearchStatus; | |
193 | ||
194 | public: | |
195 | wxHtmlHelpData(); | |
d3c7fc99 | 196 | virtual ~wxHtmlHelpData(); |
97494971 VS |
197 | |
198 | // Sets directory where temporary files are stored. | |
199 | // These temp files are index & contents file in binary (much faster to read) | |
200 | // form. These files are NOT deleted on program's exit. | |
201 | void SetTempDir(const wxString& path); | |
202 | ||
203 | // Adds new book. 'book' is location of .htb file (stands for "html book"). | |
204 | // See documentation for details on its format. | |
205 | // Returns success. | |
206 | bool AddBook(const wxString& book); | |
207 | bool AddBookParam(const wxFSFile& bookfile, | |
208 | wxFontEncoding encoding, | |
209 | const wxString& title, const wxString& contfile, | |
210 | const wxString& indexfile = wxEmptyString, | |
211 | const wxString& deftopic = wxEmptyString, | |
67c276bd | 212 | const wxString& path = wxEmptyString); |
97494971 VS |
213 | |
214 | // Some accessing stuff: | |
215 | ||
216 | // returns URL of page on basis of (file)name | |
217 | wxString FindPageByName(const wxString& page); | |
218 | // returns URL of page on basis of MS id | |
219 | wxString FindPageById(int id); | |
220 | ||
91fa114d VS |
221 | const wxHtmlBookRecArray& GetBookRecArray() const { return m_bookRecords; } |
222 | ||
223 | const wxHtmlHelpDataItems& GetContentsArray() const { return m_contents; } | |
224 | const wxHtmlHelpDataItems& GetIndexArray() const { return m_index; } | |
225 | ||
226 | #if WXWIN_COMPATIBILITY_2_4 | |
227 | // deprecated interface, new interface is arrays-based (see above) | |
228 | wxDEPRECATED( wxHtmlContentsItem* GetContents() ); | |
229 | wxDEPRECATED( int GetContentsCnt() ); | |
230 | wxDEPRECATED( wxHtmlContentsItem* GetIndex() ); | |
231 | wxDEPRECATED( int GetIndexCnt() ); | |
232 | #endif | |
97494971 VS |
233 | |
234 | protected: | |
91fa114d | 235 | wxString m_tempPath; |
97494971 | 236 | |
97494971 | 237 | // each book has one record in this array: |
91fa114d VS |
238 | wxHtmlBookRecArray m_bookRecords; |
239 | ||
240 | wxHtmlHelpDataItems m_contents; // list of all available books and pages | |
241 | wxHtmlHelpDataItems m_index; // list of index itesm | |
6953da00 | 242 | |
91fa114d VS |
243 | #if WXWIN_COMPATIBILITY_2_4 |
244 | // deprecated data structures, set only if GetContents(), GetIndex() | |
245 | // called | |
246 | wxHtmlContentsItem* m_cacheContents; | |
247 | wxHtmlContentsItem* m_cacheIndex; | |
248 | private: | |
249 | void CleanCompatibilityData(); | |
250 | #endif | |
97494971 VS |
251 | |
252 | protected: | |
253 | // Imports .hhp files (MS HTML Help Workshop) | |
254 | bool LoadMSProject(wxHtmlBookRecord *book, wxFileSystem& fsys, | |
255 | const wxString& indexfile, const wxString& contentsfile); | |
256 | // Reads binary book | |
257 | bool LoadCachedBook(wxHtmlBookRecord *book, wxInputStream *f); | |
258 | // Writes binary book | |
259 | bool SaveCachedBook(wxHtmlBookRecord *book, wxOutputStream *f); | |
22f3361e VZ |
260 | |
261 | DECLARE_NO_COPY_CLASS(wxHtmlHelpData) | |
f35822af | 262 | }; |
8ec2b484 HH |
263 | |
264 | #endif | |
265 | ||
266 | #endif |