]>
git.saurik.com Git - wxWidgets.git/blob - src/html/m_style.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxHtml module for parsing <style> tag
4 // Author: Vaclav Slavik
6 // Copyright: (c) 2002 Vaclav Slavik
7 // Licence: wxWindows Licence
8 /////////////////////////////////////////////////////////////////////////////
11 #pragma implementation
14 #include "wx/wxprec.h"
18 #if wxUSE_HTML && wxUSE_STREAMS
27 #include "wx/html/forcelnk.h"
28 #include "wx/html/m_templ.h"
30 FORCE_LINK_ME(m_style
)
33 TAG_HANDLER_BEGIN(STYLE
, "STYLE")
34 TAG_HANDLER_CONSTR(STYLE
) { }
36 TAG_HANDLER_PROC(WXUNUSED(tag
))
38 // VS: Ignore styles for now. We must have this handler present,
39 // because CSS style text would be rendered verbatim otherwise
43 TAG_HANDLER_END(STYLE
)
46 TAGS_MODULE_BEGIN(StyleTag
)
48 TAGS_MODULE_ADD(STYLE
)
50 TAGS_MODULE_END(StyleTag
)