~nathwill-deactivatedaccount-deactivatedaccount/ubuntu/precise/gnome-control-center/fix-lp-978118

« back to all changes in this revision

Viewing changes to panels/sound-nua/gvc-mixer-card.h

  • Committer: Package Import Robot
  • Author(s): Ken VanDine, Didier Roche, Ken VanDine
  • Date: 2012-02-09 16:44:44 UTC
  • Revision ID: package-import@ubuntu.com-20120209164444-nvlkg36obi95y6n0
Tags: 1:3.2.2-2ubuntu7
[ Didier Roche ]
* debian/patches/04_new_appearance_settings.patch:
  - fix a typo (LP: #929070)
  - new reveal sensitivity default is now 2.0

[ Ken VanDine ]
* debian/patches/96_sound_nua_panel.patch
  - Adding the new sound-nua panel for sound settings, only displayed 
    in Unity, the old sound panel will load in GNOME

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
 
2
 *
 
3
 * Copyright (C) 2008-2009 Red Hat, Inc.
 
4
 *
 
5
 * This program is free software; you can redistribute it and/or modify
 
6
 * it under the terms of the GNU General Public License as published by
 
7
 * the Free Software Foundation; either version 2 of the License, or
 
8
 * (at your option) any later version.
 
9
 *
 
10
 * This program is distributed in the hope that it will be useful,
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 * GNU General Public License for more details.
 
14
 *
 
15
 * You should have received a copy of the GNU General Public License
 
16
 * along with this program; if not, write to the Free Software
 
17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
18
 *
 
19
 */
 
20
 
 
21
#ifndef __GVC_MIXER_CARD_H
 
22
#define __GVC_MIXER_CARD_H
 
23
 
 
24
#include <glib-object.h>
 
25
#include <gio/gio.h>
 
26
 
 
27
G_BEGIN_DECLS
 
28
 
 
29
#define GVC_TYPE_MIXER_CARD         (gvc_mixer_card_get_type ())
 
30
#define GVC_MIXER_CARD(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), GVC_TYPE_MIXER_CARD, GvcMixerCard))
 
31
#define GVC_MIXER_CARD_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST((k), GVC_TYPE_MIXER_CARD, GvcMixerCardClass))
 
32
#define GVC_IS_MIXER_CARD(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), GVC_TYPE_MIXER_CARD))
 
33
#define GVC_IS_MIXER_CARD_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), GVC_TYPE_MIXER_CARD))
 
34
#define GVC_MIXER_CARD_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), GVC_TYPE_MIXER_CARD, GvcMixerCardClass))
 
35
 
 
36
typedef struct GvcMixerCardPrivate GvcMixerCardPrivate;
 
37
 
 
38
typedef struct
 
39
{
 
40
        GObject                parent;
 
41
        GvcMixerCardPrivate   *priv;
 
42
} GvcMixerCard;
 
43
 
 
44
typedef struct
 
45
{
 
46
        GObjectClass           parent_class;
 
47
 
 
48
        /* vtable */
 
49
} GvcMixerCardClass;
 
50
 
 
51
typedef struct
 
52
{
 
53
        char *profile;
 
54
        char *human_profile;
 
55
        char *status;
 
56
        guint priority;
 
57
        guint n_sinks, n_sources;
 
58
} GvcMixerCardProfile;
 
59
 
 
60
typedef struct
 
61
{
 
62
        char *port;
 
63
        char *human_port;
 
64
        guint priority;
 
65
        gint  available;
 
66
        gint  direction;
 
67
        GList *profiles;
 
68
} GvcMixerCardPort;
 
69
 
 
70
GType                 gvc_mixer_card_get_type          (void);
 
71
 
 
72
guint                 gvc_mixer_card_get_id            (GvcMixerCard *card);
 
73
guint                 gvc_mixer_card_get_index         (GvcMixerCard *card);
 
74
const char *          gvc_mixer_card_get_name          (GvcMixerCard *card);
 
75
const char *          gvc_mixer_card_get_icon_name     (GvcMixerCard *card);
 
76
GvcMixerCardProfile * gvc_mixer_card_get_profile       (GvcMixerCard *card);
 
77
const GList *         gvc_mixer_card_get_profiles      (GvcMixerCard *card);
 
78
const GList *         gvc_mixer_card_get_ports         (GvcMixerCard *card);
 
79
gboolean              gvc_mixer_card_change_profile    (GvcMixerCard *card,
 
80
                                                        const char *profile);
 
81
GIcon *               gvc_mixer_card_get_gicon         (GvcMixerCard *card);
 
82
 
 
83
/* private */
 
84
gboolean              gvc_mixer_card_set_name          (GvcMixerCard *card,
 
85
                                                        const char   *name);
 
86
gboolean              gvc_mixer_card_set_icon_name     (GvcMixerCard *card,
 
87
                                                        const char   *name);
 
88
gboolean              gvc_mixer_card_set_profile       (GvcMixerCard *card,
 
89
                                                        const char   *profile);
 
90
gboolean              gvc_mixer_card_set_profiles      (GvcMixerCard *card,
 
91
                                                        GList        *profiles);
 
92
gboolean              gvc_mixer_card_set_ports         (GvcMixerCard *stream,
 
93
                                                        GList        *ports);
 
94
 
 
95
static int
 
96
sort_profiles (GvcMixerCardProfile *a,
 
97
               GvcMixerCardProfile *b)
 
98
{
 
99
        if (a->priority == b->priority)
 
100
                return 0;
 
101
        if (a->priority > b->priority)
 
102
                return 1;
 
103
        return -1;
 
104
}
 
105
 
 
106
G_END_DECLS
 
107
 
 
108
#endif /* __GVC_MIXER_CARD_H */