~ubuntu-branches/ubuntu/trusty/phonon/trusty-updates

« back to all changes in this revision

Viewing changes to xine/brightnesscontrol.h

  • Committer: Bazaar Package Importer
  • Author(s): Modestas Vainius
  • Date: 2011-03-11 21:39:20 UTC
  • mfrom: (6.1.4 experimental)
  • Revision ID: james.westby@ubuntu.com-20110311213920-pvkmqc1gdpy88uzx
Tags: 4:4.6.0really4.4.4-2
* Drop phonon-backends-dbg from phonon-dbg Recommends/Breaks. No longer
  needed.
* Readd packaging copyright/licensing to debian/copyright.
* Bump libphonon-dev Breaks/Replaces to << 4:4.6.0really4.4.4 for
  libphononexperimental-dev. experimental/avcaptureinterface.h header which
  used to be there up to 4.4.4 (see changelog below).
* Switch debian/rules build engine to dhmk (qt-kde-team/2/*):
  - build-depend on pkg-kde-tools >= 0.11;
  - port debian/rules to dhmk keeping it dh compatible as much as possible.
* Drop unused ${shlibs:Depends} from libphonon-dev and
  libphononexperimental-dev packages.
* Add README.Debian to phonon-backend-null package.
* Remove phonon-backend-null.lintian-overrides: phonon-backend-null is no
  longer and empty package due to README.Debian (see above).
* Release to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*  This file is part of the KDE project
2
 
    Copyright (C) 2006 Matthias Kretz <kretz@kde.org>
3
 
 
4
 
    This program is free software; you can redistribute it and/or
5
 
    modify it under the terms of the GNU Library General Public
6
 
    License as published by the Free Software Foundation; either
7
 
    version 2 of the License, or (at your option) any later version.
8
 
 
9
 
    This library is distributed in the hope that it will be useful,
10
 
    but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12
 
    Library General Public License for more details.
13
 
 
14
 
    You should have received a copy of the GNU Library General Public License
15
 
    along with this library; see the file COPYING.LIB.  If not, write to
16
 
    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17
 
    Boston, MA 02110-1301, USA.
18
 
 
19
 
*/
20
 
 
21
 
#ifndef BRIGHTNESSCONTROL_H
22
 
#define BRIGHTNESSCONTROL_H
23
 
 
24
 
#include "videoeffect.h"
25
 
#include <xine.h>
26
 
#include "xinestream.h"
27
 
 
28
 
namespace Phonon
29
 
{
30
 
namespace Xine
31
 
{
32
 
 
33
 
class BrightnessControl : public VideoEffect
34
 
{
35
 
    Q_OBJECT
36
 
    public:
37
 
        BrightnessControl(QObject *parent = 0);
38
 
        ~BrightnessControl();
39
 
 
40
 
        Q_INVOKABLE int brightness() const { return m_brightness; }
41
 
        Q_INVOKABLE void setBrightness(int);
42
 
 
43
 
        Q_INVOKABLE int upperBound() const;
44
 
        Q_INVOKABLE int lowerBound() const;
45
 
 
46
 
        virtual void setPath(VideoPath *);
47
 
 
48
 
    private:
49
 
        XineStream *stream();
50
 
 
51
 
        int m_brightness;
52
 
};
53
 
 
54
 
} // namespace Xine
55
 
} // namespace Phonon
56
 
 
57
 
#endif // BRIGHTNESSCONTROL_H
58
 
 
59
 
// vim: sw=4 ts=4 sts=4 et