]> git.sesse.net Git - vlc/blob - modules/gui/qt4/qt4.hpp
Merge commit 'origin/1.0-bugfix'
[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
36 #include <QEvent>
37 #include <QString>
38
39 #if ( QT_VERSION < 0x040400 )
40 # error Update your Qt version
41 #endif
42 #if QT_VERSION == 0x040500
43 # warning Please update Qt version to 4.5.1. This warning will become an error.
44 #endif
45
46 enum {
47     QT_NORMAL_MODE = 0,
48     QT_ALWAYS_VIDEO_MODE,
49     QT_MINIMAL_MODE
50 };
51
52 enum {
53     DialogEventType = 0,
54     IMEventType     = 100,
55     PLEventType     = 200,
56     MsgEventType    = 300,
57 };
58
59 class QVLCApp;
60 class QMenu;
61 class MainInterface;
62 class QSettings;
63
64 struct intf_sys_t
65 {
66     vlc_thread_t thread;
67
68     QVLCApp *p_app;          /* Main Qt Application */
69     MainInterface *p_mi;     /* Main Interface, NULL if DialogProvider Mode */
70
71     QSettings *mainSettings; /* Qt State settings not messing main VLC ones */
72
73     bool b_isDialogProvider; /* Qt mode or Skins mode */
74
75     int  i_screenHeight;     /* Detection of Small screens */
76
77     playlist_t *p_playlist;  /* Core Playlist discussion */
78
79     QString filepath;        /* Last path used in dialogs */
80
81     QMenu * p_popup_menu;    /* The right click menu */
82 };
83
84 #define THEPL p_intf->p_sys->p_playlist
85 #define QPL_LOCK playlist_Lock( THEPL );
86 #define QPL_UNLOCK playlist_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( vlc_gettext(i) )
93 #define qtu( i ) ((i).toUtf8().constData())
94
95 #define CONNECT( a, b, c, d ) connect( a, SIGNAL( b ), c, SLOT(d) )
96 #define BUTTONACT( b, a ) connect( b, SIGNAL( clicked() ), this, SLOT(a) )
97
98 #define BUTTON_SET( button, text, tooltip )  \
99     button->setText( text );                 \
100     button->setToolTip( tooltip );
101
102 #define BUTTON_SET_ACT( button, text, tooltip, thisslot ) \
103     BUTTON_SET( button, text, tooltip );                  \
104     BUTTONACT( button, thisslot );
105
106 #define BUTTON_SET_IMG( button, text, image, tooltip )    \
107     BUTTON_SET( button, text, tooltip );                  \
108     button->setIcon( QIcon( ":/"#image ) );
109
110 #define BUTTON_SET_ACT_I( button, text, image, tooltip, thisslot ) \
111     BUTTON_SET_IMG( button, text, image, tooltip );                \
112     BUTTONACT( button, thisslot );
113
114 #define VISIBLE(i) (i && i->isVisible())
115
116 #define TOGGLEV( x ) { if( x->isVisible() ) x->hide();          \
117             else  x->show(); }
118
119 #define setLayoutMargins( a, b, c, d, e) setContentsMargins( a, b, c, d )
120
121 #define getSettings() p_intf->p_sys->mainSettings
122
123
124 #endif