]> git.sesse.net Git - vlc/blob - bindings/phonon/vlc/audiooutput.h
Phonon Backend using VLC
[vlc] / bindings / phonon / vlc / audiooutput.h
1 /*****************************************************************************
2  * VLC backend for the Phonon library                                        *
3  * Copyright (C) 2007-2008 Tanguy Krotoff <tkrotoff@gmail.com>               *
4  * Copyright (C) 2008 Lukas Durfina <lukas.durfina@gmail.com>                *
5  * Copyright (C) 2009 Fathi Boudra <fabo@kde.org>                            *
6  *                                                                           *
7  * This program is free software; you can redistribute it and/or             *
8  * modify it under the terms of the GNU Lesser General Public                *
9  * License as published by the Free Software Foundation; either              *
10  * version 3 of the License, or (at your option) any later version.          *
11  *                                                                           *
12  * This program is distributed in the hope that it will be useful,           *
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of            *
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU         *
15  * Lesser General Public License for more details.                           *
16  *                                                                           *
17  * You should have received a copy of the GNU Lesser General Public          *
18  * License along with this package; if not, write to the Free Software       *
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA *
20  *****************************************************************************/
21
22 #ifndef PHONON_VLC_AUDIOOUTPUT_H
23 #define PHONON_VLC_AUDIOOUTPUT_H
24
25 #include "sinknode.h"
26
27 #include <phonon/audiooutputinterface.h>
28
29 namespace Phonon
30 {
31 namespace VLC {
32 class Backend;
33
34 class AudioOutput : public SinkNode, public AudioOutputInterface
35 {
36     Q_OBJECT
37     Q_INTERFACES(Phonon::AudioOutputInterface)
38
39 public:
40
41     AudioOutput(Backend *p_back, QObject * p_parent);
42     ~AudioOutput();
43
44     qreal volume() const;
45     void setVolume(qreal volume);
46
47     int outputDevice() const;
48     bool setOutputDevice(int);
49 #if (PHONON_VERSION >= PHONON_VERSION_CHECK(4, 2, 0))
50     bool setOutputDevice(const AudioOutputDevice & device);
51 #endif
52
53 signals:
54
55     void volumeChanged(qreal volume);
56     void audioDeviceFailed();
57
58 private:
59
60     qreal f_volume;
61     int i_device;
62     Backend *p_backend;
63
64 };
65
66 }
67 } // Namespace Phonon::VLC
68
69 #endif // PHONON_VLC_AUDIOOUTPUT_H