]>
Commit | Line | Data |
---|---|---|
5526e819 VS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: htmlcell.h | |
3 | // Purpose: wxHtmlCell class is used by wxHtmlWindow/wxHtmlWinParser | |
4 | // as a basic visual element of HTML page | |
5 | // Author: Vaclav Slavik | |
69941f05 | 6 | // RCS-ID: $Id$ |
5526e819 VS |
7 | // Copyright: (c) 1999 Vaclav Slavik |
8 | // Licence: wxWindows Licence | |
9 | ///////////////////////////////////////////////////////////////////////////// | |
10 | ||
11 | ||
69941f05 VS |
12 | #ifndef _WX_HTMLCELL_H_ |
13 | #define _WX_HTMLCELL_H_ | |
5526e819 | 14 | |
af49c4b8 | 15 | #if defined(__GNUG__) && !defined(__APPLE__) |
97494971 | 16 | #pragma interface "htmlcell.h" |
5526e819 VS |
17 | #endif |
18 | ||
19 | #include "wx/defs.h" | |
5526e819 | 20 | |
4dcaf11a | 21 | #if wxUSE_HTML |
5526e819 | 22 | |
4dcaf11a RR |
23 | #include "wx/html/htmltag.h" |
24 | #include "wx/html/htmldefs.h" | |
25 | #include "wx/window.h" | |
5526e819 | 26 | |
846914d1 | 27 | |
ffef2bde RD |
28 | class WXDLLEXPORT wxHtmlLinkInfo; |
29 | class WXDLLEXPORT wxHtmlCell; | |
30 | class WXDLLEXPORT wxHtmlContainerCell; | |
5526e819 VS |
31 | |
32 | //-------------------------------------------------------------------------------- | |
33 | // wxHtmlCell | |
34 | // Internal data structure. It represents fragments of parsed HTML | |
35 | // page - a word, picture, table, horizontal line and so on. | |
36 | // It is used by wxHtmlWindow to represent HTML page in memory. | |
37 | //-------------------------------------------------------------------------------- | |
38 | ||
39 | ||
40 | class WXDLLEXPORT wxHtmlCell : public wxObject | |
41 | { | |
97494971 VS |
42 | public: |
43 | wxHtmlCell(); | |
44 | virtual ~wxHtmlCell(); | |
45 | ||
46 | void SetParent(wxHtmlContainerCell *p) {m_Parent = p;} | |
47 | wxHtmlContainerCell *GetParent() const {return m_Parent;} | |
48 | ||
49 | int GetPosX() const {return m_PosX;} | |
50 | int GetPosY() const {return m_PosY;} | |
51 | int GetWidth() const {return m_Width;} | |
52 | int GetHeight() const {return m_Height;} | |
53 | int GetDescent() const {return m_Descent;} | |
d50d561a | 54 | |
8938133d VS |
55 | const wxString& GetId() const { return m_id; } |
56 | void SetId(const wxString& id) { m_id = id; } | |
97494971 VS |
57 | |
58 | // returns the link associated with this cell. The position is position within | |
59 | // the cell so it varies from 0 to m_Width, from 0 to m_Height | |
60 | virtual wxHtmlLinkInfo* GetLink(int WXUNUSED(x) = 0, int WXUNUSED(y) = 0) const | |
61 | { return m_Link; } | |
62 | ||
63 | // members access methods | |
64 | wxHtmlCell *GetNext() const {return m_Next;} | |
65 | ||
f6010d8f | 66 | // members writing methods |
97494971 VS |
67 | virtual void SetPos(int x, int y) {m_PosX = x, m_PosY = y;} |
68 | void SetLink(const wxHtmlLinkInfo& link); | |
69 | void SetNext(wxHtmlCell *cell) {m_Next = cell;} | |
70 | ||
71 | // 1. adjust cell's width according to the fact that maximal possible width is w. | |
72 | // (this has sense when working with horizontal lines, tables etc.) | |
73 | // 2. prepare layout (=fill-in m_PosX, m_PosY (and sometime m_Height) members) | |
74 | // = place items to fit window, according to the width w | |
75 | virtual void Layout(int w); | |
76 | ||
77 | // renders the cell | |
d699f48b | 78 | virtual void Draw(wxDC& WXUNUSED(dc), int WXUNUSED(x), int WXUNUSED(y), int WXUNUSED(view_y1), int WXUNUSED(view_y2)) {} |
97494971 VS |
79 | |
80 | // proceed drawing actions in case the cell is not visible (scrolled out of screen). | |
81 | // This is needed to change fonts, colors and so on | |
d699f48b | 82 | virtual void DrawInvisible(wxDC& WXUNUSED(dc), int WXUNUSED(x), int WXUNUSED(y)) {} |
97494971 VS |
83 | |
84 | // This method returns pointer to the FIRST cell for that | |
85 | // the condition | |
86 | // is true. It first checks if the condition is true for this | |
87 | // cell and then calls m_Next->Find(). (Note: it checks | |
88 | // all subcells if the cell is container) | |
89 | // Condition is unique condition identifier (see htmldefs.h) | |
90 | // (user-defined condition IDs should start from 10000) | |
91 | // and param is optional parameter | |
92 | // Example : m_Cell->Find(wxHTML_COND_ISANCHOR, "news"); | |
93 | // returns pointer to anchor news | |
94 | virtual const wxHtmlCell* Find(int condition, const void* param) const; | |
95 | ||
96 | // This function is called when mouse button is clicked over the cell. | |
f6010d8f | 97 | // |
97494971 VS |
98 | // Parent is pointer to wxHtmlWindow that generated the event |
99 | // HINT: if this handling is not enough for you you should use | |
f7b23958 | 100 | // wxHtmlWidgetCell |
97494971 VS |
101 | virtual void OnMouseClick(wxWindow *parent, int x, int y, const wxMouseEvent& event); |
102 | ||
103 | // This method used to adjust pagebreak position. The parameter is | |
104 | // variable that contains y-coordinate of page break (= horizontal line that | |
105 | // should not be crossed by words, images etc.). If this cell cannot be divided | |
106 | // into two pieces (each one on another page) then it moves the pagebreak | |
107 | // few pixels up. | |
108 | // | |
109 | // Returned value : true if pagebreak was modified, false otherwise | |
110 | // Usage : while (container->AdjustPagebreak(&p)) {} | |
111 | virtual bool AdjustPagebreak(int *pagebreak) const; | |
112 | ||
113 | // Sets cell's behaviour on pagebreaks (see AdjustPagebreak). Default | |
114 | // is true - the cell can be split on two pages | |
79d6c018 | 115 | void SetCanLiveOnPagebreak(bool can) { m_CanLiveOnPagebreak = can; } |
97494971 | 116 | |
d50d561a | 117 | // Returns y-coordinates that contraint the cell, i.e. left is highest |
79d6c018 VS |
118 | // and right lowest coordinate such that the cell lays between then. |
119 | // Note: this method does not return meaningful values if you haven't | |
120 | // called Layout() before! | |
121 | virtual void GetHorizontalConstraints(int *left, int *right) const; | |
97494971 | 122 | |
f6010d8f VZ |
123 | // Returns true for simple == terminal cells, i.e. not composite ones. |
124 | // This if for internal usage only and may disappear in future versions! | |
8938133d | 125 | virtual bool IsTerminalCell() const { return TRUE; } |
f6010d8f VZ |
126 | |
127 | // Find the terminal cell inside this cell at the given position (relative | |
128 | // to this cell) | |
129 | // | |
130 | // Returns NULL if not found | |
131 | virtual wxHtmlCell *FindCellByPos(wxCoord x, wxCoord y) const; | |
132 | ||
97494971 VS |
133 | protected: |
134 | wxHtmlCell *m_Next; | |
135 | // pointer to the next cell | |
136 | wxHtmlContainerCell *m_Parent; | |
f6010d8f | 137 | // pointer to parent cell |
97494971 VS |
138 | long m_Width, m_Height, m_Descent; |
139 | // dimensions of fragment | |
140 | // m_Descent is used to position text&images.. | |
141 | long m_PosX, m_PosY; | |
142 | // position where the fragment is drawn | |
143 | wxHtmlLinkInfo *m_Link; | |
f6010d8f | 144 | // destination address if this fragment is hypertext link, NULL otherwise |
97494971 VS |
145 | bool m_CanLiveOnPagebreak; |
146 | // true if this cell can be placed on pagebreak, false otherwise | |
8938133d VS |
147 | wxString m_id; |
148 | // unique identifier of the cell, generated from "id" property of tags | |
22f3361e VZ |
149 | |
150 | DECLARE_NO_COPY_CLASS(wxHtmlCell) | |
5526e819 VS |
151 | }; |
152 | ||
153 | ||
154 | ||
155 | ||
156 | //-------------------------------------------------------------------------------- | |
157 | // Inherited cells: | |
158 | //-------------------------------------------------------------------------------- | |
159 | ||
160 | ||
161 | //-------------------------------------------------------------------------------- | |
162 | // wxHtmlWordCell | |
163 | // Single word in input stream. | |
164 | //-------------------------------------------------------------------------------- | |
165 | ||
166 | class WXDLLEXPORT wxHtmlWordCell : public wxHtmlCell | |
167 | { | |
97494971 VS |
168 | public: |
169 | wxHtmlWordCell(const wxString& word, wxDC& dc); | |
170 | void Draw(wxDC& dc, int x, int y, int view_y1, int view_y2); | |
60e87cb1 | 171 | |
97494971 VS |
172 | protected: |
173 | wxString m_Word; | |
5526e819 VS |
174 | }; |
175 | ||
176 | ||
177 | ||
178 | ||
179 | ||
180 | //-------------------------------------------------------------------------------- | |
181 | // wxHtmlContainerCell | |
182 | // Container - it contains other cells. Basic of layout algorithm. | |
183 | //-------------------------------------------------------------------------------- | |
184 | ||
185 | class WXDLLEXPORT wxHtmlContainerCell : public wxHtmlCell | |
186 | { | |
97494971 VS |
187 | public: |
188 | wxHtmlContainerCell(wxHtmlContainerCell *parent); | |
189 | ~wxHtmlContainerCell(); | |
190 | ||
191 | virtual void Layout(int w); | |
192 | virtual void Draw(wxDC& dc, int x, int y, int view_y1, int view_y2); | |
193 | virtual void DrawInvisible(wxDC& dc, int x, int y); | |
194 | virtual bool AdjustPagebreak(int *pagebreak) const; | |
195 | ||
196 | // insert cell at the end of m_Cells list | |
197 | void InsertCell(wxHtmlCell *cell); | |
198 | ||
199 | // sets horizontal/vertical alignment | |
200 | void SetAlignHor(int al) {m_AlignHor = al; m_LastLayout = -1;} | |
201 | int GetAlignHor() const {return m_AlignHor;} | |
202 | void SetAlignVer(int al) {m_AlignVer = al; m_LastLayout = -1;} | |
203 | int GetAlignVer() const {return m_AlignVer;} | |
204 | ||
205 | // sets left-border indentation. units is one of wxHTML_UNITS_* constants | |
206 | // what is combination of wxHTML_INDENT_* | |
207 | void SetIndent(int i, int what, int units = wxHTML_UNITS_PIXELS); | |
208 | // returns the indentation. ind is one of wxHTML_INDENT_* constants | |
209 | int GetIndent(int ind) const; | |
210 | // returns type of value returned by GetIndent(ind) | |
211 | int GetIndentUnits(int ind) const; | |
212 | ||
213 | // sets alignment info based on given tag's params | |
214 | void SetAlign(const wxHtmlTag& tag); | |
215 | // sets floating width adjustment | |
216 | // (examples : 32 percent of parent container, | |
217 | // -15 pixels percent (this means 100 % - 15 pixels) | |
218 | void SetWidthFloat(int w, int units) {m_WidthFloat = w; m_WidthFloatUnits = units; m_LastLayout = -1;} | |
219 | void SetWidthFloat(const wxHtmlTag& tag, double pixel_scale = 1.0); | |
220 | // sets minimal height of this container. | |
221 | void SetMinHeight(int h, int align = wxHTML_ALIGN_TOP) {m_MinHeight = h; m_MinHeightAlign = align; m_LastLayout = -1;} | |
222 | ||
223 | void SetBackgroundColour(const wxColour& clr) {m_UseBkColour = TRUE; m_BkColour = clr;} | |
2b5f62a0 VZ |
224 | // returns background colour (of wxNullColour if none set), so that widgets can |
225 | // adapt to it: | |
226 | wxColour GetBackgroundColour(); | |
97494971 VS |
227 | void SetBorder(const wxColour& clr1, const wxColour& clr2) {m_UseBorder = TRUE; m_BorderColour1 = clr1, m_BorderColour2 = clr2;} |
228 | virtual wxHtmlLinkInfo* GetLink(int x = 0, int y = 0) const; | |
229 | virtual const wxHtmlCell* Find(int condition, const void* param) const; | |
230 | virtual void OnMouseClick(wxWindow *parent, int x, int y, const wxMouseEvent& event); | |
79d6c018 | 231 | virtual void GetHorizontalConstraints(int *left, int *right) const; |
97494971 VS |
232 | |
233 | // returns pointer to the first cell in container or NULL | |
234 | wxHtmlCell* GetFirstCell() const {return m_Cells;} | |
235 | ||
f6010d8f | 236 | // see comment in wxHtmlCell about this method |
d50d561a | 237 | virtual bool IsTerminalCell() const { return FALSE; } |
f6010d8f VZ |
238 | |
239 | virtual wxHtmlCell *FindCellByPos(wxCoord x, wxCoord y) const; | |
240 | ||
97494971 VS |
241 | protected: |
242 | int m_IndentLeft, m_IndentRight, m_IndentTop, m_IndentBottom; | |
243 | // indentation of subcells. There is always m_Indent pixels | |
244 | // big space between given border of the container and the subcells | |
245 | // it m_Indent < 0 it is in PERCENTS, otherwise it is in pixels | |
246 | int m_MinHeight, m_MinHeightAlign; | |
247 | // minimal height. | |
248 | wxHtmlCell *m_Cells, *m_LastCell; | |
249 | // internal cells, m_Cells points to the first of them, m_LastCell to the last one. | |
250 | // (LastCell is needed only to speed-up InsertCell) | |
251 | int m_AlignHor, m_AlignVer; | |
252 | // alignment horizontal and vertical (left, center, right) | |
253 | int m_WidthFloat, m_WidthFloatUnits; | |
254 | // width float is used in adjustWidth | |
255 | bool m_UseBkColour; | |
256 | wxColour m_BkColour; | |
257 | // background color of this container | |
258 | bool m_UseBorder; | |
259 | wxColour m_BorderColour1, m_BorderColour2; | |
260 | // borders color of this container | |
261 | int m_LastLayout; | |
262 | // if != -1 then call to Layout may be no-op | |
263 | // if previous call to Layout has same argument | |
22f3361e VZ |
264 | |
265 | DECLARE_NO_COPY_CLASS(wxHtmlContainerCell) | |
5526e819 VS |
266 | }; |
267 | ||
268 | ||
269 | ||
270 | ||
271 | ||
272 | //-------------------------------------------------------------------------------- | |
273 | // wxHtmlColourCell | |
274 | // Color changer. | |
275 | //-------------------------------------------------------------------------------- | |
276 | ||
277 | class WXDLLEXPORT wxHtmlColourCell : public wxHtmlCell | |
278 | { | |
97494971 VS |
279 | public: |
280 | wxHtmlColourCell(const wxColour& clr, int flags = wxHTML_CLR_FOREGROUND) : wxHtmlCell() {m_Colour = clr; m_Flags = flags;} | |
281 | virtual void Draw(wxDC& dc, int x, int y, int view_y1, int view_y2); | |
282 | virtual void DrawInvisible(wxDC& dc, int x, int y); | |
283 | ||
284 | protected: | |
285 | wxColour m_Colour; | |
286 | unsigned m_Flags; | |
5526e819 VS |
287 | }; |
288 | ||
289 | ||
290 | ||
291 | ||
292 | //-------------------------------------------------------------------------------- | |
293 | // wxHtmlFontCell | |
294 | // Sets actual font used for text rendering | |
295 | //-------------------------------------------------------------------------------- | |
296 | ||
297 | class WXDLLEXPORT wxHtmlFontCell : public wxHtmlCell | |
298 | { | |
97494971 VS |
299 | public: |
300 | wxHtmlFontCell(wxFont *font) : wxHtmlCell() { m_Font = (*font); } | |
301 | virtual void Draw(wxDC& dc, int x, int y, int view_y1, int view_y2); | |
302 | virtual void DrawInvisible(wxDC& dc, int x, int y); | |
60e87cb1 | 303 | |
97494971 VS |
304 | protected: |
305 | wxFont m_Font; | |
5526e819 VS |
306 | }; |
307 | ||
308 | ||
309 | ||
310 | ||
311 | ||
312 | ||
313 | //-------------------------------------------------------------------------------- | |
314 | // wxHtmlwidgetCell | |
315 | // This cell is connected with wxWindow object | |
316 | // You can use it to insert windows into HTML page | |
317 | // (buttons, input boxes etc.) | |
318 | //-------------------------------------------------------------------------------- | |
319 | ||
320 | class WXDLLEXPORT wxHtmlWidgetCell : public wxHtmlCell | |
321 | { | |
97494971 VS |
322 | public: |
323 | // !!! wnd must have correct parent! | |
324 | // if w != 0 then the m_Wnd has 'floating' width - it adjust | |
325 | // it's width according to parent container's width | |
326 | // (w is percent of parent's width) | |
327 | wxHtmlWidgetCell(wxWindow *wnd, int w = 0); | |
328 | ~wxHtmlWidgetCell() { m_Wnd->Destroy(); } | |
329 | virtual void Draw(wxDC& dc, int x, int y, int view_y1, int view_y2); | |
330 | virtual void DrawInvisible(wxDC& dc, int x, int y); | |
331 | virtual void Layout(int w); | |
332 | ||
333 | protected: | |
334 | wxWindow* m_Wnd; | |
335 | int m_WidthFloat; | |
336 | // width float is used in adjustWidth (it is in percents) | |
22f3361e VZ |
337 | |
338 | DECLARE_NO_COPY_CLASS(wxHtmlWidgetCell) | |
5526e819 VS |
339 | }; |
340 | ||
341 | ||
342 | ||
846914d1 VS |
343 | //-------------------------------------------------------------------------------- |
344 | // wxHtmlLinkInfo | |
345 | // Internal data structure. It represents hypertext link | |
346 | //-------------------------------------------------------------------------------- | |
347 | ||
ffef2bde | 348 | class WXDLLEXPORT wxHtmlLinkInfo : public wxObject |
846914d1 | 349 | { |
97494971 VS |
350 | public: |
351 | wxHtmlLinkInfo() : wxObject() | |
352 | { m_Href = m_Target = wxEmptyString; m_Event = NULL, m_Cell = NULL; } | |
353 | wxHtmlLinkInfo(const wxString& href, const wxString& target = wxEmptyString) : wxObject() | |
354 | { m_Href = href; m_Target = target; m_Event = NULL, m_Cell = NULL; } | |
355 | wxHtmlLinkInfo(const wxHtmlLinkInfo& l) : wxObject() | |
356 | { m_Href = l.m_Href, m_Target = l.m_Target, m_Event = l.m_Event; | |
357 | m_Cell = l.m_Cell; } | |
358 | wxHtmlLinkInfo& operator=(const wxHtmlLinkInfo& l) | |
359 | { m_Href = l.m_Href, m_Target = l.m_Target, m_Event = l.m_Event; | |
360 | m_Cell = l.m_Cell; return *this; } | |
361 | ||
362 | void SetEvent(const wxMouseEvent *e) { m_Event = e; } | |
363 | void SetHtmlCell(const wxHtmlCell *e) { m_Cell = e; } | |
364 | ||
365 | wxString GetHref() const { return m_Href; } | |
366 | wxString GetTarget() const { return m_Target; } | |
367 | const wxMouseEvent* GetEvent() const { return m_Event; } | |
368 | const wxHtmlCell* GetHtmlCell() const { return m_Cell; } | |
369 | ||
370 | private: | |
371 | wxString m_Href, m_Target; | |
372 | const wxMouseEvent *m_Event; | |
373 | const wxHtmlCell *m_Cell; | |
846914d1 VS |
374 | }; |
375 | ||
376 | ||
377 | ||
378 | ||
379 | #endif // wxUSE_HTML | |
5526e819 | 380 | |
69941f05 | 381 | #endif // _WX_HTMLCELL_H_ |
5526e819 | 382 |