-
- @param show
- If @true displays the window. Otherwise, hides it.
-
- @returns @true if the window has been shown or hidden or @false if nothing
- was done because it already was in the requested
- state.
-
- @sa IsShown(), Hide(), wxRadioBox::Show
- */
- virtual bool Show(bool show = @true);
-
- /**
- This function shows a window, like Show(), but using a
- special visual effect if possible.
-
- Possible values for @e effect are:
-
-
- wxSHOW_EFFECT_ROLL
-
-
- Roll window effect
-
- wxSHOW_EFFECT_SLIDE
-
-
- Sliding window effect
-
- wxSHOW_EFFECT_BLEND
-
-
- Fade in or out effect
-
- wxSHOW_EFFECT_EXPAND
-
-
- Expanding or collapsing effect
-
- For the roll and slide effects the @e dir parameter specifies the animation
- direction: it can be one of @c wxTOP, @c wxBOTTOM, @c wxLEFT
- or @c wxRIGHT. For the other effects, this parameter is unused.
-
- The @e timeout parameter specifies the time of the animation, in
- milliseconds. If the default value of 0 is used, the default animation time
- for the current platform is used.
-
- Currently this function is only implemented in wxMSW and does the same thing as
- Show() in the other ports.
-
- This function is new since wxWidgets version 2.9.0
-
- @sa HideWithEffect()
+
+ @param show
+ If @true displays the window. Otherwise, hides it.
+
+ @return @true if the window has been shown or hidden or @false if nothing
+ was done because it already was in the requested state.
+
+ @see IsShown(), Hide(), wxRadioBox::Show
+ */
+ virtual bool Show(bool show = true);
+
+ /**
+ This function shows a window, like Show(), but using a special visual
+ effect if possible.
+
+ @param effect
+ The effect to use.
+
+ @param timeout
+ The @a timeout parameter specifies the time of the animation, in
+ milliseconds. If the default value of 0 is used, the default
+ animation time for the current platform is used.
+
+ @note Currently this function is only implemented in wxMSW and does the
+ same thing as Show() in the other ports.
+
+ @since 2.9.0
+
+ @see HideWithEffect()