]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: m_style.cpp | |
3 | // Purpose: wxHtml module for parsing <style> tag | |
4 | // Author: Vaclav Slavik | |
5 | // RCS-ID: $Id$ | |
6 | // Copyright: (c) 2002 Vaclav Slavik | |
7 | // Licence: wxWindows licence | |
8 | ///////////////////////////////////////////////////////////////////////////// | |
9 | ||
10 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) | |
11 | #pragma implementation | |
12 | #endif | |
13 | ||
14 | #include "wx/wxprec.h" | |
15 | ||
16 | ||
17 | #include "wx/defs.h" | |
18 | #if wxUSE_HTML && wxUSE_STREAMS | |
19 | ||
20 | #ifdef __BORLANDC__ | |
21 | #pragma hdrstop | |
22 | #endif | |
23 | ||
24 | #ifndef WXPRECOMP | |
25 | #endif | |
26 | ||
27 | #include "wx/html/forcelnk.h" | |
28 | #include "wx/html/m_templ.h" | |
29 | ||
30 | FORCE_LINK_ME(m_style) | |
31 | ||
32 | ||
33 | TAG_HANDLER_BEGIN(STYLE, "STYLE") | |
34 | TAG_HANDLER_CONSTR(STYLE) { } | |
35 | ||
36 | TAG_HANDLER_PROC(WXUNUSED(tag)) | |
37 | { | |
38 | // VS: Ignore styles for now. We must have this handler present, | |
39 | // because CSS style text would be rendered verbatim otherwise | |
40 | return true; | |
41 | } | |
42 | ||
43 | TAG_HANDLER_END(STYLE) | |
44 | ||
45 | ||
46 | TAGS_MODULE_BEGIN(StyleTag) | |
47 | ||
48 | TAGS_MODULE_ADD(STYLE) | |
49 | ||
50 | TAGS_MODULE_END(StyleTag) | |
51 | ||
52 | #endif |