]> git.saurik.com Git - wxWidgets.git/blame - src/html/m_pre.cpp
PCH-less compilation fixes
[wxWidgets.git] / src / html / m_pre.cpp
CommitLineData
5526e819 1/////////////////////////////////////////////////////////////////////////////
93763ad5 2// Name: src/html/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
65571936 7// Licence: wxWindows licence
5526e819
VS
8/////////////////////////////////////////////////////////////////////////////
9
3096bd2f 10#include "wx/wxprec.h"
3364ab79 11
2b5f62a0 12#ifdef __BORLANDC__
93763ad5 13 #pragma hdrstop
3364ab79
RS
14#endif
15
93763ad5
WS
16#if wxUSE_HTML && wxUSE_STREAMS
17
3364ab79 18#ifndef WXPRECOMP
3364ab79
RS
19#endif
20
69941f05
VS
21#include "wx/html/forcelnk.h"
22#include "wx/html/m_templ.h"
5526e819 23
69941f05 24#include "wx/html/htmlcell.h"
3096bd2f 25#include "wx/tokenzr.h"
57f59026 26#include "wx/encconv.h"
5526e819 27
c88293a4 28FORCE_LINK_ME(m_pre)
5526e819 29
83c9da45 30// replaces '\t', ' ' and '\n' with HTML markup:
9d59f1fc 31static wxString LINKAGEMODE HtmlizeWhitespaces(const wxString& str)
83c9da45
VS
32{
33 wxString out;
999836aa 34 size_t len = str.Len();
0ab8db38 35 size_t linepos = 0;
999836aa 36 for (size_t i = 0; i < len; i++)
83c9da45 37 {
c9f78968 38 switch ( str[i].GetValue() )
83c9da45
VS
39 {
40 case wxT('<'):
c0ce1b03 41 while (i < len && str[i] != wxT('>'))
0ab8db38 42 {
83c9da45 43 out << str[i++];
0ab8db38
VS
44 linepos++;
45 }
83c9da45 46 out << wxT('>');
0ab8db38 47 linepos++;
83c9da45
VS
48 break;
49 case wxT(' '):
50 out << wxT("&nbsp;");
0ab8db38 51 linepos++;
83c9da45
VS
52 break;
53 case wxT('\n'):
54 out << wxT("<br>");
0ab8db38 55 linepos = 0;
83c9da45
VS
56 break;
57 case wxT('\t'):
999836aa 58 {
0ab8db38 59 for (size_t j = 8 - linepos % 8; j > 0; j--)
999836aa 60 out << wxT("&nbsp;");
0ab8db38 61 linepos += 8 - linepos % 8;
999836aa 62 }
83c9da45
VS
63 break;
64 default:
65 out << str[i];
0ab8db38 66 linepos++;
83c9da45
VS
67 break;
68 }
69 }
70 return out;
71}
72
73
5526e819
VS
74//-----------------------------------------------------------------------------
75// The list handler:
76//-----------------------------------------------------------------------------
77
78
79TAG_HANDLER_BEGIN(PRE, "PRE")
fc7a2a60 80 TAG_HANDLER_CONSTR(PRE) { }
5526e819
VS
81
82 TAG_HANDLER_PROC(tag)
83 {
84 wxHtmlContainerCell *c;
85
4f9297b0
VS
86 int fixed = m_WParser->GetFontFixed(),
87 italic = m_WParser->GetFontItalic(),
88 underlined = m_WParser->GetFontUnderlined(),
89 bold = m_WParser->GetFontBold(),
90 fsize = m_WParser->GetFontSize();
5526e819 91
1309ba6c 92 c = m_WParser->GetContainer();
d1da8872
WS
93 m_WParser->SetFontUnderlined(false);
94 m_WParser->SetFontBold(false);
95 m_WParser->SetFontItalic(false);
96 m_WParser->SetFontFixed(true);
4f9297b0
VS
97 m_WParser->SetFontSize(3);
98 c->InsertCell(new wxHtmlFontCell(m_WParser->CreateCurrentFont()));
5526e819 99
1309ba6c
VS
100 m_WParser->CloseContainer();
101 c = m_WParser->OpenContainer();
69379916
VS
102 c->SetWidthFloat(tag);
103 c = m_WParser->OpenContainer();
1309ba6c 104 c->SetAlignHor(wxHTML_ALIGN_LEFT);
b3470d76 105 c->SetIndent(m_WParser->GetCharHeight(), wxHTML_INDENT_TOP);
1309ba6c 106
e7feeafa
VS
107 wxString srcMid = m_WParser->GetInnerSource(tag);
108 ParseInnerSource(HtmlizeWhitespaces(srcMid));
04dbb646 109
69379916 110 m_WParser->CloseContainer();
1309ba6c
VS
111 m_WParser->CloseContainer();
112 c = m_WParser->OpenContainer();
5526e819 113
4f9297b0
VS
114 m_WParser->SetFontUnderlined(underlined);
115 m_WParser->SetFontBold(bold);
116 m_WParser->SetFontItalic(italic);
117 m_WParser->SetFontFixed(fixed);
118 m_WParser->SetFontSize(fsize);
119 c->InsertCell(new wxHtmlFontCell(m_WParser->CreateCurrentFont()));
5526e819 120
d1da8872 121 return true;
5526e819
VS
122 }
123
124TAG_HANDLER_END(PRE)
125
126
127
128
129
130TAGS_MODULE_BEGIN(Pre)
131
132 TAGS_MODULE_ADD(PRE)
133
134TAGS_MODULE_END(Pre)
135
136#endif