1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxHtmlCell - basic element of HTML output
4 // Author: Vaclav Slavik
6 // Copyright: (c) 1999 Vaclav Slavik
7 // Licence: wxWindows Licence
8 /////////////////////////////////////////////////////////////////////////////
11 #pragma implementation "htmlcell.h"
14 #include "wx/wxprec.h"
18 #if wxUSE_HTML && wxUSE_STREAMS
26 #include "wx/colour.h"
30 #include "wx/html/htmlcell.h"
31 #include "wx/html/htmlwin.h"
32 #include "wx/settings.h"
33 #include "wx/module.h"
37 //-----------------------------------------------------------------------------
39 //-----------------------------------------------------------------------------
41 static wxCursor
*gs_cursorLink
= NULL
;
42 static wxCursor
*gs_cursorText
= NULL
;
45 //-----------------------------------------------------------------------------
47 //-----------------------------------------------------------------------------
49 void wxHtmlSelection::Set(const wxPoint
& fromPos
, const wxHtmlCell
*fromCell
,
50 const wxPoint
& toPos
, const wxHtmlCell
*toCell
)
52 m_fromCell
= fromCell
;
58 void wxHtmlSelection::Set(const wxHtmlCell
*fromCell
, const wxHtmlCell
*toCell
)
60 wxPoint p1
= fromCell
? fromCell
->GetAbsPos() : wxDefaultPosition
;
61 wxPoint p2
= toCell
? toCell
->GetAbsPos() : wxDefaultPosition
;
64 p2
.x
+= toCell
->GetWidth()-1;
65 p2
.y
+= toCell
->GetHeight()-1;
67 Set(p1
, fromCell
, p2
, toCell
);
70 wxColour
wxDefaultHtmlRenderingStyle::GetSelectedTextColour(
73 return wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT
);
76 wxColour
wxDefaultHtmlRenderingStyle::GetSelectedTextBgColour(
77 const wxColour
& WXUNUSED(clr
))
79 return wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHT
);
83 //-----------------------------------------------------------------------------
85 //-----------------------------------------------------------------------------
87 wxHtmlCell::wxHtmlCell() : wxObject()
91 m_Width
= m_Height
= m_Descent
= 0;
92 m_CanLiveOnPagebreak
= TRUE
;
96 wxHtmlCell::~wxHtmlCell()
102 void wxHtmlCell::OnMouseClick(wxWindow
*parent
, int x
, int y
,
103 const wxMouseEvent
& event
)
105 wxHtmlLinkInfo
*lnk
= GetLink(x
, y
);
108 wxHtmlLinkInfo
lnk2(*lnk
);
109 lnk2
.SetEvent(&event
);
110 lnk2
.SetHtmlCell(this);
112 // note : this cast is legal because parent is *always* wxHtmlWindow
113 wxStaticCast(parent
, wxHtmlWindow
)->OnLinkClicked(lnk2
);
118 wxCursor
wxHtmlCell::GetCursor() const
122 if ( !gs_cursorLink
)
123 gs_cursorLink
= new wxCursor(wxCURSOR_HAND
);
124 return *gs_cursorLink
;
127 return *wxSTANDARD_CURSOR
;
131 bool wxHtmlCell::AdjustPagebreak(int *pagebreak
, int* WXUNUSED(known_pagebreaks
), int WXUNUSED(number_of_pages
)) const
133 if ((!m_CanLiveOnPagebreak
) &&
134 m_PosY
< *pagebreak
&& m_PosY
+ m_Height
> *pagebreak
)
145 void wxHtmlCell::SetLink(const wxHtmlLinkInfo
& link
)
147 if (m_Link
) delete m_Link
;
149 if (link
.GetHref() != wxEmptyString
)
150 m_Link
= new wxHtmlLinkInfo(link
);
154 void wxHtmlCell::Layout(int WXUNUSED(w
))
161 void wxHtmlCell::GetHorizontalConstraints(int *left
, int *right
) const
166 *right
= m_PosX
+ m_Width
;
171 const wxHtmlCell
* wxHtmlCell::Find(int WXUNUSED(condition
), const void* WXUNUSED(param
)) const
177 wxHtmlCell
*wxHtmlCell::FindCellByPos(wxCoord x
, wxCoord y
,
178 unsigned flags
) const
180 if ( x
>= 0 && x
< m_Width
&& y
>= 0 && y
< m_Height
)
182 return wxConstCast(this, wxHtmlCell
);
186 if ((flags
& wxHTML_FIND_NEAREST_AFTER
) &&
187 (y
< 0 || (y
== 0 && x
<= 0)))
188 return wxConstCast(this, wxHtmlCell
);
189 else if ((flags
& wxHTML_FIND_NEAREST_BEFORE
) &&
190 (y
> m_Height
-1 || (y
== m_Height
-1 && x
>= m_Width
)))
191 return wxConstCast(this, wxHtmlCell
);
198 wxPoint
wxHtmlCell::GetAbsPos() const
200 wxPoint
p(m_PosX
, m_PosY
);
201 for (wxHtmlCell
*parent
= m_Parent
; parent
; parent
= parent
->m_Parent
)
203 p
.x
+= parent
->m_PosX
;
204 p
.y
+= parent
->m_PosY
;
209 unsigned wxHtmlCell::GetDepth() const
212 for (wxHtmlCell
*p
= m_Parent
; p
; p
= p
->m_Parent
)
217 bool wxHtmlCell::IsBefore(wxHtmlCell
*cell
) const
219 const wxHtmlCell
*c1
= this;
220 const wxHtmlCell
*c2
= cell
;
221 unsigned d1
= GetDepth();
222 unsigned d2
= cell
->GetDepth();
225 for (; d1
!= d2
; d1
-- )
228 for (; d1
!= d2
; d2
-- )
236 if ( c1
->m_Parent
== c2
->m_Parent
)
253 wxFAIL_MSG(_T("Cells are in different trees"));
258 //-----------------------------------------------------------------------------
260 //-----------------------------------------------------------------------------
262 wxHtmlWordCell::wxHtmlWordCell(const wxString
& word
, wxDC
& dc
) : wxHtmlCell()
265 dc
.GetTextExtent(m_Word
, &m_Width
, &m_Height
, &m_Descent
);
266 SetCanLiveOnPagebreak(FALSE
);
270 // Splits m_Word into up to three parts according to selection, returns
271 // substring before, in and after selection and the points (in relative coords)
272 // where s2 and s3 start:
273 void wxHtmlWordCell::Split(wxDC
& dc
,
274 const wxPoint
& selFrom
, const wxPoint
& selTo
,
275 unsigned& pos1
, unsigned& pos2
) const
277 wxPoint pt1
= (selFrom
== wxDefaultPosition
) ?
278 wxDefaultPosition
: selFrom
- GetAbsPos();
279 wxPoint pt2
= (selTo
== wxDefaultPosition
) ?
280 wxPoint(m_Width
, -1) : selTo
- GetAbsPos();
282 wxCoord charW
, charH
;
283 unsigned len
= m_Word
.length();
288 while ( pt1
.x
> 0 && i
< len
)
290 dc
.GetTextExtent(m_Word
[i
], &charW
, &charH
);
303 while ( pt2
.x
> 0 && j
< len
)
305 dc
.GetTextExtent(m_Word
[j
], &charW
, &charH
);
318 void wxHtmlWordCell::SetSelectionPrivPos(wxDC
& dc
, wxHtmlSelection
*s
) const
323 this == s
->GetFromCell() ? s
->GetFromPos() : wxDefaultPosition
,
324 this == s
->GetToCell() ? s
->GetToPos() : wxDefaultPosition
,
327 wxPoint
p(0, m_Word
.length());
329 if ( this == s
->GetFromCell() )
330 p
.x
= p1
; // selection starts here
331 if ( this == s
->GetToCell() )
332 p
.y
= p2
; // selection ends here
334 if ( this == s
->GetFromCell() )
335 s
->SetFromPrivPos(p
);
336 if ( this == s
->GetToCell() )
341 static void SwitchSelState(wxDC
& dc
, wxHtmlRenderingInfo
& info
,
344 wxColour fg
= info
.GetState().GetFgColour();
345 wxColour bg
= info
.GetState().GetBgColour();
349 dc
.SetBackgroundMode(wxSOLID
);
350 dc
.SetTextForeground(info
.GetStyle().GetSelectedTextColour(fg
));
351 dc
.SetTextBackground(info
.GetStyle().GetSelectedTextBgColour(bg
));
355 dc
.SetBackgroundMode(wxTRANSPARENT
);
356 dc
.SetTextForeground(fg
);
357 dc
.SetTextBackground(bg
);
362 void wxHtmlWordCell::Draw(wxDC
& dc
, int x
, int y
,
363 int WXUNUSED(view_y1
), int WXUNUSED(view_y2
),
364 wxHtmlRenderingInfo
& info
)
366 #if 0 // useful for debugging
367 dc
.DrawRectangle(x
+m_PosX
,y
+m_PosY
,m_Width
,m_Height
);
370 if ( info
.GetState().GetSelectionState() == wxHTML_SEL_CHANGING
)
372 // Selection changing, we must draw the word piecewise:
373 wxHtmlSelection
*s
= info
.GetSelection();
378 wxPoint priv
= (this == s
->GetFromCell()) ?
379 s
->GetFromPrivPos() : s
->GetToPrivPos();
381 // NB: this is quite a hack: in order to compute selection boundaries
382 // (in word's characters) we must know current font, which is only
383 // possible inside rendering code. Therefore we update the
384 // information here and store it in wxHtmlSelection so that
385 // ConvertToText can use it later:
386 if ( priv
== wxDefaultPosition
)
388 SetSelectionPrivPos(dc
, s
);
389 priv
= (this == s
->GetFromCell()) ?
390 s
->GetFromPrivPos() : s
->GetToPrivPos();
398 txt
= m_Word
.Mid(0, part1
);
399 dc
.DrawText(txt
, x
+ m_PosX
, y
+ m_PosY
);
400 dc
.GetTextExtent(txt
, &w
, &h
);
404 SwitchSelState(dc
, info
, true);
406 txt
= m_Word
.Mid(part1
, part2
-part1
);
407 dc
.DrawText(txt
, ofs
+ x
+ m_PosX
, y
+ m_PosY
);
409 if ( (size_t)part2
< m_Word
.length() )
411 dc
.GetTextExtent(txt
, &w
, &h
);
413 SwitchSelState(dc
, info
, false);
414 txt
= m_Word
.Mid(part2
);
415 dc
.DrawText(txt
, ofs
+ x
+ m_PosX
, y
+ m_PosY
);
420 // Not changing selection state, draw the word in single mode:
422 if ( info
.GetState().GetSelectionState() != wxHTML_SEL_OUT
&&
423 dc
.GetBackgroundMode() != wxSOLID
)
425 SwitchSelState(dc
, info
, true);
427 else if ( info
.GetState().GetSelectionState() == wxHTML_SEL_OUT
&&
428 dc
.GetBackgroundMode() == wxSOLID
)
430 SwitchSelState(dc
, info
, false);
432 dc
.DrawText(m_Word
, x
+ m_PosX
, y
+ m_PosY
);
437 wxString
wxHtmlWordCell::ConvertToText(wxHtmlSelection
*s
) const
439 if ( s
&& (this == s
->GetFromCell() || this == s
->GetToCell()) )
441 wxPoint priv
= (this == s
->GetFromCell()) ?
442 s
->GetFromPrivPos() : s
->GetToPrivPos();
445 return m_Word
.Mid(part1
, part2
-part1
);
451 wxCursor
wxHtmlWordCell::GetCursor() const
455 if ( !gs_cursorText
)
456 gs_cursorText
= new wxCursor(wxCURSOR_IBEAM
);
457 return *gs_cursorText
;
460 return wxHtmlCell::GetCursor();
465 //-----------------------------------------------------------------------------
466 // wxHtmlContainerCell
467 //-----------------------------------------------------------------------------
470 wxHtmlContainerCell::wxHtmlContainerCell(wxHtmlContainerCell
*parent
) : wxHtmlCell()
472 m_Cells
= m_LastCell
= NULL
;
474 if (m_Parent
) m_Parent
->InsertCell(this);
475 m_AlignHor
= wxHTML_ALIGN_LEFT
;
476 m_AlignVer
= wxHTML_ALIGN_BOTTOM
;
477 m_IndentLeft
= m_IndentRight
= m_IndentTop
= m_IndentBottom
= 0;
478 m_WidthFloat
= 100; m_WidthFloatUnits
= wxHTML_UNITS_PERCENT
;
479 m_UseBkColour
= FALSE
;
482 m_MinHeightAlign
= wxHTML_ALIGN_TOP
;
486 wxHtmlContainerCell::~wxHtmlContainerCell()
488 wxHtmlCell
*cell
= m_Cells
;
491 wxHtmlCell
*cellNext
= cell
->GetNext();
499 void wxHtmlContainerCell::SetIndent(int i
, int what
, int units
)
501 int val
= (units
== wxHTML_UNITS_PIXELS
) ? i
: -i
;
502 if (what
& wxHTML_INDENT_LEFT
) m_IndentLeft
= val
;
503 if (what
& wxHTML_INDENT_RIGHT
) m_IndentRight
= val
;
504 if (what
& wxHTML_INDENT_TOP
) m_IndentTop
= val
;
505 if (what
& wxHTML_INDENT_BOTTOM
) m_IndentBottom
= val
;
511 int wxHtmlContainerCell::GetIndent(int ind
) const
513 if (ind
& wxHTML_INDENT_LEFT
) return m_IndentLeft
;
514 else if (ind
& wxHTML_INDENT_RIGHT
) return m_IndentRight
;
515 else if (ind
& wxHTML_INDENT_TOP
) return m_IndentTop
;
516 else if (ind
& wxHTML_INDENT_BOTTOM
) return m_IndentBottom
;
517 else return -1; /* BUG! Should not be called... */
523 int wxHtmlContainerCell::GetIndentUnits(int ind
) const
526 if (ind
& wxHTML_INDENT_LEFT
) p
= m_IndentLeft
< 0;
527 else if (ind
& wxHTML_INDENT_RIGHT
) p
= m_IndentRight
< 0;
528 else if (ind
& wxHTML_INDENT_TOP
) p
= m_IndentTop
< 0;
529 else if (ind
& wxHTML_INDENT_BOTTOM
) p
= m_IndentBottom
< 0;
530 if (p
) return wxHTML_UNITS_PERCENT
;
531 else return wxHTML_UNITS_PIXELS
;
536 bool wxHtmlContainerCell::AdjustPagebreak(int *pagebreak
, int* known_pagebreaks
, int number_of_pages
) const
538 if (!m_CanLiveOnPagebreak
)
539 return wxHtmlCell::AdjustPagebreak(pagebreak
, known_pagebreaks
, number_of_pages
);
543 wxHtmlCell
*c
= GetFirstChild();
545 int pbrk
= *pagebreak
- m_PosY
;
549 if (c
->AdjustPagebreak(&pbrk
, known_pagebreaks
, number_of_pages
))
554 *pagebreak
= pbrk
+ m_PosY
;
561 void wxHtmlContainerCell::Layout(int w
)
563 wxHtmlCell::Layout(w
);
565 if (m_LastLayout
== w
) return;
567 // VS: Any attempt to layout with negative or zero width leads to hell,
568 // but we can't ignore such attempts completely, since it sometimes
569 // happen (e.g. when trying how small a table can be). The best thing we
570 // can do is to set the width of child cells to zero
574 for (wxHtmlCell
*cell
= m_Cells
; cell
; cell
= cell
->GetNext())
576 // this does two things: it recursively calls this code on all
577 // child contrainers and resets children's position to (0,0)
581 wxHtmlCell
*cell
= m_Cells
, *line
= m_Cells
;
582 long xpos
= 0, ypos
= m_IndentTop
;
583 int xdelta
= 0, ybasicpos
= 0, ydiff
;
584 int s_width
, s_indent
;
585 int ysizeup
= 0, ysizedown
= 0;
586 int MaxLineWidth
= 0;
596 if (m_WidthFloatUnits
== wxHTML_UNITS_PERCENT
)
598 if (m_WidthFloat
< 0) m_Width
= (100 + m_WidthFloat
) * w
/ 100;
599 else m_Width
= m_WidthFloat
* w
/ 100;
603 if (m_WidthFloat
< 0) m_Width
= w
+ m_WidthFloat
;
604 else m_Width
= m_WidthFloat
;
609 int l
= (m_IndentLeft
< 0) ? (-m_IndentLeft
* m_Width
/ 100) : m_IndentLeft
;
610 int r
= (m_IndentRight
< 0) ? (-m_IndentRight
* m_Width
/ 100) : m_IndentRight
;
611 for (wxHtmlCell
*cell
= m_Cells
; cell
; cell
= cell
->GetNext())
612 cell
->Layout(m_Width
- (l
+ r
));
621 // adjust indentation:
622 s_indent
= (m_IndentLeft
< 0) ? (-m_IndentLeft
* m_Width
/ 100) : m_IndentLeft
;
623 s_width
= m_Width
- s_indent
- ((m_IndentRight
< 0) ? (-m_IndentRight
* m_Width
/ 100) : m_IndentRight
);
630 case wxHTML_ALIGN_TOP
: ybasicpos
= 0; break;
631 case wxHTML_ALIGN_BOTTOM
: ybasicpos
= - cell
->GetHeight(); break;
632 case wxHTML_ALIGN_CENTER
: ybasicpos
= - cell
->GetHeight() / 2; break;
634 ydiff
= cell
->GetHeight() + ybasicpos
;
636 if (cell
->GetDescent() + ydiff
> ysizedown
) ysizedown
= cell
->GetDescent() + ydiff
;
637 if (ybasicpos
+ cell
->GetDescent() < -ysizeup
) ysizeup
= - (ybasicpos
+ cell
->GetDescent());
639 cell
->SetPos(xpos
, ybasicpos
+ cell
->GetDescent());
640 xpos
+= cell
->GetWidth();
641 cell
= cell
->GetNext();
644 // force new line if occured:
645 if ((cell
== NULL
) || (xpos
+ cell
->GetWidth() > s_width
))
647 if (xpos
> MaxLineWidth
) MaxLineWidth
= xpos
;
648 if (ysizeup
< 0) ysizeup
= 0;
649 if (ysizedown
< 0) ysizedown
= 0;
650 switch (m_AlignHor
) {
651 case wxHTML_ALIGN_LEFT
:
652 case wxHTML_ALIGN_JUSTIFY
:
655 case wxHTML_ALIGN_RIGHT
:
656 xdelta
= 0 + (s_width
- xpos
);
658 case wxHTML_ALIGN_CENTER
:
659 xdelta
= 0 + (s_width
- xpos
) / 2;
662 if (xdelta
< 0) xdelta
= 0;
667 if (m_AlignHor
!= wxHTML_ALIGN_JUSTIFY
|| cell
== NULL
)
670 line
->SetPos(line
->GetPosX() + xdelta
,
671 ypos
+ line
->GetPosY());
672 line
= line
->GetNext();
677 int step
= (s_width
- xpos
);
678 if (step
< 0) step
= 0;
680 if (xcnt
> 0) while (line
!= cell
)
682 line
->SetPos(line
->GetPosX() + s_indent
+
683 (counter
++ * step
/ xcnt
),
684 ypos
+ line
->GetPosY());
685 line
= line
->GetNext();
692 ysizeup
= ysizedown
= 0;
697 // setup height & width, depending on container layout:
698 m_Height
= ypos
+ (ysizedown
+ ysizeup
) + m_IndentBottom
;
700 if (m_Height
< m_MinHeight
)
702 if (m_MinHeightAlign
!= wxHTML_ALIGN_TOP
)
704 int diff
= m_MinHeight
- m_Height
;
705 if (m_MinHeightAlign
== wxHTML_ALIGN_CENTER
) diff
/= 2;
709 cell
->SetPos(cell
->GetPosX(), cell
->GetPosY() + diff
);
710 cell
= cell
->GetNext();
713 m_Height
= m_MinHeight
;
716 MaxLineWidth
+= s_indent
+ ((m_IndentRight
< 0) ? (-m_IndentRight
* m_Width
/ 100) : m_IndentRight
);
717 if (m_Width
< MaxLineWidth
) m_Width
= MaxLineWidth
;
722 void wxHtmlContainerCell::UpdateRenderingStatePre(wxHtmlRenderingInfo
& info
,
723 wxHtmlCell
*cell
) const
725 wxHtmlSelection
*s
= info
.GetSelection();
727 if (s
->GetFromCell() == cell
|| s
->GetToCell() == cell
)
729 info
.GetState().SetSelectionState(wxHTML_SEL_CHANGING
);
733 void wxHtmlContainerCell::UpdateRenderingStatePost(wxHtmlRenderingInfo
& info
,
734 wxHtmlCell
*cell
) const
736 wxHtmlSelection
*s
= info
.GetSelection();
738 if (s
->GetToCell() == cell
)
739 info
.GetState().SetSelectionState(wxHTML_SEL_OUT
);
740 else if (s
->GetFromCell() == cell
)
741 info
.GetState().SetSelectionState(wxHTML_SEL_IN
);
744 #define mMin(a, b) (((a) < (b)) ? (a) : (b))
745 #define mMax(a, b) (((a) < (b)) ? (b) : (a))
747 void wxHtmlContainerCell::Draw(wxDC
& dc
, int x
, int y
, int view_y1
, int view_y2
,
748 wxHtmlRenderingInfo
& info
)
750 // container visible, draw it:
751 if ((y
+ m_PosY
<= view_y2
) && (y
+ m_PosY
+ m_Height
> view_y1
))
755 wxBrush myb
= wxBrush(m_BkColour
, wxSOLID
);
757 int real_y1
= mMax(y
+ m_PosY
, view_y1
);
758 int real_y2
= mMin(y
+ m_PosY
+ m_Height
- 1, view_y2
);
761 dc
.SetPen(*wxTRANSPARENT_PEN
);
762 dc
.DrawRectangle(x
+ m_PosX
, real_y1
, m_Width
, real_y2
- real_y1
+ 1);
767 wxPen
mypen1(m_BorderColour1
, 1, wxSOLID
);
768 wxPen
mypen2(m_BorderColour2
, 1, wxSOLID
);
771 dc
.DrawLine(x
+ m_PosX
, y
+ m_PosY
, x
+ m_PosX
, y
+ m_PosY
+ m_Height
- 1);
772 dc
.DrawLine(x
+ m_PosX
, y
+ m_PosY
, x
+ m_PosX
+ m_Width
, y
+ m_PosY
);
774 dc
.DrawLine(x
+ m_PosX
+ m_Width
- 1, y
+ m_PosY
, x
+ m_PosX
+ m_Width
- 1, y
+ m_PosY
+ m_Height
- 1);
775 dc
.DrawLine(x
+ m_PosX
, y
+ m_PosY
+ m_Height
- 1, x
+ m_PosX
+ m_Width
, y
+ m_PosY
+ m_Height
- 1);
780 // draw container's contents:
781 for (wxHtmlCell
*cell
= m_Cells
; cell
; cell
= cell
->GetNext())
783 UpdateRenderingStatePre(info
, cell
);
785 x
+ m_PosX
, y
+ m_PosY
, view_y1
, view_y2
,
787 UpdateRenderingStatePost(info
, cell
);
791 // container invisible, just proceed font+color changing:
794 DrawInvisible(dc
, x
, y
, info
);
800 void wxHtmlContainerCell::DrawInvisible(wxDC
& dc
, int x
, int y
,
801 wxHtmlRenderingInfo
& info
)
805 for (wxHtmlCell
*cell
= m_Cells
; cell
; cell
= cell
->GetNext())
807 UpdateRenderingStatePre(info
, cell
);
808 cell
->DrawInvisible(dc
, x
+ m_PosX
, y
+ m_PosY
, info
);
809 UpdateRenderingStatePost(info
, cell
);
815 wxColour
wxHtmlContainerCell::GetBackgroundColour()
825 wxHtmlLinkInfo
*wxHtmlContainerCell::GetLink(int x
, int y
) const
827 wxHtmlCell
*cell
= FindCellByPos(x
, y
);
829 // VZ: I don't know if we should pass absolute or relative coords to
830 // wxHtmlCell::GetLink()? As the base class version just ignores them
831 // anyhow, it hardly matters right now but should still be clarified
832 return cell
? cell
->GetLink(x
, y
) : NULL
;
837 void wxHtmlContainerCell::InsertCell(wxHtmlCell
*f
)
839 if (!m_Cells
) m_Cells
= m_LastCell
= f
;
842 m_LastCell
->SetNext(f
);
844 if (m_LastCell
) while (m_LastCell
->GetNext()) m_LastCell
= m_LastCell
->GetNext();
852 void wxHtmlContainerCell::SetAlign(const wxHtmlTag
& tag
)
854 if (tag
.HasParam(wxT("ALIGN")))
856 wxString alg
= tag
.GetParam(wxT("ALIGN"));
858 if (alg
== wxT("CENTER"))
859 SetAlignHor(wxHTML_ALIGN_CENTER
);
860 else if (alg
== wxT("LEFT"))
861 SetAlignHor(wxHTML_ALIGN_LEFT
);
862 else if (alg
== wxT("JUSTIFY"))
863 SetAlignHor(wxHTML_ALIGN_JUSTIFY
);
864 else if (alg
== wxT("RIGHT"))
865 SetAlignHor(wxHTML_ALIGN_RIGHT
);
872 void wxHtmlContainerCell::SetWidthFloat(const wxHtmlTag
& tag
, double pixel_scale
)
874 if (tag
.HasParam(wxT("WIDTH")))
877 wxString wd
= tag
.GetParam(wxT("WIDTH"));
879 if (wd
[wd
.Length()-1] == wxT('%'))
881 wxSscanf(wd
.c_str(), wxT("%i%%"), &wdi
);
882 SetWidthFloat(wdi
, wxHTML_UNITS_PERCENT
);
886 wxSscanf(wd
.c_str(), wxT("%i"), &wdi
);
887 SetWidthFloat((int)(pixel_scale
* (double)wdi
), wxHTML_UNITS_PIXELS
);
895 const wxHtmlCell
* wxHtmlContainerCell::Find(int condition
, const void* param
) const
899 const wxHtmlCell
*r
= NULL
;
901 for (wxHtmlCell
*cell
= m_Cells
; cell
; cell
= cell
->GetNext())
903 r
= cell
->Find(condition
, param
);
911 wxHtmlCell
*wxHtmlContainerCell::FindCellByPos(wxCoord x
, wxCoord y
,
912 unsigned flags
) const
914 if ( flags
& wxHTML_FIND_EXACT
)
916 for ( const wxHtmlCell
*cell
= m_Cells
; cell
; cell
= cell
->GetNext() )
918 int cx
= cell
->GetPosX(),
919 cy
= cell
->GetPosY();
921 if ( (cx
<= x
) && (cx
+ cell
->GetWidth() > x
) &&
922 (cy
<= y
) && (cy
+ cell
->GetHeight() > y
) )
924 return cell
->FindCellByPos(x
- cx
, y
- cy
, flags
);
928 else if ( flags
& wxHTML_FIND_NEAREST_AFTER
)
932 for ( const wxHtmlCell
*cell
= m_Cells
; cell
; cell
= cell
->GetNext() )
934 y2
= cell
->GetPosY() + cell
->GetHeight() - 1;
935 if (y2
< y
|| (y2
== y
&& cell
->GetPosX()+cell
->GetWidth()-1 < x
))
937 c
= cell
->FindCellByPos(x
- cell
->GetPosX(), y
- cell
->GetPosY(),
942 else if ( flags
& wxHTML_FIND_NEAREST_BEFORE
)
944 wxHtmlCell
*c2
, *c
= NULL
;
945 for ( const wxHtmlCell
*cell
= m_Cells
; cell
; cell
= cell
->GetNext() )
947 if (cell
->GetPosY() > y
||
948 (cell
->GetPosY() == y
&& cell
->GetPosX() > x
))
950 c2
= cell
->FindCellByPos(x
- cell
->GetPosX(), y
- cell
->GetPosY(),
962 void wxHtmlContainerCell::OnMouseClick(wxWindow
*parent
, int x
, int y
, const wxMouseEvent
& event
)
964 wxHtmlCell
*cell
= FindCellByPos(x
, y
);
966 cell
->OnMouseClick(parent
, x
, y
, event
);
971 void wxHtmlContainerCell::GetHorizontalConstraints(int *left
, int *right
) const
973 int cleft
= m_PosX
+ m_Width
, cright
= m_PosX
; // worst case
976 for (wxHtmlCell
*cell
= m_Cells
; cell
; cell
= cell
->GetNext())
978 cell
->GetHorizontalConstraints(&l
, &r
);
985 cleft
-= (m_IndentLeft
< 0) ? (-m_IndentLeft
* m_Width
/ 100) : m_IndentLeft
;
986 cright
+= (m_IndentRight
< 0) ? (-m_IndentRight
* m_Width
/ 100) : m_IndentRight
;
995 wxHtmlCell
*wxHtmlContainerCell::GetFirstTerminal() const
1000 for (wxHtmlCell
*c
= m_Cells
; c
; c
= c
->GetNext())
1002 c2
= c
->GetFirstTerminal();
1010 wxHtmlCell
*wxHtmlContainerCell::GetLastTerminal() const
1014 // most common case first:
1015 wxHtmlCell
*c
= m_LastCell
->GetLastTerminal();
1019 wxHtmlCell
*c2
= NULL
;
1020 for (c
= m_Cells
; c
; c
= c
->GetNext())
1021 c2
= c
->GetLastTerminal();
1031 // --------------------------------------------------------------------------
1033 // --------------------------------------------------------------------------
1035 void wxHtmlColourCell::Draw(wxDC
& dc
,
1037 int WXUNUSED(view_y1
), int WXUNUSED(view_y2
),
1038 wxHtmlRenderingInfo
& info
)
1040 DrawInvisible(dc
, x
, y
, info
);
1043 void wxHtmlColourCell::DrawInvisible(wxDC
& dc
,
1044 int WXUNUSED(x
), int WXUNUSED(y
),
1045 wxHtmlRenderingInfo
& info
)
1047 wxHtmlRenderingState
& state
= info
.GetState();
1048 if (m_Flags
& wxHTML_CLR_FOREGROUND
)
1050 state
.SetFgColour(m_Colour
);
1051 if (state
.GetSelectionState() != wxHTML_SEL_IN
)
1052 dc
.SetTextForeground(m_Colour
);
1054 dc
.SetTextForeground(
1055 info
.GetStyle().GetSelectedTextColour(m_Colour
));
1057 if (m_Flags
& wxHTML_CLR_BACKGROUND
)
1059 state
.SetBgColour(m_Colour
);
1060 if (state
.GetSelectionState() != wxHTML_SEL_IN
)
1061 dc
.SetTextBackground(m_Colour
);
1063 dc
.SetTextBackground(
1064 info
.GetStyle().GetSelectedTextBgColour(m_Colour
));
1065 dc
.SetBackground(wxBrush(m_Colour
, wxSOLID
));
1072 // ---------------------------------------------------------------------------
1074 // ---------------------------------------------------------------------------
1076 void wxHtmlFontCell::Draw(wxDC
& dc
,
1077 int WXUNUSED(x
), int WXUNUSED(y
),
1078 int WXUNUSED(view_y1
), int WXUNUSED(view_y2
),
1079 wxHtmlRenderingInfo
& WXUNUSED(info
))
1084 void wxHtmlFontCell::DrawInvisible(wxDC
& dc
, int WXUNUSED(x
), int WXUNUSED(y
),
1085 wxHtmlRenderingInfo
& WXUNUSED(info
))
1097 // ---------------------------------------------------------------------------
1099 // ---------------------------------------------------------------------------
1101 wxHtmlWidgetCell::wxHtmlWidgetCell(wxWindow
*wnd
, int w
)
1105 m_Wnd
->GetSize(&sx
, &sy
);
1106 m_Width
= sx
, m_Height
= sy
;
1111 void wxHtmlWidgetCell::Draw(wxDC
& WXUNUSED(dc
),
1112 int WXUNUSED(x
), int WXUNUSED(y
),
1113 int WXUNUSED(view_y1
), int WXUNUSED(view_y2
),
1114 wxHtmlRenderingInfo
& WXUNUSED(info
))
1116 int absx
= 0, absy
= 0, stx
, sty
;
1117 wxHtmlCell
*c
= this;
1121 absx
+= c
->GetPosX();
1122 absy
+= c
->GetPosY();
1126 ((wxScrolledWindow
*)(m_Wnd
->GetParent()))->GetViewStart(&stx
, &sty
);
1127 m_Wnd
->SetSize(absx
- wxHTML_SCROLL_STEP
* stx
, absy
- wxHTML_SCROLL_STEP
* sty
, m_Width
, m_Height
);
1132 void wxHtmlWidgetCell::DrawInvisible(wxDC
& WXUNUSED(dc
),
1133 int WXUNUSED(x
), int WXUNUSED(y
),
1134 wxHtmlRenderingInfo
& WXUNUSED(info
))
1136 int absx
= 0, absy
= 0, stx
, sty
;
1137 wxHtmlCell
*c
= this;
1141 absx
+= c
->GetPosX();
1142 absy
+= c
->GetPosY();
1146 ((wxScrolledWindow
*)(m_Wnd
->GetParent()))->GetViewStart(&stx
, &sty
);
1147 m_Wnd
->SetSize(absx
- wxHTML_SCROLL_STEP
* stx
, absy
- wxHTML_SCROLL_STEP
* sty
, m_Width
, m_Height
);
1152 void wxHtmlWidgetCell::Layout(int w
)
1154 if (m_WidthFloat
!= 0)
1156 m_Width
= (w
* m_WidthFloat
) / 100;
1157 m_Wnd
->SetSize(m_Width
, m_Height
);
1160 wxHtmlCell::Layout(w
);
1165 // ----------------------------------------------------------------------------
1166 // wxHtmlTerminalCellsInterator
1167 // ----------------------------------------------------------------------------
1169 const wxHtmlCell
* wxHtmlTerminalCellsInterator::operator++()
1176 if ( m_pos
== m_to
)
1182 if ( m_pos
->GetNext() )
1183 m_pos
= m_pos
->GetNext();
1186 // we must go up the hierarchy until we reach container where this
1187 // is not the last child, and then go down to first terminal cell:
1188 while ( m_pos
->GetNext() == NULL
)
1190 m_pos
= m_pos
->GetParent();
1194 m_pos
= m_pos
->GetNext();
1196 while ( m_pos
->GetFirstChild() != NULL
)
1197 m_pos
= m_pos
->GetFirstChild();
1198 } while ( !m_pos
->IsTerminalCell() );
1209 //-----------------------------------------------------------------------------
1211 //-----------------------------------------------------------------------------
1213 class wxHtmlCellModule
: public wxModule
1215 DECLARE_DYNAMIC_CLASS(wxHtmlCellModule
)
1217 wxHtmlCellModule() : wxModule() {}
1218 bool OnInit() { return true; }
1221 wxDELETE(gs_cursorLink
);
1222 wxDELETE(gs_cursorText
);
1226 IMPLEMENT_DYNAMIC_CLASS(wxHtmlCellModule
, wxModule
)