Add wxOverlay

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43568 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2006-10-11 04:07:14 +00:00
parent a95bfca766
commit d6f582e704
2 changed files with 3 additions and 5 deletions

View File

@@ -722,11 +722,8 @@ See also \helpref{wxAccessible}{wxaccessible}.
\constfunc{wxSize}{GetAdjustedBestSize}{\void} \constfunc{wxSize}{GetAdjustedBestSize}{\void}
This method is similar to \helpref{GetBestSize}{wxwindowgetbestsize}, except This method is deprecated, use \helpref{GetEffectiveMinSize}{wxwindowgeteffectiveminsize}
in one thing. GetBestSize should return the minimum untruncated size of the instead.
window, while this method will return the largest of BestSize and any user
specified minimum size. ie. it is the minimum size the window should currently
be drawn at, not the minimal size it can possibly tolerate.
\membersection{wxWindow::GetBackgroundColour}\label{wxwindowgetbackgroundcolour} \membersection{wxWindow::GetBackgroundColour}\label{wxwindowgetbackgroundcolour}

View File

@@ -359,6 +359,7 @@ public:
// returns the results. // returns the results.
wxSize GetEffectiveMinSize() const; wxSize GetEffectiveMinSize() const;
wxDEPRECATED( wxSize GetBestFittingSize() const ); // replaced by GetEffectiveMinSize wxDEPRECATED( wxSize GetBestFittingSize() const ); // replaced by GetEffectiveMinSize
wxDEPRECATED( wxSize GetAdjustedMinSize() const ); // replaced by GetEffectiveMinSize
// A 'Smart' SetSize that will fill in default size values with 'best' // A 'Smart' SetSize that will fill in default size values with 'best'
// size. Sets the minsize to what was passed in. // size. Sets the minsize to what was passed in.