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 wxHtmlWinParser
;
28 class WXDLLEXPORT wxHtmlWinTagHandler
;
29 class WXDLLEXPORT wxHtmlTagsModule
;
31 //--------------------------------------------------------------------------------
33 // This class is derived from wxHtmlParser and its mail goal
34 // is to parse HTML input so that it can be displayed in
35 // wxHtmlWindow. It uses special wxHtmlWinTagHandler.
36 //--------------------------------------------------------------------------------
38 class WXDLLEXPORT wxHtmlWinParser
: public wxHtmlParser
40 friend class wxHtmlWindow
;
43 wxHtmlWinParser(wxWindow
*wnd
= NULL
);
46 virtual void InitParser(const wxString
& source
);
47 virtual void DoneParser();
48 virtual wxObject
* GetProduct();
50 // Set's the DC used for parsing. If SetDC() is not called,
51 // parsing won't proceed
52 virtual void SetDC(wxDC
*dc
, double pixel_scale
= 1.0)
53 { m_DC
= dc
; m_PixelScale
= pixel_scale
; }
55 wxDC
*GetDC() {return m_DC
;}
56 double GetPixelScale() {return m_PixelScale
;}
57 int GetCharHeight() const {return m_CharHeight
;}
58 int GetCharWidth() const {return m_CharWidth
;}
60 // NOTE : these functions do _not_ return _actual_
61 // height/width. They return h/w of default font
62 // for this DC. If you want actual values, call
63 // GetDC()->GetChar...()
65 // returns associated wxWindow
66 wxWindow
*GetWindow() {return m_Window
;}
68 // sets fonts to be used when displaying HTML page.
69 void SetFonts(wxString normal_face
, wxString fixed_face
, const int *sizes
);
71 // Adds tags module. see wxHtmlTagsModule for details.
72 static void AddModule(wxHtmlTagsModule
*module);
74 static void RemoveModule(wxHtmlTagsModule
*module);
76 // parsing-related methods. These methods are called by tag handlers:
78 // Returns pointer to actual container. Common use in tag handler is :
79 // m_WParser->GetContainer()->InsertCell(new ...);
80 wxHtmlContainerCell
*GetContainer() const {return m_Container
;}
82 // opens new container. This container is sub-container of opened
83 // container. Sets GetContainer to newly created container
85 wxHtmlContainerCell
*OpenContainer();
87 // works like OpenContainer except that new container is not created
88 // but c is used. You can use this to directly set actual container
89 wxHtmlContainerCell
*SetContainer(wxHtmlContainerCell
*c
);
91 // closes the container and sets actual Container to upper-level
93 wxHtmlContainerCell
*CloseContainer();
95 int GetFontSize() const {return m_FontSize
;}
96 void SetFontSize(int s
);
97 int GetFontBold() const {return m_FontBold
;}
98 void SetFontBold(int x
) {m_FontBold
= x
;}
99 int GetFontItalic() const {return m_FontItalic
;}
100 void SetFontItalic(int x
) {m_FontItalic
= x
;}
101 int GetFontUnderlined() const {return m_FontUnderlined
;}
102 void SetFontUnderlined(int x
) {m_FontUnderlined
= x
;}
103 int GetFontFixed() const {return m_FontFixed
;}
104 void SetFontFixed(int x
) {m_FontFixed
= x
;}
105 wxString
GetFontFace() const {return GetFontFixed() ? m_FontFaceFixed
: m_FontFaceNormal
;}
106 void SetFontFace(const wxString
& face
);
108 int GetAlign() const {return m_Align
;}
109 void SetAlign(int a
) {m_Align
= a
;}
110 const wxColour
& GetLinkColor() const { return m_LinkColor
; }
111 void SetLinkColor(const wxColour
& clr
) { m_LinkColor
= clr
; }
112 const wxColour
& GetActualColor() const { return m_ActualColor
; }
113 void SetActualColor(const wxColour
& clr
) { m_ActualColor
= clr
;}
114 const wxHtmlLinkInfo
& GetLink() const { return m_Link
; }
115 void SetLink(const wxHtmlLinkInfo
& link
);
117 void SetInputEncoding(wxFontEncoding enc
);
118 wxFontEncoding
GetInputEncoding() const { return m_InputEnc
; }
119 wxFontEncoding
GetOutputEncoding() const { return m_OutputEnc
; }
120 wxEncodingConverter
*GetEncodingConverter() const { return m_EncConv
; }
122 // creates font depending on m_Font* members.
123 virtual wxFont
* CreateCurrentFont();
126 virtual void AddText(const char *txt
);
129 bool m_tmpLastWasSpace
;
130 // temporary variable used by AddText
132 // window we're parsing for
135 // Device Context we're parsing for
136 static wxList m_Modules
;
137 // list of tags modules (see wxHtmlTagsModule for details)
138 // This list is used to initialize m_Handlers member.
140 wxHtmlContainerCell
*m_Container
;
141 // actual container. See Open/CloseContainer for details.
143 int m_FontBold
, m_FontItalic
, m_FontUnderlined
, m_FontFixed
; // this is not TRUE,FALSE but 1,0, we need it for indexing
144 int m_FontSize
; /* -2 to +4, 0 is default */
145 wxColour m_LinkColor
;
146 wxColour m_ActualColor
;
147 // basic font parameters.
148 wxHtmlLinkInfo m_Link
;
149 // actual hypertext link or empty string
151 // TRUE if m_Link is not empty
152 long m_CharHeight
, m_CharWidth
;
153 // average height of normal-sized text
157 wxFont
* m_FontsTable
[2][2][2][2][7];
158 wxString m_FontsFacesTable
[2][2][2][2][7];
159 wxFontEncoding m_FontsEncTable
[2][2][2][2][7];
160 // table of loaded fonts. 1st four indexes are 0 or 1, depending on on/off
161 // state of these flags (from left to right):
162 // [bold][italic][underlined][fixed_size]
163 // last index is font size : from 0 to 6 (remapped from html sizes 1 to 7)
164 // Note : this table covers all possible combinations of fonts, but not
165 // all of them are used, so many items in table are usually NULL.
167 wxString m_FontFaceFixed
, m_FontFaceNormal
;
168 // html font sizes and faces of fixed and proportional fonts
170 wxFontEncoding m_InputEnc
, m_OutputEnc
;
171 // I/O font encodings
172 wxEncodingConverter
*m_EncConv
;
180 //--------------------------------------------------------------------------------
181 // wxHtmlWinTagHandler
182 // This is basicly wxHtmlTagHandler except
183 // it is extended with protected member m_Parser pointing to
184 // the wxHtmlWinParser object
185 //--------------------------------------------------------------------------------
187 class WXDLLEXPORT wxHtmlWinTagHandler
: public wxHtmlTagHandler
189 DECLARE_ABSTRACT_CLASS(wxHtmlWinTagHandler
)
192 wxHtmlWinTagHandler() : wxHtmlTagHandler() {};
194 virtual void SetParser(wxHtmlParser
*parser
) {wxHtmlTagHandler::SetParser(parser
); m_WParser
= (wxHtmlWinParser
*) parser
;};
197 wxHtmlWinParser
*m_WParser
; // same as m_Parser, but overcasted
205 //--------------------------------------------------------------------------------
207 // This is basic of dynamic tag handlers binding.
208 // The class provides methods for filling parser's handlers
210 // (See documentation for details)
211 //--------------------------------------------------------------------------------
213 class WXDLLEXPORT wxHtmlTagsModule
: public wxModule
215 DECLARE_DYNAMIC_CLASS(wxHtmlTagsModule
)
218 wxHtmlTagsModule() : wxModule() {};
220 virtual bool OnInit();
221 virtual void OnExit();
223 // This is called by wxHtmlWinParser.
224 // The method must simply call parser->AddTagHandler(new <handler_class_name>);
226 virtual void FillHandlersTable(wxHtmlWinParser
* WXUNUSED(parser
)) { }
232 #endif // _WX_WINPARS_H_