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