~ubuntu-branches/ubuntu/lucid/gnome-media/lucid

« back to all changes in this revision

Viewing changes to gnome-volume-control/src/gvc-sound-theme-chooser.h

  • Committer: Bazaar Package Importer
  • Author(s): Chris Coulson
  • Date: 2009-03-17 19:15:41 UTC
  • mfrom: (0.1.28 upstream)
  • Revision ID: james.westby@ubuntu.com-20090317191541-0q416utvg9uokcuv
Tags: 2.26.0-0ubuntu1
* New upstream version (LP: #344481):
  + gnome-volume-control:
    - Fix tooltip when dB changes.
    - Update the volume immediately.
  + gst-mixer:
    - Add new icon mappings.
    - Make options update when changed.
    - Add sound theme page.
* debian/patches/05_gst-mix_and_new_gvc_no_conflict.patch:
  - Make it possible to build the new gnome-volume-control and
    gst-mixer at the same time without conflicting, by
    renaming the new gnome-volume-control capplet to
    gnome-volume-control-settings.
* debian/patches/06_autoconf.patch:
  - Recreate build system.
* debian/control{.in},
  debian/gnome-media-common.install,
  debian/gnome-media.install,
  debian/gnome-volume-control.install,
  debian/rules:
  - Enable the new gnome-volume-control capplet and gvc-applet
    and install these in to a new binary package - 
    gnome-volume-control-pulse.

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 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_SOUND_THEME_CHOOSER_H
22
 
#define __GVC_SOUND_THEME_CHOOSER_H
23
 
 
24
 
#include <glib-object.h>
25
 
 
26
 
G_BEGIN_DECLS
27
 
 
28
 
#define GVC_TYPE_SOUND_THEME_CHOOSER         (gvc_sound_theme_chooser_get_type ())
29
 
#define GVC_SOUND_THEME_CHOOSER(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), GVC_TYPE_SOUND_THEME_CHOOSER, GvcSoundThemeChooser))
30
 
#define GVC_SOUND_THEME_CHOOSER_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST((k), GVC_TYPE_SOUND_THEME_CHOOSER, GvcSoundThemeChooserClass))
31
 
#define GVC_IS_SOUND_THEME_CHOOSER(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), GVC_TYPE_SOUND_THEME_CHOOSER))
32
 
#define GVC_IS_SOUND_THEME_CHOOSER_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), GVC_TYPE_SOUND_THEME_CHOOSER))
33
 
#define GVC_SOUND_THEME_CHOOSER_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), GVC_TYPE_SOUND_THEME_CHOOSER, GvcSoundThemeChooserClass))
34
 
 
35
 
typedef struct GvcSoundThemeChooserPrivate GvcSoundThemeChooserPrivate;
36
 
 
37
 
typedef struct
38
 
{
39
 
        GtkVBox                      parent;
40
 
        GvcSoundThemeChooserPrivate *priv;
41
 
} GvcSoundThemeChooser;
42
 
 
43
 
typedef struct
44
 
{
45
 
        GtkVBoxClass          parent_class;
46
 
} GvcSoundThemeChooserClass;
47
 
 
48
 
GType               gvc_sound_theme_chooser_get_type            (void);
49
 
 
50
 
GtkWidget *         gvc_sound_theme_chooser_new                 (void);
51
 
 
52
 
G_END_DECLS
53
 
 
54
 
#endif /* __GVC_SOUND_THEME_CHOOSER_H */