/////////////////////////////////////////////////////////////////////////////
// Name: html/htmlcell.h
-// Purpose: documentation for wxHtmlColourCell class
+// Purpose: interface of wxHtmlColourCell
// Author: wxWidgets team
// RCS-ID: $Id$
// Licence: wxWindows license
};
+
/**
@class wxHtmlWidgetCell
@headerfile htmlcell.h wx/html/htmlcell.h
};
+
/**
@class wxHtmlCell
@headerfile htmlcell.h wx/html/htmlcell.h
@library{wxhtml}
@category{FIXME}
- @seealso
- @ref overview_cells "Cells Overview", wxHtmlContainerCell
+ @see @ref overview_cells "Cells Overview", wxHtmlContainerCell
*/
class wxHtmlCell : public wxObject
{
Returns descent value of the cell (m_Descent member).
See explanation:
*/
- int GetDescent();
+ int GetDescent() const;
/**
Returns pointer to the first cell in the list.
/**
Returns height of the cell (m_Height member).
*/
- int GetHeight();
+ int GetHeight() const;
/**
Returns unique cell identifier if there is any, empty string otherwise.
*/
- virtual wxString GetId();
+ virtual wxString GetId() const;
/**
Returns hypertext link if associated with this cell or @NULL otherwise.
These coordinates are used e.g. by COLORMAP. Values are relative to the
upper left corner of THIS cell (i.e. from 0 to m_Width or m_Height)
*/
- virtual wxHtmlLinkInfo* GetLink(int x = 0, int y = 0);
+ virtual wxHtmlLinkInfo* GetLink(int x = 0, int y = 0) const;
/**
Returns cursor to show when mouse pointer is over the cell.
Returns pointer to the next cell in list (see htmlcell.h if you're
interested in details).
*/
- wxHtmlCell* GetNext();
+ wxHtmlCell* GetNext() const;
/**
Returns pointer to parent container.
*/
- wxHtmlContainerCell* GetParent();
+ wxHtmlContainerCell* GetParent() const;
/**
Returns X position within parent (the value is relative to parent's
upper left corner). The returned value is meaningful only if
parent's Layout() was called before!
*/
- int GetPosX();
+ int GetPosX() const;
/**
Returns Y position within parent (the value is relative to parent's
upper left corner). The returned value is meaningful only if
parent's Layout() was called before!
*/
- int GetPosY();
+ int GetPosY() const;
/**
Returns width of the cell (m_Width member).
*/
- int GetWidth();
+ int GetWidth() const;
/**
This method performs two actions:
};
+
/**
@class wxHtmlContainerCell
@headerfile htmlcell.h wx/html/htmlcell.h
@library{wxhtml}
@category{FIXME}
- @seealso
- @ref overview_cells "Cells Overview"
+ @see @ref overview_cells "Cells Overview"
*/
class wxHtmlContainerCell : public wxHtmlCell
{
/**
Returns container's horizontal alignment.
*/
- int GetAlignHor();
+ int GetAlignHor() const;
/**
Returns container's vertical alignment.
*/
- int GetAlignVer();
+ int GetAlignVer() const;
/**
Returns the background colour of the container or @c wxNullColour if no
value.
It is NOT always in pixels!
*/
- int GetIndent(int ind);
+ int GetIndent(int ind) const;
/**
Returns the units of indentation for @a ind where @a ind is one
of the @b wxHTML_INDENT_* constants.
*/
- int GetIndentUnits(int ind);
+ int GetIndentUnits(int ind) const;
/**
Inserts new cell into the container.
};
+
/**
@class wxHtmlLinkInfo
@headerfile htmlcell.h wx/html/htmlcell.h
*/
wxString GetTarget();
};
+