]> git.sesse.net Git - vlc/blob - modules/gui/qt4/qt4.hpp
Qt4 - beginning of cleaning correctly the DP.
[vlc] / modules / gui / qt4 / qt4.hpp
1 /*****************************************************************************
2  * qt4.hpp : QT4 interface
3  ****************************************************************************
4  * Copyright (C) 2006-2007 the VideoLAN team
5  * $Id$
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *          Jean-Baptiste Kempf <jb@videolan.org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 #ifndef _QVLC_H_
26 #define _QVLC_H_
27
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
31
32 #include <vlc/vlc.h>
33 #include <vlc_interface.h>
34 #include <vlc_playlist.h>
35
36 #include <QEvent>
37
38 #define HAS_QT43 ( QT_VERSION >= 0x040300 )
39
40 /* Add define for duration, VLC_META_ENGINE doesn't include it */
41 #define VLC_META_ENGINE_DURATION   0x00000002
42 #define VLC_META_DURATION          N_( "Duration" )
43
44 #define QT_NORMAL_MODE 0
45 #define QT_ALWAYS_VIDEO_MODE 1
46 #define QT_MINIMAL_MODE 2
47
48 class QApplication;
49 class QMenu;
50 class MainInterface;
51 class DialogsProvider;
52 class VideoWidget;
53
54 struct intf_sys_t
55 {
56     QApplication *p_app;
57     MainInterface *p_mi;
58
59     playlist_t *p_playlist;
60     msg_subscription_t *p_sub; ///< Subscription to the message bank
61
62     VideoWidget *p_video;
63
64     const char *psz_filepath;
65     QMenu * p_popup_menu;
66 };
67
68 #define THEPL p_intf->p_sys->p_playlist
69 #define QPL_LOCK vlc_mutex_lock( &THEPL->object_lock );
70 #define QPL_UNLOCK vlc_mutex_unlock( &THEPL->object_lock );
71
72 #define THEDP DialogsProvider::getInstance()
73 #define THEMIM MainInputManager::getInstance( p_intf )
74
75 #define qfu( i ) QString::fromUtf8( i )
76 #define qtr( i ) QString::fromUtf8( _(i) )
77 #define qtu( i ) (i).toUtf8().data()
78 #define qta( i ) (i).toAscii().data()
79
80 #define CONNECT( a, b, c, d ) connect( a, SIGNAL( b ), c, SLOT(d) )
81 #define BUTTONACT( b, a ) connect( b, SIGNAL( clicked() ), this, SLOT(a) )
82 #define ON_TIMEOUT( act ) CONNECT( THEDP->fixed_timer, timeout(), this, act )
83
84 #define BUTTON_SET( button, text, tooltip )  \
85     button->setText( text );                 \
86     button->setToolTip( tooltip );
87
88 #define BUTTON_SET_ACT( button, text, tooltip, thisslot ) \
89     BUTTON_SET( button, text, tooltip );                  \
90     BUTTONACT( button, thisslot );
91
92 #define BUTTON_SET_IMG( button, text, image, tooltip )    \
93     BUTTON_SET( button, text, tooltip );                  \
94     button->setIcon( QIcon( ":/pixmaps/"#image ) );
95
96 #define BUTTON_SET_ACT_I( button, text, image, tooltip, thisslot ) \
97     BUTTON_SET_IMG( button, text, image, tooltip );                \
98     BUTTONACT( button, thisslot );
99
100 #define VISIBLE(i) (i && i->isVisible())
101
102 #define TOGGLEV( x ) { if( x->isVisible() ) x->hide();          \
103             else  x->show(); }
104
105 static int DialogEvent_Type = QEvent::User + 1;
106 //static int PLUndockEvent_Type = QEvent::User + 2;
107 //static int PLDockEvent_Type = QEvent::User + 3;
108 static int SetVideoOnTopEvent_Type = QEvent::User + 4;
109
110 class DialogEvent : public QEvent
111 {
112 public:
113     DialogEvent( int _i_dialog, int _i_arg, intf_dialog_args_t *_p_arg ) :
114                  QEvent( (QEvent::Type)(DialogEvent_Type) )
115     {
116         i_dialog = _i_dialog;
117         i_arg = _i_arg;
118         p_arg = _p_arg;
119     };
120     virtual ~DialogEvent() {};
121
122     int i_arg, i_dialog;
123     intf_dialog_args_t *p_arg;
124 };
125
126 #endif