]>
Commit | Line | Data |
---|---|---|
5526e819 | 1 | ///////////////////////////////////////////////////////////////////////////// |
c88293a4 | 2 | // Name: m_pre.cpp |
5526e819 VS |
3 | // Purpose: wxHtml module for <PRE> ... </PRE> tag (code citation) |
4 | // Author: Vaclav Slavik | |
69941f05 | 5 | // RCS-ID: $Id$ |
5526e819 | 6 | // Copyright: (c) 1999 Vaclav Slavik |
77ffb593 | 7 | // Licence: wxWidgets Licence |
5526e819 VS |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
14f355c2 | 10 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
3364ab79 RS |
11 | #pragma implementation |
12 | #endif | |
13 | ||
3096bd2f | 14 | #include "wx/wxprec.h" |
3364ab79 | 15 | |
314260fb | 16 | #include "wx/defs.h" |
f6bcfd97 | 17 | #if wxUSE_HTML && wxUSE_STREAMS |
2b5f62a0 | 18 | #ifdef __BORLANDC__ |
3364ab79 RS |
19 | #pragma hdrstop |
20 | #endif | |
21 | ||
22 | #ifndef WXPRECOMP | |
3364ab79 RS |
23 | #endif |
24 | ||
69941f05 VS |
25 | #include "wx/html/forcelnk.h" |
26 | #include "wx/html/m_templ.h" | |
5526e819 | 27 | |
69941f05 | 28 | #include "wx/html/htmlcell.h" |
3096bd2f | 29 | #include "wx/tokenzr.h" |
57f59026 | 30 | #include "wx/encconv.h" |
5526e819 | 31 | |
c88293a4 | 32 | FORCE_LINK_ME(m_pre) |
5526e819 | 33 | |
83c9da45 | 34 | // replaces '\t', ' ' and '\n' with HTML markup: |
9d59f1fc | 35 | static wxString LINKAGEMODE HtmlizeWhitespaces(const wxString& str) |
83c9da45 VS |
36 | { |
37 | wxString out; | |
999836aa VZ |
38 | size_t len = str.Len(); |
39 | for (size_t i = 0; i < len; i++) | |
83c9da45 VS |
40 | { |
41 | switch (str[i]) | |
42 | { | |
43 | case wxT('<'): | |
c0ce1b03 | 44 | while (i < len && str[i] != wxT('>')) |
83c9da45 VS |
45 | out << str[i++]; |
46 | out << wxT('>'); | |
47 | break; | |
48 | case wxT(' '): | |
49 | out << wxT(" "); | |
50 | break; | |
51 | case wxT('\n'): | |
52 | out << wxT("<br>"); | |
53 | break; | |
54 | case wxT('\t'): | |
999836aa VZ |
55 | { |
56 | for (size_t j = 8 - i%8; j > 0; j--) | |
57 | out << wxT(" "); | |
58 | } | |
83c9da45 VS |
59 | break; |
60 | default: | |
61 | out << str[i]; | |
62 | break; | |
63 | } | |
64 | } | |
65 | return out; | |
66 | } | |
67 | ||
68 | ||
5526e819 VS |
69 | //----------------------------------------------------------------------------- |
70 | // The list handler: | |
71 | //----------------------------------------------------------------------------- | |
72 | ||
73 | ||
74 | TAG_HANDLER_BEGIN(PRE, "PRE") | |
fc7a2a60 | 75 | TAG_HANDLER_CONSTR(PRE) { } |
5526e819 VS |
76 | |
77 | TAG_HANDLER_PROC(tag) | |
78 | { | |
79 | wxHtmlContainerCell *c; | |
80 | ||
4f9297b0 VS |
81 | int fixed = m_WParser->GetFontFixed(), |
82 | italic = m_WParser->GetFontItalic(), | |
83 | underlined = m_WParser->GetFontUnderlined(), | |
84 | bold = m_WParser->GetFontBold(), | |
85 | fsize = m_WParser->GetFontSize(); | |
5526e819 | 86 | |
1309ba6c | 87 | c = m_WParser->GetContainer(); |
4f9297b0 VS |
88 | m_WParser->SetFontUnderlined(FALSE); |
89 | m_WParser->SetFontBold(FALSE); | |
90 | m_WParser->SetFontItalic(FALSE); | |
91 | m_WParser->SetFontFixed(TRUE); | |
92 | m_WParser->SetFontSize(3); | |
93 | c->InsertCell(new wxHtmlFontCell(m_WParser->CreateCurrentFont())); | |
5526e819 | 94 | |
1309ba6c VS |
95 | m_WParser->CloseContainer(); |
96 | c = m_WParser->OpenContainer(); | |
69379916 VS |
97 | c->SetWidthFloat(tag); |
98 | c = m_WParser->OpenContainer(); | |
1309ba6c | 99 | c->SetAlignHor(wxHTML_ALIGN_LEFT); |
b3470d76 | 100 | c->SetIndent(m_WParser->GetCharHeight(), wxHTML_INDENT_TOP); |
1309ba6c | 101 | |
c0ce1b03 | 102 | wxString srcMid = |
211dfedd VS |
103 | m_WParser->GetSource()->Mid(tag.GetBeginPos(), |
104 | tag.GetEndPos1() - tag.GetBeginPos()); | |
1309ba6c VS |
105 | // It is safe to temporarily change the source being parsed, |
106 | // provided we restore the state back after parsing | |
83c9da45 | 107 | m_Parser->SetSourceAndSaveState(HtmlizeWhitespaces(srcMid)); |
1309ba6c | 108 | m_Parser->DoParsing(); |
211dfedd | 109 | m_Parser->RestoreState(); |
04dbb646 | 110 | |
69379916 | 111 | m_WParser->CloseContainer(); |
1309ba6c VS |
112 | m_WParser->CloseContainer(); |
113 | c = m_WParser->OpenContainer(); | |
5526e819 | 114 | |
4f9297b0 VS |
115 | m_WParser->SetFontUnderlined(underlined); |
116 | m_WParser->SetFontBold(bold); | |
117 | m_WParser->SetFontItalic(italic); | |
118 | m_WParser->SetFontFixed(fixed); | |
119 | m_WParser->SetFontSize(fsize); | |
120 | c->InsertCell(new wxHtmlFontCell(m_WParser->CreateCurrentFont())); | |
5526e819 | 121 | |
5526e819 VS |
122 | return TRUE; |
123 | } | |
124 | ||
125 | TAG_HANDLER_END(PRE) | |
126 | ||
127 | ||
128 | ||
129 | ||
130 | ||
131 | TAGS_MODULE_BEGIN(Pre) | |
132 | ||
133 | TAGS_MODULE_ADD(PRE) | |
134 | ||
135 | TAGS_MODULE_END(Pre) | |
136 | ||
137 | #endif |