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_
15 #pragma interface "winpars.h"
21 #include "wx/module.h"
23 #include "wx/html/htmlpars.h"
24 #include "wx/html/htmlcell.h"
25 #include "wx/encconv.h"
27 class WXDLLEXPORT wxHtmlWindow
;
28 class WXDLLEXPORT wxHtmlWinParser
;
29 class WXDLLEXPORT wxHtmlWinTagHandler
;
30 class WXDLLEXPORT wxHtmlTagsModule
;
32 //--------------------------------------------------------------------------------
34 // This class is derived from wxHtmlParser and its mail goal
35 // is to parse HTML input so that it can be displayed in
36 // wxHtmlWindow. It uses special wxHtmlWinTagHandler.
37 //--------------------------------------------------------------------------------
39 class WXDLLEXPORT wxHtmlWinParser
: public wxHtmlParser
41 friend class wxHtmlWindow
;
44 wxHtmlWinParser(wxHtmlWindow
*wnd
= NULL
);
47 virtual void InitParser(const wxString
& source
);
48 virtual void DoneParser();
49 virtual wxObject
* GetProduct();
51 virtual wxFSFile
*OpenURL(wxHtmlURLType type
, const wxString
& url
) const;
53 // Set's the DC used for parsing. If SetDC() is not called,
54 // parsing won't proceed
55 virtual void SetDC(wxDC
*dc
, double pixel_scale
= 1.0)
56 { m_DC
= dc
; m_PixelScale
= pixel_scale
; }
58 wxDC
*GetDC() {return m_DC
;}
59 double GetPixelScale() {return m_PixelScale
;}
60 int GetCharHeight() const {return m_CharHeight
;}
61 int GetCharWidth() const {return m_CharWidth
;}
63 // NOTE : these functions do _not_ return _actual_
64 // height/width. They return h/w of default font
65 // for this DC. If you want actual values, call
66 // GetDC()->GetChar...()
68 // returns associated wxWindow
69 wxHtmlWindow
*GetWindow() {return m_Window
;}
71 // sets fonts to be used when displaying HTML page.
72 void SetFonts(wxString normal_face
, wxString fixed_face
, const int *sizes
);
74 // Adds tags module. see wxHtmlTagsModule for details.
75 static void AddModule(wxHtmlTagsModule
*module);
77 static void RemoveModule(wxHtmlTagsModule
*module);
79 // parsing-related methods. These methods are called by tag handlers:
81 // Returns pointer to actual container. Common use in tag handler is :
82 // m_WParser->GetContainer()->InsertCell(new ...);
83 wxHtmlContainerCell
*GetContainer() const {return m_Container
;}
85 // opens new container. This container is sub-container of opened
86 // container. Sets GetContainer to newly created container
88 wxHtmlContainerCell
*OpenContainer();
90 // works like OpenContainer except that new container is not created
91 // but c is used. You can use this to directly set actual container
92 wxHtmlContainerCell
*SetContainer(wxHtmlContainerCell
*c
);
94 // closes the container and sets actual Container to upper-level
96 wxHtmlContainerCell
*CloseContainer();
98 int GetFontSize() const {return m_FontSize
;}
99 void SetFontSize(int s
);
100 int GetFontBold() const {return m_FontBold
;}
101 void SetFontBold(int x
) {m_FontBold
= x
;}
102 int GetFontItalic() const {return m_FontItalic
;}
103 void SetFontItalic(int x
) {m_FontItalic
= x
;}
104 int GetFontUnderlined() const {return m_FontUnderlined
;}
105 void SetFontUnderlined(int x
) {m_FontUnderlined
= x
;}
106 int GetFontFixed() const {return m_FontFixed
;}
107 void SetFontFixed(int x
) {m_FontFixed
= x
;}
108 wxString
GetFontFace() const {return GetFontFixed() ? m_FontFaceFixed
: m_FontFaceNormal
;}
109 void SetFontFace(const wxString
& face
);
111 int GetAlign() const {return m_Align
;}
112 void SetAlign(int a
) {m_Align
= a
;}
113 const wxColour
& GetLinkColor() const { return m_LinkColor
; }
114 void SetLinkColor(const wxColour
& clr
) { m_LinkColor
= clr
; }
115 const wxColour
& GetActualColor() const { return m_ActualColor
; }
116 void SetActualColor(const wxColour
& clr
) { m_ActualColor
= clr
;}
117 const wxHtmlLinkInfo
& GetLink() const { return m_Link
; }
118 void SetLink(const wxHtmlLinkInfo
& link
);
120 void SetInputEncoding(wxFontEncoding enc
);
121 wxFontEncoding
GetInputEncoding() const { return m_InputEnc
; }
122 wxFontEncoding
GetOutputEncoding() const { return m_OutputEnc
; }
123 wxEncodingConverter
*GetEncodingConverter() const { return m_EncConv
; }
125 // creates font depending on m_Font* members.
126 virtual wxFont
* CreateCurrentFont();
129 virtual void AddText(const wxChar
* txt
);
132 bool m_tmpLastWasSpace
;
134 size_t m_tmpStrBufSize
;
135 // temporary variables used by AddText
136 wxHtmlWindow
*m_Window
;
137 // window we're parsing for
140 // Device Context we're parsing for
141 static wxList m_Modules
;
142 // list of tags modules (see wxHtmlTagsModule for details)
143 // This list is used to initialize m_Handlers member.
145 wxHtmlContainerCell
*m_Container
;
146 // actual container. See Open/CloseContainer for details.
148 int m_FontBold
, m_FontItalic
, m_FontUnderlined
, m_FontFixed
; // this is not TRUE,FALSE but 1,0, we need it for indexing
149 int m_FontSize
; /* -2 to +4, 0 is default */
150 wxColour m_LinkColor
;
151 wxColour m_ActualColor
;
152 // basic font parameters.
153 wxHtmlLinkInfo m_Link
;
154 // actual hypertext link or empty string
156 // TRUE if m_Link is not empty
157 long m_CharHeight
, m_CharWidth
;
158 // average height of normal-sized text
162 wxFont
* m_FontsTable
[2][2][2][2][7];
163 wxString m_FontsFacesTable
[2][2][2][2][7];
164 wxFontEncoding m_FontsEncTable
[2][2][2][2][7];
165 // table of loaded fonts. 1st four indexes are 0 or 1, depending on on/off
166 // state of these flags (from left to right):
167 // [bold][italic][underlined][fixed_size]
168 // last index is font size : from 0 to 6 (remapped from html sizes 1 to 7)
169 // Note : this table covers all possible combinations of fonts, but not
170 // all of them are used, so many items in table are usually NULL.
172 wxString m_FontFaceFixed
, m_FontFaceNormal
;
173 // html font sizes and faces of fixed and proportional fonts
175 wxFontEncoding m_InputEnc
, m_OutputEnc
;
176 // I/O font encodings
177 wxEncodingConverter
*m_EncConv
;
185 //--------------------------------------------------------------------------------
186 // wxHtmlWinTagHandler
187 // This is basicly wxHtmlTagHandler except
188 // it is extended with protected member m_Parser pointing to
189 // the wxHtmlWinParser object
190 //--------------------------------------------------------------------------------
192 class WXDLLEXPORT wxHtmlWinTagHandler
: public wxHtmlTagHandler
194 DECLARE_ABSTRACT_CLASS(wxHtmlWinTagHandler
)
197 wxHtmlWinTagHandler() : wxHtmlTagHandler() {};
199 virtual void SetParser(wxHtmlParser
*parser
) {wxHtmlTagHandler::SetParser(parser
); m_WParser
= (wxHtmlWinParser
*) parser
;};
202 wxHtmlWinParser
*m_WParser
; // same as m_Parser, but overcasted
210 //--------------------------------------------------------------------------------
212 // This is basic of dynamic tag handlers binding.
213 // The class provides methods for filling parser's handlers
215 // (See documentation for details)
216 //--------------------------------------------------------------------------------
218 class WXDLLEXPORT wxHtmlTagsModule
: public wxModule
220 DECLARE_DYNAMIC_CLASS(wxHtmlTagsModule
)
223 wxHtmlTagsModule() : wxModule() {};
225 virtual bool OnInit();
226 virtual void OnExit();
228 // This is called by wxHtmlWinParser.
229 // The method must simply call parser->AddTagHandler(new <handler_class_name>);
231 virtual void FillHandlersTable(wxHtmlWinParser
* WXUNUSED(parser
)) { }
237 #endif // _WX_WINPARS_H_