]> git.saurik.com Git - wxWidgets.git/blame - interface/wx/html/htmlcell.h
Add visual drag hint
[wxWidgets.git] / interface / wx / html / htmlcell.h
CommitLineData
23324ae1
FM
1/////////////////////////////////////////////////////////////////////////////
2// Name: html/htmlcell.h
5bddd46d 3// Purpose: interface of wxHtml*Cell
23324ae1
FM
4// Author: wxWidgets team
5// RCS-ID: $Id$
6// Licence: wxWindows license
7/////////////////////////////////////////////////////////////////////////////
8
f21dd16b
FM
9
10
23324ae1 11/**
f21dd16b 12 @class wxHtmlRenderingStyle
7c913512 13
f21dd16b
FM
14 Allows HTML rendering customizations.
15 This class is used when rendering wxHtmlCells as a callback.
7c913512 16
23324ae1 17 @library{wxhtml}
8067ee11 18 @category{html}
f21dd16b
FM
19
20 @see wxHtmlRenderingInfo
23324ae1 21*/
f21dd16b 22class wxHtmlRenderingStyle
23324ae1
FM
23{
24public:
25 /**
f21dd16b
FM
26 Returns the colour to use for the selected text.
27 */
28 virtual wxColour GetSelectedTextColour(const wxColour& clr) = 0;
8067ee11 29
f21dd16b
FM
30 /**
31 Returns the colour to use for the selected text's background.
23324ae1 32 */
f21dd16b 33 virtual wxColour GetSelectedTextBgColour(const wxColour& clr) = 0;
23324ae1
FM
34};
35
36
37/**
f21dd16b 38 @class wxHtmlRenderingInfo
7c913512 39
f21dd16b
FM
40 This class contains information given to cells when drawing them.
41 Contains rendering state, selection information and rendering style object
42 that can be used to customize the output.
7c913512 43
23324ae1 44 @library{wxhtml}
5bddd46d 45 @category{html}
f21dd16b
FM
46
47 @see @ref overview_html_cells, wxHtmlCell
23324ae1 48*/
f21dd16b 49class wxHtmlRenderingInfo
23324ae1
FM
50{
51public:
52 /**
f21dd16b
FM
53 Default ctor.
54 */
55 wxHtmlRenderingInfo();
8067ee11 56
f21dd16b
FM
57 //@{
58 /**
59 Accessors.
23324ae1 60 */
f21dd16b
FM
61 void SetSelection(wxHtmlSelection *s);
62 wxHtmlSelection *GetSelection() const;
63
64 void SetStyle(wxHtmlRenderingStyle *style);
65 wxHtmlRenderingStyle& GetStyle();
23324ae1 66
f21dd16b
FM
67 wxHtmlRenderingState& GetState();
68 //@}
69};
23324ae1 70
e54c96f1 71
23324ae1
FM
72/**
73 @class wxHtmlCell
7c913512 74
5bddd46d
FM
75 Internal data structure. It represents fragments of parsed HTML page, the
76 so-called @b cell - a word, picture, table, horizontal line and so on.
77 It is used by wxHtmlWindow and wxHtmlWinParser to represent HTML page in memory.
7c913512 78
23324ae1 79 You can divide cells into two groups : @e visible cells with non-zero width and
5bddd46d
FM
80 height and @e helper cells (usually with zero width and height) that perform
81 special actions such as color or font change.
7c913512 82
23324ae1 83 @library{wxhtml}
5bddd46d 84 @category{html}
7c913512 85
5bddd46d 86 @see @ref overview_html_cells, wxHtmlContainerCell
23324ae1
FM
87*/
88class wxHtmlCell : public wxObject
89{
90public:
91 /**
92 Constructor.
93 */
94 wxHtmlCell();
95
96 /**
5bddd46d
FM
97 This method is used to adjust pagebreak position.
98 The parameter is variable that contains y-coordinate of page break
99 (= horizontal line that should not be crossed by words, images etc.).
100 If this cell cannot be divided into two pieces (each one on another page)
101 then it moves the pagebreak few pixels up.
102 Returns @true if pagebreak was modified, @false otherwise.
103
23324ae1 104 Usage:
5bddd46d
FM
105 @code
106 while (container->AdjustPagebreak(&p)) {}
107 @endcode
23324ae1 108 */
5267aefd
FM
109 virtual bool AdjustPagebreak(int* pagebreak,
110 wxArrayInt& known_pagebreaks) const;
23324ae1
FM
111
112 /**
113 Renders the cell.
8067ee11 114
7c913512 115 @param dc
f21dd16b 116 Device context to which the cell is to be drawn.
7c913512 117 @param x,y
4cc4bfaf
FM
118 Coordinates of parent's upper left corner (origin). You must
119 add this to m_PosX,m_PosY when passing coordinates to dc's methods
5bddd46d
FM
120 Example:
121 @code
122 dc->DrawText("hello", x + m_PosX, y + m_PosY)
123 @endcode
7c913512 124 @param view_y1
5bddd46d 125 y-coord of the first line visible in window.
f21dd16b 126 This is used to optimize rendering speed.
7c913512 127 @param view_y2
5bddd46d 128 y-coord of the last line visible in window.
f21dd16b
FM
129 This is used to optimize rendering speed.
130 @param info
131 Additional information for the rendering of the cell.
23324ae1 132 */
5267aefd 133 virtual void Draw(wxDC& dc, int x, int y, int view_y1, int view_y2, wxHtmlRenderingInfo& info);
23324ae1
FM
134
135 /**
5bddd46d
FM
136 This method is called instead of Draw() when the cell is certainly out of
137 the screen (and thus invisible). This is not nonsense - some tags (like
138 wxHtmlColourCell or font setter) must be drawn even if they are invisible!
8067ee11 139
7c913512 140 @param dc
5bddd46d 141 Device context to which the cell is to be drawn.
7c913512 142 @param x,y
4cc4bfaf
FM
143 Coordinates of parent's upper left corner. You must
144 add this to m_PosX,m_PosY when passing coordinates to dc's methods
5bddd46d
FM
145 Example:
146 @code
147 dc->DrawText("hello", x + m_PosX, y + m_PosY)
148 @endcode
f21dd16b
FM
149 @param info
150 Additional information for the rendering of the cell.
23324ae1 151 */
f21dd16b 152 virtual void DrawInvisible(wxDC& dc, int x , int y, wxHtmlRenderingInfo& info);
23324ae1
FM
153
154 /**
5bddd46d
FM
155 Returns pointer to itself if this cell matches condition (or if any of the
156 cells following in the list matches), @NULL otherwise.
157 (In other words if you call top-level container's Find() it will
23324ae1 158 return pointer to the first cell that matches the condition)
5bddd46d 159
23324ae1 160 It is recommended way how to obtain pointer to particular cell or
5bddd46d
FM
161 to cell of some type (e.g. wxHtmlAnchorCell reacts on wxHTML_COND_ISANCHOR
162 condition).
8067ee11 163
7c913512 164 @param condition
4cc4bfaf 165 Unique integer identifier of condition
7c913512 166 @param param
4cc4bfaf 167 Optional parameters
23324ae1 168 */
adaaa686 169 virtual const wxHtmlCell* Find(int condition, const void* param) const;
23324ae1
FM
170
171 /**
7c913512 172 Returns descent value of the cell (m_Descent member).
23324ae1 173 See explanation:
fd779edb 174 @image html htmlcell_descent.png
23324ae1 175 */
328f5751 176 int GetDescent() const;
23324ae1
FM
177
178 /**
179 Returns pointer to the first cell in the list.
5bddd46d
FM
180 You can then use child's GetNext() method to obtain pointer to the next
181 cell in list.
182
cdbcf4c2 183 @note This shouldn't be used by the end user. If you need some way of
5bddd46d 184 finding particular cell in the list, try Find() method instead.
23324ae1 185 */
adaaa686 186 virtual wxHtmlCell* GetFirstChild() const;
23324ae1
FM
187
188 /**
189 Returns height of the cell (m_Height member).
190 */
328f5751 191 int GetHeight() const;
23324ae1
FM
192
193 /**
5bddd46d 194 Returns unique cell identifier if there is any, the empty string otherwise.
23324ae1 195 */
5267aefd 196 const wxString& GetId() const;
23324ae1
FM
197
198 /**
199 Returns hypertext link if associated with this cell or @NULL otherwise.
5bddd46d 200 See wxHtmlLinkInfo. (Note: this makes sense only for visible tags).
8067ee11 201
7c913512 202 @param x,y
4cc4bfaf
FM
203 Coordinates of position where the user pressed mouse button.
204 These coordinates are used e.g. by COLORMAP. Values are relative to the
205 upper left corner of THIS cell (i.e. from 0 to m_Width or m_Height)
23324ae1 206 */
328f5751 207 virtual wxHtmlLinkInfo* GetLink(int x = 0, int y = 0) const;
23324ae1
FM
208
209 /**
210 Returns cursor to show when mouse pointer is over the cell.
8067ee11 211
7c913512 212 @param window
4cc4bfaf 213 interface to the parent HTML window
23324ae1 214 */
adaaa686 215 virtual wxCursor GetMouseCursor(wxHtmlWindowInterface* window) const;
23324ae1
FM
216
217 /**
218 Returns pointer to the next cell in list (see htmlcell.h if you're
219 interested in details).
220 */
328f5751 221 wxHtmlCell* GetNext() const;
23324ae1
FM
222
223 /**
224 Returns pointer to parent container.
225 */
328f5751 226 wxHtmlContainerCell* GetParent() const;
23324ae1
FM
227
228 /**
229 Returns X position within parent (the value is relative to parent's
230 upper left corner). The returned value is meaningful only if
231 parent's Layout() was called before!
232 */
328f5751 233 int GetPosX() const;
23324ae1
FM
234
235 /**
236 Returns Y position within parent (the value is relative to parent's
237 upper left corner). The returned value is meaningful only if
238 parent's Layout() was called before!
239 */
328f5751 240 int GetPosY() const;
23324ae1
FM
241
242 /**
243 Returns width of the cell (m_Width member).
244 */
328f5751 245 int GetWidth() const;
23324ae1
FM
246
247 /**
248 This method performs two actions:
5bddd46d
FM
249 -# adjusts the cell's width according to the fact that maximal possible
250 width is @e w. (this has sense when working with horizontal lines, tables etc.)
251 -# prepares layout (=fill-in m_PosX, m_PosY (and sometimes m_Height) members)
252 based on actual width @e w
253
254 It must be called before displaying cells structure because m_PosX and
255 m_PosY are undefined (or invalid) before calling Layout().
23324ae1
FM
256 */
257 virtual void Layout(int w);
258
259 /**
5bddd46d
FM
260 This function is simple event handler.
261 Each time the user clicks mouse button over a cell within wxHtmlWindow
262 this method of that cell is called.
263 Default behavior is to call wxHtmlWindow::LoadPage.
8067ee11 264
7c913512 265 @param window
4cc4bfaf 266 interface to the parent HTML window
7c913512 267 @param pos
4cc4bfaf 268 coordinates of mouse click (this is relative to cell's origin
7c913512 269 @param event
4cc4bfaf 270 mouse event that triggered the call
8067ee11 271
d29a9a8a 272 @return @true if a link was clicked, @false otherwise.
5bddd46d
FM
273
274 @since 2.7.0 (before OnMouseClick() method served a similar purpose).
275
276 @note
277 If you need more "advanced" event handling you should use wxHtmlBinderCell instead.
23324ae1
FM
278 */
279 virtual bool ProcessMouseClick(wxHtmlWindowInterface* window,
280 const wxPoint& pos,
281 const wxMouseEvent& event);
282
283 /**
284 Sets unique cell identifier. Default value is no identifier, i.e. empty string.
285 */
286 void SetId(const wxString& id);
287
288 /**
5bddd46d
FM
289 Sets the hypertext link associated with this cell.
290 (Default value is wxHtmlLinkInfo("", "") (no link))
23324ae1
FM
291 */
292 void SetLink(const wxHtmlLinkInfo& link);
293
294 /**
295 Sets the next cell in the list. This shouldn't be called by user - it is
296 to be used only by wxHtmlContainerCell::InsertCell.
297 */
5267aefd 298 void SetNext(wxHtmlCell* cell);
23324ae1
FM
299
300 /**
5bddd46d
FM
301 Sets parent container of this cell.
302 This is called from wxHtmlContainerCell::InsertCell.
23324ae1 303 */
5267aefd 304 void SetParent(wxHtmlContainerCell* p);
23324ae1
FM
305
306 /**
307 Sets the cell's position within parent container.
308 */
adaaa686 309 virtual void SetPos(int x, int y);
23324ae1
FM
310};
311
312
e54c96f1 313
23324ae1
FM
314/**
315 @class wxHtmlContainerCell
7c913512 316
23324ae1
FM
317 The wxHtmlContainerCell class is an implementation of a cell that may
318 contain more cells in it. It is heavily used in the wxHTML layout algorithm.
7c913512 319
23324ae1 320 @library{wxhtml}
5bddd46d 321 @category{html}
7c913512 322
5bddd46d 323 @see @ref overview_html_cells
23324ae1
FM
324*/
325class wxHtmlContainerCell : public wxHtmlCell
326{
327public:
328 /**
4cc4bfaf 329 Constructor. @a parent is pointer to parent container or @NULL.
23324ae1 330 */
8067ee11 331 wxHtmlContainerCell(wxHtmlContainerCell* parent);
23324ae1
FM
332
333 /**
334 Returns container's horizontal alignment.
335 */
328f5751 336 int GetAlignHor() const;
23324ae1
FM
337
338 /**
339 Returns container's vertical alignment.
340 */
328f5751 341 int GetAlignVer() const;
23324ae1
FM
342
343 /**
344 Returns the background colour of the container or @c wxNullColour if no
5bddd46d 345 background colour is set.
23324ae1
FM
346 */
347 wxColour GetBackgroundColour();
348
349 /**
4cc4bfaf 350 Returns the indentation. @a ind is one of the @b wxHTML_INDENT_* constants.
5bddd46d
FM
351
352 @note You must call GetIndentUnits() with same @a ind parameter in order
353 to correctly interpret the returned integer value.
354 It is NOT always in pixels!
23324ae1 355 */
328f5751 356 int GetIndent(int ind) const;
23324ae1
FM
357
358 /**
4cc4bfaf 359 Returns the units of indentation for @a ind where @a ind is one
23324ae1
FM
360 of the @b wxHTML_INDENT_* constants.
361 */
328f5751 362 int GetIndentUnits(int ind) const;
23324ae1
FM
363
364 /**
5bddd46d 365 Inserts a new cell into the container.
23324ae1 366 */
5267aefd 367 void InsertCell(wxHtmlCell* cell);
23324ae1
FM
368
369 /**
370 Sets the container's alignment (both horizontal and vertical) according to
5bddd46d
FM
371 the values stored in @e tag. (Tags @c ALIGN parameter is extracted.)
372 In fact it is only a front-end to SetAlignHor() and SetAlignVer().
23324ae1
FM
373 */
374 void SetAlign(const wxHtmlTag& tag);
375
376 /**
5bddd46d
FM
377 Sets the container's @e horizontal alignment.
378 During wxHtmlCell::Layout each line is aligned according to @a al value.
8067ee11 379
7c913512 380 @param al
4cc4bfaf 381 new horizontal alignment. May be one of these values:
5bddd46d
FM
382 - wxHTML_ALIGN_LEFT: lines are left-aligned (default)
383 - wxHTML_ALIGN_JUSTIFY: lines are justified
384 - wxHTML_ALIGN_CENTER: lines are centered
385 - wxHTML_ALIGN_RIGHT: lines are right-aligned
23324ae1
FM
386 */
387 void SetAlignHor(int al);
388
389 /**
390 Sets the container's @e vertical alignment. This is per-line alignment!
8067ee11 391
7c913512 392 @param al
4cc4bfaf 393 new vertical alignment. May be one of these values:
5bddd46d
FM
394 - wxHTML_ALIGN_BOTTOM: cells are over the line (default)
395 - wxHTML_ALIGN_CENTER: cells are centered on line
396 - wxHTML_ALIGN_TOP: cells are under the line
8067ee11 397
fd779edb 398 @image html htmlcontcell_alignv.png
23324ae1
FM
399 */
400 void SetAlignVer(int al);
401
402 /**
403 Sets the background colour for this container.
404 */
405 void SetBackgroundColour(const wxColour& clr);
406
407 /**
408 Sets the border (frame) colours. A border is a rectangle around the container.
8067ee11 409
7c913512 410 @param clr1
4cc4bfaf 411 Colour of top and left lines
7c913512 412 @param clr2
4cc4bfaf 413 Colour of bottom and right lines
23324ae1
FM
414 */
415 void SetBorder(const wxColour& clr1, const wxColour& clr2);
416
417 /**
418 Sets the indentation (free space between borders of container and subcells).
8067ee11 419
fd779edb 420 @image html htmlcontcell_indent.png
5bddd46d 421
7c913512 422 @param i
4cc4bfaf 423 Indentation value.
7c913512 424 @param what
4cc4bfaf
FM
425 Determines which of the four borders we're setting. It is OR
426 combination of following constants:
5bddd46d
FM
427 - wxHTML_INDENT_TOP: top border
428 - wxHTML_INDENT_BOTTOM: bottom
429 - wxHTML_INDENT_LEFT: left
430 - wxHTML_INDENT_RIGHT: right
431 - wxHTML_INDENT_HORIZONTAL: left and right
432 - wxHTML_INDENT_VERTICAL: top and bottom
433 - wxHTML_INDENT_ALL: all 4 borders
7c913512 434 @param units
5bddd46d
FM
435 Units of i. This parameter affects interpretation of value.
436 - wxHTML_UNITS_PIXELS: @a i is number of pixels
437 - wxHTML_UNITS_PERCENT: @a i is interpreted as percents of width
438 of parent container
23324ae1
FM
439 */
440 void SetIndent(int i, int what, int units = wxHTML_UNITS_PIXELS);
441
442 /**
443 Sets minimal height of the container.
5bddd46d
FM
444 When container's wxHtmlCell::Layout is called, m_Height is set depending
445 on layout of subcells to the height of area covered by layed-out subcells.
446 Calling this method guarantees you that the height of container is never
447 smaller than @a h - even if the subcells cover much smaller area.
8067ee11 448
7c913512 449 @param h
4cc4bfaf 450 The minimal height.
7c913512 451 @param align
4cc4bfaf 452 If height of the container is lower than the minimum height, empty space
5bddd46d
FM
453 must be inserted somewhere in order to ensure minimal height.
454 This parameter is one of @c wxHTML_ALIGN_TOP, @c wxHTML_ALIGN_BOTTOM,
455 @c wxHTML_ALIGN_CENTER. It refers to the contents, not to the
4cc4bfaf 456 empty place.
23324ae1
FM
457 */
458 void SetMinHeight(int h, int align = wxHTML_ALIGN_TOP);
459
23324ae1
FM
460 /**
461 Sets floating width adjustment.
5bddd46d 462
23324ae1
FM
463 The normal behaviour of container is that its width is the same as the width of
464 parent container (and thus you can have only one sub-container per line).
5bddd46d 465 You can change this by setting the floating width adjustment.
8067ee11 466
7c913512 467 @param w
4cc4bfaf 468 Width of the container. If the value is negative it means
5bddd46d
FM
469 complement to full width of parent container.
470 E.g. @code SetWidthFloat(-50, wxHTML_UNITS_PIXELS) @endcode sets the
471 width of container to parent's width minus 50 pixels. This is useful when
472 creating tables - you can call SetWidthFloat(50) and SetWidthFloat(-50).
7c913512 473 @param units
4cc4bfaf 474 Units of w This parameter affects the interpretation of value.
5bddd46d
FM
475 - wxHTML_UNITS_PIXELS: @a w is number of pixels
476 - wxHTML_UNITS_PERCENT: @a w is interpreted as percents of width
477 of parent container
478 */
479 void SetWidthFloat(int w, int units);
8067ee11 480
5bddd46d
FM
481 /**
482 Sets floating width adjustment.
8067ee11 483
5bddd46d
FM
484 The normal behaviour of container is that its width is the same as the width of
485 parent container (and thus you can have only one sub-container per line).
486 You can change this by setting the floating width adjustment.
8067ee11 487
7c913512 488 @param tag
5bddd46d
FM
489 In the second version of method, @a w and @a units info is extracted
490 from tag's WIDTH parameter.
491 @param pixel_scale
492 This is number of real pixels that equals to 1 HTML pixel.
23324ae1 493 */
7c913512
FM
494 void SetWidthFloat(const wxHtmlTag& tag,
495 double pixel_scale = 1.0);
23324ae1
FM
496};
497
498
e54c96f1 499
23324ae1
FM
500/**
501 @class wxHtmlLinkInfo
7c913512 502
5bddd46d
FM
503 This class stores all necessary information about hypertext links
504 (as represented by \<A\> tag in HTML documents).
505 In current implementation it stores URL and target frame name.
506
507 @note Frames are not currently supported by wxHTML!
7c913512 508
23324ae1 509 @library{wxhtml}
5bddd46d 510 @category{html}
23324ae1
FM
511*/
512class wxHtmlLinkInfo : public wxObject
513{
514public:
23324ae1 515 /**
5bddd46d 516 Default ctor.
23324ae1
FM
517 */
518 wxHtmlLinkInfo();
5bddd46d
FM
519
520 /**
521 Construct hypertext link from HREF (aka URL) and TARGET (name of target frame).
522 */
7c913512
FM
523 wxHtmlLinkInfo(const wxString& href,
524 const wxString& target = wxEmptyString);
23324ae1
FM
525
526 /**
5bddd46d
FM
527 Return pointer to event that generated OnLinkClicked() event.
528 Valid only within wxHtmlWindow::OnLinkClicked, @NULL otherwise.
23324ae1 529 */
adaaa686 530 const wxMouseEvent* GetEvent() const;
23324ae1
FM
531
532 /**
5bddd46d 533 Return @e HREF value of the \<A\> tag.
23324ae1 534 */
adaaa686 535 wxString GetHref() const;
23324ae1
FM
536
537 /**
5bddd46d
FM
538 Return pointer to the cell that was clicked.
539 Valid only within wxHtmlWindow::OnLinkClicked, @NULL otherwise.
23324ae1 540 */
adaaa686 541 const wxHtmlCell* GetHtmlCell() const;
23324ae1
FM
542
543 /**
5bddd46d
FM
544 Return @e TARGET value of the \<A\> tag (this value is used to specify
545 in which frame should be the page pointed by @ref GetHref() Href opened).
23324ae1 546 */
adaaa686 547 wxString GetTarget() const;
23324ae1 548};
e54c96f1 549
f21dd16b
FM
550/**
551 @class wxHtmlColourCell
552
553 This cell changes the colour of either the background or the foreground.
554
555 @library{wxhtml}
556 @category{html}
557*/
558class wxHtmlColourCell : public wxHtmlCell
559{
560public:
561 /**
562 Constructor.
563
564 @param clr
565 The color
566 @param flags
567 Can be one of following:
568 - wxHTML_CLR_FOREGROUND: change color of text
569 - wxHTML_CLR_BACKGROUND: change background color
570 */
571 wxHtmlColourCell(const wxColour& clr, int flags = wxHTML_CLR_FOREGROUND);
572};
573
574
575
576/**
577 @class wxHtmlWidgetCell
578
579 wxHtmlWidgetCell is a class that provides a connection between HTML cells and
580 widgets (an object derived from wxWindow).
581 You can use it to display things like forms, input boxes etc. in an HTML window.
582
583 wxHtmlWidgetCell takes care of resizing and moving window.
584
585 @library{wxhtml}
586 @category{html}
587*/
588class wxHtmlWidgetCell : public wxHtmlCell
589{
590public:
591 /**
592 Constructor.
593
594 @param wnd
595 Connected window. It is parent window @b must be the wxHtmlWindow object
596 within which it is displayed!
597 @param w
598 Floating width. If non-zero width of wnd window is adjusted so that it is
599 always w percents of parent container's width. (For example w = 100 means
600 that the window will always have same width as parent container).
601 */
602 wxHtmlWidgetCell(wxWindow* wnd, int w = 0);
603};