]>
git.saurik.com Git - wxWidgets.git/blob - src/html/m_style.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/html/m_style.cpp
3 // Purpose: wxHtml module for parsing <style> tag
4 // Author: Vaclav Slavik
5 // Copyright: (c) 2002 Vaclav Slavik
6 // Licence: wxWindows licence
7 /////////////////////////////////////////////////////////////////////////////
15 #if wxUSE_HTML && wxUSE_STREAMS
20 #include "wx/html/forcelnk.h"
21 #include "wx/html/m_templ.h"
23 FORCE_LINK_ME(m_style
)
26 TAG_HANDLER_BEGIN(STYLE
, "STYLE")
27 TAG_HANDLER_CONSTR(STYLE
) { }
29 TAG_HANDLER_PROC(WXUNUSED(tag
))
31 // VS: Ignore styles for now. We must have this handler present,
32 // because CSS style text would be rendered verbatim otherwise
36 TAG_HANDLER_END(STYLE
)
39 TAGS_MODULE_BEGIN(StyleTag
)
41 TAGS_MODULE_ADD(STYLE
)
43 TAGS_MODULE_END(StyleTag
)