1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxHtml module for basic paragraphs/layout handling
4 // Author: Vaclav Slavik
6 // Copyright: (c) 1999 Vaclav Slavik
7 // Licence: wxWindows Licence
8 /////////////////////////////////////////////////////////////////////////////
10 #pragma implementation
13 #include "wx/wxprec.h"
17 #if wxUSE_HTML && wxUSE_STREAMS
26 #include "wx/html/forcelnk.h"
27 #include "wx/html/m_templ.h"
29 #include "wx/html/htmlwin.h"
31 FORCE_LINK_ME(m_layout
)
34 #include <stdlib.h> // bsearch()
36 //-----------------------------------------------------------------------------
37 // wxHtmlPageBreakCell
38 //-----------------------------------------------------------------------------
40 // Since html isn't a page-layout language, it doesn't support page
41 // page breaks directly--that requires CSS2 support. But a page-break
42 // facility is handy, and has been requested more than once on the
43 // mailing lists. This wxHtml tag handler implements just enough of
44 // CSS2 to support a page break by recognizing only
45 // <div style="page-break-before:always">
47 // wxHtml maintains page breaks in wxHtmlPrintout::m_PageBreaks. The
48 // tag handler below adds appropriate offsets to that array member.
49 // wxHtmlDCRenderer::Render() accesses that array and makes a new page
50 // begin after each page-break tag.
52 // The page-break handler does all its work in AdjustPagebreak(). For
53 // all tag handlers, that function adjusts the page-break position.
54 // For other tags, it determines whether the html element can fit on
55 // the remainder of the page; if it cannot fit, but must not be split,
56 // then the function moves the page break provided in the argument up,
57 // and returns 'true' to inform the caller that the argument was
60 // Due to its special purpose, the page-break facility differs from
61 // other tags. It takes up no space, but it behaves as though there is
62 // never enough room to fit it on the remainder of the page--it always
63 // forces a page break. Therefore, unlike other elements that trigger
64 // a page break, it would never 'fit' on the following page either.
65 // Therefore it's necessary to compare each pagebreak candidate to the
66 // array wxHtmlPrintout::m_PageBreaks of pagebreaks already set, and
67 // set a new one only if it's not in that array.
69 class WXDLLEXPORT wxHtmlPageBreakCell
: public wxHtmlCell
72 wxHtmlPageBreakCell() {}
74 bool AdjustPagebreak(int* pagebreak
, int* known_pagebreaks
= NULL
, int number_of_pages
= 0) const;
77 DECLARE_NO_COPY_CLASS(wxHtmlPageBreakCell
)
80 // Comparison routine for bsearch into an int* array of pagebreaks.
81 static int integer_compare(void const* i0
, void const* i1
)
83 return *(int*)i0
- *(int*)i1
;
86 bool wxHtmlPageBreakCell::AdjustPagebreak(int* pagebreak
, int* known_pagebreaks
, int number_of_pages
) const
88 // When we are counting pages, 'known_pagebreaks' is non-NULL.
89 // That's the only time we change 'pagebreak'. Otherwise, pages
90 // were already counted, 'known_pagebreaks' is NULL, and we don't
91 // do anything except return FALSE.
93 // We also simply return FALSE if the 'pagebreak' argument is
94 // less than (vertically above) or the same as the current
95 // vertical position. Otherwise we'd be setting a pagebreak above
96 // the current cell, which is incorrect, or duplicating a
97 // pagebreak that has already been set.
98 if(NULL
== known_pagebreaks
|| *pagebreak
<= m_PosY
)
103 // m_PosY is only the vertical offset from the parent. The pagebreak
104 // required here is the total page offset, so m_PosY must be added
105 // to the parent's offset and height.
106 int total_height
= m_PosY
+ GetParent()->GetPosY() + GetParent()->GetHeight();
108 // Search the array of pagebreaks to see whether we've already set
109 // a pagebreak here. The standard bsearch() function is appropriate
110 // because the array of pagebreaks through known_pagebreaks[number_of_pages]
111 // is known to be sorted in strictly increasing order. '1 + number_of_pages'
112 // is used as a bsearch() argument because the array contains a leading
113 // zero plus one element for each page.
114 int* where
= (int*) bsearch(&total_height
, known_pagebreaks
,
115 1 + number_of_pages
, sizeof(int),
117 // Add a pagebreak only if there isn't one already set here.
129 TAG_HANDLER_BEGIN(P
, "P")
131 TAG_HANDLER_PROC(tag
)
133 if (m_WParser
->GetContainer()->GetFirstCell() != NULL
)
135 m_WParser
->CloseContainer();
136 m_WParser
->OpenContainer();
138 m_WParser
->GetContainer()->SetIndent(m_WParser
->GetCharHeight(), wxHTML_INDENT_TOP
);
139 m_WParser
->GetContainer()->SetAlign(tag
);
147 TAG_HANDLER_BEGIN(BR
, "BR")
149 TAG_HANDLER_PROC(tag
)
151 int al
= m_WParser
->GetContainer()->GetAlignHor();
152 wxHtmlContainerCell
*c
;
154 m_WParser
->CloseContainer();
155 c
= m_WParser
->OpenContainer();
158 c
->SetMinHeight(m_WParser
->GetCharHeight());
166 TAG_HANDLER_BEGIN(CENTER
, "CENTER")
168 TAG_HANDLER_PROC(tag
)
170 int old
= m_WParser
->GetAlign();
171 wxHtmlContainerCell
*c
= m_WParser
->GetContainer();
173 m_WParser
->SetAlign(wxHTML_ALIGN_CENTER
);
174 if (c
->GetFirstCell() != NULL
)
176 m_WParser
->CloseContainer();
177 m_WParser
->OpenContainer();
180 c
->SetAlignHor(wxHTML_ALIGN_CENTER
);
186 m_WParser
->SetAlign(old
);
187 if (c
->GetFirstCell() != NULL
)
189 m_WParser
->CloseContainer();
190 m_WParser
->OpenContainer();
200 TAG_HANDLER_END(CENTER
)
204 TAG_HANDLER_BEGIN(DIV
, "DIV")
206 TAG_HANDLER_PROC(tag
)
208 if(tag
.HasParam(wxT("STYLE")))
210 if(tag
.GetParam(wxT("STYLE")).IsSameAs(wxT("PAGE-BREAK-BEFORE:ALWAYS"), FALSE
))
212 m_WParser
->CloseContainer();
213 m_WParser
->OpenContainer()->InsertCell(new wxHtmlPageBreakCell
);
214 m_WParser
->CloseContainer();
215 m_WParser
->OpenContainer();
220 // Treat other STYLE parameters here when they're supported.
224 else if(tag
.HasParam(wxT("ALIGN")))
226 int old
= m_WParser
->GetAlign();
227 wxHtmlContainerCell
*c
= m_WParser
->GetContainer();
228 if (c
->GetFirstCell() != NULL
)
230 m_WParser
->CloseContainer();
231 m_WParser
->OpenContainer();
232 c
= m_WParser
->GetContainer();
234 m_WParser
->SetAlign(c
->GetAlignHor());
239 m_WParser
->SetAlign(c
->GetAlignHor());
244 m_WParser
->SetAlign(old
);
245 if (c
->GetFirstCell() != NULL
)
247 m_WParser
->CloseContainer();
248 m_WParser
->OpenContainer();
266 TAG_HANDLER_BEGIN(TITLE
, "TITLE")
268 TAG_HANDLER_PROC(tag
)
270 if (m_WParser
->GetWindow())
272 wxHtmlWindow
*wfr
= (wxHtmlWindow
*)(m_WParser
->GetWindow());
275 const wxString
& src
= *m_WParser
->GetSource();
276 wfr
->OnSetTitle(src
.Mid(tag
.GetBeginPos(),
277 tag
.GetEndPos1()-tag
.GetBeginPos()));
283 TAG_HANDLER_END(TITLE
)
288 TAG_HANDLER_BEGIN(BODY
, "BODY")
290 TAG_HANDLER_PROC(tag
)
294 if (tag
.GetParamAsColour(wxT("TEXT"), &clr
))
296 m_WParser
->SetActualColor(clr
);
297 m_WParser
->GetContainer()->InsertCell(new wxHtmlColourCell(clr
));
300 if (tag
.GetParamAsColour(wxT("LINK"), &clr
))
301 m_WParser
->SetLinkColor(clr
);
303 if (tag
.GetParamAsColour(wxT("BGCOLOR"), &clr
))
305 m_WParser
->GetContainer()->InsertCell(
306 new wxHtmlColourCell(clr
, wxHTML_CLR_BACKGROUND
));
307 if (m_WParser
->GetWindow() != NULL
)
308 m_WParser
->GetWindow()->SetBackgroundColour(clr
);
313 TAG_HANDLER_END(BODY
)
317 TAG_HANDLER_BEGIN(BLOCKQUOTE
, "BLOCKQUOTE")
319 TAG_HANDLER_PROC(tag
)
321 wxHtmlContainerCell
*c
;
323 m_WParser
->CloseContainer();
324 c
= m_WParser
->OpenContainer();
326 if (c
->GetAlignHor() == wxHTML_ALIGN_RIGHT
)
327 c
->SetIndent(5 * m_WParser
->GetCharWidth(), wxHTML_INDENT_RIGHT
);
329 c
->SetIndent(5 * m_WParser
->GetCharWidth(), wxHTML_INDENT_LEFT
);
331 c
->SetIndent(m_WParser
->GetCharHeight(), wxHTML_INDENT_TOP
);
332 m_WParser
->OpenContainer();
334 c
= m_WParser
->CloseContainer();
335 c
->SetIndent(m_WParser
->GetCharHeight(), wxHTML_INDENT_BOTTOM
);
336 m_WParser
->CloseContainer();
337 m_WParser
->OpenContainer();
341 TAG_HANDLER_END(BLOCKQUOTE
)
345 // Tag handler for tags that we have to ignore, otherwise non-text data
346 // would show up as text:
347 TAG_HANDLER_BEGIN(DoNothing
, "SCRIPT")
348 TAG_HANDLER_PROC(tag
)
352 TAG_HANDLER_END(DoNothing
)
356 TAGS_MODULE_BEGIN(Layout
)
360 TAGS_MODULE_ADD(CENTER
)
362 TAGS_MODULE_ADD(TITLE
)
363 TAGS_MODULE_ADD(BODY
)
364 TAGS_MODULE_ADD(BLOCKQUOTE
)
365 TAGS_MODULE_ADD(DoNothing
)
367 TAGS_MODULE_END(Layout
)