]>
Commit | Line | Data |
---|---|---|
5526e819 | 1 | ///////////////////////////////////////////////////////////////////////////// |
c88293a4 | 2 | // Name: m_layout.cpp |
5526e819 VS |
3 | // Purpose: wxHtml module for basic paragraphs/layout handling |
4 | // Author: Vaclav Slavik | |
69941f05 | 5 | // RCS-ID: $Id$ |
5526e819 VS |
6 | // Copyright: (c) 1999 Vaclav Slavik |
7 | // Licence: wxWindows Licence | |
8 | ///////////////////////////////////////////////////////////////////////////// | |
3364ab79 RS |
9 | #ifdef __GNUG__ |
10 | #pragma implementation | |
11 | #endif | |
12 | ||
314260fb | 13 | #include "wx/wxprec.h" |
5526e819 | 14 | |
314260fb VS |
15 | |
16 | #include "wx/defs.h" | |
f6bcfd97 | 17 | #if wxUSE_HTML && wxUSE_STREAMS |
3364ab79 RS |
18 | #ifdef __BORDLANDC__ |
19 | #pragma hdrstop | |
20 | #endif | |
21 | ||
22 | #ifndef WXPRECOMP | |
314260fb | 23 | #include "wx/wx.h" |
3364ab79 RS |
24 | #endif |
25 | ||
5526e819 | 26 | |
69941f05 VS |
27 | #include "wx/html/forcelnk.h" |
28 | #include "wx/html/m_templ.h" | |
5526e819 | 29 | |
69941f05 | 30 | #include "wx/html/htmlwin.h" |
5526e819 | 31 | |
c88293a4 | 32 | FORCE_LINK_ME(m_layout) |
5526e819 VS |
33 | |
34 | ||
35 | TAG_HANDLER_BEGIN(P, "P") | |
36 | ||
37 | TAG_HANDLER_PROC(tag) | |
38 | { | |
33ac7e6f | 39 | if (m_WParser->GetContainer()->GetFirstCell() != NULL) |
4f9297b0 VS |
40 | { |
41 | m_WParser->CloseContainer(); | |
42 | m_WParser->OpenContainer(); | |
8c651ab7 | 43 | } |
4f9297b0 VS |
44 | m_WParser->GetContainer()->SetIndent(m_WParser->GetCharHeight(), wxHTML_INDENT_TOP); |
45 | m_WParser->GetContainer()->SetAlign(tag); | |
5526e819 VS |
46 | return FALSE; |
47 | } | |
48 | ||
49 | TAG_HANDLER_END(P) | |
50 | ||
51 | ||
52 | ||
53 | TAG_HANDLER_BEGIN(BR, "BR") | |
54 | ||
55 | TAG_HANDLER_PROC(tag) | |
56 | { | |
4f9297b0 | 57 | int al = m_WParser->GetContainer()->GetAlignHor(); |
5526e819 | 58 | wxHtmlContainerCell *c; |
33ac7e6f | 59 | |
4f9297b0 VS |
60 | m_WParser->CloseContainer(); |
61 | c = m_WParser->OpenContainer(); | |
62 | c->SetAlignHor(al); | |
63 | c->SetAlign(tag); | |
64 | c->SetMinHeight(m_WParser->GetCharHeight()); | |
5526e819 VS |
65 | return FALSE; |
66 | } | |
67 | ||
68 | TAG_HANDLER_END(BR) | |
69 | ||
70 | ||
71 | ||
72 | TAG_HANDLER_BEGIN(CENTER, "CENTER") | |
73 | ||
74 | TAG_HANDLER_PROC(tag) | |
75 | { | |
4f9297b0 VS |
76 | int old = m_WParser->GetAlign(); |
77 | wxHtmlContainerCell *c = m_WParser->GetContainer(); | |
78 | ||
79 | m_WParser->SetAlign(wxHTML_ALIGN_CENTER); | |
33ac7e6f | 80 | if (c->GetFirstCell() != NULL) |
4f9297b0 VS |
81 | { |
82 | m_WParser->CloseContainer(); | |
83 | m_WParser->OpenContainer(); | |
5526e819 VS |
84 | } |
85 | else | |
4f9297b0 | 86 | c->SetAlignHor(wxHTML_ALIGN_CENTER); |
5526e819 | 87 | |
33ac7e6f | 88 | if (tag.HasEnding()) |
4f9297b0 | 89 | { |
5526e819 VS |
90 | ParseInner(tag); |
91 | ||
4f9297b0 | 92 | m_WParser->SetAlign(old); |
33ac7e6f | 93 | if (c->GetFirstCell() != NULL) |
4f9297b0 VS |
94 | { |
95 | m_WParser->CloseContainer(); | |
96 | m_WParser->OpenContainer(); | |
5526e819 VS |
97 | } |
98 | else | |
4f9297b0 | 99 | c->SetAlignHor(old); |
5526e819 VS |
100 | |
101 | return TRUE; | |
102 | } | |
103 | else return FALSE; | |
104 | } | |
105 | ||
106 | TAG_HANDLER_END(CENTER) | |
107 | ||
108 | ||
109 | ||
110 | TAG_HANDLER_BEGIN(DIV, "DIV") | |
111 | ||
112 | TAG_HANDLER_PROC(tag) | |
113 | { | |
4f9297b0 VS |
114 | int old = m_WParser->GetAlign(); |
115 | wxHtmlContainerCell *c = m_WParser->GetContainer(); | |
33ac7e6f | 116 | if (c->GetFirstCell() != NULL) |
4f9297b0 VS |
117 | { |
118 | m_WParser->CloseContainer(); | |
119 | m_WParser->OpenContainer(); | |
120 | c = m_WParser->GetContainer(); | |
121 | c->SetAlign(tag); | |
122 | m_WParser->SetAlign(c->GetAlignHor()); | |
5526e819 | 123 | } |
33ac7e6f | 124 | else |
4f9297b0 VS |
125 | { |
126 | c->SetAlign(tag); | |
127 | m_WParser->SetAlign(c->GetAlignHor()); | |
5526e819 VS |
128 | } |
129 | ||
130 | ParseInner(tag); | |
131 | ||
4f9297b0 | 132 | m_WParser->SetAlign(old); |
33ac7e6f | 133 | if (c->GetFirstCell() != NULL) |
4f9297b0 VS |
134 | { |
135 | m_WParser->CloseContainer(); | |
136 | m_WParser->OpenContainer(); | |
5526e819 VS |
137 | } |
138 | else | |
4f9297b0 | 139 | c->SetAlignHor(old); |
5526e819 VS |
140 | |
141 | return TRUE; | |
142 | } | |
143 | ||
144 | TAG_HANDLER_END(DIV) | |
145 | ||
146 | ||
147 | ||
148 | ||
149 | TAG_HANDLER_BEGIN(TITLE, "TITLE") | |
150 | ||
151 | TAG_HANDLER_PROC(tag) | |
152 | { | |
33ac7e6f | 153 | if (m_WParser->GetWindow()) |
4f9297b0 VS |
154 | { |
155 | wxHtmlWindow *wfr = (wxHtmlWindow*)(m_WParser->GetWindow()); | |
33ac7e6f | 156 | if (wfr) |
4f9297b0 | 157 | { |
5526e819 | 158 | wxString title = ""; |
4f9297b0 | 159 | wxString *src = m_WParser->GetSource(); |
5526e819 | 160 | |
01dba85a | 161 | for (int i = tag.GetBeginPos(); i < tag.GetEndPos1(); i++) title += (*src)[(unsigned int) i]; |
4f9297b0 | 162 | wfr->OnSetTitle(title); |
5526e819 VS |
163 | } |
164 | } | |
165 | return TRUE; | |
166 | } | |
167 | ||
168 | TAG_HANDLER_END(TITLE) | |
169 | ||
170 | ||
171 | ||
172 | ||
173 | TAG_HANDLER_BEGIN(BODY, "BODY") | |
174 | ||
175 | TAG_HANDLER_PROC(tag) | |
176 | { | |
5526e819 VS |
177 | wxColour clr; |
178 | ||
8bd72d90 | 179 | if (tag.GetParamAsColour(wxT("TEXT"), &clr)) |
4f9297b0 | 180 | { |
8bd72d90 VS |
181 | m_WParser->SetActualColor(clr); |
182 | m_WParser->GetContainer()->InsertCell(new wxHtmlColourCell(clr)); | |
5526e819 VS |
183 | } |
184 | ||
8bd72d90 VS |
185 | if (tag.GetParamAsColour(wxT("LINK"), &clr)) |
186 | m_WParser->SetLinkColor(clr); | |
187 | ||
188 | if (tag.GetParamAsColour(wxT("BGCOLOR"), &clr)) | |
4f9297b0 | 189 | { |
8bd72d90 VS |
190 | m_WParser->GetContainer()->InsertCell( |
191 | new wxHtmlColourCell(clr, wxHTML_CLR_BACKGROUND)); | |
192 | if (m_WParser->GetWindow() != NULL) | |
193 | m_WParser->GetWindow()->SetBackgroundColour(clr); | |
5526e819 VS |
194 | } |
195 | return FALSE; | |
196 | } | |
197 | ||
198 | TAG_HANDLER_END(BODY) | |
199 | ||
200 | ||
201 | ||
202 | TAG_HANDLER_BEGIN(BLOCKQUOTE, "BLOCKQUOTE") | |
203 | ||
204 | TAG_HANDLER_PROC(tag) | |
205 | { | |
206 | wxHtmlContainerCell *c; | |
33ac7e6f | 207 | |
4f9297b0 VS |
208 | m_WParser->CloseContainer(); |
209 | c = m_WParser->OpenContainer(); | |
33ac7e6f | 210 | |
4f9297b0 VS |
211 | if (c->GetAlignHor() == wxHTML_ALIGN_RIGHT) |
212 | c->SetIndent(5 * m_WParser->GetCharWidth(), wxHTML_INDENT_RIGHT); | |
5526e819 | 213 | else |
4f9297b0 | 214 | c->SetIndent(5 * m_WParser->GetCharWidth(), wxHTML_INDENT_LEFT); |
33ac7e6f | 215 | |
4f9297b0 VS |
216 | c->SetIndent(m_WParser->GetCharHeight(), wxHTML_INDENT_TOP); |
217 | m_WParser->OpenContainer(); | |
5526e819 | 218 | ParseInner(tag); |
4f9297b0 VS |
219 | c = m_WParser->CloseContainer(); |
220 | c->SetIndent(m_WParser->GetCharHeight(), wxHTML_INDENT_BOTTOM); | |
221 | m_WParser->CloseContainer(); | |
222 | m_WParser->OpenContainer(); | |
5526e819 VS |
223 | return TRUE; |
224 | } | |
225 | ||
226 | TAG_HANDLER_END(BLOCKQUOTE) | |
227 | ||
228 | ||
229 | ||
230 | ||
231 | ||
232 | ||
233 | TAGS_MODULE_BEGIN(Layout) | |
234 | ||
235 | TAGS_MODULE_ADD(P) | |
236 | TAGS_MODULE_ADD(BR) | |
237 | TAGS_MODULE_ADD(CENTER) | |
238 | TAGS_MODULE_ADD(DIV) | |
239 | TAGS_MODULE_ADD(TITLE) | |
240 | TAGS_MODULE_ADD(BODY) | |
241 | TAGS_MODULE_ADD(BLOCKQUOTE) | |
242 | ||
243 | TAGS_MODULE_END(Layout) | |
244 | ||
245 | #endif |