]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/interface_widgets.hpp
Split video widget from background image managre
[vlc] / modules / gui / qt4 / components / interface_widgets.hpp
1 /*****************************************************************************
2  * interface_widgets.hpp : Custom widgets for the main interface
3  ****************************************************************************
4  * Copyright (C) 2006 the VideoLAN team
5  * $Id$
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #ifndef _INTFWIDGETS_H_
25 #define _INTFWIDGETS_H_
26
27 #include <vlc/vlc.h>
28 #include <vlc/intf.h>
29 #include <QWidget>
30 #include <QFrame>
31 #include <QPalette>
32 #include <QResizeEvent>
33 #include <QPixmap>
34
35 class QLabel;
36 class QHBoxLayout;
37 class QColor;
38
39 class VideoWidget : public QFrame
40 {
41     Q_OBJECT
42 public:
43     VideoWidget( intf_thread_t * );
44     virtual ~VideoWidget();
45
46     virtual QSize sizeHint() const;
47
48     void *Request( vout_thread_t *, int *, int *,
49                    unsigned int *, unsigned int * );
50     void Release( void * );
51     int Control( void *, int, va_list );
52     int i_video_height, i_video_width;
53     vout_thread_t *p_vout;
54 private:
55     QWidget *frame;
56     intf_thread_t *p_intf;
57     vlc_mutex_t lock;
58 private slots:
59     void update();
60 };
61
62 class BackgroundWidget : public QFrame
63 {
64     Q_OBJECT
65 public:
66     BackgroundWidget( intf_thread_t * );
67     virtual ~BackgroundWidget();
68 private:
69     QPalette plt;
70     QLabel *label;
71     QHBoxLayout *backgroundLayout;
72     virtual void resizeEvent( QResizeEvent *e );
73     int DrawBackground();
74     int CleanBackground();
75     intf_thread_t *p_intf;
76 private slots:
77     void hasAudio();
78     void hasVideo();
79 };
80
81
82
83
84
85 #endif