efl/src/lib/ecore_audio/ecore_audio_out.eo

42 lines
1.0 KiB
Plaintext
Raw Normal View History

class Ecore.Audio.Out (Ecore.Audio)
2014-03-26 09:01:36 -07:00
{
[[Ecore Audio output object.]]
2014-03-26 09:01:36 -07:00
eo_prefix: ecore_audio_obj_out;
data: Ecore_Audio_Output;
methods {
input_attach {
[[Attaches an input to an output
2014-03-26 09:01:36 -07:00
2015-06-18 08:37:01 -07:00
@since 1.8
]]
return: bool; [[$true if the input was attached, $false otherwise]]
2014-03-26 09:01:36 -07:00
params {
@in input: Ecore.Audio.In; [[The input to attach to the output]]
2014-03-26 09:01:36 -07:00
}
}
input_detach {
[[Detaches an input from an output
2014-03-26 09:01:36 -07:00
2015-06-18 08:37:01 -07:00
@since 1.8
]]
return: bool; [[$true if the input was detached, $false otherwise]]
2014-03-26 09:01:36 -07:00
params {
@in input: Ecore.Audio.In; [[The input to detach to the output]]
2014-03-26 09:01:36 -07:00
}
}
inputs_get {
2015-06-18 08:37:01 -07:00
[[Returns the list of all attached inputs
2014-03-26 09:01:36 -07:00
2015-06-18 08:37:01 -07:00
@since 1.8
]]
return: list<Ecore.Audio.In>; [[A list of the inputs that are attached to the output]]
2014-03-26 09:01:36 -07:00
}
}
implements {
Efl.Object.constructor;
Efl.Object.destructor;
Ecore.Audio.vio_set;
2014-03-26 09:01:36 -07:00
}
}