]> git.sesse.net Git - vlc/blob - modules/gui/qt4/qt4.hpp
918986e987197a4833550f78ff3bee505ad9c544
[vlc] / modules / gui / qt4 / qt4.hpp
1 /*****************************************************************************
2  * qt4.hpp : QT4 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 #include <vlc_aout.h>      /* AOUT_VOLUME_ */
36
37 #define QT_NO_CAST_TO_ASCII
38 #include <QString>
39
40 #if ( QT_VERSION < 0x040400 )
41 # error Update your Qt version to at least 4.4.0
42 #endif
43 #if QT_VERSION == 0x040500
44 # error Please update Qt version to 4.5.1. 4.5.0 is too buggy
45 #endif
46
47 #define HAS_QT45 ( QT_VERSION >= 0x040500 )
48 #define HAS_QT47 ( QT_VERSION >= 0x040700 )
49
50 enum {
51     DialogEventType = 0,
52     IMEventType     = 100,
53     PLEventType     = 200,
54     MsgEventType    = 300,
55 };
56
57 class QVLCApp;
58 class QMenu;
59 class MainInterface;
60 class QSettings;
61
62 struct intf_sys_t
63 {
64     vlc_thread_t thread;
65
66     QVLCApp *p_app;          /* Main Qt Application */
67     MainInterface *p_mi;     /* Main Interface, NULL if DialogProvider Mode */
68
69     QSettings *mainSettings; /* Qt State settings not messing main VLC ones */
70
71     bool b_isDialogProvider; /* Qt mode or Skins mode */
72
73     int  i_screenHeight;     /* Detection of Small screens */
74
75     QString filepath;        /* Last path used in dialogs */
76
77 };
78
79 #define THEPL pl_Get(p_intf)
80 #define QPL_LOCK playlist_Lock( THEPL );
81 #define QPL_UNLOCK playlist_Unlock( THEPL );
82
83 #define THEDP DialogsProvider::getInstance()
84 #define THEMIM MainInputManager::getInstance( p_intf )
85 #define THEAM ActionsManager::getInstance( p_intf )
86
87 #define qfu( i ) QString::fromUtf8( i )
88 #define qtr( i ) QString::fromUtf8( vlc_gettext(i) )
89 #define qtu( i ) ((i).toUtf8().constData())
90
91 #define CONNECT( a, b, c, d ) \
92         connect( a, SIGNAL( b ), c, SLOT(d) )
93 #define DCONNECT( a, b, c, d ) \
94         connect( a, SIGNAL( b ), c, SLOT(d), Qt::DirectConnection )
95 #define BUTTONACT( b, a ) connect( b, SIGNAL( clicked() ), this, SLOT(a) )
96
97 #define BUTTON_SET( button, text, tooltip )  \
98     button->setText( text );                 \
99     button->setToolTip( tooltip );
100
101 #define BUTTON_SET_ACT( button, text, tooltip, thisslot ) \
102     BUTTON_SET( button, text, tooltip );                  \
103     BUTTONACT( button, thisslot );
104
105 #define BUTTON_SET_IMG( button, text, image, tooltip )    \
106     BUTTON_SET( button, text, tooltip );                  \
107     button->setIcon( QIcon( ":/"#image ) );
108
109 #define BUTTON_SET_ACT_I( button, text, image, tooltip, thisslot ) \
110     BUTTON_SET_IMG( button, text, image, tooltip );                \
111     BUTTONACT( button, thisslot );
112
113 #define VISIBLE(i) (i && i->isVisible())
114
115 #define TOGGLEV( x ) { if( x->isVisible() ) x->hide();          \
116             else  x->show(); }
117
118 #define getSettings() p_intf->p_sys->mainSettings
119
120 #define QT_VOLUME_DEFAULT AOUT_VOLUME_DEFAULT
121 #define QT_VOLUME_MAX (AOUT_VOLUME_DEFAULT * 2)
122
123 static inline QString QVLCUserDir( vlc_userdir_t type )
124 {
125     char *dir = config_GetUserDir( type );
126     if( !dir )
127         return "";
128     QString res = qfu( dir );
129     free( dir );
130     return res;
131 }
132
133 /* After this day of the year, the usual VLC cone is replaced by another cone
134  * wearing a Father Xmas hat.
135  * Note this icon doesn't represent an endorsment of Coca-Cola company.
136  */
137 #define QT_XMAS_JOKE_DAY 354
138
139 #endif