]> git.sesse.net Git - vlc/blob - modules/gui/qt4/qt4.hpp
Qt: emit video window resize events
[vlc] / modules / gui / qt4 / qt4.hpp
1 /*****************************************************************************
2  * qt4.hpp : Qt interface
3  ****************************************************************************
4  * Copyright (C) 2006-2009 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>    /* VLC_COMMON_MEMBERS for vlc_interface.h */
33 #include <vlc_interface.h> /* intf_thread_t */
34 #include <vlc_playlist.h>  /* playlist_t */
35
36 #define QT_NO_CAST_TO_ASCII
37 #include <QString>
38
39 #if ( QT_VERSION < 0x040600 )
40 # error Update your Qt version to at least 4.6.0
41 #endif
42
43 #define HAS_QT47 ( QT_VERSION >= 0x040700 )
44 #define HAS_QT5  ( QT_VERSION >= 0x050000 )
45
46 /* Q_DECL_OVERRIDE is a Qt5 feature, add empty define to not break with Qt4 */
47 #if !HAS_QT5 && !defined(Q_DECL_OVERRIDE)
48 # define Q_DECL_OVERRIDE
49 #endif
50
51 enum {
52     DialogEventTypeOffset = 0,
53     IMEventTypeOffset     = 100,
54     PLEventTypeOffset     = 200,
55     MsgEventTypeOffset    = 300,
56 };
57
58 enum{
59     NOTIFICATION_NEVER = 0,
60     NOTIFICATION_MINIMIZED = 1,
61     NOTIFICATION_ALWAYS = 2,
62 };
63
64 class QVLCApp;
65 class QMenu;
66 class MainInterface;
67 class QSettings;
68 class PLModel;
69
70 struct intf_sys_t
71 {
72     vlc_thread_t thread;
73
74     QVLCApp *p_app;          /* Main Qt Application */
75
76     MainInterface *p_mi;     /* Main Interface, NULL if DialogProvider Mode */
77
78     QSettings *mainSettings; /* Qt State settings not messing main VLC ones */
79
80     PLModel *pl_model;
81
82     QString filepath;        /* Last path used in dialogs */
83
84     unsigned voutWindowType; /* Type of vout_window_t provided */
85     bool b_isDialogProvider; /* Qt mode or Skins mode */
86     playlist_t *p_playlist;  /* playlist */
87 #ifdef _WIN32
88     bool disable_volume_keys;
89 #endif
90 };
91
92 #define THEPL p_intf->p_sys->p_playlist
93 #define QPL_LOCK playlist_Lock( THEPL );
94 #define QPL_UNLOCK playlist_Unlock( THEPL );
95
96 #define THEDP DialogsProvider::getInstance()
97 #define THEMIM MainInputManager::getInstance( p_intf )
98 #define THEAM ActionsManager::getInstance( p_intf )
99
100 #define qfu( i ) QString::fromUtf8( i )
101 #define qfue( i ) QString::fromUtf8( i ).replace( "&", "&&" ) /* for actions/buttons */
102 #define qtr( i ) QString::fromUtf8( vlc_gettext(i) )
103 #define qtu( i ) ((i).toUtf8().constData())
104
105 #define CONNECT( a, b, c, d ) \
106         connect( a, SIGNAL(b), c, SLOT(d) )
107 #define DCONNECT( a, b, c, d ) \
108         connect( a, SIGNAL(b), c, SLOT(d), Qt::DirectConnection )
109 #define BUTTONACT( b, a ) connect( b, SIGNAL(clicked()), this, SLOT(a) )
110
111 #define BUTTON_SET( button, text, tooltip )  \
112     button->setText( text );                 \
113     button->setToolTip( tooltip );
114
115 #define BUTTON_SET_ACT( button, text, tooltip, thisslot ) \
116     BUTTON_SET( button, text, tooltip );                  \
117     BUTTONACT( button, thisslot );
118
119 #define BUTTON_SET_IMG( button, text, image, tooltip )    \
120     BUTTON_SET( button, text, tooltip );                  \
121     button->setIcon( QIcon( ":/"#image ) );
122
123 #define BUTTON_SET_ACT_I( button, text, image, tooltip, thisslot ) \
124     BUTTON_SET_IMG( button, text, image, tooltip );                \
125     BUTTONACT( button, thisslot );
126
127 #define VISIBLE(i) (i && i->isVisible())
128
129 #define TOGGLEV( x ) { if( x->isVisible() ) x->hide();          \
130             else  x->show(); }
131
132 /* for widgets which must not follow the RTL auto layout changes */
133 #define RTL_UNAFFECTED_WIDGET setLayoutDirection( Qt::LeftToRight );
134
135 #define getSettings() p_intf->p_sys->mainSettings
136
137 static inline QString QVLCUserDir( vlc_userdir_t type )
138 {
139     char *dir = config_GetUserDir( type );
140     if( !dir )
141         return "";
142     QString res = qfu( dir );
143     free( dir );
144     return res;
145 }
146
147 /* After this day of the year, the usual VLC cone is replaced by another cone
148  * wearing a Father Xmas hat.
149  * Note this icon doesn't represent an endorsment of Coca-Cola company.
150  */
151 #define QT_XMAS_JOKE_DAY 354
152
153 #endif