• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/html/

Lines Matching defs:wxHtmlCell

3 // Purpose:     wxHtmlCell - basic element of HTML output
36 void wxHtmlSelection::Set(const wxPoint& fromPos, const wxHtmlCell *fromCell,
37 const wxPoint& toPos, const wxHtmlCell *toCell)
45 void wxHtmlSelection::Set(const wxHtmlCell *fromCell, const wxHtmlCell *toCell)
73 // wxHtmlCell
76 IMPLEMENT_ABSTRACT_CLASS(wxHtmlCell, wxObject)
78 wxHtmlCell::wxHtmlCell() : wxObject()
89 wxHtmlCell::~wxHtmlCell()
96 void wxHtmlCell::SetScriptMode(wxHtmlScriptMode mode, long previousBase)
127 bool CallOnMouseClick(wxHtmlCell *cell)
148 bool wxHtmlCell::ProcessMouseClick(wxHtmlWindowInterface *window,
164 void wxHtmlCell::OnMouseClick(wxWindow *, int, int, const wxMouseEvent& event)
192 wxCursor wxHtmlCell::GetCursor() const
198 wxCursor wxHtmlCell::GetMouseCursor(wxHtmlWindowInterface *window) const
204 // wxHtmlCell::GetCursor() method simply returns wxNullCursor, so we
222 bool wxHtmlCell::AdjustPagebreak(int *pagebreak,
237 void wxHtmlCell::SetLink(const wxHtmlLinkInfo& link)
246 void wxHtmlCell::Layout(int WXUNUSED(w))
253 const wxHtmlCell* wxHtmlCell::Find(int WXUNUSED(condition), const void* WXUNUSED(param)) const
259 wxHtmlCell *wxHtmlCell::FindCellByPos(wxCoord x, wxCoord y,
264 return wxConstCast(this, wxHtmlCell);
270 return wxConstCast(this, wxHtmlCell);
273 return wxConstCast(this, wxHtmlCell);
280 wxPoint wxHtmlCell::GetAbsPos(wxHtmlCell *rootCell) const
283 for (wxHtmlCell *parent = m_Parent; parent && parent != rootCell;
292 wxHtmlCell *wxHtmlCell::GetRootCell() const
294 wxHtmlCell *c = wxConstCast(this, wxHtmlCell);
300 unsigned wxHtmlCell::GetDepth() const
303 for (wxHtmlCell *p = m_Parent; p; p = p->m_Parent)
308 bool wxHtmlCell::IsBefore(wxHtmlCell *cell) const
310 const wxHtmlCell *c1 = this;
311 const wxHtmlCell *c2 = cell;
353 IMPLEMENT_ABSTRACT_CLASS(wxHtmlWordCell, wxHtmlCell)
355 wxHtmlWordCell::wxHtmlWordCell(const wxString& word, const wxDC& dc) : wxHtmlCell()
598 wxHtmlCell *nextCell = m_Next;
652 return wxHtmlCell::GetMouseCursor(window);
661 IMPLEMENT_ABSTRACT_CLASS(wxHtmlContainerCell, wxHtmlCell)
663 wxHtmlContainerCell::wxHtmlContainerCell(wxHtmlContainerCell *parent) : wxHtmlCell()
682 wxHtmlCell *cell = m_Cells;
685 wxHtmlCell *cellNext = cell->GetNext();
733 return wxHtmlCell::AdjustPagebreak(pagebreak, known_pagebreaks);
735 wxHtmlCell *c = GetFirstChild();
753 wxHtmlCell::Layout(w);
766 for (wxHtmlCell *cell = m_Cells; cell; cell = cell->GetNext())
773 wxHtmlCell *nextCell;
804 for (wxHtmlCell *cell = m_Cells; cell; cell = cell->GetNext())
819 wxHtmlCell *cell = m_Cells,
917 const wxHtmlCell *c;
1016 wxHtmlCell *cell) const
1027 wxHtmlCell *cell) const
1079 for (wxHtmlCell *cell = m_Cells; cell; cell = cell->GetNext())
1110 for (wxHtmlCell *cell = m_Cells; cell; cell = cell->GetNext())
1132 wxHtmlCell *cell = FindCellByPos(x, y);
1135 // wxHtmlCell::GetLink()? As the base class version just ignores them
1142 void wxHtmlContainerCell::InsertCell(wxHtmlCell *f)
1200 const wxHtmlCell* wxHtmlContainerCell::Find(int condition, const void* param) const
1204 for (wxHtmlCell *cell = m_Cells; cell; cell = cell->GetNext())
1206 const wxHtmlCell *r = cell->Find(condition, param);
1214 wxHtmlCell *wxHtmlContainerCell::FindCellByPos(wxCoord x, wxCoord y,
1219 for ( const wxHtmlCell *cell = m_Cells; cell; cell = cell->GetNext() )
1233 wxHtmlCell *c;
1234 for ( const wxHtmlCell *cell = m_Cells; cell; cell = cell->GetNext() )
1249 wxHtmlCell *c2, *c = NULL;
1250 for ( const wxHtmlCell *cell = m_Cells; cell; cell = cell->GetNext() )
1287 wxHtmlCell *cell = FindCellByPos(pos.x, pos.y);
1299 wxHtmlCell *wxHtmlContainerCell::GetFirstTerminal() const
1303 wxHtmlCell *c2;
1304 for (wxHtmlCell *c = m_Cells; c; c = c->GetNext())
1314 wxHtmlCell *wxHtmlContainerCell::GetLastTerminal() const
1319 wxHtmlCell *c = m_LastCell->GetLastTerminal();
1323 wxHtmlCell *ctmp;
1324 wxHtmlCell *c2 = NULL;
1340 for ( wxHtmlCell *c = cell->GetFirstChild(); c; c = c->GetNext() )
1357 wxHtmlCell *c;
1392 c = (wxHtmlCell*)arr[i];
1423 IMPLEMENT_ABSTRACT_CLASS(wxHtmlColourCell, wxHtmlCell)
1471 IMPLEMENT_ABSTRACT_CLASS(wxHtmlFontCell, wxHtmlCell)
1498 IMPLEMENT_ABSTRACT_CLASS(wxHtmlWidgetCell, wxHtmlCell)
1516 wxHtmlCell *c = this;
1543 wxHtmlCell *c = this;
1566 wxHtmlCell::Layout(w);
1575 const wxHtmlCell* wxHtmlTerminalCellsInterator::operator++()