#include "wx/string.h"
#include "wx/filesys.h"
#include "wx/dynarray.h"
+#include "wx/font.h"
//--------------------------------------------------------------------------------
// helper classes & structs
{
public:
wxSearchEngine() : wxObject() {m_Keyword = NULL; }
- ~wxSearchEngine() {if (m_Keyword) free(m_Keyword); }
+ ~wxSearchEngine() {if (m_Keyword) delete[] m_Keyword; }
virtual void LookFor(const wxString& keyword, bool case_sensitive, bool whole_words_only);
// Sets the keyword we will be searching for
private:
wxHtmlHelpData* m_Data;
wxSearchEngine m_Engine;
- wxString m_Keyword, m_Name, m_LastPage;
+ wxString m_Keyword, m_Name;
+ wxChar *m_LastPage;
wxHtmlContentsItem* m_ContentsItem;
- bool m_Active; // search is not finished
+ bool m_Active; // search is not finished
int m_CurIndex; // where we are now
int m_MaxIndex; // number of files we search
// For progress bar: 100*curindex/maxindex = % complete
-}
-;
+};
class WXDLLEXPORT wxHtmlHelpData : public wxObject
{
// Adds new book. 'book' is location of .htb file (stands for "html book").
// See documentation for details on its format.
// Returns success.
- bool AddBookParam(const wxString& title, const wxString& contfile,
+ bool AddBookParam(const wxFSFile& bookfile,
+ wxFontEncoding encoding,
+ const wxString& title, const wxString& contfile,
const wxString& indexfile = wxEmptyString,
const wxString& deftopic = wxEmptyString,
const wxString& path = wxEmptyString);
// Reads binary book
bool SaveCachedBook(wxHtmlBookRecord *book, wxOutputStream *f);
// Writes binary book
-}
-;
+};
#endif