git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2995 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
158 lines
4.2 KiB
C++
158 lines
4.2 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: mod_list.cpp
|
|
// Purpose: wxHtml module for lists
|
|
// Author: Vaclav Slavik
|
|
// Copyright: (c) 1999 Vaclav Slavik
|
|
// Licence: wxWindows Licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
#ifdef __GNUG__
|
|
#pragma implementation
|
|
#endif
|
|
|
|
#include <wx/wxprec.h>
|
|
|
|
|
|
#include "wx/defs.h"
|
|
#if wxUSE_HTML
|
|
|
|
#ifdef __BORDLANDC__
|
|
#pragma hdrstop
|
|
#endif
|
|
|
|
#ifndef WXPRECOMP
|
|
#include <wx/wx.h>
|
|
#endif
|
|
|
|
|
|
#include <wx/html/forcelink.h>
|
|
#include <wx/html/mod_templ.h>
|
|
|
|
#include <wx/html/htmlcell.h>
|
|
|
|
FORCE_LINK_ME(mod_list)
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// wxHtmlListmarkCell
|
|
//-----------------------------------------------------------------------------
|
|
|
|
class wxHtmlListmarkCell : public wxHtmlCell
|
|
{
|
|
private:
|
|
wxBrush m_Brush;
|
|
public:
|
|
wxHtmlListmarkCell(wxDC *dc, const wxColour& clr);
|
|
void Draw(wxDC& dc, int x, int y, int view_y1, int view_y2);
|
|
};
|
|
|
|
wxHtmlListmarkCell::wxHtmlListmarkCell(wxDC* dc, const wxColour& clr) : wxHtmlCell(), m_Brush(clr, wxSOLID)
|
|
{
|
|
m_Width = dc -> GetCharWidth();
|
|
m_Height = dc -> GetCharHeight();
|
|
m_Descent = 0;
|
|
}
|
|
|
|
|
|
|
|
void wxHtmlListmarkCell::Draw(wxDC& dc, int x, int y, int view_y1, int view_y2)
|
|
{
|
|
dc.SetBrush(m_Brush);
|
|
dc.DrawEllipse(x + m_PosX + m_Width / 4, y + m_PosY + m_Height / 4, m_Width / 2, m_Width / 2);
|
|
wxHtmlCell::Draw(dc, x, y, view_y1, view_y2);
|
|
}
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// The list handler:
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
TAG_HANDLER_BEGIN(OLULLI, "OL,UL,LI")
|
|
|
|
TAG_HANDLER_VARS
|
|
int m_Numbering;
|
|
// this is number of actual item of list or 0 for dots
|
|
|
|
TAG_HANDLER_CONSTR(OLULLI)
|
|
{
|
|
m_Numbering = 0;
|
|
}
|
|
|
|
TAG_HANDLER_PROC(tag)
|
|
{
|
|
wxHtmlContainerCell *c;
|
|
|
|
// List Item:
|
|
if (tag.GetName() == "LI") {
|
|
if (!tag.IsEnding()) {
|
|
m_WParser -> CloseContainer();
|
|
m_WParser -> CloseContainer();
|
|
|
|
c = m_WParser -> OpenContainer();
|
|
c -> SetWidthFloat(2 * m_WParser -> GetCharWidth(), HTML_UNITS_PIXELS);
|
|
c -> SetAlignHor(HTML_ALIGN_RIGHT);
|
|
if (m_Numbering == 0)
|
|
c -> InsertCell(new wxHtmlListmarkCell(m_WParser -> GetDC(), m_WParser -> GetActualColor()));
|
|
else {
|
|
wxString mark;
|
|
mark.Printf("%i.", m_Numbering);
|
|
c -> InsertCell(new wxHtmlWordCell(mark, *(m_WParser -> GetDC())));
|
|
}
|
|
m_WParser -> CloseContainer();
|
|
|
|
c = m_WParser -> OpenContainer();
|
|
c -> SetIndent(m_WParser -> GetCharWidth() / 4, HTML_INDENT_LEFT);
|
|
c -> SetWidthFloat(-2 * m_WParser -> GetCharWidth(), HTML_UNITS_PIXELS);
|
|
|
|
m_WParser -> OpenContainer();
|
|
|
|
if (m_Numbering != 0) m_Numbering++;
|
|
}
|
|
return FALSE;
|
|
}
|
|
|
|
// Begin of List (not-numbered): "UL", "OL"
|
|
else {
|
|
int oldnum = m_Numbering;
|
|
|
|
if (tag.GetName() == "UL") m_Numbering = 0;
|
|
else m_Numbering = 1;
|
|
|
|
c = m_WParser -> GetContainer();
|
|
if (c -> GetFirstCell() != NULL) {
|
|
m_WParser -> CloseContainer();
|
|
m_WParser -> OpenContainer();
|
|
c = m_WParser -> GetContainer();
|
|
}
|
|
c -> SetAlignHor(HTML_ALIGN_LEFT);
|
|
c -> SetIndent(2 * m_WParser -> GetCharWidth(), HTML_INDENT_LEFT);
|
|
m_WParser -> OpenContainer() -> SetAlignVer(HTML_ALIGN_TOP);
|
|
|
|
m_WParser -> OpenContainer();
|
|
m_WParser -> OpenContainer();
|
|
ParseInner(tag);
|
|
m_WParser -> CloseContainer();
|
|
|
|
m_WParser -> CloseContainer();
|
|
m_WParser -> CloseContainer();
|
|
m_WParser -> CloseContainer();
|
|
m_WParser -> OpenContainer();
|
|
|
|
m_Numbering = oldnum;
|
|
return TRUE;
|
|
}
|
|
}
|
|
|
|
TAG_HANDLER_END(OLULLI)
|
|
|
|
|
|
TAGS_MODULE_BEGIN(List)
|
|
|
|
TAGS_MODULE_ADD(OLULLI)
|
|
|
|
TAGS_MODULE_END(List)
|
|
|
|
#endif
|