ifacecheck fixes
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56708 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -401,7 +401,7 @@ public:
|
|||||||
|
|
||||||
@see SetFamily()
|
@see SetFamily()
|
||||||
*/
|
*/
|
||||||
wxFontFamily GetFamily() const;
|
virtual wxFontFamily GetFamily() const;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Returns the platform-dependent string completely describing this font.
|
Returns the platform-dependent string completely describing this font.
|
||||||
@@ -437,7 +437,7 @@ public:
|
|||||||
|
|
||||||
@see SetStyle()
|
@see SetStyle()
|
||||||
*/
|
*/
|
||||||
wxFontStyle GetStyle() const;
|
virtual wxFontStyle GetStyle() const;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Returns @true if the font is underlined, @false otherwise.
|
Returns @true if the font is underlined, @false otherwise.
|
||||||
@@ -451,7 +451,7 @@ public:
|
|||||||
|
|
||||||
@see SetWeight()
|
@see SetWeight()
|
||||||
*/
|
*/
|
||||||
wxFontWeight GetWeight() const;
|
virtual wxFontWeight GetWeight() const;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Returns @true if the font is a fixed width (or monospaced) font,
|
Returns @true if the font is a fixed width (or monospaced) font,
|
||||||
@@ -596,7 +596,7 @@ public:
|
|||||||
|
|
||||||
@see GetUnderlined()
|
@see GetUnderlined()
|
||||||
*/
|
*/
|
||||||
void SetUnderlined(const bool underlined);
|
virtual void SetUnderlined(bool underlined);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Sets the font weight.
|
Sets the font weight.
|
||||||
|
@@ -214,6 +214,7 @@ public:
|
|||||||
(You should always test if it is non-@NULL.
|
(You should always test if it is non-@NULL.
|
||||||
For example @c TITLE handler sets window title only if some window is
|
For example @c TITLE handler sets window title only if some window is
|
||||||
associated, otherwise it does nothing.
|
associated, otherwise it does nothing.
|
||||||
|
@deprecated use GetWindowInterface()->GetHTMLWindow() instead
|
||||||
*/
|
*/
|
||||||
wxHtmlWindow* GetWindow();
|
wxHtmlWindow* GetWindow();
|
||||||
|
|
||||||
|
@@ -234,14 +234,14 @@ public:
|
|||||||
If there are any children at all this function returns a non-@NULL
|
If there are any children at all this function returns a non-@NULL
|
||||||
pointer.
|
pointer.
|
||||||
*/
|
*/
|
||||||
wxMDIChildFrame* GetActiveChild() const;
|
virtual wxMDIChildFrame* GetActiveChild() const;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Returns a pointer to the client window.
|
Returns a pointer to the client window.
|
||||||
|
|
||||||
@see OnCreateClient()
|
@see OnCreateClient()
|
||||||
*/
|
*/
|
||||||
wxWindow *GetClientWindow() const;
|
wxMDIClientWindowBase* GetClientWindow() const;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Returns the current MDI Window menu.
|
Returns the current MDI Window menu.
|
||||||
@@ -315,7 +315,7 @@ public:
|
|||||||
@param menu
|
@param menu
|
||||||
The menu to be used instead of the standard MDI Window menu or @NULL.
|
The menu to be used instead of the standard MDI Window menu or @NULL.
|
||||||
*/
|
*/
|
||||||
void SetWindowMenu(wxMenu *menu);
|
virtual void SetWindowMenu(wxMenu* menu);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Tiles the MDI child windows either horizontally or vertically depending
|
Tiles the MDI child windows either horizontally or vertically depending
|
||||||
|
@@ -353,6 +353,7 @@ public:
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
Returns the parent stream of the stream buffer.
|
Returns the parent stream of the stream buffer.
|
||||||
|
@deprecated use GetStream() instead
|
||||||
*/
|
*/
|
||||||
wxStreamBase* Stream();
|
wxStreamBase* Stream();
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user