]> git.sesse.net Git - vlc/blob - modules/gui/qt4/qt4.hpp
Qt: Preferences: match window title to current prefs
[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
45 enum {
46     DialogEventTypeOffset = 0,
47     IMEventTypeOffset     = 100,
48     PLEventTypeOffset     = 200,
49     MsgEventTypeOffset    = 300,
50 };
51
52 enum{
53     NOTIFICATION_NEVER = 0,
54     NOTIFICATION_MINIMIZED = 1,
55     NOTIFICATION_ALWAYS = 2,
56 };
57
58 class QVLCApp;
59 class QMenu;
60 class MainInterface;
61 class QSettings;
62 class PLModel;
63
64 struct intf_sys_t
65 {
66     vlc_thread_t thread;
67
68     QVLCApp *p_app;          /* Main Qt Application */
69
70     MainInterface *p_mi;     /* Main Interface, NULL if DialogProvider Mode */
71
72     QSettings *mainSettings; /* Qt State settings not messing main VLC ones */
73
74     PLModel *pl_model;
75
76     QString filepath;        /* Last path used in dialogs */
77
78     int  i_screenHeight;     /* Detection of Small screens */
79     unsigned voutWindowType; /* Type of vout_window_t provided */
80     bool b_isDialogProvider; /* Qt mode or Skins mode */
81 #ifdef WIN32
82     bool disable_volume_keys;
83 #endif
84 };
85
86 #define THEPL pl_Get(p_intf)
87 #define QPL_LOCK playlist_Lock( THEPL );
88 #define QPL_UNLOCK playlist_Unlock( THEPL );
89
90 #define THEDP DialogsProvider::getInstance()
91 #define THEMIM MainInputManager::getInstance( p_intf )
92 #define THEAM ActionsManager::getInstance( p_intf )
93
94 #define qfu( i ) QString::fromUtf8( i )
95 #define qtr( i ) QString::fromUtf8( vlc_gettext(i) )
96 #define qtu( i ) ((i).toUtf8().constData())
97
98 #define CONNECT( a, b, c, d ) \
99         connect( a, SIGNAL(b), c, SLOT(d) )
100 #define DCONNECT( a, b, c, d ) \
101         connect( a, SIGNAL(b), c, SLOT(d), Qt::DirectConnection )
102 #define BUTTONACT( b, a ) connect( b, SIGNAL(clicked()), this, SLOT(a) )
103
104 #define BUTTON_SET( button, text, tooltip )  \
105     button->setText( text );                 \
106     button->setToolTip( tooltip );
107
108 #define BUTTON_SET_ACT( button, text, tooltip, thisslot ) \
109     BUTTON_SET( button, text, tooltip );                  \
110     BUTTONACT( button, thisslot );
111
112 #define BUTTON_SET_IMG( button, text, image, tooltip )    \
113     BUTTON_SET( button, text, tooltip );                  \
114     button->setIcon( QIcon( ":/"#image ) );
115
116 #define BUTTON_SET_ACT_I( button, text, image, tooltip, thisslot ) \
117     BUTTON_SET_IMG( button, text, image, tooltip );                \
118     BUTTONACT( button, thisslot );
119
120 #define VISIBLE(i) (i && i->isVisible())
121
122 #define TOGGLEV( x ) { if( x->isVisible() ) x->hide();          \
123             else  x->show(); }
124
125 /* for widgets which must not follow the RTL auto layout changes */
126 #define RTL_UNAFFECTED_WIDGET setLayoutDirection( Qt::LeftToRight );
127
128 #define getSettings() p_intf->p_sys->mainSettings
129
130 static inline QString QVLCUserDir( vlc_userdir_t type )
131 {
132     char *dir = config_GetUserDir( type );
133     if( !dir )
134         return "";
135     QString res = qfu( dir );
136     free( dir );
137     return res;
138 }
139
140 /* After this day of the year, the usual VLC cone is replaced by another cone
141  * wearing a Father Xmas hat.
142  * Note this icon doesn't represent an endorsment of Coca-Cola company.
143  */
144 #define QT_XMAS_JOKE_DAY 354
145
146 #endif