aboutsummaryrefslogtreecommitdiff
path: root/src/active-sink.h
blob: 051da850730d4233c9f92518c00cb8f9fd7f110d (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
/*
 * Copyright 2010 Canonical Ltd.
 *
 * Authors:
 *     Conor Curran <conor.curran@canonical.com>
 *
 * This program is free software: you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 3, as published
 * by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranties of
 * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
 * PURPOSE.  See the GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef __ACTIVE_SINK_H__
#define __ACTIVE_SINK_H__

#include <glib.h>
#include <glib-object.h>
#include <libdbusmenu-glib/menuitem.h>
#include "common-defs.h"
#include <pulse/pulseaudio.h>

G_BEGIN_DECLS

#define ACTIVE_SINK_TYPE         (active_sink_get_type ())
#define ACTIVE_SINK(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), ACTIVE_SINK_TYPE, ActiveSink))
#define ACTIVE_SINK_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST ((k), ACTIVE_SINK_TYPE, ActiveSinkClass))
#define IS_ACTIVE_SINK(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), ACTIVE_SINK_TYPE))
#define IS_ACTIVE_SINK_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), ACTIVE_SINK_TYPE))
#define ACTIVE_SINK_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), ACTIVE_SINK_TYPE, ActiveSinkClass))

typedef struct _ActiveSink      ActiveSink;
typedef struct _ActiveSinkClass ActiveSinkClass;

struct _ActiveSink {
  GObject parent;
};

struct _ActiveSinkClass {
  GObjectClass parent_class;
};

typedef struct {
  gchar* name;
  gint index;
  pa_cvolume volume;
  pa_channel_map channel_map;
  gboolean mute;
  pa_volume_t base_volume;
} sink_details;

GType active_sink_get_type  (void) G_GNUC_CONST;

void active_sink_update_details (ActiveSink* sink, sink_details* details);  
gboolean active_sink_is_populated (ActiveSink* sink);
gboolean active_sink_is_muted (ActiveSink* self);
gint active_sink_get_index (ActiveSink* self);
G_END_DECLS

#endif