]> 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 a60a1be170e75394254588a3ffad68f27ea01306..d4127f8b29d7143df0250c030f98c61e3b8517be 100644 (file)
@@ -1,6 +1,6 @@
 /////////////////////////////////////////////////////////////////////////////
 // Name:        html/htmlcell.h
 /////////////////////////////////////////////////////////////////////////////
 // Name:        html/htmlcell.h
-// Purpose:     documentation for wxHtmlColourCell class
+// Purpose:     interface of wxHtmlColourCell
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
 // Licence:     wxWindows license
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
 // Licence:     wxWindows license
@@ -22,25 +22,38 @@ public:
         Constructor.
         
         @param clr
         Constructor.
         
         @param clr
-        The color
-        
+            The color
         @param flags
         @param flags
-        Can be one of following:
+            Can be one of following:
+        
+        
+        
+        
+        
+        
+            wxHTML_CLR_FOREGROUND
+        
+        
+        
         
         
-        wxHTML_CLR_FOREGROUND
+            change color of text
         
         
         
         
-        change color of text
         
         
-        wxHTML_CLR_BACKGROUND
         
         
         
         
-        change background color
+            wxHTML_CLR_BACKGROUND
+        
+        
+        
+        
+            change background color
     */
     wxHtmlColourCell(wxColour clr, int flags = wxHTML_CLR_FOREGROUND);
 };
 
 
     */
     wxHtmlColourCell(wxColour clr, int flags = wxHTML_CLR_FOREGROUND);
 };
 
 
+
 /**
     @class wxHtmlWidgetCell
     @headerfile htmlcell.h wx/html/htmlcell.h
 /**
     @class wxHtmlWidgetCell
     @headerfile htmlcell.h wx/html/htmlcell.h
@@ -62,19 +75,19 @@ public:
         Constructor.
         
         @param wnd
         Constructor.
         
         @param wnd
-        Connected window. It is parent window must be the wxHtmlWindow object within
-        which it is displayed!
-        
+            Connected window. It is parent window must be the wxHtmlWindow object within
+            which it is displayed!
         @param w
         @param w
-        Floating width. If non-zero width of wnd window is adjusted so that it is
-        always w percents of parent container's width. (For example w = 100 means that
-        the window
-        will always have same width as parent container)
+            Floating width. If non-zero width of wnd window is adjusted so that it is
+            always w percents of parent container's width. (For example w = 100 means
+        that the window
+            will always have same width as parent container)
     */
     wxHtmlWidgetCell(wxWindow* wnd, int w = 0);
 };
 
 
     */
     wxHtmlWidgetCell(wxWindow* wnd, int w = 0);
 };
 
 
+
 /**
     @class wxHtmlCell
     @headerfile htmlcell.h wx/html/htmlcell.h
 /**
     @class wxHtmlCell
     @headerfile htmlcell.h wx/html/htmlcell.h
@@ -91,8 +104,7 @@ public:
     @library{wxhtml}
     @category{FIXME}
 
     @library{wxhtml}
     @category{FIXME}
 
-    @seealso
-    @ref overview_cells "Cells Overview", wxHtmlContainerCell
+    @see @ref overview_cells "Cells Overview", wxHtmlContainerCell
 */
 class wxHtmlCell : public wxObject
 {
 */
 class wxHtmlCell : public wxObject
 {
@@ -108,31 +120,26 @@ public:
         should not be crossed by words, images etc.). If this cell cannot be divided
         into two pieces (each one on another page) then it moves the pagebreak
         few pixels up.
         should not be crossed by words, images etc.). If this cell cannot be divided
         into two pieces (each one on another page) then it moves the pagebreak
         few pixels up.
-        
         Returns @true if pagebreak was modified, @false otherwise
         Returns @true if pagebreak was modified, @false otherwise
-        
         Usage:
     */
         Usage:
     */
-    virtual bool AdjustPagebreak(int * pagebreak);
+    virtual bool AdjustPagebreak(int* pagebreak);
 
     /**
         Renders the cell.
         
         @param dc
 
     /**
         Renders the cell.
         
         @param dc
-        Device context to which the cell is to be drawn
-        
+            Device context to which the cell is to be drawn
         @param x,y
         @param x,y
-        Coordinates of parent's upper left corner (origin). You must
-        add this to m_PosX,m_PosY when passing coordinates to dc's methods
-        Example : dc - DrawText("hello", x + m_PosX, y + m_PosY)
-        
+            Coordinates of parent's upper left corner (origin). You must
+            add this to m_PosX,m_PosY when passing coordinates to dc's methods
+            Example : dc - DrawText("hello", x + m_PosX, y + m_PosY)
         @param view_y1
         @param view_y1
-        y-coord of the first line visible in window. This is
-        used to optimize rendering speed
-        
+            y-coord of the first line visible in window. This is
+            used to optimize rendering speed
         @param view_y2
         @param view_y2
-        y-coord of the last line visible in window. This is
-        used to optimize rendering speed
+            y-coord of the last line visible in window. This is
+            used to optimize rendering speed
     */
     virtual void Draw(wxDC& dc, int x, int y, int view_y1,
                       int view_y2);
     */
     virtual void Draw(wxDC& dc, int x, int y, int view_y1,
                       int view_y2);
@@ -144,12 +151,11 @@ public:
         or font setter) must be drawn even if they are invisible!
         
         @param dc
         or font setter) must be drawn even if they are invisible!
         
         @param dc
-        Device context to which the cell is to be drawn
-        
+            Device context to which the cell is to be drawn
         @param x,y
         @param x,y
-        Coordinates of parent's upper left corner. You must
-        add this to m_PosX,m_PosY when passing coordinates to dc's methods
-        Example : dc - DrawText("hello", x + m_PosX, y + m_PosY)
+            Coordinates of parent's upper left corner. You must
+            add this to m_PosX,m_PosY when passing coordinates to dc's methods
+            Example : dc - DrawText("hello", x + m_PosX, y + m_PosY)
     */
     virtual void DrawInvisible(wxDC& dc, int x, int y);
 
     */
     virtual void DrawInvisible(wxDC& dc, int x, int y);
 
@@ -158,16 +164,14 @@ public:
         following in the list matches), @NULL otherwise.
         (In other words if you call top-level container's Find it will
         return pointer to the first cell that matches the condition)
         following in the list matches), @NULL otherwise.
         (In other words if you call top-level container's Find it will
         return pointer to the first cell that matches the condition)
-        
         It is recommended way how to obtain pointer to particular cell or
         to cell of some type (e.g. wxHtmlAnchorCell reacts on
         wxHTML_COND_ISANCHOR condition)
         
         @param condition
         It is recommended way how to obtain pointer to particular cell or
         to cell of some type (e.g. wxHtmlAnchorCell reacts on
         wxHTML_COND_ISANCHOR condition)
         
         @param condition
-        Unique integer identifier of condition
-        
+            Unique integer identifier of condition
         @param param
         @param param
-        Optional parameters
+            Optional parameters
     */
     virtual const wxHtmlCell* Find(int condition, const void* param);
 
     */
     virtual const wxHtmlCell* Find(int condition, const void* param);
 
@@ -175,13 +179,12 @@ public:
         Returns descent value of the cell (m_Descent member).
         See explanation:
     */
         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.
         You can then use child's GetNext()
         method to obtain pointer to the next cell in list.
 
     /**
         Returns pointer to the first cell in the list.
         You can then use child's GetNext()
         method to obtain pointer to the next cell in list.
-        
         @b Note: This shouldn't be used by the end user. If you need some way of
         finding particular cell in the list, try Find() method
         instead.
         @b Note: This shouldn't be used by the end user. If you need some way of
         finding particular cell in the list, try Find() method
         instead.
@@ -191,12 +194,12 @@ public:
     /**
         Returns height of the cell (m_Height member).
     */
     /**
         Returns height of the cell (m_Height member).
     */
-    int GetHeight();
+    int GetHeight() const;
 
     /**
         Returns unique cell identifier if there is any, empty string otherwise.
     */
 
     /**
         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.
 
     /**
         Returns hypertext link if associated with this cell or @NULL otherwise.
@@ -204,17 +207,17 @@ public:
         (Note: this makes sense only for visible tags).
         
         @param x,y
         (Note: this makes sense only for visible tags).
         
         @param x,y
-        Coordinates of position where the user pressed mouse button.
-        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)
+            Coordinates of position where the user pressed mouse button.
+            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.
         
         @param window
 
     /**
         Returns cursor to show when mouse pointer is over the cell.
         
         @param window
-        interface to the parent HTML window
+            interface to the parent HTML window
     */
     virtual wxCursor GetMouseCursor(wxHtmlWindowInterface* window);
 
     */
     virtual wxCursor GetMouseCursor(wxHtmlWindowInterface* window);
 
@@ -222,41 +225,39 @@ public:
         Returns pointer to the next cell in list (see htmlcell.h if you're
         interested in details).
     */
         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.
     */
 
     /**
         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!
     */
 
     /**
         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!
     */
 
     /**
         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).
     */
 
     /**
         Returns width of the cell (m_Width member).
     */
-    int GetWidth();
+    int GetWidth() const;
 
     /**
         This method performs two actions:
 
     /**
         This method performs two actions:
-        
          adjusts the cell's width according to the fact that maximal possible width is
         @e w.
         (this has sense when working with horizontal lines, tables etc.)
          prepares layout (=fill-in m_PosX, m_PosY (and sometimes m_Height) members)
         based on actual width @e w
          adjusts the cell's width according to the fact that maximal possible width is
         @e w.
         (this has sense when working with horizontal lines, tables etc.)
          prepares layout (=fill-in m_PosX, m_PosY (and sometimes m_Height) members)
         based on actual width @e w
-        
         It must be called before displaying cells structure because
         m_PosX and m_PosY are undefined (or invalid)
         before calling Layout.
         It must be called before displaying cells structure because
         m_PosX and m_PosY are undefined (or invalid)
         before calling Layout.
@@ -270,13 +271,11 @@ public:
         wxHtmlWindow::LoadPage.
         
         @param window
         wxHtmlWindow::LoadPage.
         
         @param window
-        interface to the parent HTML window
-        
+            interface to the parent HTML window
         @param pos
         @param pos
-        coordinates of mouse click (this is relative to cell's origin
-        
+            coordinates of mouse click (this is relative to cell's origin
         @param event
         @param event
-        mouse event that triggered the call
+            mouse event that triggered the call
         
         @returns @true if a link was clicked, @false otherwise.
     */
         
         @returns @true if a link was clicked, @false otherwise.
     */
@@ -314,6 +313,7 @@ public:
 };
 
 
 };
 
 
+
 /**
     @class wxHtmlContainerCell
     @headerfile htmlcell.h wx/html/htmlcell.h
 /**
     @class wxHtmlContainerCell
     @headerfile htmlcell.h wx/html/htmlcell.h
@@ -324,26 +324,25 @@ public:
     @library{wxhtml}
     @category{FIXME}
 
     @library{wxhtml}
     @category{FIXME}
 
-    @seealso
-    @ref overview_cells "Cells Overview"
+    @see @ref overview_cells "Cells Overview"
 */
 class wxHtmlContainerCell : public wxHtmlCell
 {
 public:
     /**
 */
 class wxHtmlContainerCell : public wxHtmlCell
 {
 public:
     /**
-        Constructor. @e parent is pointer to parent container or @NULL.
+        Constructor. @a parent is pointer to parent container or @NULL.
     */
     wxHtmlContainerCell(wxHtmlContainerCell parent);
 
     /**
         Returns container's horizontal alignment.
     */
     */
     wxHtmlContainerCell(wxHtmlContainerCell parent);
 
     /**
         Returns container's horizontal alignment.
     */
-    int GetAlignHor();
+    int GetAlignHor() const;
 
     /**
         Returns container's vertical alignment.
     */
 
     /**
         Returns container's vertical alignment.
     */
-    int GetAlignVer();
+    int GetAlignVer() const;
 
     /**
         Returns the background colour of the container or @c wxNullColour if no
 
     /**
         Returns the background colour of the container or @c wxNullColour if no
@@ -353,20 +352,19 @@ public:
     wxColour GetBackgroundColour();
 
     /**
     wxColour GetBackgroundColour();
 
     /**
-        Returns the indentation. @e ind is one of the @b wxHTML_INDENT_* constants.
-        
+        Returns the indentation. @a ind is one of the @b wxHTML_INDENT_* constants.
         @b Note: You must call GetIndentUnits()
         @b Note: You must call GetIndentUnits()
-        with same @e ind parameter in order to correctly interpret the returned integer
+        with same @a ind parameter in order to correctly interpret the returned integer
         value.
         It is NOT always in pixels!
     */
         value.
         It is NOT always in pixels!
     */
-    int GetIndent(int ind);
+    int GetIndent(int ind) const;
 
     /**
 
     /**
-        Returns the units of indentation for @e ind where @e ind is one
+        Returns the units of indentation for @a ind where @a ind is one
         of the @b wxHTML_INDENT_* constants.
     */
         of the @b wxHTML_INDENT_* constants.
     */
-    int GetIndentUnits(int ind);
+    int GetIndentUnits(int ind) const;
 
     /**
         Inserts new cell into the container.
 
     /**
         Inserts new cell into the container.
@@ -383,30 +381,55 @@ public:
 
     /**
         Sets the container's @e horizontal alignment. During wxHtmlCell::Layout
 
     /**
         Sets the container's @e horizontal alignment. During wxHtmlCell::Layout
-        each line is aligned according to @e al value.
+        each line is aligned according to @a al value.
         
         @param al
         
         @param al
-        new horizontal alignment. May be one of these values:
+            new horizontal alignment. May be one of these values:
+        
+        
+        
+        
+        
+        
+            wxHTML_ALIGN_LEFT
         
         
-        wxHTML_ALIGN_LEFT
         
         
         
         
-        lines are left-aligned (default)
         
         
-        wxHTML_ALIGN_JUSTIFY
+            lines are left-aligned (default)
         
         
         
         
-        lines are justified
         
         
-        wxHTML_ALIGN_CENTER
         
         
         
         
-        lines are centered
+            wxHTML_ALIGN_JUSTIFY
         
         
-        wxHTML_ALIGN_RIGHT
         
         
         
         
-        lines are right-aligned
+        
+            lines are justified
+        
+        
+        
+        
+        
+            wxHTML_ALIGN_CENTER
+        
+        
+        
+        
+            lines are centered
+        
+        
+        
+        
+        
+            wxHTML_ALIGN_RIGHT
+        
+        
+        
+        
+            lines are right-aligned
     */
     void SetAlignHor(int al);
 
     */
     void SetAlignHor(int al);
 
@@ -414,22 +437,41 @@ public:
         Sets the container's @e vertical alignment. This is per-line alignment!
         
         @param al
         Sets the container's @e vertical alignment. This is per-line alignment!
         
         @param al
-        new vertical alignment. May be one of these values:
+            new vertical alignment. May be one of these values:
+        
+        
+        
+        
+        
+        
+            wxHTML_ALIGN_BOTTOM
+        
+        
+        
+        
+            cells are over the line (default)
+        
+        
+        
+        
+        
+            wxHTML_ALIGN_CENTER
+        
+        
+        
+        
+            cells are centered on line
         
         
-        wxHTML_ALIGN_BOTTOM
         
         
         
         
-        cells are over the line (default)
         
         
-        wxHTML_ALIGN_CENTER
         
         
+            wxHTML_ALIGN_TOP
         
         
-        cells are centered on line
         
         
-        wxHTML_ALIGN_TOP
         
         
         
         
-        cells are under the line
+            cells are under the line
     */
     void SetAlignVer(int al);
 
     */
     void SetAlignVer(int al);
 
@@ -442,10 +484,9 @@ public:
         Sets the border (frame) colours. A border is a rectangle around the container.
         
         @param clr1
         Sets the border (frame) colours. A border is a rectangle around the container.
         
         @param clr1
-        Colour of top and left lines
-        
+            Colour of top and left lines
         @param clr2
         @param clr2
-        Colour of bottom and right lines
+            Colour of bottom and right lines
     */
     void SetBorder(const wxColour& clr1, const wxColour& clr2);
 
     */
     void SetBorder(const wxColour& clr1, const wxColour& clr2);
 
@@ -453,120 +494,181 @@ public:
         Sets the indentation (free space between borders of container and subcells).
         
         @param i
         Sets the indentation (free space between borders of container and subcells).
         
         @param i
-        Indentation value.
-        
+            Indentation value.
         @param what
         @param what
-        Determines which of the four borders we're setting. It is OR
-        combination of following constants:
+            Determines which of the four borders we're setting. It is OR
+            combination of following constants:
+        
+        
+        
+        
+        
+        
+            wxHTML_INDENT_TOP
+        
+        
+        
+        
+            top border
+        
+        
+        
+        
+        
+            wxHTML_INDENT_BOTTOM
+        
+        
+        
+        
+            bottom
+        
+        
+        
+        
+        
+            wxHTML_INDENT_LEFT
+        
+        
+        
+        
+            left
+        
+        
+        
+        
+        
+            wxHTML_INDENT_RIGHT
+        
+        
+        
         
         
-        wxHTML_INDENT_TOP
+            right
         
         
         
         
-        top border
         
         
-        wxHTML_INDENT_BOTTOM
         
         
         
         
-        bottom
+            wxHTML_INDENT_HORIZONTAL
         
         
-        wxHTML_INDENT_LEFT
         
         
         
         
-        left
         
         
-        wxHTML_INDENT_RIGHT
+            left and right
         
         
         
         
-        right
         
         
-        wxHTML_INDENT_HORIZONTAL
         
         
         
         
-        left and right
+            wxHTML_INDENT_VERTICAL
         
         
-        wxHTML_INDENT_VERTICAL
         
         
         
         
-        top and bottom
         
         
-        wxHTML_INDENT_ALL
+            top and bottom
         
         
         
         
-        all 4 borders
         
         
         
         
+        
+            wxHTML_INDENT_ALL
+        
+        
+        
+        
+            all 4 borders
         @param units
         @param units
-        Units of i. This parameter affects interpretation of  value.
+            Units of i. This parameter affects interpretation of  value.
+        
+        
+        
+        
+        
         
         
-        wxHTML_UNITS_PIXELS
+            wxHTML_UNITS_PIXELS
         
         
         
         
-        i is number of pixels
         
         
-        wxHTML_UNITS_PERCENT
         
         
+            i is number of pixels
         
         
-        i is interpreted as percents of width
-        of parent container
+        
+        
+        
+        
+            wxHTML_UNITS_PERCENT
+        
+        
+        
+        
+            i is interpreted as percents of width
+            of parent container
     */
     void SetIndent(int i, int what, int units = wxHTML_UNITS_PIXELS);
 
     /**
         Sets minimal height of the container.
     */
     void SetIndent(int i, int what, int units = wxHTML_UNITS_PIXELS);
 
     /**
         Sets minimal height of the container.
-        
         When container's wxHtmlCell::Layout is called, m_Height
         is set depending on layout of subcells to the height of area covered
         by layed-out subcells. Calling this method guarantees you that the height
         When container's wxHtmlCell::Layout is called, m_Height
         is set depending on layout of subcells to the height of area covered
         by layed-out subcells. Calling this method guarantees you that the height
-        of container is never smaller than @e h - even if the subcells cover
+        of container is never smaller than @a h - even if the subcells cover
         much smaller area.
         
         @param h
         much smaller area.
         
         @param h
-        The minimal height.
-        
+            The minimal height.
         @param align
         @param align
-        If height of the container is lower than the minimum height, empty space must
-        be inserted
-        somewhere in order to ensure minimal height. This parameter is one of
+            If height of the container is lower than the minimum height, empty space
+        must be inserted
+            somewhere in order to ensure minimal height. This parameter is one of
         wxHTML_ALIGN_TOP,
         wxHTML_ALIGN_TOP,
-        wxHTML_ALIGN_BOTTOM, wxHTML_ALIGN_CENTER. It refers to the contents, not to the
-        empty place.
+            wxHTML_ALIGN_BOTTOM, wxHTML_ALIGN_CENTER. It refers to the contents, not to
+        the
+            empty place.
     */
     void SetMinHeight(int h, int align = wxHTML_ALIGN_TOP);
 
     //@{
     /**
         Sets floating width adjustment.
     */
     void SetMinHeight(int h, int align = wxHTML_ALIGN_TOP);
 
     //@{
     /**
         Sets floating width adjustment.
-        
         The normal behaviour of container is that its width is the same as the width of
         parent container (and thus you can have only one sub-container per line).
         You can change this by setting FWA.
         The normal behaviour of container is that its width is the same as the width of
         parent container (and thus you can have only one sub-container per line).
         You can change this by setting FWA.
-        
-        @e pixel_scale is number of real pixels that equals to 1 HTML pixel.
+        @a pixel_scale is number of real pixels that equals to 1 HTML pixel.
         
         @param w
         
         @param w
-        Width of the container. If the value is negative it means
-        complement to full width of parent container (e.g.
-        SetWidthFloat(-50, wxHTML_UNITS_PIXELS) sets the width
-        of container to parent's width minus 50 pixels. This is useful when
-        creating tables - you can call SetWidthFloat(50) and SetWidthFloat(-50))
-        
+            Width of the container. If the value is negative it means
+            complement to full width of parent container (e.g.
+            SetWidthFloat(-50, wxHTML_UNITS_PIXELS) sets the width
+            of container to parent's width minus 50 pixels. This is useful when
+            creating tables - you can call SetWidthFloat(50) and SetWidthFloat(-50))
         @param units
         @param units
-        Units of w This parameter affects the interpretation of  value.
+            Units of w This parameter affects the interpretation of  value.
+        
+        
+        
+        
+        
         
         
-        wxHTML_UNITS_PIXELS
+            wxHTML_UNITS_PIXELS
         
         
         
         
-        w is number of pixels
         
         
-        wxHTML_UNITS_PERCENT
         
         
+            w is number of pixels
         
         
-        w is interpreted as percents of width
-        of parent container
         
         
+        
+        
+        
+            wxHTML_UNITS_PERCENT
+        
+        
+        
+        
+            w is interpreted as percents of width
+            of parent container
         @param tag
         @param tag
-        In the second version of method, w and units
-        info is extracted from tag's WIDTH parameter.
+            In the second version of method, w and units
+            info is extracted from tag's WIDTH parameter.
     */
     void SetWidthFloat(int w, int units);
     void SetWidthFloat(const wxHtmlTag& tag,
     */
     void SetWidthFloat(int w, int units);
     void SetWidthFloat(const wxHtmlTag& tag,
@@ -575,6 +677,7 @@ public:
 };
 
 
 };
 
 
+
 /**
     @class wxHtmlLinkInfo
     @headerfile htmlcell.h wx/html/htmlcell.h
 /**
     @class wxHtmlLinkInfo
     @headerfile htmlcell.h wx/html/htmlcell.h
@@ -605,7 +708,7 @@ public:
         only within wxHtmlWindow::OnLinkClicked,
         @NULL otherwise.
     */
         only within wxHtmlWindow::OnLinkClicked,
         @NULL otherwise.
     */
-    const wxMouseEvent * GetEvent();
+    const wxMouseEvent* GetEvent();
 
     /**
         Return @e HREF value of the @c A tag.
 
     /**
         Return @e HREF value of the @c A tag.
@@ -617,7 +720,7 @@ public:
         only within wxHtmlWindow::OnLinkClicked,
         @NULL otherwise.
     */
         only within wxHtmlWindow::OnLinkClicked,
         @NULL otherwise.
     */
-    const wxHtmlCell * GetHtmlCell();
+    const wxHtmlCell* GetHtmlCell();
 
     /**
         Return @e TARGET value of the @c A tag (this value
 
     /**
         Return @e TARGET value of the @c A tag (this value
@@ -626,3 +729,4 @@ public:
     */
     wxString GetTarget();
 };
     */
     wxString GetTarget();
 };
+