]> git.sesse.net Git - vlc/blob - modules/gui/qt4/qt4.hpp
qt4 add a small define that could help to fight Qt43 bugs.
[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  *
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 _QVLC_H_
25 #define _QVLC_H_
26
27 #include <vlc/vlc.h>
28 #include <vlc_interface.h>
29 #include <vlc_playlist.h>
30
31 #include <QEvent>
32
33 #define QT43 ( QT_VERSION >= 0x040300 )
34
35 /* Add define for duration, VLC_META_ENGINE doesn't include it */
36 #define VLC_META_ENGINE_DURATION   0x00000002
37 #define VLC_META_DURATION          N_("Duration")
38
39
40 class QApplication;
41 class QMenu;
42 class MainInterface;
43 class DialogsProvider;
44 class VideoWidget;
45
46 struct intf_sys_t
47 {
48     QApplication *p_app;
49     MainInterface *p_mi;
50     playlist_t *p_playlist;
51     msg_subscription_t *p_sub; ///< Subscription to the message bank
52
53     VideoWidget *p_video;
54     int i_saved_height, i_saved_width;
55
56     QMenu * p_popup_menu;
57 };
58
59 #define THEPL p_intf->p_sys->p_playlist
60 #define QPL_LOCK vlc_mutex_lock( &THEPL->object_lock );
61 #define QPL_UNLOCK vlc_mutex_unlock( &THEPL->object_lock );
62
63 #define THEDP DialogsProvider::getInstance()
64 #define THEMIM MainInputManager::getInstance( p_intf )
65
66 #define qfu( i ) QString::fromUtf8( i )
67 #define qtr( i ) QString::fromUtf8( _(i) )
68 #define qtu( i ) i.toUtf8().data()
69 #define qta( i ) i.toAscii().data()
70
71 #define CONNECT( a, b, c, d ) connect( a, SIGNAL( b ), c, SLOT(d) )
72 #define BUTTONACT( b, a ) connect( b, SIGNAL( clicked() ), this, SLOT(a) )
73 #define ON_TIMEOUT( act ) CONNECT( THEDP->fixed_timer, timeout(), this, act )
74
75 #define BUTTON_SET( button, text, tooltip )  \
76     button->setText( text );                 \
77     button->setToolTip( tooltip );
78
79 #define BUTTON_SET_ACT( button, text, tooltip, thisslot ) \
80     BUTTON_SET( button, text, tooltip );                  \
81     BUTTONACT( button, thisslot );
82
83 #define BUTTON_SET_IMG( button, text, image, tooltip )    \
84     BUTTON_SET( button, text, tooltip );                  \
85     button->setIcon( QIcon( ":/pixmaps/"#image ) );
86
87 #define BUTTON_SET_ACT_I( button, text, image, tooltip, thisslot ) \
88     BUTTON_SET_IMG( button, text, image, tooltip );                \
89     BUTTONACT( button, thisslot );
90
91 static int DialogEvent_Type = QEvent::User + 1;
92 static int PLUndockEvent_Type = QEvent::User + 2;
93 static int PLDockEvent_Type = QEvent::User + 3;
94 static int SetVideoOnTopEvent_Type = QEvent::User + 4;
95
96 class DialogEvent : public QEvent
97 {
98 public:
99     DialogEvent( int _i_dialog, int _i_arg, intf_dialog_args_t *_p_arg ) :
100                  QEvent( (QEvent::Type)(DialogEvent_Type) )
101     {
102         i_dialog = _i_dialog;
103         i_arg = _i_arg;
104         p_arg = _p_arg;
105     };
106     virtual ~DialogEvent() {};
107
108     int i_arg, i_dialog;
109     intf_dialog_args_t *p_arg;
110 };
111
112 /* Ugly to put it here, but don't want more files ... */
113 #if 0
114 #include <QFrame>
115 class BasePlaylistWidget : public QFrame
116 {
117 public:
118     BasePlaylistWidget( intf_thread_t *_p_i ) : p_intf( _p_i)  {};
119     virtual ~BasePlaylistWidget() {};
120 protected:
121     intf_thread_t *p_intf;
122 };
123 #endif
124 #endif