]> git.sesse.net Git - vlc/blob - bindings/phonon/vlc/widgetnopaintevent.h
Phonon Backend using VLC
[vlc] / bindings / phonon / vlc / widgetnopaintevent.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_WIDGETNOPAINTEVENT_H
23 #define PHONON_VLC_WIDGETNOPAINTEVENT_H
24
25 #include <QtGui/QWidget>
26
27 namespace Phonon
28 {
29 namespace VLC {
30
31 /**
32  * Utility class: special widget for playing videos.
33  *
34  * Does not handle paintEvent()
35  */
36 class WidgetNoPaintEvent : public QWidget
37 {
38     Q_OBJECT
39 public:
40
41     WidgetNoPaintEvent(QWidget *p_parent);
42
43     /**
44      * Sets the background color.
45      *
46      * I don't know which one is best: 0x020202 or Qt::black...
47      */
48     void setBackgroundColor(const QColor & color);
49
50 private:
51
52     void paintEvent(QPaintEvent *p_event);
53 };
54
55 }
56 } // Namespace Phonon::VLC
57
58 #endif // PHONON_VLC_WIDGETNOPAINTEVENT_H