]>
git.saurik.com Git - wxWidgets.git/blob - src/html/m_list.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxHtml module for lists
4 // Author: Vaclav Slavik
6 // Copyright: (c) 1999 Vaclav Slavik
7 // Licence: wxWindows Licence
8 /////////////////////////////////////////////////////////////////////////////
10 #pragma implementation
13 #include "wx/wxprec.h"
17 #if wxUSE_HTML && wxUSE_STREAMS
28 #include "wx/html/forcelnk.h"
29 #include "wx/html/m_templ.h"
31 #include "wx/html/htmlcell.h"
36 //-----------------------------------------------------------------------------
38 //-----------------------------------------------------------------------------
40 class wxHtmlListmarkCell
: public wxHtmlCell
45 wxHtmlListmarkCell(wxDC
*dc
, const wxColour
& clr
);
46 void Draw(wxDC
& dc
, int x
, int y
, int view_y1
, int view_y2
);
49 wxHtmlListmarkCell::wxHtmlListmarkCell(wxDC
* dc
, const wxColour
& clr
) : wxHtmlCell(), m_Brush(clr
, wxSOLID
)
51 m_Width
= dc
->GetCharWidth();
52 m_Height
= dc
->GetCharHeight();
58 void wxHtmlListmarkCell::Draw(wxDC
& dc
, int x
, int y
, int view_y1
, int view_y2
)
61 dc
.DrawEllipse(x
+ m_PosX
+ m_Width
/ 4, y
+ m_PosY
+ m_Height
/ 4, m_Width
/ 2, m_Width
/ 2);
62 wxHtmlCell::Draw(dc
, x
, y
, view_y1
, view_y2
);
68 //-----------------------------------------------------------------------------
70 //-----------------------------------------------------------------------------
73 TAG_HANDLER_BEGIN(OLULLI
, "OL,UL,LI")
77 // this is number of actual item of list or 0 for dots
79 TAG_HANDLER_CONSTR(OLULLI
)
86 wxHtmlContainerCell
*c
;
89 if (tag
.GetName() == wxT("LI"))
93 m_WParser
->GetContainer()->SetIndent(0, wxHTML_INDENT_TOP
);
94 // this is to prevent indetation in <li><p> case
95 m_WParser
->CloseContainer();
96 m_WParser
->CloseContainer();
98 c
= m_WParser
->OpenContainer();
99 c
->SetWidthFloat(2 * m_WParser
->GetCharWidth(), wxHTML_UNITS_PIXELS
);
100 c
->SetAlignHor(wxHTML_ALIGN_RIGHT
);
101 if (m_Numbering
== 0)
102 c
->InsertCell(new wxHtmlListmarkCell(m_WParser
->GetDC(), m_WParser
->GetActualColor()));
106 mark
.Printf(wxT("%i."), m_Numbering
);
107 c
->InsertCell(new wxHtmlWordCell(mark
, *(m_WParser
->GetDC())));
109 m_WParser
->CloseContainer();
111 c
= m_WParser
->OpenContainer();
112 c
->SetIndent(m_WParser
->GetCharWidth() / 4, wxHTML_INDENT_LEFT
);
113 c
->SetWidthFloat(-2 * m_WParser
->GetCharWidth(), wxHTML_UNITS_PIXELS
);
115 m_WParser
->OpenContainer();
117 if (m_Numbering
!= 0) m_Numbering
++;
122 // Begin of List (not-numbered): "UL", "OL"
125 int oldnum
= m_Numbering
;
127 if (tag
.GetName() == wxT("UL")) m_Numbering
= 0;
128 else m_Numbering
= 1;
130 c
= m_WParser
->GetContainer();
131 if (c
->GetFirstCell() != NULL
)
133 m_WParser
->CloseContainer();
134 m_WParser
->OpenContainer();
135 c
= m_WParser
->GetContainer();
137 c
->SetAlignHor(wxHTML_ALIGN_LEFT
);
138 c
->SetIndent(2 * m_WParser
->GetCharWidth(), wxHTML_INDENT_LEFT
);
139 m_WParser
->OpenContainer()->SetAlignVer(wxHTML_ALIGN_TOP
);
141 m_WParser
->OpenContainer();
142 m_WParser
->OpenContainer();
145 m_WParser
->GetContainer()->SetIndent(0, wxHTML_INDENT_TOP
);
146 // this is to prevent indetation in <li><p> case
147 m_WParser
->CloseContainer();
149 m_WParser
->CloseContainer();
150 m_WParser
->CloseContainer();
151 m_WParser
->CloseContainer();
152 m_WParser
->OpenContainer();
154 m_Numbering
= oldnum
;
159 TAG_HANDLER_END(OLULLI
)
162 TAGS_MODULE_BEGIN(List
)
164 TAGS_MODULE_ADD(OLULLI
)
166 TAGS_MODULE_END(List
)