]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/interface_widgets.hpp
Give control back to the main interface for handling interaction with video.
[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
38 /******************** Video Widget ****************/
39 class VideoWidget : public QFrame
40 {
41     Q_OBJECT
42 public:
43     VideoWidget( intf_thread_t * );
44     virtual ~VideoWidget();
45
46     void *request( vout_thread_t *, int *, int *,
47                    unsigned int *, unsigned int * );
48     void release( void * );
49     int control( void *, int, va_list );
50
51     int i_video_height, i_video_width;
52     vout_thread_t *p_vout;
53
54     QSize widgetSize;
55     virtual QSize sizeHint() const;
56 private:
57     QWidget *frame;
58     intf_thread_t *p_intf;
59     vlc_mutex_t lock;
60 private slots:
61     void update();
62 };
63
64 /******************** Background Widget ****************/
65 class BackgroundWidget : public QFrame
66 {
67     Q_OBJECT
68 public:
69     BackgroundWidget( intf_thread_t * );
70     virtual ~BackgroundWidget();
71     QSize widgetSize;
72     virtual QSize sizeHint() const;
73 private:
74     QPalette plt;
75     QLabel *label;
76     QHBoxLayout *backgroundLayout;
77     virtual void resizeEvent( QResizeEvent *e );
78     int DrawBackground();
79     int CleanBackground();
80     intf_thread_t *p_intf;
81 private slots:
82     void hasAudio();
83     void hasVideo();
84 };
85
86
87 /******************** Playlist Widget ****************/
88 #include <QModelIndex>
89 class QSignalMapper;
90 class PLSelector;
91 class PLPanel;
92
93 class PlaylistWidget : public QFrame
94 {
95     Q_OBJECT;
96 public:
97     PlaylistWidget( intf_thread_t * );
98     virtual ~PlaylistWidget();
99     QSize widgetSize;
100     virtual QSize sizeHint() const;
101 private:
102     PLSelector *selector;
103     PLPanel *rightPanel;
104     intf_thread_t *p_intf;
105 };
106
107 #endif