]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/interface_widgets.hpp
Some size fixes
[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 };
61
62 /******************** Background Widget ****************/
63 class BackgroundWidget : public QFrame
64 {
65     Q_OBJECT
66 public:
67     BackgroundWidget( intf_thread_t * );
68     virtual ~BackgroundWidget();
69     QSize widgetSize;
70     virtual QSize sizeHint() const;
71 private:
72     QPalette plt;
73     QLabel *label;
74     QHBoxLayout *backgroundLayout;
75     virtual void resizeEvent( QResizeEvent *e );
76     int DrawBackground();
77     int CleanBackground();
78     intf_thread_t *p_intf;
79 };
80
81 class VisualSelector : public QFrame
82 {
83     Q_OBJECT
84 public:
85     VisualSelector( intf_thread_t *);
86     virtual ~VisualSelector();
87 private:
88     intf_thread_t *p_intf;
89 };
90
91 /******************** Playlist Widget ****************/
92 #include <QModelIndex>
93 class QSignalMapper;
94 class PLSelector;
95 class PLPanel;
96
97 class PlaylistWidget : public QFrame
98 {
99     Q_OBJECT;
100 public:
101     PlaylistWidget( intf_thread_t * );
102     virtual ~PlaylistWidget();
103     QSize widgetSize;
104     virtual QSize sizeHint() const;
105 private:
106     PLSelector *selector;
107     PLPanel *rightPanel;
108     intf_thread_t *p_intf;
109 };
110
111 #endif