]> git.sesse.net Git - vlc/blob - modules/gui/qt4/qt4.hpp
[Qt] move some static const int to enum
[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_common.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 enum {
41     QT_NORMAL_MODE = 0,
42     QT_ALWAYS_VIDEO_MODE,
43     QT_MINIMAL_MODE
44 };
45
46 enum {
47     DialogEventType = 0,
48     IMEventType     = 100,
49     PLEventType     = 200
50 };
51
52 enum {
53     DialogEvent_Type = QEvent::User + DialogEventType + 1,
54     //PLUndockEvent_Type = QEvent::User + DialogEventType + 2;
55     //PLDockEvent_Type = QEvent::User + DialogEventType + 3;
56     SetVideoOnTopEvent_Type = QEvent::User + DialogEventType + 4,
57 };
58
59 class QApplication;
60 class QMenu;
61 class MainInterface;
62 class DialogsProvider;
63 class VideoWidget;
64 class QSettings;
65
66
67 #if defined(Q_WS_WIN)
68 #include <QApplication>
69
70 class WinQtApp : public QApplication
71 {
72 public:
73     WinQtApp ( int & argc, char ** argv, bool GUIenabled ) : QApplication( argc, argv, GUIenabled ) {}
74     ~WinQtApp() {}
75 protected:
76     bool winEventFilter(MSG *msg, long *result);
77 };
78 #endif /* Q_WS_WIN */
79
80 struct intf_sys_t
81 {
82     QApplication *p_app;
83     MainInterface *p_mi;
84
85     QSettings *mainSettings;
86
87     bool b_isDialogProvider;
88
89     playlist_t *p_playlist;
90
91     VideoWidget *p_video;
92
93     const char *psz_filepath;
94     QMenu * p_popup_menu;
95 };
96
97 #define THEPL p_intf->p_sys->p_playlist
98 #define QPL_LOCK vlc_object_lock( THEPL );
99 #define QPL_UNLOCK vlc_object_unlock( THEPL );
100
101 #define THEDP DialogsProvider::getInstance()
102 #define THEMIM MainInputManager::getInstance( p_intf )
103
104 #define qfu( i ) QString::fromUtf8( i )
105 #define qtr( i ) QString::fromUtf8( _(i) )
106 #define qtu( i ) (i).toUtf8().data()
107 #define qta( i ) (i).toAscii().data()
108
109 #define CONNECT( a, b, c, d ) connect( a, SIGNAL( b ), c, SLOT(d) )
110 #define BUTTONACT( b, a ) connect( b, SIGNAL( clicked() ), this, SLOT(a) )
111
112 #define BUTTON_SET( button, text, tooltip )  \
113     button->setText( text );                 \
114     button->setToolTip( tooltip );
115
116 #define BUTTON_SET_ACT( button, text, tooltip, thisslot ) \
117     BUTTON_SET( button, text, tooltip );                  \
118     BUTTONACT( button, thisslot );
119
120 #define BUTTON_SET_IMG( button, text, image, tooltip )    \
121     BUTTON_SET( button, text, tooltip );                  \
122     button->setIcon( QIcon( ":/"#image ) );
123
124 #define BUTTON_SET_ACT_I( button, text, image, tooltip, thisslot ) \
125     BUTTON_SET_IMG( button, text, image, tooltip );                \
126     BUTTONACT( button, thisslot );
127
128 #define VISIBLE(i) (i && i->isVisible())
129
130 #define TOGGLEV( x ) { if( x->isVisible() ) x->hide();          \
131             else  x->show(); }
132
133 #if HAS_QT43
134     #define setLayoutMargins( a, b, c, d, e) setContentsMargins( a, b, c, d )
135 #else
136     #define setLayoutMargins( a, b, c, d, e) setMargin( e )
137 #endif
138
139 #define getSettings() p_intf->p_sys->mainSettings
140
141
142 #include <QString>
143 /* Replace separators on Windows because Qt is always using / */
144 static inline QString toNativeSeparators( QString s )
145 {
146 #ifdef WIN32
147     for (int i=0; i<(int)s.length(); i++)
148     {
149         if (s[i] == QLatin1Char('/'))
150             s[i] = QLatin1Char('\\');
151     }
152 #endif
153     return s;
154 }
155
156 static inline QString removeTrailingSlash( QString s )
157 {
158     if( ( s.length() > 1 ) && ( s[s.length()-1] == QLatin1Char( '/' ) ) )
159         s.remove( s.length() - 1, 1 );
160     return s;
161 }
162
163 #define toNativeSepNoSlash( a ) toNativeSeparators( removeTrailingSlash( a ) )
164
165 class DialogEvent : public QEvent
166 {
167 public:
168     DialogEvent( int _i_dialog, int _i_arg, intf_dialog_args_t *_p_arg ) :
169                  QEvent( (QEvent::Type)(DialogEvent_Type) )
170     {
171         i_dialog = _i_dialog;
172         i_arg = _i_arg;
173         p_arg = _p_arg;
174     };
175     virtual ~DialogEvent() {};
176
177     int i_arg, i_dialog;
178     intf_dialog_args_t *p_arg;
179 };
180
181 #endif