1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: SWIG definitions of html classes
7 // Created: 25-Nov-1998
9 // Copyright: (c) 1998 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
18 #include <wx/html/htmlwin.h>
19 #include <wx/html/helpctrl.h>
21 #include <wx/fs_zip.h>
22 #include <wx/fs_inet.h>
23 #include <wx/wfstream.h>
26 //---------------------------------------------------------------------------
29 %include my_typemaps.i
43 //---------------------------------------------------------------------------
45 class wxHtmlBookRecord : public wxObject {
47 wxHtmlBookRecord(const wxString& bookfile, const wxString& basepath,
48 const wxString& title, const wxString& start);
50 wxString GetBookFile();
53 wxString GetBasePath();
55 void SetContentsRange(int start, int end);
56 int GetContentsStart();
59 void SetTitle(const wxString& title);
60 void SetBasePath(const wxString& path);
61 void SetStart(const wxString& start);
63 wxString GetFullPath(const wxString &page) const;
66 //---------------------------------------------------------------------------
68 struct wxHtmlContentsItem
74 wxHtmlBookRecord *m_Book;
77 //---------------------------------------------------------------------------
79 class wxHtmlSearchStatus
82 //wxHtmlSearchStatus(wxHtmlHelpData* base, const wxString& keyword,
83 // const wxString& book = wxEmptyString);
88 const wxString& GetName();
89 wxHtmlContentsItem* GetContentsItem();
92 //---------------------------------------------------------------------------
94 class wxHtmlHelpData {
99 void SetTempDir(const wxString& path);
100 bool AddBook(const wxString& book);
101 // bool AddBookParam(const wxString& title, const wxString& contfile,
102 // const wxString& indexfile=wxEmptyString,
103 // const wxString& deftopic=wxEmptyString,
104 // const wxString& path=wxEmptyString);
106 wxString FindPageByName(const wxString& page);
107 wxString FindPageById(int id);
109 // TODO: this one needs fixed...
110 const wxHtmlBookRecArray& GetBookRecArray();
112 wxHtmlContentsItem* GetContents();
113 int GetContentsCnt();
114 wxHtmlContentsItem* GetIndex();
118 //---------------------------------------------------------------------------
120 class wxHtmlHelpFrame : public wxFrame {
122 wxHtmlHelpFrame(wxWindow* parent, int wxWindowID,
123 const wxString& title = wxEmptyString,
124 int style = wxHF_DEFAULTSTYLE, wxHtmlHelpData* data = NULL);
126 %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
128 wxHtmlHelpData* GetData();
129 void SetTitleFormat(const wxString& format);
130 void Display(const wxString& x);
131 %name(DisplayID) void Display(int id);
132 void DisplayContents();
134 bool KeywordSearch(const wxString& keyword);
135 void UseConfig(wxConfigBase *config, const wxString& rootpath = wxEmptyString);
136 void ReadCustomization(wxConfigBase *cfg, wxString path = wxEmptyString);
137 void WriteCustomization(wxConfigBase *cfg, wxString path = wxEmptyString);
141 //---------------------------------------------------------------------------
157 class wxHtmlHelpController : public wxEvtHandler {
159 wxHtmlHelpController(int style = wxHF_DEFAULTSTYLE);
160 ~wxHtmlHelpController();
162 %pragma(python) addtomethod = "__init__:self._setOORInfo(self)"
164 void SetTitleFormat(const wxString& format);
165 void SetTempDir(const wxString& path);
166 bool AddBook(const wxString& book, int show_wait_msg = FALSE);
167 void Display(const wxString& x);
168 %name(DisplayID) void Display(int id);
169 void DisplayContents();
171 bool KeywordSearch(const wxString& keyword);
172 void UseConfig(wxConfigBase *config, const wxString& rootpath = wxEmptyString);
173 void ReadCustomization(wxConfigBase *cfg, wxString path = wxEmptyString);
174 void WriteCustomization(wxConfigBase *cfg, wxString path = wxEmptyString);
175 wxHtmlHelpFrame* GetFrame();
178 //---------------------------------------------------------------------------
179 //---------------------------------------------------------------------------