1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxHtmlWinParser class (parser to be used with wxHtmlWindow)
4 // Author: Vaclav Slavik
6 // Copyright: (c) 1999 Vaclav Slavik
7 // Licence: wxWindows Licence
8 /////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_WINPARS_H_
12 #define _WX_WINPARS_H_
21 #include "wx/module.h"
22 #include "wx/html/htmlpars.h"
23 #include "wx/html/htmlcell.h"
25 class wxHtmlWinParser
;
26 class wxHtmlWinTagHandler
;
27 class wxHtmlTagsModule
;
29 //--------------------------------------------------------------------------------
31 // This class is derived from wxHtmlParser and its mail goal
32 // is to parse HTML input so that it can be displayed in
33 // wxHtmlWindow. It uses special wxHtmlWinTagHandler.
34 //--------------------------------------------------------------------------------
36 class WXDLLEXPORT wxHtmlWinParser
: public wxHtmlParser
38 friend class wxHtmlWindow
;
41 wxHtmlWinParser(wxWindow
*wnd
= NULL
);
43 virtual void InitParser(const wxString
& source
);
44 virtual void DoneParser();
45 virtual wxObject
* GetProduct();
47 virtual void SetDC(wxDC
*dc
) {m_DC
= dc
;}
48 // Set's the DC used for parsing. If SetDC() is not called,
49 // parsing won't proceed
50 wxDC
*GetDC() {return m_DC
;}
51 int GetCharHeight() const {return m_CharHeight
;}
52 int GetCharWidth() const {return m_CharWidth
;}
53 // NOTE : these functions do _not_ return _actual_
54 // height/width. They return h/w of default font
55 // for this DC. If you want actual values, call
56 // GetDC() -> GetChar...()
57 wxWindow
*GetWindow() {return m_Window
;}
58 // returns associated wxWindow
60 void SetFonts(wxString normal_face
, int normal_italic_mode
, wxString fixed_face
, int fixed_italic_mode
, const int *sizes
);
61 // sets fonts to be used when displaying HTML page.
62 // *_italic_mode can be either wxSLANT or wxITALIC
64 virtual wxList
* GetTempData();
66 static void AddModule(wxHtmlTagsModule
*module);
67 // Adds tags module. see wxHtmlTagsModule for details.
69 // parsing-related methods. These methods are called by tag handlers:
70 wxHtmlContainerCell
*GetContainer() const {return m_Container
;}
71 // Returns pointer to actual container. Common use in tag handler is :
72 // m_WParser -> GetContainer() -> InsertCell(new ...);
73 wxHtmlContainerCell
*OpenContainer();
74 // opens new container. This container is sub-container of opened
75 // container. Sets GetContainer to newly created container
77 wxHtmlContainerCell
*SetContainer(wxHtmlContainerCell
*c
);
78 // works like OpenContainer except that new container is not created
79 // but c is used. You can use this to directly set actual container
80 wxHtmlContainerCell
*CloseContainer();
81 // closes the container and sets actual Container to upper-level
84 int GetFontSize() const {return m_FontSize
;}
85 void SetFontSize(int s
) {m_FontSize
= s
;}
86 int GetFontBold() const {return m_FontBold
;}
87 void SetFontBold(int x
) {m_FontBold
= x
;}
88 int GetFontItalic() const {return m_FontItalic
;}
89 void SetFontItalic(int x
) {m_FontItalic
= x
;}
90 int GetFontUnderlined() const {return m_FontUnderlined
;}
91 void SetFontUnderlined(int x
) {m_FontUnderlined
= x
;}
92 int GetFontFixed() const {return m_FontFixed
;}
93 void SetFontFixed(int x
) {m_FontFixed
= x
;}
95 int GetAlign() const {return m_Align
;}
96 void SetAlign(int a
) {m_Align
= a
;}
97 const wxColour
& GetLinkColor() const {return m_LinkColor
;}
98 void SetLinkColor(const wxColour
& clr
) {m_LinkColor
= clr
;}
99 const wxColour
& GetActualColor() const {return m_ActualColor
;}
100 void SetActualColor(const wxColour
& clr
) {m_ActualColor
= clr
;}
101 const wxString
& GetLink() const {return m_Link
;}
102 void SetLink(const wxString
& link
) {m_Link
= link
; m_UseLink
= link
.Length() > 0;}
104 virtual wxFont
* CreateCurrentFont();
105 // creates font depending on m_Font* members.
106 // (note : it calls wxHtmlWindow's CreateCurrentFont...)
109 virtual void AddText(const char *txt
);
112 bool m_tmpLastWasSpace
;
113 // temporary variable used by AddText
115 // window we're parsing for
117 // Device Context we're parsing for
118 static wxList m_Modules
;
119 // list of tags modules (see wxHtmlTagsModule for details)
120 // This list is used to initialize m_Handlers member.
122 wxHtmlContainerCell
*m_Container
;
123 // actual container. See Open/CloseContainer for details.
125 int m_FontBold
, m_FontItalic
, m_FontUnderlined
, m_FontFixed
; // this is not TRUE,FALSE but 1,0, we need it for indexing
126 int m_FontSize
; /* -2 to +4, 0 is default */
127 wxColour m_LinkColor
;
128 wxColour m_ActualColor
;
129 // basic font parameters.
131 // actual hypertext link or empty string
133 // TRUE if m_Link is not empty
134 long m_CharHeight
, m_CharWidth
;
135 // average height of normal-sized text
139 wxFont
*m_FontsTable
[2][2][2][2][7];
140 // table of loaded fonts. 1st four indexes are 0 or 1, depending on on/off
141 // state of these flags (from left to right):
142 // [bold][italic][underlined][fixed_size]
143 // last index is font size : from 0 to 7 (remapped from html sizes -2 to +4)
144 // Note : this table covers all possible combinations of fonts, but not
145 // all of them are used, so many items in table are usually NULL.
147 wxString m_FontFaceFixed
, m_FontFaceNormal
;
148 int m_ItalicModeFixed
, m_ItalicModeNormal
;
149 // html font sizes and faces of fixed and proportional fonts
157 //--------------------------------------------------------------------------------
158 // wxHtmlWinTagHandler
159 // This is basicly wxHtmlTagHandler except
160 // it is extended with protected member m_Parser pointing to
161 // the wxHtmlWinParser object
162 //--------------------------------------------------------------------------------
164 class WXDLLEXPORT wxHtmlWinTagHandler
: public wxHtmlTagHandler
166 DECLARE_ABSTRACT_CLASS(wxHtmlWinTagHandler
)
169 wxHtmlWinTagHandler() : wxHtmlTagHandler() {};
171 virtual void SetParser(wxHtmlParser
*parser
) {wxHtmlTagHandler::SetParser(parser
); m_WParser
= (wxHtmlWinParser
*) parser
;};
174 wxHtmlWinParser
*m_WParser
;
175 // same as m_Parser, but overcasted
183 //--------------------------------------------------------------------------------
185 // This is basic of dynamic tag handlers binding.
186 // The class provides methods for filling parser's handlers
188 // (See documentation for details)
189 //--------------------------------------------------------------------------------
191 class WXDLLEXPORT wxHtmlTagsModule
: public wxModule
193 DECLARE_DYNAMIC_CLASS(wxHtmlTagsModule
)
196 wxHtmlTagsModule() : wxModule() {};
198 virtual bool OnInit();
199 virtual void OnExit();
201 virtual void FillHandlersTable(wxHtmlWinParser
* WXUNUSED(parser
)) { }
202 // This is called by wxHtmlWinParser.
203 // The method must simply call parser->AddTagHandler(new <handler_class_name>);
211 #endif // _WX_WINPARS_H_