summaryrefslogtreecommitdiff
path: root/backends/pulse/pulse-connection.h
blob: ae7b3d3822bfaa59da9f59295a8eca7edbec7ab5 (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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
/*
 * Copyright (C) 2014 Michal Ratajsky <michal.ratajsky@gmail.com>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the licence, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
 */

#ifndef PULSE_CONNECTION_H
#define PULSE_CONNECTION_H

#include <glib.h>
#include <glib-object.h>

#include <pulse/pulseaudio.h>

#include "pulse-enums.h"
#include "pulse-monitor.h"

G_BEGIN_DECLS

#define PULSE_TYPE_CONNECTION                   \
        (pulse_connection_get_type ())
#define PULSE_CONNECTION(o)                     \
        (G_TYPE_CHECK_INSTANCE_CAST ((o), PULSE_TYPE_CONNECTION, PulseConnection))
#define PULSE_IS_CONNECTION(o)                  \
        (G_TYPE_CHECK_INSTANCE_TYPE ((o), PULSE_TYPE_CONNECTION))
#define PULSE_CONNECTION_CLASS(k)               \
        (G_TYPE_CHECK_CLASS_CAST ((k), PULSE_TYPE_CONNECTION, PulseConnectionClass))
#define PULSE_IS_CONNECTION_CLASS(k)            \
        (G_TYPE_CHECK_CLASS_TYPE ((k), PULSE_TYPE_CONNECTION))
#define PULSE_CONNECTION_GET_CLASS(o)           \
        (G_TYPE_INSTANCE_GET_CLASS ((o), PULSE_TYPE_CONNECTION, PulseConnectionClass))

typedef struct _PulseConnection         PulseConnection;
typedef struct _PulseConnectionClass    PulseConnectionClass;
typedef struct _PulseConnectionPrivate  PulseConnectionPrivate;

struct _PulseConnection
{
    GObject parent;

    /*< private >*/
    PulseConnectionPrivate *priv;
};

struct _PulseConnectionClass
{
    GObjectClass parent_class;

    /* Signals */
    void (*server_info)           (PulseConnection             *connection,
                                   const pa_server_info        *info);
    void (*card_info)             (PulseConnection             *connection,
                                   const pa_card_info          *info);
    void (*card_removed)          (PulseConnection             *connection,
                                   guint32                      index);
    void (*sink_info)             (PulseConnection             *connection,
                                   const pa_sink_info          *info);
    void (*sink_removed)          (PulseConnection             *connection,
                                   guint32                      index);
    void (*sink_input_info)       (PulseConnection             *connection,
                                   const pa_sink_input_info    *info);
    void (*sink_input_removed)    (PulseConnection             *connection,
                                   guint32                      index);
    void (*source_info)           (PulseConnection             *connection,
                                   const pa_source_info        *info);
    void (*source_removed)        (PulseConnection             *connection,
                                   guint32                      index);
    void (*source_output_info)    (PulseConnection             *connection,
                                   const pa_source_output_info *info);
    void (*source_output_removed) (PulseConnection             *connection,
                                   guint32                      index);
};

GType                pulse_connection_get_type                 (void) G_GNUC_CONST;

PulseConnection *    pulse_connection_new                      (const gchar      *app_name,
                                                                const gchar      *app_id,
                                                                const gchar      *app_version,
                                                                const gchar      *app_icon,
                                                                const gchar      *server_address);

gboolean             pulse_connection_connect                  (PulseConnection  *connection,
                                                                gboolean          wait_for_daemon);
void                 pulse_connection_disconnect               (PulseConnection  *connection);

PulseConnectionState pulse_connection_get_state                (PulseConnection  *connection);

PulseMonitor *       pulse_connection_create_monitor           (PulseConnection  *connection,
                                                                guint32           index_source,
                                                                guint32           index_sink_input);

gboolean             pulse_connection_set_default_sink         (PulseConnection  *connection,
                                                                const gchar      *name);
gboolean             pulse_connection_set_default_source       (PulseConnection  *connection,
                                                                const gchar      *name);

gboolean             pulse_connection_set_card_profile         (PulseConnection  *connection,
                                                                const gchar      *device,
                                                                const gchar      *profile);

gboolean             pulse_connection_set_sink_mute            (PulseConnection  *connection,
                                                                guint32           index,
                                                                gboolean          mute);
gboolean             pulse_connection_set_sink_volume          (PulseConnection  *connection,
                                                                guint32           index,
                                                                const pa_cvolume *volume);
gboolean             pulse_connection_set_sink_port            (PulseConnection  *connection,
                                                                guint32           index,
                                                                const gchar      *port);

gboolean             pulse_connection_set_sink_input_mute      (PulseConnection  *connection,
                                                                guint32           index,
                                                                gboolean          mute);
gboolean             pulse_connection_set_sink_input_volume    (PulseConnection  *connection,
                                                                guint32           index,
                                                                const pa_cvolume *volume);

gboolean             pulse_connection_set_source_mute          (PulseConnection  *connection,
                                                                guint32           index,
                                                                gboolean          mute);
gboolean             pulse_connection_set_source_volume        (PulseConnection  *connection,
                                                                guint32           index,
                                                                const pa_cvolume *volume);
gboolean             pulse_connection_set_source_port          (PulseConnection  *connection,
                                                                guint32           index,
                                                                const gchar      *port);

gboolean             pulse_connection_set_source_output_mute   (PulseConnection  *connection,
                                                                guint32           index,
                                                                gboolean          mute);
gboolean             pulse_connection_set_source_output_volume (PulseConnection  *connection,
                                                                guint32           index,
                                                                const pa_cvolume *volume);

gboolean             pulse_connection_suspend_sink             (PulseConnection  *connection,
                                                                guint32           index,
                                                                gboolean          suspend);
gboolean             pulse_connection_suspend_source           (PulseConnection  *connection,
                                                                guint32           index,
                                                                gboolean          suspend);

gboolean             pulse_connection_move_sink_input          (PulseConnection  *connection,
                                                                guint32           index,
                                                                guint32           sink_index);
gboolean             pulse_connection_move_source_output       (PulseConnection  *connection,
                                                                guint32           index,
                                                                guint32           source_index);

gboolean             pulse_connection_kill_sink_input          (PulseConnection  *connection,
                                                                guint32           index);
gboolean             pulse_connection_kill_source_output       (PulseConnection  *connection,
                                                                guint32           index);

G_END_DECLS

#endif /* PULSE_CONNECTION_H */