summaryrefslogtreecommitdiff
path: root/src/lib/emotion/efl_canvas_video.eo
blob: 4851f2b190391f402ac9e21b12e9b5f1b0f72850 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
class Efl.Canvas.Video (Efl.Canvas.Group, Efl.File, Efl.Player, Efl.Image, Efl.Image.Load) {
   methods {
        @property option {
             set {
                  [[Set the specified option for the current module.

                    This function allows one to mute the video or audio of the
                    emotion object.

                    Please don't use this function, consider using
                    \@ref emotion_object_audio_mute_set and
                    \@ref emotion_object_video_mute_set instead.
                  ]]
                  legacy: emotion_object_module_option_set;
             }
             values {
                  opt: string; [[The option that is being set. Currently
                                        supported options: "video" and "audio".]]
                  val: string; [[The value of the option. Currently only
                                        supports "off" (?!?!?!)]]
             }
        }
        @property engine {
             set {
                  [[Initializes an emotion object with the specified module.

                    This function is required after creating the emotion object,
                    in order to specify which module will be used with this
                    object. Different objects can use different modules to
                    play a media file. The current supported modules are
                    gstreamer and xine.

                    To use any of them, you need to make sure that support for
                    them was compiled correctly.

                    It's possible to disable the build of a module with
                    --disable-module_name.

                    See also \@ref emotion_object_add and
                    \@ref emotion_object_file_set.
                  ]]
                  legacy: emotion_object_init;
                  return: bool; [[true if the specified module was successfully
                                  initialized for this object, false otherwise.]]
             }
             values {
                  module_filename: string; [[The name of the module to be
                                                    used (gstreamer or xine).]]
             }
        }
   }
   implements {
        Efl.Object.constructor;
        Efl.Gfx.color.set;
        Efl.Gfx.visible.set;
        Efl.Canvas.Object.clip.set;
        Efl.Canvas.Group.group_add;
        Efl.Canvas.Group.group_del;
        Efl.Canvas.Group.group_move;
        Efl.Canvas.Group.group_resize;
        Efl.File.file.set;
        Efl.File.file.get;
        Efl.Player.play.set;
        Efl.Player.play.get;
        Efl.Player.position.set;
        Efl.Player.position.get;
        Efl.Player.progress.get;
        Efl.Player.volume.set;
        Efl.Player.volume.get;
        Efl.Player.mute.set;
        Efl.Player.mute.get;
        Efl.Player.length.get;
        Efl.Player.seekable.get;
        Efl.Image.Load.load_size.get;
        Efl.Image.ratio.get;
        Efl.Image.smooth_scale.set;
        Efl.Image.smooth_scale.get;
   }
   events {
        frame,decode;
        position,change;
        length,change;
        frame,resize;
        playback,start;
        playback,stop;
        volume,change;
        channels,change;
        title,change;
        progress,change;
        ref,change;
        button,num,change;
        button,change;
        open,done;
        position,save,done;
        position,save,fail;
        position,load,done;
        position,load,fail;
   }
}

/* FIXME: Need to be added:
EAPI double       emotion_object_buffer_size_get       (const Evas_Object *obj);
EAPI const char  *emotion_object_progress_info_get     (const Evas_Object *obj);

Everything starting from (needs to be added):
EAPI int          emotion_object_audio_channel_count   (const Evas_Object *obj);

Should this be part of player or emotion object?
EAPI void         emotion_object_event_simple_send     (Evas_Object *obj, Emotion_Event ev);

Deliberations:
Should this really implement the image interface?
*/