summaryrefslogtreecommitdiff
path: root/libmatemixer/matemixer-device.c
blob: 00a848a7cd62c05e272063df074d0a9ec94365d8 (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
168
169
170
171
172
173
174
175
176
177
178
/*
 * 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/>.
 */

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

#include "matemixer-device.h"
#include "matemixer-device-profile.h"

/**
 * SECTION:matemixer-device
 * @include: libmatemixer/matemixer.h
 */

G_DEFINE_INTERFACE (MateMixerDevice, mate_mixer_device, G_TYPE_OBJECT)

static void
mate_mixer_device_default_init (MateMixerDeviceInterface *iface)
{
    g_object_interface_install_property (iface,
                                         g_param_spec_string ("name",
                                                              "Name",
                                                              "Name of the sound device",
                                                              NULL,
                                                              G_PARAM_READABLE |
                                                              G_PARAM_STATIC_STRINGS));

    g_object_interface_install_property (iface,
                                         g_param_spec_string ("description",
                                                              "Description",
                                                              "Description of the sound device",
                                                              NULL,
                                                              G_PARAM_READABLE |
                                                              G_PARAM_STATIC_STRINGS));

    g_object_interface_install_property (iface,
                                         g_param_spec_string ("icon",
                                                              "Icon",
                                                              "Name of the sound device icon",
                                                              NULL,
                                                              G_PARAM_READABLE |
                                                              G_PARAM_STATIC_STRINGS));

    g_object_interface_install_property (iface,
                                         g_param_spec_pointer ("ports",
                                                               "Ports",
                                                               "GList of the sound device ports",
                                                               G_PARAM_READABLE |
                                                               G_PARAM_STATIC_STRINGS));

    g_object_interface_install_property (iface,
                                         g_param_spec_pointer ("profiles",
                                                               "Profiles",
                                                               "GList of the sound device profiles",
                                                               G_PARAM_READABLE |
                                                               G_PARAM_STATIC_STRINGS));

    g_object_interface_install_property (iface,
                                         g_param_spec_object ("active-profile",
                                                              "Active profile",
                                                              "The currently active profile of the sound device",
                                                              MATE_MIXER_TYPE_DEVICE_PROFILE,
                                                              G_PARAM_READABLE |
                                                              G_PARAM_STATIC_STRINGS));
}

const gchar *
mate_mixer_device_get_name (MateMixerDevice *device)
{
    g_return_val_if_fail (MATE_MIXER_IS_DEVICE (device), NULL);

    return MATE_MIXER_DEVICE_GET_INTERFACE (device)->get_name (device);
}

const gchar *
mate_mixer_device_get_description (MateMixerDevice *device)
{
    MateMixerDeviceInterface *iface;

    g_return_val_if_fail (MATE_MIXER_IS_DEVICE (device), NULL);

    iface = MATE_MIXER_DEVICE_GET_INTERFACE (device);

    if (iface->get_description)
        return iface->get_description (device);

    return NULL;
}

const gchar *
mate_mixer_device_get_icon (MateMixerDevice *device)
{
    MateMixerDeviceInterface *iface;

    g_return_val_if_fail (MATE_MIXER_IS_DEVICE (device), NULL);

    iface = MATE_MIXER_DEVICE_GET_INTERFACE (device);

    if (iface->get_icon)
        return iface->get_icon (device);

    return NULL;
}

const GList *
mate_mixer_device_list_ports (MateMixerDevice *device)
{
    MateMixerDeviceInterface *iface;

    g_return_val_if_fail (MATE_MIXER_IS_DEVICE (device), NULL);

    iface = MATE_MIXER_DEVICE_GET_INTERFACE (device);

    if (iface->list_ports)
        return iface->list_ports (device);

    return NULL;
}

const GList *
mate_mixer_device_list_profiles (MateMixerDevice *device)
{
    MateMixerDeviceInterface *iface;

    g_return_val_if_fail (MATE_MIXER_IS_DEVICE (device), NULL);

    iface = MATE_MIXER_DEVICE_GET_INTERFACE (device);

    if (iface->list_profiles)
        return iface->list_profiles (device);

    return NULL;
}

MateMixerDeviceProfile *
mate_mixer_device_get_active_profile (MateMixerDevice *device)
{
    MateMixerDeviceInterface *iface;

    g_return_val_if_fail (MATE_MIXER_IS_DEVICE (device), NULL);

    iface = MATE_MIXER_DEVICE_GET_INTERFACE (device);

    if (iface->get_active_profile)
        return iface->get_active_profile (device);

    return NULL;
}

gboolean
mate_mixer_device_set_active_profile (MateMixerDevice *device, const gchar *profile)
{
    MateMixerDeviceInterface *iface;

    g_return_val_if_fail (MATE_MIXER_IS_DEVICE (device), FALSE);
    g_return_val_if_fail (profile != NULL, FALSE);

    iface = MATE_MIXER_DEVICE_GET_INTERFACE (device);

    if (iface->set_active_profile)
        return iface->set_active_profile (device, profile);

    return FALSE;
}