| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 |
|
|---|
| 22 |
|
|---|
| 23 |
|
|---|
| 24 |
#ifdef HAVE_CONFIG_H |
|---|
| 25 |
# include "config.h" |
|---|
| 26 |
#endif |
|---|
| 27 |
|
|---|
| 28 |
#include <QApplication> |
|---|
| 29 |
#include <QLocale> |
|---|
| 30 |
#include <QTranslator> |
|---|
| 31 |
#include <QDate> |
|---|
| 32 |
#include <QMutex> |
|---|
| 33 |
#include <QMutexLocker> |
|---|
| 34 |
#include <QWaitCondition> |
|---|
| 35 |
#include <QPointer> |
|---|
| 36 |
|
|---|
| 37 |
#include "qt4.hpp" |
|---|
| 38 |
#include "dialogs_provider.hpp" |
|---|
| 39 |
#include "input_manager.hpp" |
|---|
| 40 |
#include "main_interface.hpp" |
|---|
| 41 |
#include "dialogs/help.hpp" |
|---|
| 42 |
|
|---|
| 43 |
#ifdef HAVE_X11_XLIB_H |
|---|
| 44 |
#include <X11/Xlib.h> |
|---|
| 45 |
#endif |
|---|
| 46 |
|
|---|
| 47 |
#include "../../../share/vlc32x32.xpm" |
|---|
| 48 |
#include "../../../share/vlc32x32-christmas.xpm" |
|---|
| 49 |
#include <vlc_plugin.h> |
|---|
| 50 |
|
|---|
| 51 |
#ifdef WIN32 |
|---|
| 52 |
#include <QtPlugin> |
|---|
| 53 |
Q_IMPORT_PLUGIN(qjpeg) |
|---|
| 54 |
#endif |
|---|
| 55 |
|
|---|
| 56 |
|
|---|
| 57 |
|
|---|
| 58 |
|
|---|
| 59 |
static int Open ( vlc_object_t * ); |
|---|
| 60 |
static void Close ( vlc_object_t * ); |
|---|
| 61 |
static int OpenDialogs ( vlc_object_t * ); |
|---|
| 62 |
static int WindowOpen ( vlc_object_t * ); |
|---|
| 63 |
static void WindowClose ( vlc_object_t * ); |
|---|
| 64 |
static void Run ( intf_thread_t * ); |
|---|
| 65 |
static void *Init ( vlc_object_t * ); |
|---|
| 66 |
static void ShowDialog ( intf_thread_t *, int, int, intf_dialog_args_t * ); |
|---|
| 67 |
|
|---|
| 68 |
|
|---|
| 69 |
|
|---|
| 70 |
|
|---|
| 71 |
#define ADVANCED_PREFS_TEXT N_( "Show advanced preferences over simple ones" ) |
|---|
| 72 |
#define ADVANCED_PREFS_LONGTEXT N_( "Show advanced preferences and not simple "\ |
|---|
| 73 |
"preferences when opening the preferences "\ |
|---|
| 74 |
"dialog." ) |
|---|
| 75 |
|
|---|
| 76 |
#define SYSTRAY_TEXT N_( "Systray icon" ) |
|---|
| 77 |
#define SYSTRAY_LONGTEXT N_( "Show an icon in the systray " \ |
|---|
| 78 |
"allowing you to control VLC media player " \ |
|---|
| 79 |
"for basic actions." ) |
|---|
| 80 |
|
|---|
| 81 |
#define MINIMIZED_TEXT N_( "Start VLC with only a systray icon" ) |
|---|
| 82 |
#define MINIMIZED_LONGTEXT N_( "VLC will start with just an icon in " \ |
|---|
| 83 |
"your taskbar" ) |
|---|
| 84 |
|
|---|
| 85 |
#define TITLE_TEXT N_( "Show playing item name in window title" ) |
|---|
| 86 |
#define TITLE_LONGTEXT N_( "Show the name of the song or video in the " \ |
|---|
| 87 |
"controler window title." ) |
|---|
| 88 |
|
|---|
| 89 |
#define FILEDIALOG_PATH_TEXT N_( "Path to use in openfile dialog" ) |
|---|
| 90 |
|
|---|
| 91 |
#define NOTIFICATION_TEXT N_( "Show notification popup on track change" ) |
|---|
| 92 |
#define NOTIFICATION_LONGTEXT N_( \ |
|---|
| 93 |
"Show a notification popup with the artist and track name when " \ |
|---|
| 94 |
"the current playlist item changes, when VLC is minimized or hidden." ) |
|---|
| 95 |
|
|---|
| 96 |
#define ADVANCED_OPTIONS_TEXT N_( "Advanced options" ) |
|---|
| 97 |
#define ADVANCED_OPTIONS_LONGTEXT N_( "Show all the advanced options " \ |
|---|
| 98 |
"in the dialogs." ) |
|---|
| 99 |
|
|---|
| 100 |
#define OPACITY_TEXT N_( "Windows opacity between 0.1 and 1." ) |
|---|
| 101 |
#define OPACITY_LONGTEXT N_( "Sets the windows opacity between 0.1 and 1 " \ |
|---|
| 102 |
"for main interface, playlist and extended panel."\ |
|---|
| 103 |
" This option only works with Windows and " \ |
|---|
| 104 |
"X11 with composite extensions." ) |
|---|
| 105 |
|
|---|
| 106 |
#define ERROR_TEXT N_( "Show unimportant error and warnings dialogs" ) |
|---|
| 107 |
|
|---|
| 108 |
#define UPDATER_TEXT N_( "Activate the updates availability notification" ) |
|---|
| 109 |
#define UPDATER_LONGTEXT N_( "Activate the automatic notification of new " \ |
|---|
| 110 |
"versions of the software. It runs once every " \ |
|---|
| 111 |
"two weeks." ) |
|---|
| 112 |
#define UPDATER_DAYS_TEXT N_("Number of days between two update checks") |
|---|
| 113 |
|
|---|
| 114 |
#define COMPLETEVOL_TEXT N_( "Allow the volume to be set to 400%" ) |
|---|
| 115 |
#define COMPLETEVOL_LONGTEXT N_( "Allow the volume to have range from 0% to " \ |
|---|
| 116 |
"400%, instead of 0% to 200%. This option " \ |
|---|
| 117 |
"can distort the audio, since it uses " \ |
|---|
| 118 |
"software amplification." ) |
|---|
| 119 |
|
|---|
| 120 |
#define SAVEVOL_TEXT N_( "Automatically save the volume on exit" ) |
|---|
| 121 |
|
|---|
| 122 |
#define BLING_TEXT N_( "Use non native buttons and volume slider" ) |
|---|
| 123 |
|
|---|
| 124 |
#define PRIVACY_TEXT N_( "Ask for network policy at start" ) |
|---|
| 125 |
|
|---|
| 126 |
#define SLIDERCOL_TEXT N_( "Define the colors of the volume slider " ) |
|---|
| 127 |
#define SLIDERCOL_LONGTEXT N_( "Define the colors of the volume slider\n" \ |
|---|
| 128 |
"By specifying the 12 numbers separated by a ';'\n" \ |
|---|
| 129 |
"Default is '255;255;255;20;226;20;255;176;15;235;30;20'\n" \ |
|---|
| 130 |
"An alternative can be '30;30;50;40;40;100;50;50;160;150;150;255' ") |
|---|
| 131 |
|
|---|
| 132 |
#define QT_MODE_TEXT N_( "Selection of the starting mode and look " ) |
|---|
| 133 |
#define QT_MODE_LONGTEXT N_( "Start VLC with:\n" \ |
|---|
| 134 |
" - normal mode\n" \ |
|---|
| 135 |
" - a zone always present to show information " \ |
|---|
| 136 |
"as lyrics, album arts...\n" \ |
|---|
| 137 |
" - minimal mode with limited controls" ) |
|---|
| 138 |
|
|---|
| 139 |
#define QT_NORMAL_MODE_TEXT N_( "Classic look" ) |
|---|
| 140 |
#define QT_ALWAYS_VIDEO_MODE_TEXT N_( "Complete look with information area" ) |
|---|
| 141 |
#define QT_MINIMAL_MODE_TEXT N_( "Minimal look with no menus" ) |
|---|
| 142 |
|
|---|
| 143 |
#define QT_FULLSCREEN_TEXT N_( "Show a controller in fullscreen mode" ) |
|---|
| 144 |
|
|---|
| 145 |
static const int i_mode_list[] = |
|---|
| 146 |
{ QT_NORMAL_MODE, QT_ALWAYS_VIDEO_MODE, QT_MINIMAL_MODE }; |
|---|
| 147 |
static const char *const psz_mode_list_text[] = |
|---|
| 148 |
{ QT_NORMAL_MODE_TEXT, QT_ALWAYS_VIDEO_MODE_TEXT, QT_MINIMAL_MODE_TEXT }; |
|---|
| 149 |
|
|---|
| 150 |
vlc_module_begin(); |
|---|
| 151 |
set_shortname( "Qt" ); |
|---|
| 152 |
set_description( N_("Qt interface") ); |
|---|
| 153 |
set_category( CAT_INTERFACE ) ; |
|---|
| 154 |
set_subcategory( SUBCAT_INTERFACE_MAIN ); |
|---|
| 155 |
set_capability( "interface", 151 ); |
|---|
| 156 |
set_callbacks( Open, Close ); |
|---|
| 157 |
|
|---|
| 158 |
add_shortcut("qt"); |
|---|
| 159 |
|
|---|
| 160 |
add_submodule(); |
|---|
| 161 |
set_description( "Dialogs provider" ); |
|---|
| 162 |
set_capability( "dialogs provider", 51 ); |
|---|
| 163 |
|
|---|
| 164 |
add_integer( "qt-display-mode", QT_NORMAL_MODE, NULL, |
|---|
| 165 |
QT_MODE_TEXT, QT_MODE_LONGTEXT, false ); |
|---|
| 166 |
change_integer_list( i_mode_list, psz_mode_list_text, NULL ); |
|---|
| 167 |
|
|---|
| 168 |
add_bool( "qt-notification", true, NULL, NOTIFICATION_TEXT, |
|---|
| 169 |
NOTIFICATION_LONGTEXT, false ); |
|---|
| 170 |
|
|---|
| 171 |
add_float_with_range( "qt-opacity", 1., 0.1, 1., NULL, OPACITY_TEXT, |
|---|
| 172 |
OPACITY_LONGTEXT, false ); |
|---|
| 173 |
add_bool( "qt-blingbling", true, NULL, BLING_TEXT, |
|---|
| 174 |
BLING_TEXT, false ); |
|---|
| 175 |
|
|---|
| 176 |
add_bool( "qt-system-tray", true, NULL, SYSTRAY_TEXT, |
|---|
| 177 |
SYSTRAY_LONGTEXT, false); |
|---|
| 178 |
add_bool( "qt-start-minimized", false, NULL, MINIMIZED_TEXT, |
|---|
| 179 |
MINIMIZED_LONGTEXT, true); |
|---|
| 180 |
add_bool( "qt-name-in-title", true, NULL, TITLE_TEXT, |
|---|
| 181 |
TITLE_LONGTEXT, false ); |
|---|
| 182 |
add_bool( "qt-fs-controller", true, NULL, QT_FULLSCREEN_TEXT, |
|---|
| 183 |
QT_FULLSCREEN_TEXT, false ); |
|---|
| 184 |
|
|---|
| 185 |
add_bool( "qt-volume-complete", false, NULL, COMPLETEVOL_TEXT, |
|---|
| 186 |
COMPLETEVOL_LONGTEXT, true ); |
|---|
| 187 |
add_bool( "qt-autosave-volume", false, NULL, SAVEVOL_TEXT, |
|---|
| 188 |
SAVEVOL_TEXT, true ); |
|---|
| 189 |
add_string( "qt-filedialog-path", NULL, NULL, FILEDIALOG_PATH_TEXT, |
|---|
| 190 |
FILEDIALOG_PATH_TEXT, true ); |
|---|
| 191 |
change_autosave(); |
|---|
| 192 |
change_internal(); |
|---|
| 193 |
|
|---|
| 194 |
add_bool( "qt-adv-options", false, NULL, ADVANCED_OPTIONS_TEXT, |
|---|
| 195 |
ADVANCED_OPTIONS_LONGTEXT, true ); |
|---|
| 196 |
add_bool( "qt-advanced-pref", false, NULL, ADVANCED_PREFS_TEXT, |
|---|
| 197 |
ADVANCED_PREFS_LONGTEXT, false ); |
|---|
| 198 |
add_bool( "qt-error-dialogs", true, NULL, ERROR_TEXT, |
|---|
| 199 |
ERROR_TEXT, false ); |
|---|
| 200 |
#ifdef UPDATE_CHECK |
|---|
| 201 |
add_bool( "qt-updates-notif", true, NULL, UPDATER_TEXT, |
|---|
| 202 |
UPDATER_LONGTEXT, false ); |
|---|
| 203 |
add_integer( "qt-updates-days", 7, NULL, UPDATER_DAYS_TEXT, |
|---|
| 204 |
UPDATER_DAYS_TEXT, false ); |
|---|
| 205 |
#endif |
|---|
| 206 |
add_string( "qt-slider-colours", |
|---|
| 207 |
"255;255;255;20;226;20;255;176;15;235;30;20", |
|---|
| 208 |
NULL, SLIDERCOL_TEXT, SLIDERCOL_LONGTEXT, false ); |
|---|
| 209 |
|
|---|
| 210 |
add_bool( "qt-privacy-ask", true, NULL, PRIVACY_TEXT, PRIVACY_TEXT, |
|---|
| 211 |
false ); |
|---|
| 212 |
change_internal(); |
|---|
| 213 |
|
|---|
| 214 |
set_callbacks( OpenDialogs, Close ); |
|---|
| 215 |
|
|---|
| 216 |
#if 0 |
|---|
| 217 |
add_submodule(); |
|---|
| 218 |
set_capability( "vout window", 50 ); |
|---|
| 219 |
set_callbacks( WindowOpen, WindowClose ); |
|---|
| 220 |
#endif |
|---|
| 221 |
vlc_module_end(); |
|---|
| 222 |
|
|---|
| 223 |
|
|---|
| 224 |
|
|---|
| 225 |
|
|---|
| 226 |
static int Open( vlc_object_t *p_this ) |
|---|
| 227 |
{ |
|---|
| 228 |
intf_thread_t *p_intf = (intf_thread_t *)p_this; |
|---|
| 229 |
|
|---|
| 230 |
#if defined Q_WS_X11 && defined HAVE_X11_XLIB_H |
|---|
| 231 |
|
|---|
| 232 |
|
|---|
| 233 |
Display *p_display = XOpenDisplay( NULL ); |
|---|
| 234 |
if( !p_display ) |
|---|
| 235 |
{ |
|---|
| 236 |
msg_Err( p_intf, "Could not connect to X server" ); |
|---|
| 237 |
return VLC_EGENERIC; |
|---|
| 238 |
} |
|---|
| 239 |
XCloseDisplay( p_display ); |
|---|
| 240 |
#endif |
|---|
| 241 |
|
|---|
| 242 |
|
|---|
| 243 |
p_intf->p_sys = (intf_sys_t *)malloc( sizeof( intf_sys_t ) ); |
|---|
| 244 |
if( !p_intf->p_sys ) |
|---|
| 245 |
return VLC_ENOMEM; |
|---|
| 246 |
memset( p_intf->p_sys, 0, sizeof( intf_sys_t ) ); |
|---|
| 247 |
|
|---|
| 248 |
p_intf->pf_run = Run; |
|---|
| 249 |
p_intf->p_sys->p_mi = NULL; |
|---|
| 250 |
|
|---|
| 251 |
|
|---|
| 252 |
p_intf->p_sys->p_playlist = pl_Hold( p_intf ); |
|---|
| 253 |
|
|---|
| 254 |
p_intf->p_sys->p_sub = msg_Subscribe( p_intf ); |
|---|
| 255 |
|
|---|
| 256 |
|
|---|
| 257 |
var_Create( p_this, "window_widget", VLC_VAR_ADDRESS ); |
|---|
| 258 |
return VLC_SUCCESS; |
|---|
| 259 |
} |
|---|
| 260 |
|
|---|
| 261 |
static int OpenDialogs( vlc_object_t *p_this ) |
|---|
| 262 |
{ |
|---|
| 263 |
intf_thread_t *p_intf = (intf_thread_t *)p_this; |
|---|
| 264 |
int val = Open( p_this ); |
|---|
| 265 |
if( val ) |
|---|
| 266 |
return val; |
|---|
| 267 |
|
|---|
| 268 |
p_intf->pf_show_dialog = ShowDialog; |
|---|
| 269 |
return VLC_SUCCESS; |
|---|
| 270 |
} |
|---|
| 271 |
|
|---|
| 272 |
static void Close( vlc_object_t *p_this ) |
|---|
| 273 |
{ |
|---|
| 274 |
intf_thread_t *p_intf = (intf_thread_t *)p_this; |
|---|
| 275 |
|
|---|
| 276 |
if( p_intf->p_sys->b_isDialogProvider ) |
|---|
| 277 |
{ |
|---|
| 278 |
if( DialogsProvider::isAlive() ) |
|---|
| 279 |
{ |
|---|
| 280 |
msg_Dbg( p_intf, "Asking the DP to quit nicely" ); |
|---|
| 281 |
DialogEvent *event = new DialogEvent( INTF_DIALOG_EXIT, 0, NULL ); |
|---|
| 282 |
QApplication::postEvent( THEDP, static_cast<QEvent*>(event) ); |
|---|
| 283 |
} |
|---|
| 284 |
vlc_thread_join( p_intf ); |
|---|
| 285 |
} |
|---|
| 286 |
|
|---|
| 287 |
vlc_object_release( p_intf->p_sys->p_playlist ); |
|---|
| 288 |
msg_Unsubscribe( p_intf, p_intf->p_sys->p_sub ); |
|---|
| 289 |
free( p_intf->p_sys ); |
|---|
| 290 |
} |
|---|
| 291 |
|
|---|
| 292 |
|
|---|
| 293 |
|
|---|
| 294 |
|
|---|
| 295 |
|
|---|
| 296 |
static void Run( intf_thread_t *p_intf ) |
|---|
| 297 |
{ |
|---|
| 298 |
if( p_intf->pf_show_dialog ) |
|---|
| 299 |
{ |
|---|
| 300 |
if( vlc_thread_create( p_intf, "Qt dialogs", Init, 0, true ) ) |
|---|
| 301 |
msg_Err( p_intf, "failed to create Qt dialogs thread" ); |
|---|
| 302 |
} |
|---|
| 303 |
else |
|---|
| 304 |
{ |
|---|
| 305 |
int canc = vlc_savecancel (); |
|---|
| 306 |
Init( VLC_OBJECT(p_intf) ); |
|---|
| 307 |
vlc_restorecancel( canc ); |
|---|
| 308 |
} |
|---|
| 309 |
} |
|---|
| 310 |
|
|---|
| 311 |
static QMutex windowLock; |
|---|
| 312 |
static QWaitCondition windowWait; |
|---|
| 313 |
|
|---|
| 314 |
static void *Init( vlc_object_t *obj ) |
|---|
| 315 |
{ |
|---|
| 316 |
intf_thread_t *p_intf = (intf_thread_t *)obj; |
|---|
| 317 |
vlc_value_t val; |
|---|
| 318 |
char dummy[] = ""; |
|---|
| 319 |
char *argv[] = { dummy }; |
|---|
| 320 |
int argc = 1; |
|---|
| 321 |
int canc = vlc_savecancel (); |
|---|
| 322 |
|
|---|
| 323 |
Q_INIT_RESOURCE( vlc ); |
|---|
| 324 |
|
|---|
| 325 |
#if !defined(WIN32) && !defined(__APPLE__) |
|---|
| 326 |
|
|---|
| 327 |
|
|---|
| 328 |
|
|---|
| 329 |
|
|---|
| 330 |
|
|---|
| 331 |
|
|---|
| 332 |
if( strcmp( qVersion(), "4.4.0" ) < 0 ) |
|---|
| 333 |
QApplication::setDesktopSettingsAware( false ); |
|---|
| 334 |
#endif |
|---|
| 335 |
|
|---|
| 336 |
|
|---|
| 337 |
QApplication *app = new QApplication( argc, argv , true ); |
|---|
| 338 |
p_intf->p_sys->p_app = app; |
|---|
| 339 |
|
|---|
| 340 |
p_intf->p_sys->mainSettings = new QSettings( |
|---|
| 341 |
#ifdef WIN32 |
|---|
| 342 |
QSettings::IniFormat, |
|---|
| 343 |
#else |
|---|
| 344 |
QSettings::NativeFormat, |
|---|
| 345 |
#endif |
|---|
| 346 |
QSettings::UserScope, "vlc", "vlc-qt-interface" ); |
|---|
| 347 |
|
|---|
| 348 |
|
|---|
| 349 |
if( QDate::currentDate().dayOfYear() >= 354 ) |
|---|
| 350 |
app->setWindowIcon( QIcon( QPixmap(vlc_christmas_xpm) ) ); |
|---|
| 351 |
else |
|---|
| 352 |
app->setWindowIcon( QIcon( QPixmap(vlc_xpm) ) ); |
|---|
| 353 |
|
|---|
| 354 |
|
|---|
| 355 |
DialogsProvider::getInstance( p_intf ); |
|---|
| 356 |
|
|---|
| 357 |
QPointer<MainInterface> *miP = NULL; |
|---|
| 358 |
|
|---|
| 359 |
#ifdef UPDATE_CHECK |
|---|
| 360 |
|
|---|
| 361 |
if( config_GetInt( p_intf, "qt-updates-notif" ) && |
|---|
| 362 |
!config_GetInt( p_intf, "qt-privacy-ask" ) ) |
|---|
| 363 |
{ |
|---|
| 364 |
int interval = config_GetInt( p_intf, "qt-updates-days" ); |
|---|
| 365 |
if( QDate::currentDate() > |
|---|
| 366 |
getSettings()->value( "updatedate" ).toDate().addDays( interval ) ) |
|---|
| 367 |
{ |
|---|
| 368 |
|
|---|
| 369 |
UpdateDialog::getInstance( p_intf ); |
|---|
| 370 |
getSettings()->setValue( "updatedate", QDate::currentDate() ); |
|---|
| 371 |
} |
|---|
| 372 |
} |
|---|
| 373 |
#endif |
|---|
| 374 |
|
|---|
| 375 |
|
|---|
| 376 |
if( !p_intf->pf_show_dialog ) |
|---|
| 377 |
{ |
|---|
| 378 |
p_intf->p_sys->p_mi = new MainInterface( p_intf ); |
|---|
| 379 |
|
|---|
| 380 |
|
|---|
| 381 |
p_intf->p_sys->b_isDialogProvider = false; |
|---|
| 382 |
|
|---|
| 383 |
miP = new QPointer<MainInterface> (p_intf->p_sys->p_mi); |
|---|
| 384 |
val.p_address = miP; |
|---|
| 385 |
QMutexLocker locker (&windowLock); |
|---|
| 386 |
var_Set (p_intf, "window_widget", val); |
|---|
| 387 |
windowWait.wakeAll (); |
|---|
| 388 |
} |
|---|
| 389 |
else |
|---|
| 390 |
{ |
|---|
| 391 |
vlc_thread_ready( p_intf ); |
|---|
| 392 |
p_intf->p_sys->b_isDialogProvider = true; |
|---|
| 393 |
} |
|---|
| 394 |
|
|---|
| 395 |
|
|---|
| 396 |
p_intf->pf_show_dialog = ShowDialog; |
|---|
| 397 |
|
|---|
| 398 |
#ifdef ENABLE_NLS |
|---|
| 399 |
|
|---|
| 400 |
# if defined (WIN32) || defined (__APPLE__) |
|---|
| 401 |
char* psz_tmp = config_GetPsz( p_intf, "language" ); |
|---|
| 402 |
QString lang = qfu( psz_tmp ); |
|---|
| 403 |
free( psz_tmp); |
|---|
| 404 |
if (lang == "auto") |
|---|
| 405 |
lang = QLocale::system().name(); |
|---|
| 406 |
# else |
|---|
| 407 |
QString lang = QLocale::system().name(); |
|---|
| 408 |
# endif |
|---|
| 409 |
|
|---|
| 410 |
QTranslator qtTranslator( 0 ); |
|---|
| 411 |
|
|---|
| 412 |
#if !defined( WIN32 ) |
|---|
| 413 |
QString path = QString( QT4LOCALEDIR ); |
|---|
| 414 |
#else |
|---|
| 415 |
QString path = QString( QString(config_GetDataDir()) + DIR_SEP + |
|---|
| 416 |
"locale" + DIR_SEP + "qt4" + DIR_SEP ); |
|---|
| 417 |
#endif |
|---|
| 418 |
|
|---|
| 419 |
bool b_loaded = qtTranslator.load( path + "qt_" + lang ); |
|---|
| 420 |
if (!b_loaded) |
|---|
| 421 |
msg_Dbg( p_intf, "Error while initializing qt-specific localization" ); |
|---|
| 422 |
app->installTranslator( &qtTranslator ); |
|---|
| 423 |
#endif //ENABLE_NLS |
|---|
| 424 |
|
|---|
| 425 |
|
|---|
| 426 |
app->setQuitOnLastWindowClosed( false ); |
|---|
| 427 |
|
|---|
| 428 |
|
|---|
| 429 |
char *psz_path = config_GetPsz( p_intf, "qt-filedialog-path" ); |
|---|
| 430 |
p_intf->p_sys->psz_filepath = EMPTY_STR( psz_path ) ? config_GetHomeDir() |
|---|
| 431 |
: psz_path; |
|---|
| 432 |
|
|---|
| 433 |
|
|---|
| 434 |
app->exec(); |
|---|
| 435 |
|
|---|
| 436 |
|
|---|
| 437 |
msg_Dbg( p_intf, "Quitting the Qt4 Interface" ); |
|---|
| 438 |
|
|---|
| 439 |
if (miP) |
|---|
| 440 |
{ |
|---|
| 441 |
QMutexLocker locker (&windowLock); |
|---|
| 442 |
|
|---|
| 443 |
|
|---|
| 444 |
|
|---|
| 445 |
p_intf->p_sys->p_mi->releaseVideo( NULL ); |
|---|
| 446 |
|
|---|
| 447 |
val.p_address = NULL; |
|---|
| 448 |
var_Set (p_intf, "window_widget", val); |
|---|
| 449 |
delete miP; |
|---|
| 450 |
} |
|---|
| 451 |
|
|---|
| 452 |
|
|---|
| 453 |
|
|---|
| 454 |
delete p_intf->p_sys->p_mi; |
|---|
| 455 |
|
|---|
| 456 |
|
|---|
| 457 |
|
|---|
| 458 |
|
|---|
| 459 |
|
|---|
| 460 |
|
|---|
| 461 |
DialogsProvider::killInstance(); |
|---|
| 462 |
|
|---|
| 463 |
|
|---|
| 464 |
delete p_intf->p_sys->mainSettings; |
|---|
| 465 |
|
|---|
| 466 |
|
|---|
| 467 |
MainInputManager::killInstance(); |
|---|
| 468 |
|
|---|
| 469 |
|
|---|
| 470 |
delete app; |
|---|
| 471 |
|
|---|
| 472 |
|
|---|
| 473 |
config_PutPsz( p_intf, "qt-filedialog-path", p_intf->p_sys->psz_filepath ); |
|---|
| 474 |
free( psz_path ); |
|---|
| 475 |
vlc_restorecancel (canc); |
|---|
| 476 |
return NULL; |
|---|
| 477 |
} |
|---|
| 478 |
|
|---|
| 479 |
|
|---|
| 480 |
|
|---|
| 481 |
|
|---|
| 482 |
static void ShowDialog( intf_thread_t *p_intf, int i_dialog_event, int i_arg, |
|---|
| 483 |
intf_dialog_args_t *p_arg ) |
|---|
| 484 |
{ |
|---|
| 485 |
DialogEvent *event = new DialogEvent( i_dialog_event, i_arg, p_arg ); |
|---|
| 486 |
QApplication::postEvent( THEDP, static_cast<QEvent*>(event) ); |
|---|
| 487 |
} |
|---|
| 488 |
|
|---|
| 489 |
|
|---|
| 490 |
|
|---|
| 491 |
|
|---|
| 492 |
|
|---|
| 493 |
|
|---|
| 494 |
static int PopupMenuCB( vlc_object_t *p_this, const char *psz_variable, |
|---|
| 495 |
vlc_value_t old_val, vlc_value_t new_val, void *param ) |
|---|
| 496 |
{ |
|---|
| 497 |
intf_thread_t *p_intf = (intf_thread_t *)param; |
|---|
| 498 |
ShowDialog( p_intf, INTF_DIALOG_POPUPMENU, new_val.b_bool, 0 ); |
|---|
| 499 |
return VLC_SUCCESS; |
|---|
| 500 |
} |
|---|
| 501 |
|
|---|
| 502 |
|
|---|
| 503 |
|
|---|
| 504 |
|
|---|
| 505 |
#include <vlc_window.h> |
|---|
| 506 |
|
|---|
| 507 |
static int WindowControl (vout_window_t *, int, va_list); |
|---|
| 508 |
|
|---|
| 509 |
static int WindowOpen (vlc_object_t *obj) |
|---|
| 510 |
{ |
|---|
| 511 |
vout_window_t *wnd = (vout_window_t *)obj; |
|---|
| 512 |
|
|---|
| 513 |
if (config_GetInt (obj, "embedded-video") <= 0) |
|---|
| 514 |
return VLC_EGENERIC; |
|---|
| 515 |
|
|---|
| 516 |
intf_thread_t *intf = (intf_thread_t *) |
|---|
| 517 |
vlc_object_find_name (obj, "qt4", FIND_ANYWHERE); |
|---|
| 518 |
if (intf == NULL) |
|---|
| 519 |
return VLC_EGENERIC; |
|---|
| 520 |
assert (intf->i_object_type == VLC_OBJECT_INTF); |
|---|
| 521 |
|
|---|
| 522 |
var_Create (intf, "window_widget", VLC_VAR_ADDRESS); |
|---|
| 523 |
|
|---|
| 524 |
vlc_value_t ptrval; |
|---|
| 525 |
|
|---|
| 526 |
windowLock.lock (); |
|---|
| 527 |
msg_Dbg (obj, "waiting for interface..."); |
|---|
| 528 |
for (;;) |
|---|
| 529 |
{ |
|---|
| 530 |
var_Get (intf, "window_widget", &ptrval); |
|---|
| 531 |
if (ptrval.p_address != NULL) |
|---|
| 532 |
break; |
|---|
| 533 |
windowWait.wait (&windowLock); |
|---|
| 534 |
} |
|---|
| 535 |
|
|---|
| 536 |
msg_Dbg (obj, "requesting window..."); |
|---|
| 537 |
QPointer<MainInterface> *miP = (QPointer<MainInterface> *)ptrval.p_address; |
|---|
| 538 |
miP = new QPointer<MainInterface> (*miP); |
|---|
| 539 |
vlc_object_release (intf); |
|---|
| 540 |
|
|---|
| 541 |
if (miP->isNull ()) |
|---|
| 542 |
return VLC_EGENERIC; |
|---|
| 543 |
|
|---|
| 544 |
wnd->handle = (*miP)->requestVideo (wnd->vout, &wnd->pos_x, &wnd->pos_y, |
|---|
| 545 |
&wnd->width, &wnd->height); |
|---|
| 546 |
windowLock.unlock (); |
|---|
| 547 |
|
|---|
| 548 |
if (!wnd->handle) |
|---|
| 549 |
return VLC_EGENERIC; |
|---|
| 550 |
|
|---|
| 551 |
wnd->control = WindowControl; |
|---|
| 552 |
wnd->p_private = miP; |
|---|
| 553 |
return VLC_SUCCESS; |
|---|
| 554 |
} |
|---|
| 555 |
|
|---|
| 556 |
static int WindowControl (vout_window_t *wnd, int query, va_list args) |
|---|
| 557 |
{ |
|---|
| 558 |
QPointer<MainInterface> *miP = (QPointer<MainInterface> *)wnd->p_private; |
|---|
| 559 |
QMutexLocker locker (&windowLock); |
|---|
| 560 |
|
|---|
| 561 |
if (miP->isNull ()) |
|---|
| 562 |
return VLC_EGENERIC; |
|---|
| 563 |
return (*miP)->controlVideo (wnd->handle, query, args); |
|---|
| 564 |
} |
|---|
| 565 |
|
|---|
| 566 |
static void WindowClose (vlc_object_t *obj) |
|---|
| 567 |
{ |
|---|
| 568 |
vout_window_t *wnd = (vout_window_t *)obj; |
|---|
| 569 |
QPointer<MainInterface> *miP = (QPointer<MainInterface> *)wnd->p_private; |
|---|
| 570 |
QMutexLocker locker (&windowLock); |
|---|
| 571 |
|
|---|
| 572 |
if (!miP->isNull ()) |
|---|
| 573 |
(*miP)->releaseVideo( wnd->handle ); |
|---|
| 574 |
delete miP; |
|---|
| 575 |
} |
|---|