]> git.sesse.net Git - vlc/blob - modules/gui/qt4/qt4.hpp
[Qt] You need now Qt4.3...
[vlc] / modules / gui / qt4 / qt4.hpp
1 /*****************************************************************************
2  * qt4.hpp : QT4 interface
3  ****************************************************************************
4  * Copyright (C) 2006-2008 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_common.h>
33 #include <vlc_interface.h>
34 #include <vlc_playlist.h>
35
36 #include <QEvent>
37
38 #if ( QT_VERSION < 0x040300 )
39 # error Update your Qt
40 #endif
41
42 enum {
43     QT_NORMAL_MODE = 0,
44     QT_ALWAYS_VIDEO_MODE,
45     QT_MINIMAL_MODE
46 };
47
48 enum {
49     DialogEventType = 0,
50     IMEventType     = 100,
51     PLEventType     = 200
52 };
53
54 enum {
55     DialogEvent_Type = QEvent::User + DialogEventType + 1,
56     //PLUndockEvent_Type = QEvent::User + DialogEventType + 2;
57     //PLDockEvent_Type = QEvent::User + DialogEventType + 3;
58     SetVideoOnTopEvent_Type = QEvent::User + DialogEventType + 4,
59 };
60
61 class QApplication;
62 class QMenu;
63 class MainInterface;
64 class DialogsProvider;
65 class VideoWidget;
66 class QSettings;
67
68 struct intf_sys_t
69 {
70     vlc_thread_t thread;
71     QApplication *p_app;
72     MainInterface *p_mi;
73
74     QSettings *mainSettings;
75
76     bool b_isDialogProvider;
77
78     playlist_t *p_playlist;
79
80     const char *psz_filepath;
81     QMenu * p_popup_menu;
82 };
83
84 #define THEPL p_intf->p_sys->p_playlist
85 #define QPL_LOCK vlc_object_lock( THEPL );
86 #define QPL_UNLOCK vlc_object_unlock( THEPL );
87
88 #define THEDP DialogsProvider::getInstance()
89 #define THEMIM MainInputManager::getInstance( p_intf )
90
91 #define qfu( i ) QString::fromUtf8( i )
92 #define qtr( i ) QString::fromUtf8( _(i) )
93 #define qtu( i ) (i).toUtf8().data()
94 #define qta( i ) (i).toAscii().data()
95
96 #define CONNECT( a, b, c, d ) connect( a, SIGNAL( b ), c, SLOT(d) )
97 #define BUTTONACT( b, a ) connect( b, SIGNAL( clicked() ), this, SLOT(a) )
98
99 #define BUTTON_SET( button, text, tooltip )  \
100     button->setText( text );                 \
101     button->setToolTip( tooltip );
102
103 #define BUTTON_SET_ACT( button, text, tooltip, thisslot ) \
104     BUTTON_SET( button, text, tooltip );                  \
105     BUTTONACT( button, thisslot );
106
107 #define BUTTON_SET_IMG( button, text, image, tooltip )    \
108     BUTTON_SET( button, text, tooltip );                  \
109     button->setIcon( QIcon( ":/"#image ) );
110
111 #define BUTTON_SET_ACT_I( button, text, image, tooltip, thisslot ) \
112     BUTTON_SET_IMG( button, text, image, tooltip );                \
113     BUTTONACT( button, thisslot );
114
115 #define VISIBLE(i) (i && i->isVisible())
116
117 #define TOGGLEV( x ) { if( x->isVisible() ) x->hide();          \
118             else  x->show(); }
119
120 #define setLayoutMargins( a, b, c, d, e) setContentsMargins( a, b, c, d )
121
122 #define getSettings() p_intf->p_sys->mainSettings
123
124
125 #include <QString>
126 /* Replace separators on Windows because Qt is always using / */
127 static inline QString toNativeSeparators( QString s )
128 {
129 #ifdef WIN32
130     for (int i=0; i<(int)s.length(); i++)
131     {
132         if (s[i] == QLatin1Char('/'))
133             s[i] = QLatin1Char('\\');
134     }
135 #endif
136     return s;
137 }
138
139 static inline QString removeTrailingSlash( QString s )
140 {
141     if( ( s.length() > 1 ) && ( s[s.length()-1] == QLatin1Char( '/' ) ) )
142         s.remove( s.length() - 1, 1 );
143     return s;
144 }
145
146 #define toNativeSepNoSlash( a ) toNativeSeparators( removeTrailingSlash( a ) )
147
148 #endif