X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/fa2f5d3bc9563c2b88282d5487758572d8baffb3..7c4728f63395c3641aa62f2b549ee693eb8be978:/src/html/winpars.cpp diff --git a/src/html/winpars.cpp b/src/html/winpars.cpp index 1d4af2c3fc..aeb866827a 100644 --- a/src/html/winpars.cpp +++ b/src/html/winpars.cpp @@ -54,6 +54,7 @@ wxHtmlWinParser::wxHtmlWinParser(wxHtmlWindow *wnd) : wxHtmlParser() m_InputEnc = wxFONTENCODING_ISO8859_1; m_OutputEnc = wxFONTENCODING_DEFAULT; #endif + m_lastWordCell = NULL; { int i, j, k, l, m; @@ -69,18 +70,12 @@ wxHtmlWinParser::wxHtmlWinParser(wxHtmlWindow *wnd) : wxHtmlParser() m_FontsEncTable[i][j][k][l][m] = wxFONTENCODING_DEFAULT; #endif } -#ifdef __WXMSW__ - static int default_sizes[7] = {7, 8, 10, 12, 16, 22, 30}; -#elif defined(__WXMAC__) - static int default_sizes[7] = {9, 12, 14, 18, 24, 30, 36}; -#else - static int default_sizes[7] = {10, 12, 14, 16, 19, 24, 32}; -#endif - SetFonts(wxT(""), wxT(""), default_sizes); + + SetFonts(wxEmptyString, wxEmptyString, NULL); } // fill in wxHtmlParser's tables: - wxNode *node = m_Modules.GetFirst(); + wxList::compatibility_iterator node = m_Modules.GetFirst(); while (node) { wxHtmlTagsModule *mod = (wxHtmlTagsModule*) node->GetData(); @@ -118,8 +113,22 @@ void wxHtmlWinParser::RemoveModule(wxHtmlTagsModule *module) m_Modules.DeleteObject(module); } -void wxHtmlWinParser::SetFonts(wxString normal_face, wxString fixed_face, const int *sizes) +void wxHtmlWinParser::SetFonts(wxString normal_face, wxString fixed_face, + const int *sizes) { + static int default_sizes[7] = + { + wxHTML_FONT_SIZE_1, + wxHTML_FONT_SIZE_2, + wxHTML_FONT_SIZE_3, + wxHTML_FONT_SIZE_4, + wxHTML_FONT_SIZE_5, + wxHTML_FONT_SIZE_6, + wxHTML_FONT_SIZE_7 + }; + + if (sizes == NULL) sizes = default_sizes; + int i, j, k, l, m; for (i = 0; i < 7; i++) m_FontsSizes[i] = sizes[i]; @@ -162,6 +171,7 @@ void wxHtmlWinParser::InitParser(const wxString& source) m_ActualColor.Set(0, 0, 0); m_Align = wxHTML_ALIGN_LEFT; m_tmpLastWasSpace = FALSE; + m_lastWordCell = NULL; OpenContainer(); OpenContainer(); @@ -198,6 +208,8 @@ wxObject* wxHtmlWinParser::GetProduct() top = m_Container; while (top->GetParent()) top = top->GetParent(); + top->RemoveExtraSpacing(true, true); + return top; } @@ -270,9 +282,6 @@ void wxHtmlWinParser::AddText(const wxChar* txt) { temp[templen-1] = wxT(' '); temp[templen] = 0; -#if 0 // VS - WHY was this here?! - if (templen == 1) continue; -#endif templen = 0; #if !wxUSE_UNICODE if (m_EncConv) @@ -286,6 +295,8 @@ void wxHtmlWinParser::AddText(const wxChar* txt) if (m_UseLink) c->SetLink(m_Link); m_Container->InsertCell(c); + ((wxHtmlWordCell*)c)->SetPreviousWord(m_lastWordCell); + m_lastWordCell = (wxHtmlWordCell*)c; m_tmpLastWasSpace = TRUE; } } @@ -305,6 +316,8 @@ void wxHtmlWinParser::AddText(const wxChar* txt) if (m_UseLink) c->SetLink(m_Link); m_Container->InsertCell(c); + ((wxHtmlWordCell*)c)->SetPreviousWord(m_lastWordCell); + m_lastWordCell = (wxHtmlWordCell*)c; m_tmpLastWasSpace = FALSE; } }