Class: Wx::ShowEffect
- Inherits:
-
Enum
- Object
- Enum
- Wx::ShowEffect
- Defined in:
- lib/wx/doc/gen/window.rb
Overview
Valid values for Window#show_with_effect and Window#hide_with_effect.
Constant Summary collapse
- SHOW_EFFECT_NONE =
No effect, equivalent to normal Window#show or Hide() call.
Wx::ShowEffect.new(0)
- SHOW_EFFECT_ROLL_TO_LEFT =
Roll window to the left.
Wx::ShowEffect.new(1)
- SHOW_EFFECT_ROLL_TO_RIGHT =
Roll window to the right.
Wx::ShowEffect.new(2)
- SHOW_EFFECT_ROLL_TO_TOP =
Roll window to the top.
Wx::ShowEffect.new(3)
- SHOW_EFFECT_ROLL_TO_BOTTOM =
Roll window to the bottom.
Wx::ShowEffect.new(4)
- SHOW_EFFECT_SLIDE_TO_LEFT =
Slide window to the left.
Wx::ShowEffect.new(5)
- SHOW_EFFECT_SLIDE_TO_RIGHT =
Slide window to the right.
Wx::ShowEffect.new(6)
- SHOW_EFFECT_SLIDE_TO_TOP =
Slide window to the top.
Wx::ShowEffect.new(7)
- SHOW_EFFECT_SLIDE_TO_BOTTOM =
Slide window to the bottom.
Wx::ShowEffect.new(8)
- SHOW_EFFECT_BLEND =
Fade in or out effect.
Wx::ShowEffect.new(9)
- SHOW_EFFECT_EXPAND =
Expanding or collapsing effect.
Wx::ShowEffect.new(10)
- SHOW_EFFECT_MAX =
Wx::ShowEffect.new(11)