]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/html/htmlcell.h
Catagorized all functions and macros belonging to the RTTI and Versioning groups.
[wxWidgets.git] / interface / html / htmlcell.h
index bc23b7929ca85bb9343ca70d009907d01225fc53..d4127f8b29d7143df0250c030f98c61e3b8517be 100644 (file)
@@ -1,6 +1,6 @@
 /////////////////////////////////////////////////////////////////////////////
 // Name:        html/htmlcell.h
-// Purpose:     documentation for wxHtmlColourCell class
+// Purpose:     interface of wxHtmlColourCell
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
 // Licence:     wxWindows license
@@ -53,6 +53,7 @@ public:
 };
 
 
+
 /**
     @class wxHtmlWidgetCell
     @headerfile htmlcell.h wx/html/htmlcell.h
@@ -86,6 +87,7 @@ public:
 };
 
 
+
 /**
     @class wxHtmlCell
     @headerfile htmlcell.h wx/html/htmlcell.h
@@ -102,8 +104,7 @@ public:
     @library{wxhtml}
     @category{FIXME}
 
-    @seealso
-    @ref overview_cells "Cells Overview", wxHtmlContainerCell
+    @see @ref overview_cells "Cells Overview", wxHtmlContainerCell
 */
 class wxHtmlCell : public wxObject
 {
@@ -178,7 +179,7 @@ public:
         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.
@@ -193,12 +194,12 @@ public:
     /**
         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.
@@ -210,7 +211,7 @@ public:
             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.
@@ -224,31 +225,31 @@ public:
         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:
@@ -312,6 +313,7 @@ public:
 };
 
 
+
 /**
     @class wxHtmlContainerCell
     @headerfile htmlcell.h wx/html/htmlcell.h
@@ -322,8 +324,7 @@ public:
     @library{wxhtml}
     @category{FIXME}
 
-    @seealso
-    @ref overview_cells "Cells Overview"
+    @see @ref overview_cells "Cells Overview"
 */
 class wxHtmlContainerCell : public wxHtmlCell
 {
@@ -336,12 +337,12 @@ public:
     /**
         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
@@ -357,13 +358,13 @@ public:
         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.
@@ -676,6 +677,7 @@ public:
 };
 
 
+
 /**
     @class wxHtmlLinkInfo
     @headerfile htmlcell.h wx/html/htmlcell.h
@@ -727,3 +729,4 @@ public:
     */
     wxString GetTarget();
 };
+