]>
git.saurik.com Git - wxWidgets.git/blob - src/generic/helphtml.cpp
21c1c6f4d432939328a9e2f9ffc304a72accffdf
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: base class for html help systems
4 // Author: Karsten Ballueder
8 // Copyright: (c) Karsten Ballueder
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 # pragma implementation "helphtml.h"
16 #include "wx/wxprec.h"
26 #include "wx/string.h"
30 #include "wx/msgdlg.h"
31 #include "wx/choicdlg.h"
34 #include "wx/helpbase.h"
35 #include "wx/generic/helpext.h"
43 #if !defined(__WINDOWS__) && !defined(__OS2__)
47 // ----------------------------------------------------------------------------
49 // ----------------------------------------------------------------------------
51 /// Name for map file.
52 #define WXEXTHELP_MAPFILE _T("wxhelp.map")
55 #define WXEXTHELP_SEPARATOR _T('\\')
57 #define WXEXTHELP_SEPARATOR _T('/')
59 /// Maximum line length in map file.
60 #define WXEXTHELP_BUFLEN 512
61 /// Character introducing comments/documentation field in map file.
62 #define WXEXTHELP_COMMENTCHAR ';'
66 class wxExtHelpMapEntry
: public wxObject
72 wxExtHelpMapEntry(int iid
, wxString
const &iurl
, wxString
const &idoc
)
73 { id
= iid
; url
= iurl
; doc
= idoc
; }
76 IMPLEMENT_ABSTRACT_CLASS(wxHTMLHelpControllerBase
, wxHelpControllerBase
)
79 This class implements help via an external browser.
80 It requires the name of a directory containing the documentation
81 and a file mapping numerical Section numbers to relative URLS.
84 wxHTMLHelpControllerBase::wxHTMLHelpControllerBase()
86 m_MapList
= (wxList
*) NULL
;
91 wxHTMLHelpControllerBase::DeleteList()
95 wxNode
*node
= m_MapList
->First();
98 delete (wxExtHelpMapEntry
*)node
->Data();
100 node
= m_MapList
->First();
103 m_MapList
= (wxList
*) NULL
;
107 wxHTMLHelpControllerBase::~wxHTMLHelpControllerBase()
112 /** This must be called to tell the controller where to find the
114 @param file - NOT a filename, but a directory name.
115 @return true on success
118 wxHTMLHelpControllerBase::Initialize(const wxString
& file
)
120 return LoadFile(file
);
124 // ifile is the name of the base help directory
126 wxHTMLHelpControllerBase::LoadFile(const wxString
& ifile
)
128 wxString mapFile
, file
, url
, doc
;
130 char buffer
[WXEXTHELP_BUFLEN
];
132 wxBusyCursor b
; // display a busy cursor
134 if(! ifile
.IsEmpty())
137 if(! wxIsAbsolutePath(file
))
139 wxChar
* f
= wxGetWorkingDirectory();
141 delete[] f
; // wxGetWorkingDirectory returns new memory
142 file
<< WXEXTHELP_SEPARATOR
<< ifile
;
148 // If a locale is set, look in file/localename, i.e.
149 // If passed "/usr/local/myapp/help" and the current wxLocale is
150 // set to be "de", then look in "/usr/local/myapp/help/de/"
151 // first and fall back to "/usr/local/myapp/help" if that
153 if(wxGetLocale() && !wxGetLocale()->GetName().IsEmpty())
156 newfile
<< WXEXTHELP_SEPARATOR
<< wxGetLocale()->GetName();
157 if(wxDirExists(newfile
))
161 newfile
= WXEXTHELP_SEPARATOR
;
162 const wxChar
*cptr
= wxGetLocale()->GetName().c_str();
163 while(*cptr
&& *cptr
!= wxT('_'))
164 newfile
<< *(cptr
++);
165 if(wxDirExists(newfile
))
171 if(! wxDirExists(file
))
174 mapFile
<< file
<< WXEXTHELP_SEPARATOR
<< WXEXTHELP_MAPFILE
;
176 else // try to reload old file
179 if(! wxFileExists(mapFile
))
183 m_MapList
= new wxList
;
186 FILE *input
= wxFopen(mapFile
,wxT("rt"));
191 if(fgets(buffer
,WXEXTHELP_BUFLEN
,input
) && *buffer
!= WXEXTHELP_COMMENTCHAR
)
193 len
= strlen(buffer
);
194 if(buffer
[len
-1] == '\n')
195 buffer
[len
-1] = '\0'; // cut of trailing newline
196 if(sscanf(buffer
,"%d", &id
) != 1)
198 for(i
=0; isdigit(buffer
[i
])||isspace(buffer
[i
])||buffer
[i
]=='-'; i
++)
199 ; // find begin of URL
201 while(buffer
[i
] && ! isspace(buffer
[i
]) && buffer
[i
] !=
202 WXEXTHELP_COMMENTCHAR
)
204 while(buffer
[i
] && buffer
[i
] != WXEXTHELP_COMMENTCHAR
)
208 doc
= (buffer
+ i
+ 1); // skip the comment character
209 m_MapList
->Append(new wxExtHelpMapEntry(id
,url
,doc
));
212 }while(! feof(input
));
215 m_MapFile
= file
; // now it's valid
221 wxHTMLHelpControllerBase::DisplayContents()
227 wxNode
*node
= m_MapList
->First();
228 wxExtHelpMapEntry
*entry
;
231 entry
= (wxExtHelpMapEntry
*)node
->Data();
232 if(entry
->id
== CONTENTS_ID
)
234 contents
= entry
->url
;
242 file
<< m_MapFile
<< WXEXTHELP_SEPARATOR
<< contents
;
243 if(file
.Contains(wxT('#')))
244 file
= file
.BeforeLast(wxT('#'));
245 if(contents
.Length() && wxFileExists(file
))
246 rc
= DisplaySection(CONTENTS_ID
);
248 // if not found, open homemade toc:
249 return rc
? TRUE
: KeywordSearch(wxT(""));
253 wxHTMLHelpControllerBase::DisplaySection(int sectionNo
)
258 wxBusyCursor b
; // display a busy cursor
259 wxNode
*node
= m_MapList
->First();
260 wxExtHelpMapEntry
*entry
;
263 entry
= (wxExtHelpMapEntry
*)node
->Data();
264 if(entry
->id
== sectionNo
)
265 return DisplayHelp(entry
->url
);
271 bool wxHTMLHelpControllerBase::DisplaySection(const wxString
& section
)
273 bool isFilename
= (section
.Find(wxT(".htm")) != -1);
276 return DisplayHelp(section
);
278 return KeywordSearch(section
);
282 wxHTMLHelpControllerBase::DisplayBlock(long blockNo
)
284 return DisplaySection((int)blockNo
);
288 wxHTMLHelpControllerBase::KeywordSearch(const wxString
& k
)
293 wxString
*choices
= new wxString
[m_NumOfEntries
];
294 wxString
*urls
= new wxString
[m_NumOfEntries
];
295 wxString compA
, compB
;
299 bool showAll
= k
.IsEmpty();
300 wxNode
*node
= m_MapList
->First();
301 wxExtHelpMapEntry
*entry
;
304 wxBusyCursor b
; // display a busy cursor
305 compA
= k
; compA
.LowerCase(); // we compare case insensitive
308 entry
= (wxExtHelpMapEntry
*)node
->Data();
309 compB
= entry
->doc
; compB
.LowerCase();
310 if((showAll
|| compB
.Contains(k
)) && ! compB
.IsEmpty())
312 urls
[idx
] = entry
->url
;
314 // choices[idx] = (**i).doc.Contains((**i).doc.Before(WXEXTHELP_COMMENTCHAR));
315 //if(choices[idx].IsEmpty()) // didn't contain the ';'
316 // choices[idx] = (**i).doc;
318 for(j
=0;entry
->doc
.c_str()[j
]
319 && entry
->doc
.c_str()[j
] != WXEXTHELP_COMMENTCHAR
; j
++)
320 choices
[idx
] << entry
->doc
.c_str()[j
];
328 rc
= DisplayHelp(urls
[0]);
331 wxMessageBox(_("No entries found."));
336 idx
= wxGetSingleChoiceIndex(showAll
? _("Help Index") : _("Relevant entries:"),
337 showAll
? _("Help Index") : _("Entries found"),
340 rc
= DisplayHelp(urls
[idx
]);
352 wxHTMLHelpControllerBase::Quit()
358 wxHTMLHelpControllerBase::OnQuit()