Class: Efl::Elm::ElmTransit
Instance Method Summary
collapse
-
#effect_blend_add ⇒ Object
-
#effect_color_add(from_r, from_g, from_b, from_a, to_r, to_g, to_b, to_a) ⇒ Object
-
#effect_fade_add ⇒ Object
-
#effect_flip_add(axis, cw) ⇒ Object
-
#effect_image_animation_add(images) ⇒ Object
-
#effect_resizable_flip_add(axis, cw) ⇒ Object
-
#effect_resizing_add(from_w, from_h, to_w, to_h) ⇒ Object
-
#effect_rotation_add(from_degree, to_degree) ⇒ Object
-
#effect_translation_add(from_w, from_h, to_w, to_h) ⇒ Object
-
#effect_wipe_add(type, dir) ⇒ Object
-
#effect_zoom_add(from_rate, to_rate) ⇒ Object
Methods included from Helper
included
Methods inherited from ElmObject
#cnp_selection_clear, #cnp_selection_get, #cnp_selection_set, #content_get, #content_set, #content_unset, #focus_allow_custom_chain_get, #focus_allow_custom_chain_set, #focus_allow_custom_chain_unset, #focus_allow_get, #focus_allow_set, #focus_custom_chain_append, #focus_custom_chain_prepend, #focus_cycle, #focus_get, #focus_set, #parent_widget_get, #scroll_freeze_pop, #scroll_freeze_push, #scroll_hold_pop, #scroll_hold_push, #scroll_lock_x_get, #scroll_lock_x_set, #scroll_lock_y_get, #scroll_lock_y_set, #smart_callback_add, #text_get, #text_set, #tree_dot_dump, #tree_dump, #tree_unfocusable_get, #tree_unfocusable_set
#above_get, #below_get, #center_get, #center_set, #color_get, #data_get, #ecore_evas_get, #evas_get, #evas_name, #evas_type, #free, #geometry_get, #initialize, #object_box_add, release, #size, #size=, #size_hint_align_get, #size_hint_align_set_fill, #size_hint_aspect_get, #size_hint_max_get, #size_hint_min_get, #size_hint_padding_get, #size_hint_request_get, #size_hint_weight_get, #size_hint_weight_set_expand, #size_hint_weight_set_expand_fill
#===, #address, included, #method_missing, #null?, #to_a, #to_ary, #to_ptr, #to_s
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
in the class Efl::ClassHelper
Instance Method Details
#effect_blend_add ⇒ Object
52
53
54
|
# File 'lib/efl/elm/elm_transit.rb', line 52
def effect_blend_add
ElmTransitEffect.new Native.elm_transit_effect_blend_add @ptr
end
|
#effect_color_add(from_r, from_g, from_b, from_a, to_r, to_g, to_b, to_a) ⇒ Object
44
45
46
|
# File 'lib/efl/elm/elm_transit.rb', line 44
def effect_color_add from_r, from_g, from_b, from_a, to_r, to_g, to_b, to_a
ElmTransitEffect.new Native.elm_transit_effect_color_add @ptr, from_r, from_g, from_b, from_a, to_r, to_g, to_b, to_a
end
|
#effect_fade_add ⇒ Object
48
49
50
|
# File 'lib/efl/elm/elm_transit.rb', line 48
def effect_fade_add
ElmTransitEffect.new Native.elm_transit_effect_fade_add @ptr
end
|
#effect_flip_add(axis, cw) ⇒ Object
32
33
34
|
# File 'lib/efl/elm/elm_transit.rb', line 32
def effect_flip_add axis, cw
ElmTransitEffect.new Native.elm_transit_effect_flip_add @ptr, axis, cw
end
|
#effect_image_animation_add(images) ⇒ Object
60
61
62
|
# File 'lib/efl/elm/elm_transit.rb', line 60
def effect_image_animation_add images
ElmTransitEffect.new Native.elm_transit_effect_image_animation_add @ptr, images
end
|
#effect_resizable_flip_add(axis, cw) ⇒ Object
36
37
38
|
# File 'lib/efl/elm/elm_transit.rb', line 36
def effect_resizable_flip_add axis, cw
ElmTransitEffect.new Native.elm_transit_effect_resizable_flip_add @ptr, axis, cw
end
|
#effect_resizing_add(from_w, from_h, to_w, to_h) ⇒ Object
16
17
18
|
# File 'lib/efl/elm/elm_transit.rb', line 16
def effect_resizing_add from_w, from_h, to_w, to_h
ElmTransitEffect.new Native.elm_transit_effect_resizing_add @ptr, from_w, from_h, to_w,to_h
end
|
#effect_rotation_add(from_degree, to_degree) ⇒ Object
56
57
58
|
# File 'lib/efl/elm/elm_transit.rb', line 56
def effect_rotation_add from_degree, to_degree
ElmTransitEffect.new Native.elm_transit_effect_rotation_add @ptr, from_degree, to_degree
end
|
#effect_translation_add(from_w, from_h, to_w, to_h) ⇒ Object
20
21
22
|
# File 'lib/efl/elm/elm_transit.rb', line 20
def effect_translation_add from_w, from_h, to_w, to_h
ElmTransitEffect.new Native.elm_transit_effect_translation_add @ptr, from_dx, from_dy, to_dx, to_dy
end
|
#effect_wipe_add(type, dir) ⇒ Object
40
41
42
|
# File 'lib/efl/elm/elm_transit.rb', line 40
def effect_wipe_add type, dir
ElmTransitEffect.new Native.elm_transit_effect_wipe_add @ptr, type, dir
end
|
#effect_zoom_add(from_rate, to_rate) ⇒ Object
24
25
26
|
# File 'lib/efl/elm/elm_transit.rb', line 24
def effect_zoom_add from_rate, to_rate
ElmTransitEffect.new Native.elm_transit_effect_zoom_add @ptr, from_rate, to_rate
end
|