]>
Commit | Line | Data |
---|---|---|
5526e819 | 1 | ///////////////////////////////////////////////////////////////////////////// |
69941f05 | 2 | // Name: winpars.cpp |
5526e819 VS |
3 | // Purpose: wxHtmlParser class (generic parser) |
4 | // Author: Vaclav Slavik | |
69941f05 | 5 | // RCS-ID: $Id$ |
5526e819 VS |
6 | // Copyright: (c) 1999 Vaclav Slavik |
7 | // Licence: wxWindows Licence | |
8 | ///////////////////////////////////////////////////////////////////////////// | |
9 | ||
10 | ||
11 | #ifdef __GNUG__ | |
12 | #pragma implementation | |
13 | #endif | |
14 | ||
3096bd2f | 15 | #include "wx/wxprec.h" |
5526e819 VS |
16 | |
17 | #include "wx/defs.h" | |
f6bcfd97 | 18 | #if wxUSE_HTML && wxUSE_STREAMS |
5526e819 VS |
19 | |
20 | #ifdef __BORDLANDC__ | |
21 | #pragma hdrstop | |
22 | #endif | |
23 | ||
24 | #ifndef WXPRECOMP | |
04dbb646 VZ |
25 | #include "wx/intl.h" |
26 | #include "wx/dc.h" | |
5526e819 VS |
27 | #endif |
28 | ||
69941f05 VS |
29 | #include "wx/html/htmldefs.h" |
30 | #include "wx/html/winpars.h" | |
31 | #include "wx/html/htmlwin.h" | |
b250d384 | 32 | #include "wx/fontmap.h" |
f3c82859 | 33 | #include "wx/log.h" |
5526e819 VS |
34 | |
35 | ||
36 | //----------------------------------------------------------------------------- | |
37 | // wxHtmlWinParser | |
38 | //----------------------------------------------------------------------------- | |
39 | ||
5526e819 VS |
40 | |
41 | wxList wxHtmlWinParser::m_Modules; | |
42 | ||
43 | wxHtmlWinParser::wxHtmlWinParser(wxWindow *wnd) : wxHtmlParser() | |
44 | { | |
211dfedd VS |
45 | m_tmpStrBuf = NULL; |
46 | m_tmpStrBufSize = 0; | |
5526e819 VS |
47 | m_Window = wnd; |
48 | m_Container = NULL; | |
49 | m_DC = NULL; | |
50 | m_CharHeight = m_CharWidth = 0; | |
51 | m_UseLink = FALSE; | |
b250d384 VS |
52 | m_EncConv = NULL; |
53 | m_InputEnc = m_OutputEnc = wxFONTENCODING_DEFAULT; | |
5526e819 VS |
54 | |
55 | { | |
56 | int i, j, k, l, m; | |
57 | for (i = 0; i < 2; i++) | |
58 | for (j = 0; j < 2; j++) | |
59 | for (k = 0; k < 2; k++) | |
60 | for (l = 0; l < 2; l++) | |
3c8c8da2 | 61 | for (m = 0; m < 7; m++) |
e3c7fd79 | 62 | { |
5526e819 | 63 | m_FontsTable[i][j][k][l][m] = NULL; |
f1ad10f3 | 64 | m_FontsFacesTable[i][j][k][l][m] = wxEmptyString; |
b250d384 | 65 | m_FontsEncTable[i][j][k][l][m] = wxFONTENCODING_DEFAULT; |
f1ad10f3 | 66 | } |
5526e819 | 67 | #ifdef __WXMSW__ |
1bb27b0c | 68 | static int default_sizes[7] = {7, 8, 10, 12, 16, 22, 30}; |
cc638fc6 VS |
69 | #elif defined(__WXMAC__) |
70 | static int default_sizes[7] = {9, 12, 14, 18, 24, 30, 36}; | |
5526e819 | 71 | #else |
1bb27b0c | 72 | static int default_sizes[7] = {10, 12, 14, 16, 19, 24, 32}; |
5526e819 | 73 | #endif |
8eb2940f | 74 | SetFonts("", "", default_sizes); |
5526e819 VS |
75 | } |
76 | ||
77 | // fill in wxHtmlParser's tables: | |
78 | wxNode *node = m_Modules.GetFirst(); | |
3c8c8da2 | 79 | while (node) |
4f9297b0 VS |
80 | { |
81 | wxHtmlTagsModule *mod = (wxHtmlTagsModule*) node->GetData(); | |
82 | mod->FillHandlersTable(this); | |
83 | node = node->GetNext(); | |
5526e819 VS |
84 | } |
85 | } | |
86 | ||
87 | ||
b250d384 VS |
88 | wxHtmlWinParser::~wxHtmlWinParser() |
89 | { | |
90 | int i, j, k, l, m; | |
91 | ||
92 | for (i = 0; i < 2; i++) | |
93 | for (j = 0; j < 2; j++) | |
94 | for (k = 0; k < 2; k++) | |
95 | for (l = 0; l < 2; l++) | |
3c8c8da2 | 96 | for (m = 0; m < 7; m++) |
e3c7fd79 | 97 | { |
3c8c8da2 | 98 | if (m_FontsTable[i][j][k][l][m] != NULL) |
b250d384 VS |
99 | delete m_FontsTable[i][j][k][l][m]; |
100 | } | |
211dfedd VS |
101 | delete m_EncConv; |
102 | delete[] m_tmpStrBuf; | |
b250d384 VS |
103 | } |
104 | ||
5526e819 VS |
105 | |
106 | void wxHtmlWinParser::AddModule(wxHtmlTagsModule *module) | |
107 | { | |
108 | m_Modules.Append(module); | |
109 | } | |
110 | ||
111 | ||
112 | ||
f6bcfd97 BP |
113 | void wxHtmlWinParser::RemoveModule(wxHtmlTagsModule *module) |
114 | { | |
115 | m_Modules.DeleteObject(module); | |
116 | } | |
117 | ||
118 | ||
119 | ||
8eb2940f | 120 | void wxHtmlWinParser::SetFonts(wxString normal_face, wxString fixed_face, const int *sizes) |
5526e819 | 121 | { |
c9f56e70 VS |
122 | int i, j, k, l, m; |
123 | ||
124 | for (i = 0; i < 7; i++) m_FontsSizes[i] = sizes[i]; | |
5526e819 VS |
125 | m_FontFaceFixed = fixed_face; |
126 | m_FontFaceNormal = normal_face; | |
3c8c8da2 | 127 | |
b250d384 | 128 | SetInputEncoding(m_InputEnc); |
c9f56e70 VS |
129 | |
130 | for (i = 0; i < 2; i++) | |
131 | for (j = 0; j < 2; j++) | |
132 | for (k = 0; k < 2; k++) | |
133 | for (l = 0; l < 2; l++) | |
134 | for (m = 0; m < 7; m++) { | |
3c8c8da2 | 135 | if (m_FontsTable[i][j][k][l][m] != NULL) |
e3c7fd79 | 136 | { |
c9f56e70 VS |
137 | delete m_FontsTable[i][j][k][l][m]; |
138 | m_FontsTable[i][j][k][l][m] = NULL; | |
139 | } | |
140 | } | |
5526e819 VS |
141 | } |
142 | ||
143 | ||
144 | ||
145 | void wxHtmlWinParser::InitParser(const wxString& source) | |
146 | { | |
147 | wxHtmlParser::InitParser(source); | |
0e8c8233 | 148 | wxASSERT_MSG(m_DC != NULL, _T("no DC assigned to wxHtmlWinParser!!")); |
5526e819 VS |
149 | |
150 | m_FontBold = m_FontItalic = m_FontUnderlined = m_FontFixed = FALSE; | |
f2c2fa4d | 151 | m_FontSize = 3; //default one |
5526e819 | 152 | CreateCurrentFont(); // we're selecting default font into |
4f9297b0 | 153 | m_DC->GetTextExtent("H", &m_CharWidth, &m_CharHeight); |
5526e819 | 154 | /* NOTE : we're not using GetCharWidth/Height() because |
0e8c8233 | 155 | of differences under X and win |
5526e819 VS |
156 | */ |
157 | ||
f2c2fa4d VS |
158 | m_UseLink = FALSE; |
159 | m_Link = wxHtmlLinkInfo("", ""); | |
5526e819 VS |
160 | m_LinkColor.Set(0, 0, 0xFF); |
161 | m_ActualColor.Set(0, 0, 0); | |
efba2b89 | 162 | m_Align = wxHTML_ALIGN_LEFT; |
5526e819 VS |
163 | m_tmpLastWasSpace = FALSE; |
164 | ||
165 | OpenContainer(); | |
166 | ||
167 | OpenContainer(); | |
4f9297b0 VS |
168 | m_Container->InsertCell(new wxHtmlColourCell(m_ActualColor)); |
169 | m_Container->InsertCell(new wxHtmlFontCell(CreateCurrentFont())); | |
5526e819 VS |
170 | } |
171 | ||
172 | ||
173 | ||
174 | void wxHtmlWinParser::DoneParser() | |
175 | { | |
176 | m_Container = NULL; | |
b250d384 | 177 | SetInputEncoding(wxFONTENCODING_DEFAULT); // for next call |
5526e819 VS |
178 | wxHtmlParser::DoneParser(); |
179 | } | |
180 | ||
181 | ||
182 | ||
183 | wxObject* wxHtmlWinParser::GetProduct() | |
184 | { | |
185 | wxHtmlContainerCell *top; | |
186 | ||
187 | CloseContainer(); | |
188 | OpenContainer(); | |
67cfebc2 | 189 | |
5526e819 | 190 | top = m_Container; |
4f9297b0 | 191 | while (top->GetParent()) top = top->GetParent(); |
5526e819 VS |
192 | return top; |
193 | } | |
194 | ||
195 | ||
211dfedd | 196 | void wxHtmlWinParser::AddText(const wxChar* txt) |
5526e819 VS |
197 | { |
198 | wxHtmlCell *c; | |
e3c7fd79 VZ |
199 | size_t i = 0, |
200 | x, | |
201 | lng = wxStrlen(txt); | |
211dfedd | 202 | register wxChar d; |
5526e819 | 203 | int templen = 0; |
211dfedd VS |
204 | |
205 | if (lng+1 > m_tmpStrBufSize) | |
206 | { | |
207 | delete[] m_tmpStrBuf; | |
208 | m_tmpStrBuf = new wxChar[lng+1]; | |
209 | m_tmpStrBufSize = lng+1; | |
210 | } | |
211 | wxChar *temp = m_tmpStrBuf; | |
3c8c8da2 VZ |
212 | |
213 | if (m_tmpLastWasSpace) | |
4f9297b0 | 214 | { |
3c8c8da2 VZ |
215 | while ((i < lng) && |
216 | ((txt[i] == wxT('\n')) || (txt[i] == wxT('\r')) || (txt[i] == wxT(' ')) || | |
211dfedd | 217 | (txt[i] == wxT('\t')))) i++; |
5526e819 VS |
218 | } |
219 | ||
3c8c8da2 | 220 | while (i < lng) |
4f9297b0 | 221 | { |
5526e819 VS |
222 | x = 0; |
223 | d = temp[templen++] = txt[i]; | |
3c8c8da2 | 224 | if ((d == wxT('\n')) || (d == wxT('\r')) || (d == wxT(' ')) || (d == wxT('\t'))) |
e3c7fd79 | 225 | { |
5526e819 | 226 | i++, x++; |
3c8c8da2 | 227 | while ((i < lng) && ((txt[i] == wxT('\n')) || (txt[i] == wxT('\r')) || |
211dfedd | 228 | (txt[i] == wxT(' ')) || (txt[i] == wxT('\t')))) i++, x++; |
5526e819 VS |
229 | } |
230 | else i++; | |
231 | ||
3c8c8da2 | 232 | if (x) |
e3c7fd79 | 233 | { |
211dfedd | 234 | temp[templen-1] = wxT(' '); |
5526e819 VS |
235 | temp[templen] = 0; |
236 | templen = 0; | |
3c8c8da2 | 237 | if (m_EncConv) |
daa616fc VS |
238 | m_EncConv->Convert(temp); |
239 | c = new wxHtmlWordCell(GetEntitiesParser()->Parse(temp), *(GetDC())); | |
3c8c8da2 | 240 | if (m_UseLink) |
daa616fc | 241 | c->SetLink(m_Link); |
4f9297b0 | 242 | m_Container->InsertCell(c); |
5526e819 VS |
243 | m_tmpLastWasSpace = TRUE; |
244 | } | |
245 | } | |
3c8c8da2 | 246 | if (templen) |
4f9297b0 | 247 | { |
5526e819 | 248 | temp[templen] = 0; |
3c8c8da2 | 249 | if (m_EncConv) |
daa616fc VS |
250 | m_EncConv->Convert(temp); |
251 | c = new wxHtmlWordCell(GetEntitiesParser()->Parse(temp), *(GetDC())); | |
211dfedd | 252 | if (m_UseLink) |
daa616fc | 253 | c->SetLink(m_Link); |
4f9297b0 | 254 | m_Container->InsertCell(c); |
5526e819 VS |
255 | m_tmpLastWasSpace = FALSE; |
256 | } | |
257 | } | |
258 | ||
259 | ||
260 | ||
261 | wxHtmlContainerCell* wxHtmlWinParser::OpenContainer() | |
262 | { | |
263 | m_Container = new wxHtmlContainerCell(m_Container); | |
4f9297b0 | 264 | m_Container->SetAlignHor(m_Align); |
5526e819 VS |
265 | m_tmpLastWasSpace = TRUE; |
266 | /* to avoid space being first character in paragraph */ | |
267 | return m_Container; | |
268 | } | |
269 | ||
270 | ||
271 | ||
272 | wxHtmlContainerCell* wxHtmlWinParser::SetContainer(wxHtmlContainerCell *c) | |
273 | { | |
274 | m_tmpLastWasSpace = TRUE; | |
275 | /* to avoid space being first character in paragraph */ | |
276 | return m_Container = c; | |
277 | } | |
278 | ||
279 | ||
280 | ||
281 | wxHtmlContainerCell* wxHtmlWinParser::CloseContainer() | |
282 | { | |
4f9297b0 | 283 | m_Container = m_Container->GetParent(); |
5526e819 VS |
284 | return m_Container; |
285 | } | |
286 | ||
287 | ||
f2c2fa4d VS |
288 | void wxHtmlWinParser::SetFontSize(int s) |
289 | { | |
290 | if (s < 1) s = 1; | |
291 | else if (s > 7) s = 7; | |
292 | m_FontSize = s; | |
293 | } | |
294 | ||
295 | ||
296 | ||
5526e819 VS |
297 | wxFont* wxHtmlWinParser::CreateCurrentFont() |
298 | { | |
299 | int fb = GetFontBold(), | |
300 | fi = GetFontItalic(), | |
301 | fu = GetFontUnderlined(), | |
302 | ff = GetFontFixed(), | |
f2c2fa4d | 303 | fs = GetFontSize() - 1 /*remap from <1;7> to <0;6>*/ ; |
5526e819 | 304 | |
f1ad10f3 VS |
305 | wxString face = ff ? m_FontFaceFixed : m_FontFaceNormal; |
306 | wxString *faceptr = &(m_FontsFacesTable[fb][fi][fu][ff][fs]); | |
307 | wxFont **fontptr = &(m_FontsTable[fb][fi][fu][ff][fs]); | |
b250d384 | 308 | wxFontEncoding *encptr = &(m_FontsEncTable[fb][fi][fu][ff][fs]); |
f1ad10f3 | 309 | |
3c8c8da2 | 310 | if (*fontptr != NULL && (*faceptr != face || *encptr != m_OutputEnc)) |
4f9297b0 | 311 | { |
f1ad10f3 VS |
312 | delete *fontptr; |
313 | *fontptr = NULL; | |
314 | } | |
315 | ||
3c8c8da2 | 316 | if (*fontptr == NULL) |
4f9297b0 | 317 | { |
f1ad10f3 | 318 | *faceptr = face; |
b250d384 | 319 | *encptr = m_OutputEnc; |
f1ad10f3 | 320 | *fontptr = new wxFont( |
7a5e6267 | 321 | (int) (m_FontsSizes[fs] * m_PixelScale), |
f1ad10f3 VS |
322 | ff ? wxMODERN : wxSWISS, |
323 | fi ? wxITALIC : wxNORMAL, | |
324 | fb ? wxBOLD : wxNORMAL, | |
b250d384 VS |
325 | fu ? TRUE : FALSE, face, |
326 | m_OutputEnc); | |
5526e819 | 327 | } |
4f9297b0 | 328 | m_DC->SetFont(**fontptr); |
f1ad10f3 | 329 | return (*fontptr); |
5526e819 VS |
330 | } |
331 | ||
332 | ||
333 | ||
f2c2fa4d VS |
334 | void wxHtmlWinParser::SetLink(const wxHtmlLinkInfo& link) |
335 | { | |
3c8c8da2 | 336 | m_Link = link; |
f2c2fa4d VS |
337 | m_UseLink = (link.GetHref() != wxEmptyString); |
338 | } | |
339 | ||
340 | ||
3c8c8da2 | 341 | void wxHtmlWinParser::SetFontFace(const wxString& face) |
b250d384 | 342 | { |
3c8c8da2 | 343 | if (GetFontFixed()) m_FontFaceFixed = face; |
b250d384 VS |
344 | else m_FontFaceNormal = face; |
345 | ||
346 | if (m_InputEnc != wxFONTENCODING_DEFAULT) | |
347 | SetInputEncoding(m_InputEnc); | |
348 | } | |
349 | ||
350 | ||
351 | ||
352 | void wxHtmlWinParser::SetInputEncoding(wxFontEncoding enc) | |
353 | { | |
354 | m_InputEnc = m_OutputEnc = wxFONTENCODING_DEFAULT; | |
3c8c8da2 | 355 | if (m_EncConv) |
daa616fc | 356 | { |
3c8c8da2 | 357 | delete m_EncConv; |
daa616fc VS |
358 | m_EncConv = NULL; |
359 | } | |
b250d384 VS |
360 | |
361 | if (enc == wxFONTENCODING_DEFAULT) return; | |
362 | ||
363 | wxFontEncoding altfix, altnorm; | |
364 | bool availfix, availnorm; | |
3c8c8da2 VZ |
365 | |
366 | // exact match? | |
4f9297b0 VS |
367 | availnorm = wxTheFontMapper->IsEncodingAvailable(enc, m_FontFaceNormal); |
368 | availfix = wxTheFontMapper->IsEncodingAvailable(enc, m_FontFaceFixed); | |
3c8c8da2 | 369 | if (availnorm && availfix) |
b250d384 | 370 | m_OutputEnc = enc; |
3c8c8da2 | 371 | |
b250d384 | 372 | // alternatives? |
4f9297b0 VS |
373 | else if (wxTheFontMapper->GetAltForEncoding(enc, &altnorm, m_FontFaceNormal, FALSE) && |
374 | wxTheFontMapper->GetAltForEncoding(enc, &altfix, m_FontFaceFixed, FALSE) && | |
b250d384 VS |
375 | altnorm == altfix) |
376 | m_OutputEnc = altnorm; | |
3c8c8da2 | 377 | |
b250d384 VS |
378 | // at least normal face? |
379 | else if (availnorm) | |
380 | m_OutputEnc = enc; | |
4f9297b0 | 381 | else if (wxTheFontMapper->GetAltForEncoding(enc, &altnorm, m_FontFaceNormal, FALSE)) |
b250d384 | 382 | m_OutputEnc = altnorm; |
3c8c8da2 | 383 | |
b250d384 VS |
384 | // okay, let convert to ISO_8859-1, available always |
385 | else | |
386 | m_OutputEnc = wxFONTENCODING_DEFAULT; | |
3c8c8da2 | 387 | |
b250d384 | 388 | m_InputEnc = enc; |
daa616fc VS |
389 | if (m_OutputEnc == wxFONTENCODING_DEFAULT) |
390 | GetEntitiesParser()->SetEncoding(wxFONTENCODING_SYSTEM); | |
391 | else | |
392 | GetEntitiesParser()->SetEncoding(m_OutputEnc); | |
3c8c8da2 | 393 | |
b250d384 VS |
394 | if (m_InputEnc == m_OutputEnc) return; |
395 | ||
396 | m_EncConv = new wxEncodingConverter(); | |
3c8c8da2 | 397 | if (!m_EncConv->Init(m_InputEnc, |
b250d384 VS |
398 | (m_OutputEnc == wxFONTENCODING_DEFAULT) ? |
399 | wxFONTENCODING_ISO8859_1 : m_OutputEnc, | |
3c8c8da2 | 400 | wxCONVERT_SUBSTITUTE)) |
b250d384 | 401 | { // total failture :-( |
3c8c8da2 VZ |
402 | wxLogError(_("Failed to display HTML document in %s encoding"), |
403 | wxFontMapper::GetEncodingName(enc).c_str()); | |
b250d384 VS |
404 | m_InputEnc = m_OutputEnc = wxFONTENCODING_DEFAULT; |
405 | delete m_EncConv; | |
406 | m_EncConv = NULL; | |
407 | } | |
408 | } | |
409 | ||
410 | ||
411 | ||
f2c2fa4d | 412 | |
5526e819 VS |
413 | |
414 | //----------------------------------------------------------------------------- | |
415 | // wxHtmlWinTagHandler | |
416 | //----------------------------------------------------------------------------- | |
417 | ||
418 | IMPLEMENT_ABSTRACT_CLASS(wxHtmlWinTagHandler, wxHtmlTagHandler) | |
419 | ||
420 | ||
421 | ||
422 | //----------------------------------------------------------------------------- | |
423 | // wxHtmlTagsModule | |
424 | //----------------------------------------------------------------------------- | |
425 | ||
426 | ||
427 | IMPLEMENT_DYNAMIC_CLASS(wxHtmlTagsModule, wxModule) | |
428 | ||
429 | ||
430 | bool wxHtmlTagsModule::OnInit() | |
431 | { | |
432 | wxHtmlWinParser::AddModule(this); | |
433 | return TRUE; | |
434 | } | |
435 | ||
436 | ||
437 | ||
438 | void wxHtmlTagsModule::OnExit() | |
439 | { | |
f6bcfd97 | 440 | wxHtmlWinParser::RemoveModule(this); |
5526e819 | 441 | } |
223d09f6 | 442 | #endif |
5526e819 | 443 |