1 /*****************************************************************************
2 * qt4.hpp : QT4 interface
3 ****************************************************************************
4 * Copyright (C) 2006-2007 the VideoLAN team
7 * Authors: Clément Stenac <zorglub@videolan.org>
8 * Jean-Baptiste Kempf <jb@videolan.org>
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.
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.
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 *****************************************************************************/
33 #include <vlc_interface.h>
34 #include <vlc_playlist.h>
38 #define HAS_QT43 ( QT_VERSION >= 0x040300 )
40 #define QT_NORMAL_MODE 0
41 #define QT_ALWAYS_VIDEO_MODE 1
42 #define QT_MINIMAL_MODE 2
47 class DialogsProvider;
55 bool b_isDialogProvider;
57 playlist_t *p_playlist;
58 msg_subscription_t *p_sub; ///< Subscription to the message bank
62 const char *psz_filepath;
66 #define THEPL p_intf->p_sys->p_playlist
67 #define QPL_LOCK vlc_mutex_lock( &THEPL->object_lock );
68 #define QPL_UNLOCK vlc_mutex_unlock( &THEPL->object_lock );
70 #define THEDP DialogsProvider::getInstance()
71 #define THEMIM MainInputManager::getInstance( p_intf )
73 #define qfu( i ) QString::fromUtf8( i )
74 #define qtr( i ) QString::fromUtf8( _(i) )
75 #define qtu( i ) (i).toUtf8().data()
76 #define qta( i ) (i).toAscii().data()
78 #define CONNECT( a, b, c, d ) connect( a, SIGNAL( b ), c, SLOT(d) )
79 #define BUTTONACT( b, a ) connect( b, SIGNAL( clicked() ), this, SLOT(a) )
80 #define ON_TIMEOUT( act ) CONNECT( THEDP->fixed_timer, timeout(), this, act )
82 #define BUTTON_SET( button, text, tooltip ) \
83 button->setText( text ); \
84 button->setToolTip( tooltip );
86 #define BUTTON_SET_ACT( button, text, tooltip, thisslot ) \
87 BUTTON_SET( button, text, tooltip ); \
88 BUTTONACT( button, thisslot );
90 #define BUTTON_SET_IMG( button, text, image, tooltip ) \
91 BUTTON_SET( button, text, tooltip ); \
92 button->setIcon( QIcon( ":/pixmaps/"#image ) );
94 #define BUTTON_SET_ACT_I( button, text, image, tooltip, thisslot ) \
95 BUTTON_SET_IMG( button, text, image, tooltip ); \
96 BUTTONACT( button, thisslot );
98 #define VISIBLE(i) (i && i->isVisible())
100 #define TOGGLEV( x ) { if( x->isVisible() ) x->hide(); \
109 static int DialogEvent_Type = QEvent::User + DialogEventType + 1;
110 //static int PLUndockEvent_Type = QEvent::User + DialogEventType + 2;
111 //static int PLDockEvent_Type = QEvent::User + DialogEventType + 3;
112 static int SetVideoOnTopEvent_Type = QEvent::User + DialogEventType + 4;
114 class DialogEvent : public QEvent
117 DialogEvent( int _i_dialog, int _i_arg, intf_dialog_args_t *_p_arg ) :
118 QEvent( (QEvent::Type)(DialogEvent_Type) )
120 i_dialog = _i_dialog;
124 virtual ~DialogEvent() {};
127 intf_dialog_args_t *p_arg;