Top |
#define | AGS_PULSE_CLIENT_GET_OBJ_MUTEX() |
gboolean | ags_pulse_client_test_flags () |
void | ags_pulse_client_set_flags () |
void | ags_pulse_client_unset_flags () |
GList * | ags_pulse_client_find_uuid () |
GList * | ags_pulse_client_find () |
void | ags_pulse_client_open () |
void | ags_pulse_client_close () |
void | ags_pulse_client_add_device () |
void | ags_pulse_client_remove_device () |
void | ags_pulse_client_add_port () |
void | ags_pulse_client_remove_port () |
void | ags_pulse_client_activate () |
void | ags_pulse_client_deactivate () |
AgsPulseClient * | ags_pulse_client_new () |
char * | client-name | Read / Write |
gpointer | device | Read / Write |
gpointer | port | Read / Write |
AgsPulseServer * | pulse-server | Read / Write |
#define AGS_PULSE_CLIENT_GET_OBJ_MUTEX(obj) (&(((AgsPulseClient *) obj)->obj_mutex))
gboolean ags_pulse_client_test_flags (AgsPulseClient *pulse_client
,AgsPulseClientFlags flags
);
Test flags
to be set on pulse_client
.
Since: 3.0.0
void ags_pulse_client_set_flags (AgsPulseClient *pulse_client
,AgsPulseClientFlags flags
);
Enable a feature of pulse_client
.
Since: 3.0.0
void ags_pulse_client_unset_flags (AgsPulseClient *pulse_client
,AgsPulseClientFlags flags
);
Disable a feature of pulse_client
.
Since: 3.0.0
GList * ags_pulse_client_find_uuid (GList *pulse_client
,gchar *client_uuid
);
Finds next match of client_uuid
in pulse_client
.
pulse_client |
the GList containing AgsPulseClient. |
[element-type AgsAudio.PulseClient][transfer none] |
client_uuid |
the client uuid to find |
Since: 3.0.0
GList * ags_pulse_client_find (GList *pulse_client
,gchar *client_name
);
Finds next match of client_name
in pulse_client
.
pulse_client |
the GList containing AgsPulseClient. |
[element-type AgsAudio.PulseClient][transfer none] |
client_name |
the client name to find |
Since: 3.0.0
void ags_pulse_client_open (AgsPulseClient *pulse_client
,gchar *client_name
);
Open the pulseaudio client's connection and read uuid.
Since: 3.0.0
void
ags_pulse_client_close (AgsPulseClient *pulse_client
);
Close the pulseaudio client's connection.
Since: 3.0.0
void ags_pulse_client_add_device (AgsPulseClient *pulse_client
,GObject *pulse_device
);
Add pulse_device
to pulse_client
.
Since: 3.0.0
void ags_pulse_client_remove_device (AgsPulseClient *pulse_client
,GObject *pulse_device
);
Remove pulse_device
from pulse_client
.
Since: 3.0.0
void ags_pulse_client_add_port (AgsPulseClient *pulse_client
,GObject *pulse_port
);
Add pulse_port
to pulse_client
.
Since: 3.0.0
void ags_pulse_client_remove_port (AgsPulseClient *pulse_client
,GObject *pulse_port
);
Remove pulse_port
from pulse_client
.
Since: 3.0.0
void
ags_pulse_client_activate (AgsPulseClient *pulse_client
);
Activate client.
Since: 3.0.0
void
ags_pulse_client_deactivate (AgsPulseClient *pulse_client
);
Deactivate client.
Since: 3.0.0
AgsPulseClient *
ags_pulse_client_new (GObject *pulse_server
);
Create a new instance of AgsPulseClient.
Since: 3.0.0
Enum values to control the behavior or indicate internal state of AgsPulseClient by enable/disable as flags.
“client-name”
property “client-name” char *
The pulseaudio client name.
Owner: AgsPulseClient
Flags: Read / Write
Default value: NULL
Since: 3.0.0
“device”
property “device” gpointer
The assigned devices.
[transfer full]
Owner: AgsPulseClient
Flags: Read / Write
Since: 3.0.0
“port”
property “port” gpointer
The assigned ports.
[transfer full]
Owner: AgsPulseClient
Flags: Read / Write
Since: 3.0.0
“pulse-server”
property“pulse-server” AgsPulseServer *
The assigned AgsPulseServer.
Owner: AgsPulseClient
Flags: Read / Write
Since: 3.0.0