HUGE commit of ifacecheck-automated fixes to virtualness/constness/staticness of wxWidgets documented functions
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55912 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -170,7 +170,7 @@ public:
|
||||
@param param
|
||||
Optional parameters
|
||||
*/
|
||||
virtual const wxHtmlCell* Find(int condition, const void* param);
|
||||
virtual const wxHtmlCell* Find(int condition, const void* param) const;
|
||||
|
||||
/**
|
||||
Returns descent value of the cell (m_Descent member).
|
||||
@@ -186,7 +186,7 @@ public:
|
||||
finding particular cell in the list, try Find() method
|
||||
instead.
|
||||
*/
|
||||
wxHtmlCell* GetFirstChild();
|
||||
virtual wxHtmlCell* GetFirstChild() const;
|
||||
|
||||
/**
|
||||
Returns height of the cell (m_Height member).
|
||||
@@ -216,7 +216,7 @@ public:
|
||||
@param window
|
||||
interface to the parent HTML window
|
||||
*/
|
||||
virtual wxCursor GetMouseCursor(wxHtmlWindowInterface* window);
|
||||
virtual wxCursor GetMouseCursor(wxHtmlWindowInterface* window) const;
|
||||
|
||||
/**
|
||||
Returns pointer to the next cell in list (see htmlcell.h if you're
|
||||
@@ -306,7 +306,7 @@ public:
|
||||
/**
|
||||
Sets the cell's position within parent container.
|
||||
*/
|
||||
void SetPos(int x, int y);
|
||||
virtual void SetPos(int x, int y);
|
||||
};
|
||||
|
||||
|
||||
@@ -703,25 +703,25 @@ public:
|
||||
only within wxHtmlWindow::OnLinkClicked,
|
||||
@NULL otherwise.
|
||||
*/
|
||||
const wxMouseEvent* GetEvent();
|
||||
const wxMouseEvent* GetEvent() const;
|
||||
|
||||
/**
|
||||
Return @e HREF value of the @c A tag.
|
||||
*/
|
||||
wxString GetHref();
|
||||
wxString GetHref() const;
|
||||
|
||||
/**
|
||||
Return pointer to the cell that was clicked. Valid
|
||||
only within wxHtmlWindow::OnLinkClicked,
|
||||
@NULL otherwise.
|
||||
*/
|
||||
const wxHtmlCell* GetHtmlCell();
|
||||
const wxHtmlCell* GetHtmlCell() const;
|
||||
|
||||
/**
|
||||
Return @e TARGET value of the @c A tag (this value
|
||||
is used to specify in which frame should be the page pointed
|
||||
by @ref gethref() Href opened).
|
||||
*/
|
||||
wxString GetTarget();
|
||||
wxString GetTarget() const;
|
||||
};
|
||||
|
||||
|
@@ -263,6 +263,6 @@ public:
|
||||
Parse() or any function called
|
||||
by it (i.e. from tag handlers).
|
||||
*/
|
||||
void StopParsing();
|
||||
virtual void StopParsing();
|
||||
};
|
||||
|
||||
|
@@ -38,6 +38,7 @@ public:
|
||||
Returns beginning position of the text @e between this tag and paired
|
||||
ending tag.
|
||||
See explanation (returned position is marked with '|'):
|
||||
@deprecated @todo provide deprecation description
|
||||
*/
|
||||
int GetBeginPos() const;
|
||||
|
||||
|
@@ -88,20 +88,20 @@ public:
|
||||
If no page is opened or if the displayed page wasn't
|
||||
produced by call to LoadPage, empty string is returned.
|
||||
*/
|
||||
wxString GetOpenedAnchor();
|
||||
wxString GetOpenedAnchor() const;
|
||||
|
||||
/**
|
||||
Returns full location of the opened page. If no page is opened or if the
|
||||
displayed page wasn't
|
||||
produced by call to LoadPage, empty string is returned.
|
||||
*/
|
||||
wxString GetOpenedPage();
|
||||
wxString GetOpenedPage() const;
|
||||
|
||||
/**
|
||||
Returns title of the opened page or wxEmptyString if current page does not
|
||||
contain @c TITLE tag.
|
||||
*/
|
||||
wxString GetOpenedPageTitle();
|
||||
wxString GetOpenedPageTitle() const;
|
||||
|
||||
/**
|
||||
Returns the related frame.
|
||||
@@ -143,7 +143,7 @@ public:
|
||||
|
||||
@see LoadPage()
|
||||
*/
|
||||
virtual bool LoadFile(const wxFileName& filename);
|
||||
bool LoadFile(const wxFileName& filename);
|
||||
|
||||
/**
|
||||
Unlike SetPage this function first loads HTML page from @a location
|
||||
@@ -256,8 +256,8 @@ public:
|
||||
URL if OnOpeningURL returns wxHTML_REDIRECT.
|
||||
*/
|
||||
virtual wxHtmlOpeningStatus OnOpeningURL(wxHtmlURLType type,
|
||||
const wxString& url,
|
||||
wxString* redirect);
|
||||
const wxString& url,
|
||||
wxString* redirect) const;
|
||||
|
||||
/**
|
||||
Called on parsing @c TITLE tag.
|
||||
@@ -352,7 +352,7 @@ public:
|
||||
|
||||
@return @false if an error occurred, @true otherwise.
|
||||
*/
|
||||
bool SetPage(const wxString& source);
|
||||
virtual bool SetPage(const wxString& source);
|
||||
|
||||
/**
|
||||
Sets the frame in which page title will be displayed. @a format is format of
|
||||
|
Reference in New Issue
Block a user