main_interface.cpp 37.5 KB
Newer Older
Clément Stenac's avatar
Clément Stenac committed
1
/*****************************************************************************
Clément Stenac's avatar
Wtf ?  
Clément Stenac committed
2
 * main_interface.cpp : Main interface
Clément Stenac's avatar
Clément Stenac committed
3
 ****************************************************************************
4
 * Copyright (C) 2006-2007 the VideoLAN team
5
 * $Id$
Clément Stenac's avatar
Clément Stenac committed
6 7
 *
 * Authors: Clément Stenac <zorglub@videolan.org>
8
 *          Jean-Baptiste Kempf <jb@videolan.org>
9
 *          Ilkka Ollakka <ileoo@videolan.org>
Clément Stenac's avatar
Clément Stenac committed
10 11 12 13 14 15 16 17 18 19 20 21 22
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
Jean-Baptiste Kempf's avatar
Jean-Baptiste Kempf committed
23
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24
 *****************************************************************************/
25

26 27 28
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
Clément Stenac's avatar
Clément Stenac committed
29

30
#include "qt4.hpp"
Clément Stenac's avatar
Clément Stenac committed
31
#include "main_interface.hpp"
Clément Stenac's avatar
Clément Stenac committed
32
#include "input_manager.hpp"
Clément Stenac's avatar
Clément Stenac committed
33
#include "util/qvlcframe.hpp"
34
#include "util/customwidgets.hpp"
Clément Stenac's avatar
Clément Stenac committed
35
#include "dialogs_provider.hpp"
36
#include "components/interface_widgets.hpp"
37
#include "components/playlist/playlist.hpp"
38
#include "dialogs/extended.hpp"
39 40 41
#include "dialogs/playlist.hpp"
#include "menus.hpp"

Clément Stenac's avatar
Clément Stenac committed
42
#include <QMenuBar>
Clément Stenac's avatar
Clément Stenac committed
43
#include <QCloseEvent>
Clément Stenac's avatar
Clément Stenac committed
44
#include <QPushButton>
Clément Stenac's avatar
Clément Stenac committed
45
#include <QStatusBar>
46
#include <QKeyEvent>
47
#include <QUrl>
48
#include <QSystemTrayIcon>
Jean-Baptiste Kempf's avatar
Jean-Baptiste Kempf committed
49 50
#include <QSize>
#include <QMenu>
51
#include <QLabel>
52 53
#include <QSlider>
#include <QWidgetAction>
54
#if 0
55
#include <QDockWidget>
56
#endif
57
#include <QToolBar>
58
#include <QGroupBox>
59
#include <QDate>
60
#include <QProgressBar>
61 62

#include <assert.h>
63
#include <vlc_keys.h>
Clément Stenac's avatar
Clément Stenac committed
64
#include <vlc_vout.h>
Clément Stenac's avatar
Clément Stenac committed
65

66 67 68 69 70 71
#define SET_WIDTH(i,j) i->widgetSize.setWidth(j)
#define SET_HEIGHT(i,j) i->widgetSize.setHeight(j)
#define SET_WH( i,j,k) i->widgetSize.setWidth(j); i->widgetSize.setHeight(k);

#define DS(i) i.width(),i.height()

72 73 74 75 76
/* Callback prototypes */
static int PopupMenuCB( vlc_object_t *p_this, const char *psz_variable,
                        vlc_value_t old_val, vlc_value_t new_val, void *param );
static int IntfShowCB( vlc_object_t *p_this, const char *psz_variable,
                       vlc_value_t old_val, vlc_value_t new_val, void *param );
77 78 79
static int InteractCallback( vlc_object_t *, const char *, vlc_value_t,
                             vlc_value_t, void *);

80
MainInterface::MainInterface( intf_thread_t *_p_intf ) : QVLCMW( _p_intf )
Clément Stenac's avatar
Clément Stenac committed
81
{
82
    /* Variables initialisation */
83
    // need_components_update = false;
84 85
    bgWidget = NULL;
    videoWidget = NULL;
86 87
    playlistWidget = NULL;
    sysTray = NULL;
88
    videoIsActive = false;
89
    playlistVisible = false;
90
    input_name = "";
91

92
    /* Ask for privacy */
93
    askForPrivacy();
94

95
    /**
96
     *  Configuration and settings
97
     *  Pre-building of interface
98
     **/
99 100
    /* Main settings */
    setFocusPolicy( Qt::StrongFocus );
101
    setAcceptDrops( true );
102
    setWindowIcon( QApplication::windowIcon() );
103
    setWindowOpacity( config_GetFloat( p_intf, "qt-opacity" ) );
104 105

    /* Set The Video In emebedded Mode or not */
106
    videoEmbeddedFlag = config_GetInt( p_intf, "embedded-video" );
Clément Stenac's avatar
Clément Stenac committed
107

108
    /* Are we in the enhanced always-video mode or not ? */
109
    i_visualmode = config_GetInt( p_intf, "qt-display-mode" );
Clément Stenac's avatar
Clément Stenac committed
110

111
    /* Set the other interface settings */
112 113 114
    settings = new QSettings( "vlc", "vlc-qt-interface" );
    settings->beginGroup( "MainWindow" );

115
    //TODO: I don't like that code
Jean-Baptiste Kempf's avatar
Jean-Baptiste Kempf committed
116
    visualSelectorEnabled = settings->value( "visual-selector", false ).toBool();
117
    notificationEnabled = (bool)config_GetInt( p_intf, "qt-notification" );
118

119 120 121
    /**************************
     *  UI and Widgets design
     **************************/
122
    setVLCWindowsTitle();
123
    handleMainUi( settings );
124

125
#if 0
126
    /* Create a Dock to get the playlist */
127
    dockPL = new QDockWidget( qtr( "Playlist" ), this );
128
    dockPL->setSizePolicy( QSizePolicy::Preferred,
129
                           QSizePolicy::Expanding );
130
    dockPL->setFeatures( QDockWidget::AllDockWidgetFeatures );
131 132 133
    dockPL->setAllowedAreas( Qt::LeftDockWidgetArea
                           | Qt::RightDockWidgetArea
                           | Qt::BottomDockWidgetArea );
134
    dockPL->hide();
135
#endif
136

137
    /************
138
     * Menu Bar
139
     ************/
140
    QVLCMenu::createMenuBar( this, p_intf, visualSelectorEnabled );
141

142 143
    /* StatusBar Creation */
    createStatusBar();
144

145

146 147 148
    /********************
     * Input Manager    *
     ********************/
149
    MainInputManager::getInstance( p_intf );
150

151 152 153
    /**************************
     * Various CONNECTs on IM *
     **************************/
154
    /* Connect the input manager to the GUI elements it manages */
155

156
    /* It is also connected to the control->slider, see the ControlsWidget */
157
    CONNECT( THEMIM->getIM(), positionUpdated( float, int, int ),
158
             this, setDisplayPosition( float, int, int ) );
159
    /* Change the SpeedRate in the Status */
160
    CONNECT( THEMIM->getIM(), rateChanged( int ), this, setRate( int ) );
161

162 163
    /**
     * Connects on nameChanged()
164 165
     * Those connects are not merged because different options can trigger
     * them down.
166
     */
167
    /* Naming in the controller statusbar */
168 169
    CONNECT( THEMIM->getIM(), nameChanged( QString ), this,
             setName( QString ) );
170
    /* and in the systray */
171
    if( sysTray )
172 173
    {
        CONNECT( THEMIM->getIM(), nameChanged( QString ), this,
174
                 updateSystrayTooltipName( QString ) );
175
    }
176
    /* and in the title of the controller */
177 178 179 180 181 182
    if( config_GetInt( p_intf, "qt-name-in-title" ) )
    {
        CONNECT( THEMIM->getIM(), nameChanged( QString ), this,
             setVLCWindowsTitle( QString ) );
    }

183
    /**
184
     * CONNECTS on PLAY_STATUS
185
     **/
186
    /* Status on the main controller */
187
    CONNECT( THEMIM->getIM(), statusChanged( int ), this, setStatus( int ) );
188
    /* and in the systray */
189
    if( sysTray )
190 191
    {
        CONNECT( THEMIM->getIM(), statusChanged( int ), this,
192
                 updateSystrayTooltipStatus( int ) );
193
    }
194

195 196 197
    /* END CONNECTS ON IM */


198
    /** OnTimeOut **/
199 200
    /* TODO Remove this function, but so far, there is no choice because there
       is no intf-should-die variable */
201 202 203
    ON_TIMEOUT( updateOnTimer() );
    //ON_TIMEOUT( debug() );

204 205 206
    /**
     * Callbacks
     **/
207 208
    var_Create( p_intf, "interaction", VLC_VAR_ADDRESS );
    var_AddCallback( p_intf, "interaction", InteractCallback, this );
209
    p_intf->b_interaction = true;
210

211 212
    var_AddCallback( p_intf->p_libvlc, "intf-show", IntfShowCB, p_intf );

213
    /* Register callback for the intf-popupmenu variable */
214
    var_AddCallback( p_intf->p_libvlc, "intf-popupmenu", PopupMenuCB, p_intf );
215

216
    /* VideoWidget connect mess to avoid different threads speaking to each other */
217 218
    CONNECT( this, askReleaseVideo( void * ),
             this, releaseVideoSlot( void * ) );
219 220 221
    if( videoWidget )
        CONNECT( this, askVideoToResize( unsigned int, unsigned int ),
                 videoWidget, SetSizing( unsigned int, unsigned int ) );
222

223
    CONNECT( this, askUpdate(), this, doComponentsUpdate() );
224

225
    CONNECT( controls, advancedControlsToggled( bool ),
226
             this, doComponentsUpdate() );
227

Lukas Durfina's avatar
Lukas Durfina committed
228 229 230 231 232 233 234
    CONNECT( fullscreenControls, advancedControlsToggled( bool ),
             this, doComponentsUpdate() );

    CONNECT( THEMIM->getIM(), inputUnset(),
            fullscreenControls, unregFullscreenCallback() );


235
    /* Size and placement of interface */
236
    QVLCTools::restoreWidgetPosition(settings,this,QSize(350,60));
237 238


239
    /* Playlist */
240
    if( settings->value( "playlist-visible", 0 ).toInt() ) togglePlaylist();
241
    settings->endGroup();
242

243
    show();
244

245 246
    if( i_visualmode == QT_MINIMAL_MODE )
        toggleMinimalView();
247

248
    /* Update the geometry TODO: is it useful ?*/
249
    updateGeometry();
250 251 252 253 254

    /*****************************************************
     * End everything by creating the Systray Management *
     *****************************************************/
    initSystray();
255 256 257 258
}

MainInterface::~MainInterface()
{
259 260
    msg_Dbg( p_intf, "Destroying the main interface" );

261 262
    if( playlistWidget )
        playlistWidget->savingSettings( settings );
263

264
    settings->beginGroup( "MainWindow" );
265 266

    // settings->setValue( "playlist-floats", (int)(dockPL->isFloating()) );
267
    settings->setValue( "playlist-visible", (int)playlistVisible );
268
    settings->setValue( "adv-controls",
269
                        getControlsVisibilityStatus() & CONTROLS_ADVANCED );
270

271
    if( !videoIsActive )
272 273
        QVLCTools::saveWidgetPosition(settings, this);

274 275
    if( bgWidget )
        settings->setValue( "backgroundSize", bgWidget->size() );
276 277 278 279

    settings->endGroup();
    delete settings;

280 281
    var_DelCallback( p_intf->p_libvlc, "intf-show", IntfShowCB, p_intf );

282
    /* Unregister callback for the intf-popupmenu variable */
283
    var_DelCallback( p_intf->p_libvlc, "intf-popupmenu", PopupMenuCB, p_intf );
284

285
    p_intf->b_interaction = false;
286
    var_DelCallback( p_intf, "interaction", InteractCallback, this );
287

288
    p_intf->p_sys->p_mi = NULL;
289 290
}

291 292 293
/*****************************
 *   Main UI handling        *
 *****************************/
294

295 296 297 298 299 300 301 302 303 304 305 306 307
inline void MainInterface::createStatusBar()
{
    /****************
     *  Status Bar  *
     ****************/
    /* Widgets Creation*/
    b_remainingTime = false;
    timeLabel = new TimeLabel;
    timeLabel->setText( " --:--/--:-- " );
    timeLabel->setAlignment( Qt::AlignRight | Qt::AlignVCenter );
    nameLabel = new QLabel;
    nameLabel->setTextInteractionFlags( Qt::TextSelectableByMouse
                                      | Qt::TextSelectableByKeyboard );
308
    speedLabel = new SpeedLabel( p_intf, "1.00x" );
309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359
    speedLabel->setContextMenuPolicy ( Qt::CustomContextMenu );

    /* Styling those labels */
    timeLabel->setFrameStyle( QFrame::Sunken | QFrame::Panel );
    speedLabel->setFrameStyle( QFrame::Sunken | QFrame::Panel );
    nameLabel->setFrameStyle( QFrame::Sunken | QFrame::StyledPanel);

    pgBar = new QProgressBar;
    pgBar->hide();

    /* and adding those */
    statusBar()->addWidget( nameLabel, 8 );
    statusBar()->addPermanentWidget( speedLabel, 0 );
    statusBar()->addPermanentWidget( pgBar, 0 );
    statusBar()->addPermanentWidget( timeLabel, 0 );

    /* timeLabel behaviour:
       - double clicking opens the goto time dialog
       - right-clicking and clicking just toggle between remaining and
         elapsed time.*/
    CONNECT( timeLabel, timeLabelClicked(), this, toggleTimeDisplay() );
    CONNECT( timeLabel, timeLabelDoubleClicked(), THEDP, gotoTimeDialog() );
    CONNECT( timeLabel, timeLabelDoubleClicked(), this, toggleTimeDisplay() );

    /* Speed Label behaviour:
       - right click gives the vertical speed slider */
    CONNECT( speedLabel, customContextMenuRequested( QPoint ),
             this, showSpeedMenu( QPoint ) );
}

inline void MainInterface::initSystray()
{
    bool b_createSystray = false;
    bool b_systrayAvailable = QSystemTrayIcon::isSystemTrayAvailable();
    if( config_GetInt( p_intf, "qt-start-minimized") )
    {
        if( b_systrayAvailable )
        {
            b_createSystray = true;
            hide();
        }
        else msg_Err( p_intf, "You can't minimize if you haven't a system "
                "tray bar" );
    }
    if( config_GetInt( p_intf, "qt-system-tray") )
        b_createSystray = true;

    if( b_systrayAvailable && b_createSystray )
            createSystray();
}

360 361 362 363
/**
 * Give the decorations of the Main Window a correct Name.
 * If nothing is given, set it to VLC...
 **/
364 365 366 367
void MainInterface::setVLCWindowsTitle( QString aTitle )
{
    if( aTitle.isEmpty() )
    {
368
        setWindowTitle( qtr( "VLC media player" ) );
369 370 371
    }
    else
    {
372
        setWindowTitle( aTitle + " - " + qtr( "VLC media player" ) );
373 374 375
    }
}

376 377
void MainInterface::handleMainUi( QSettings *settings )
{
378
    /* Create the main Widget and the mainLayout */
379
    QWidget *main = new QWidget;
380
    setCentralWidget( main );
381
    mainLayout = new QVBoxLayout( main );
382

383 384
    /* Margins, spacing */
    main->setContentsMargins( 0, 0, 0, 0 );
385
    main->setSizePolicy( QSizePolicy::Preferred, QSizePolicy::Maximum );
Jean-Baptiste Kempf's avatar
Jean-Baptiste Kempf committed
386
    mainLayout->setSpacing( 0 );
387 388
    mainLayout->setMargin( 0 );

389
    /* Create the CONTROLS Widget */
390
    /* bool b_shiny = config_GetInt( p_intf, "qt-blingbling" ); */
Jean-Baptiste Kempf's avatar
Jean-Baptiste Kempf committed
391
    controls = new ControlsWidget( p_intf, this,
392
                   settings->value( "adv-controls", false ).toBool(),
393
                   config_GetInt( p_intf, "qt-blingbling" ) );
394

Lukas Durfina's avatar
Lukas Durfina committed
395 396 397 398 399 400
    /* Create the FULLSCREEN CONTROLS Widget */
    /* bool b_shiny = config_GetInt( p_intf, "qt-blingbling" ); */
    fullscreenControls = new FullscreenControllerWidget( p_intf, this,
                   settings->value( "adv-controls", false ).toBool(),
                   config_GetInt( p_intf, "qt-blingbling" ) );

401
    /* Add the controls Widget to the main Widget */
Adrien Grand's avatar
Adrien Grand committed
402
    mainLayout->insertWidget( 0, controls, 0, Qt::AlignBottom );
403

404 405 406
    /* Create the Speed Control Widget */
    speedControl = new SpeedControlWidget( p_intf );
    speedControlMenu = new QMenu( this );
407 408

    QWidgetAction *widgetAction = new QWidgetAction( speedControl );
409 410
    widgetAction->setDefaultWidget( speedControl );
    speedControlMenu->addAction( widgetAction );
411

412
    /* Visualisation */
413 414
    /* Disabled for now, they SUCK */
    #if 0
415
    visualSelector = new VisualSelector( p_intf );
416
    mainLayout->insertWidget( 0, visualSelector );
417
    visualSelector->hide();
418
    #endif
419

420
    /* And video Outputs */
421 422
    if( i_visualmode == QT_ALWAYS_VIDEO_MODE ||
        i_visualmode == QT_MINIMAL_MODE )
423 424
    {
        bgWidget = new BackgroundWidget( p_intf );
425 426
        bgWidget->resize(
             settings->value( "backgroundSize", QSize( 300, 150 ) ).toSize() );
427
        bgWidget->updateGeometry();
428
        mainLayout->insertWidget( 0, bgWidget );
429
        CONNECT( this, askBgWidgetToToggle(), bgWidget, toggle() );
430 431
    }

432
    if( videoEmbeddedFlag )
433
    {
434
        videoWidget = new VideoWidget( p_intf );
435
        mainLayout->insertWidget( 0, videoWidget, 10 );
Lukas Durfina's avatar
Lukas Durfina committed
436
    }
437 438

    /* Finish the sizing */
439
    main->updateGeometry();
Clément Stenac's avatar
Clément Stenac committed
440 441
}

442
inline void MainInterface::askForPrivacy()
443 444 445 446
{
    /**
     * Ask for the network policy on FIRST STARTUP
     **/
447
    if( config_GetInt( p_intf, "qt-privacy-ask") )
448 449 450 451 452 453 454 455 456 457 458
    {
        QList<ConfigControl *> controls;
        if( privacyDialog( controls ) == QDialog::Accepted )
        {
            QList<ConfigControl *>::Iterator i;
            for(  i = controls.begin() ; i != controls.end() ; i++ )
            {
                ConfigControl *c = qobject_cast<ConfigControl *>(*i);
                c->doApply( p_intf );
            }

459
            config_PutInt( p_intf,  "qt-privacy-ask" , 0 );
460
            /* We have to save here because the user may not launch Prefs */
461 462 463 464 465
            config_SaveConfigFile( p_intf, NULL );
        }
    }
}

466
int MainInterface::privacyDialog( QList<ConfigControl *> controls )
467
{
468
    QDialog *privacy = new QDialog();
469 470 471 472 473 474 475 476

    privacy->setWindowTitle( qtr( "Privacy and Network policies" ) );

    QGridLayout *gLayout = new QGridLayout( privacy );

    QGroupBox *blabla = new QGroupBox( qtr( "Privacy and Network Warning" ) );
    QGridLayout *blablaLayout = new QGridLayout( blabla );
    QLabel *text = new QLabel( qtr(
477
        "<p>The <i>VideoLAN Team</i> doesn't like when an application goes "
478
        "online without authorization.</p>\n "
479
        "<p><i>VLC media player</i> can request limited information on "
480
        "the Internet, especially to get CD covers or to know "
481
        "if updates are available.</p>\n"
482
        "<p><i>VLC media player</i> <b>DOES NOT</b> send or collect <b>ANY</b> "
483
        "information, even anonymously, about your usage.</p>\n"
484 485
        "<p>Therefore please check the following options, the default being "
        "almost no access on the web.</p>\n") );
486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505
    text->setWordWrap( true );
    text->setTextFormat( Qt::RichText );

    blablaLayout->addWidget( text, 0, 0 ) ;

    QGroupBox *options = new QGroupBox;
    QGridLayout *optionsLayout = new QGridLayout( options );

    gLayout->addWidget( blabla, 0, 0, 1, 3 );
    gLayout->addWidget( options, 1, 0, 1, 3 );
    module_config_t *p_config;
    ConfigControl *control;
    int line = 0;

#define CONFIG_GENERIC( option, type )                            \
    p_config =  config_FindConfig( VLC_OBJECT(p_intf), option );  \
    if( p_config )                                                \
    {                                                             \
        control =  new type ## ConfigControl( VLC_OBJECT(p_intf), \
                p_config, options, false, optionsLayout, line );  \
506
        controls.append( control );                               \
507 508 509 510 511 512 513 514
    }

#define CONFIG_GENERIC_NOBOOL( option, type )                     \
    p_config =  config_FindConfig( VLC_OBJECT(p_intf), option );  \
    if( p_config )                                                \
    {                                                             \
        control =  new type ## ConfigControl( VLC_OBJECT(p_intf), \
                p_config, options, optionsLayout, line );  \
515
        controls.append( control );                               \
516 517 518
    }

    CONFIG_GENERIC( "album-art", IntegerList ); line++;
519
#ifdef UPDATE_CHECK
520 521
    CONFIG_GENERIC_NOBOOL( "qt-updates-notif", Bool ); line++;
    CONFIG_GENERIC_NOBOOL( "qt-updates-days", Integer ); line++;
522
#endif
523

524 525 526 527 528
    QPushButton *ok = new QPushButton( qtr( "Ok" ) );

    gLayout->addWidget( ok, 2, 2 );

    CONNECT( ok, clicked(), privacy, accept() );
529
    return privacy->exec();
530 531
}

532

533
/**********************************************************************
534
 * Handling of sizing of the components
535
 **********************************************************************/
536 537 538 539 540

/* This function is probably wrong, but we don't have many many choices...
   Since we can't know from the playlist Widget if we are inside a dock or not,
   because the playlist Widget can be called by THEDP, as a separate windows for
   the skins.
541 542
   Maybe the other solution is to redefine the sizeHint() of the playlist and
   ask _parent->isFloating()...
543
   If you think this would be better, please FIXME it...
544
*/
545
#if 0
546 547
QSize MainInterface::sizeHint() const
{
548
    int nwidth  = controls->sizeHint().width();
549 550 551 552 553
    int nheight = controls->isVisible() ?
                  controls->size().height()
                  + menuBar()->size().height()
                  + statusBar()->size().height()
                  : 0 ;
554

555
    msg_Dbg( p_intf, "1 %i %i", nheight, nwidth );
556
    if( VISIBLE( bgWidget ) )
557 558 559
    {
        nheight += bgWidget->size().height();
        nwidth  = bgWidget->size().width();
560
        msg_Dbg( p_intf, "1b %i %i", nheight, nwidth );
561
    }
562
    else if( videoIsActive )
563 564 565 566 567
    {
        nheight += videoWidget->size().height();
        nwidth  = videoWidget->size().width();
        msg_Dbg( p_intf, "2 %i %i", nheight, nwidth );
    }
568
/*    if( !dockPL->isFloating() && dockPL->isVisible() && dockPL->widget()  )
569 570
    {
        nheight += dockPL->size().height();
571
        nwidth = __MAX( nwidth, dockPL->size().width() );
572
        msg_Dbg( p_intf, "3 %i %i", nheight, nwidth );
573
    }*/
574 575
    msg_Dbg( p_intf, "4 %i %i", nheight, nwidth );
    return QSize( nwidth, nheight );
576
}
577
#endif
578
#if 0
579
/* FIXME This is dead code and need to be removed AT THE END */
580 581
void MainInterface::resizeEvent( QResizeEvent *e )
{
582 583
    if( videoWidget )
        videoWidget->widgetSize.setWidth( e->size().width() - addSize.width() );
584 585 586 587 588 589 590 591
    if( videoWidget && videoIsActive && videoWidget->widgetSize.height() > 1 )
    {
        SET_WH( videoWidget, e->size().width() - addSize.width(),
                             e->size().height()  - addSize.height() );
        videoWidget->updateGeometry();
    }
    if( VISIBLE( playlistWidget ) )
    {
592 593
//        SET_WH( playlistWidget , e->size().width() - addSize.width(),
              //                   e->size().height() - addSize.height() );
594 595 596
        playlistWidget->updateGeometry();
    }
}
597
#endif
598

599 600 601 602 603 604 605 606 607 608
void MainInterface::requestLayoutUpdate()
{
    emit askUpdate();
}

//FIXME remove me at the end...
void MainInterface::debug()
{
    msg_Dbg( p_intf, "size: %i - %i", size().height(), size().width() );
    msg_Dbg( p_intf, "sizeHint: %i - %i", sizeHint().height(), sizeHint().width() );
Rafaël Carré's avatar
Rafaël Carré committed
609
    if( videoWidget && videoWidget->isVisible() )
610 611 612 613 614 615 616 617
    {
//    sleep( 10 );
    msg_Dbg( p_intf, "size: %i - %i", size().height(), size().width() );
    msg_Dbg( p_intf, "sizeHint: %i - %i", sizeHint().height(), sizeHint().width() );
    }
    adjustSize();
}

618
/****************************************************************************
619
 * Small right-click menu for rate control
620 621 622
 ****************************************************************************/
void MainInterface::showSpeedMenu( QPoint pos )
{
623
    speedControlMenu->exec( QCursor::pos() - pos
624
                          + QPoint( 0, speedLabel->height() ) );
625 626
}

627 628 629
/****************************************************************************
 * Video Handling
 ****************************************************************************/
630 631 632 633 634
class SetVideoOnTopQtEvent : public QEvent
{
public:
    SetVideoOnTopQtEvent( bool _onTop ) :
      QEvent( (QEvent::Type)SetVideoOnTopEvent_Type ), onTop( _onTop)
635
    {}
636 637 638 639 640 641 642 643 644 645

    bool OnTop() const
    {
        return onTop;
    }

private:
    bool onTop;
};

646 647 648 649 650 651
/**
 * README
 * README
 * Thou shall not call/resize/hide widgets from on another thread.
 * This is wrong, and this is TEH reason to emit signals on those Video Functions
 **/
652 653 654 655
void *MainInterface::requestVideo( vout_thread_t *p_nvout, int *pi_x,
                                   int *pi_y, unsigned int *pi_width,
                                   unsigned int *pi_height )
{
656 657 658
    bool bgWasVisible = false;

    /* Request the videoWidget */
659
    void *ret = videoWidget->request( p_nvout,pi_x, pi_y, pi_width, pi_height );
660
    if( ret ) /* The videoWidget is available */
661
    {
662
        /* Did we have a bg ? Hide it! */
663
        if( VISIBLE( bgWidget) )
Clément Stenac's avatar
Clément Stenac committed
664
        {
665
            bgWasVisible = true;
666
            emit askBgWidgetToToggle();
Clément Stenac's avatar
Clément Stenac committed
667
        }
668 669
#if 0
        if( THEMIM->getIM()->hasVideo() || !bgWasVisible )
670 671 672 673
        {
            videoWidget->widgetSize = QSize( *pi_width, *pi_height );
        }
        else /* Background widget available, use its size */
674
        {
675 676 677
            /* Ok, our visualizations are bad, so don't do this for the moment
             * use the requested size anyway */
            // videoWidget->widgetSize = bgWidget->widgeTSize;
678 679 680
            videoWidget->widgetSize = QSize( *pi_width, *pi_height );
        }
#endif
681
        videoIsActive = true;
682

683
//        emit askVideoToResize( *pi_width, *pi_height );
684
        emit askUpdate();
685
    }
686 687 688 689
    return ret;
}

void MainInterface::releaseVideo( void *p_win )
690 691 692 693 694
{
    emit askReleaseVideo( p_win );
}

void MainInterface::releaseVideoSlot( void *p_win )
695 696
{
    videoWidget->release( p_win );
697
    videoWidget->hide();
Clément Stenac's avatar
Clément Stenac committed
698

699
    if( bgWidget )// WRONG
700
        bgWidget->show();
Clément Stenac's avatar
Clément Stenac committed
701

702
    adjustSize();
703 704 705
    videoIsActive = false;
}

706 707
int MainInterface::controlVideo( void *p_window, int i_query, va_list args )
{
708
    int i_ret = VLC_SUCCESS;
709 710 711 712 713 714
    switch( i_query )
    {
        case VOUT_GET_SIZE:
        {
            unsigned int *pi_width  = va_arg( args, unsigned int * );
            unsigned int *pi_height = va_arg( args, unsigned int * );
715 716
            *pi_width = videoWidget->videoSize.width();
            *pi_height = videoWidget->videoSize.height();
717 718 719 720 721 722
            break;
        }
        case VOUT_SET_SIZE:
        {
            unsigned int i_width  = va_arg( args, unsigned int );
            unsigned int i_height = va_arg( args, unsigned int );
723 724
            emit askVideoToResize( i_width, i_height );
            emit askUpdate();
725 726 727
            break;
        }
        case VOUT_SET_STAY_ON_TOP:
728 729 730 731 732
        {
            int i_arg = va_arg( args, int );
            QApplication::postEvent( this, new SetVideoOnTopQtEvent( i_arg ) );
            break;
        }
733
        default:
734
            i_ret = VLC_EGENERIC;
735 736 737 738 739 740
            msg_Warn( p_intf, "unsupported control query" );
            break;
    }
    return i_ret;
}

741 742 743 744 745 746 747
/*****************************************************************************
 * Playlist, Visualisation and Menus handling
 *****************************************************************************/
/**
 * Toggle the playlist widget or dialog
 **/
void MainInterface::togglePlaylist()
748
{
749 750
    THEDP->playlistDialog();
#if 0
751
    /* CREATION
752
    If no playlist exist, then create one and attach it to the DockPL*/
753 754
    if( !playlistWidget )
    {
755
        playlistWidget = new PlaylistWidget( p_intf, settings, dockPL );
756 757 758 759 760 761 762 763

        /* Add it to the parent DockWidget */
        dockPL->setWidget( playlistWidget );

        /* Add the dock to the main Interface */
        addDockWidget( Qt::BottomDockWidgetArea, dockPL );

        /* Make the playlist floating is requested. Default is not. */
764 765
        settings->beginGroup( "MainWindow" );
        if( settings->value( "playlist-floats", 1 ).toInt() )
766
        {
767
            msg_Dbg( p_intf, "we don't want the playlist inside");
768
            dockPL->setFloating( true );
769
        }
770
        settings->endGroup();
771 772
        settings->beginGroup( "playlist" );
        dockPL->move( settings->value( "pos", QPoint( 0,0 ) ).toPoint() );
773 774 775
        QSize newSize = settings->value( "size", QSize( 400, 300 ) ).toSize();
        if( newSize.isValid() )
            dockPL->resize( newSize );
776
        settings->endGroup();
777

778
        dockPL->show();
779
        playlistVisible = true;
780 781 782
    }
    else
    {
783
    /* toggle the visibility of the playlist */
784
       TOGGLEV( dockPL );
785
       resize( sizeHint() );
786
       playlistVisible = !playlistVisible;
787
    }
788
    #endif
789 790
}

791
/* Function called from the menu to undock the playlist */
792
void MainInterface::undockPlaylist()
793
{
794 795
//    dockPL->setFloating( true );
    adjustSize();
796 797
}

798
void MainInterface::toggleMinimalView()
799
{
800
    TOGGLEV( menuBar() );
801 802
    TOGGLEV( controls );
    TOGGLEV( statusBar() );
803
    doComponentsUpdate();
804 805
}

806 807 808
/* Video widget cannot do this synchronously as it runs in another thread */
/* Well, could it, actually ? Probably dangerous ... */
void MainInterface::doComponentsUpdate()
809
{
810
    msg_Dbg( p_intf, "Updating the geometry" );
811 812
//    resize( sizeHint() );
    debug();
813
}
814

815
/* toggling advanced controls buttons */
816 817 818 819 820
void MainInterface::toggleAdvanced()
{
    controls->toggleAdvanced();
}

821
/* Get the visibility status of the controls (hidden or not, advanced or not) */
822
int MainInterface::getControlsVisibilityStatus()
823
{
824 825
    return( (controls->isVisible() ? CONTROLS_VISIBLE : CONTROLS_HIDDEN )
                + CONTROLS_ADVANCED * controls->b_advancedVisible );
826 827
}

828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849
#if 0
void MainInterface::visual()
{
    if( !VISIBLE( visualSelector) )
    {
        visualSelector->show();
        if( !THEMIM->getIM()->hasVideo() )
        {
            /* Show the background widget */
        }
        visualSelectorEnabled = true;
    }
    else
    {
        /* Stop any currently running visualization */
        visualSelector->hide();
        visualSelectorEnabled = false;
    }
    doComponentsUpdate();
}
#endif

850 851 852
/************************************************************************
 * Other stuff
 ************************************************************************/
853
void MainInterface::setDisplayPosition( float pos, int time, int length )
854 855 856
{
    char psz_length[MSTRTIME_MAX_SIZE], psz_time[MSTRTIME_MAX_SIZE];
    secstotimestr( psz_length, length );
857 858
    secstotimestr( psz_time, ( b_remainingTime && length ) ? length - time
                                                           : time );
859

860 861
    QString timestr;
    timestr.sprintf( "%s/%s", psz_time,
862 863
                            ( !length && time ) ? "--:--" : psz_length );

864
    /* Add a minus to remaining time*/
865 866
    if( b_remainingTime && length ) timeLabel->setText( " -"+timestr+" " );
    else timeLabel->setText( " "+timestr+" " );
867 868
}

869
void MainInterface::toggleTimeDisplay()
870
{
871
    b_remainingTime = !b_remainingTime;
872 873
}

874 875
void MainInterface::setName( QString name )
{
876 877 878 879 880
    input_name = name; /* store it for the QSystray use */
    /* Display it in the status bar, but also as a Tooltip in case it doesn't
       fit in the label */
    nameLabel->setText( " " + name + " " );
    nameLabel->setToolTip( " " + name +" " );
881 882 883 884
}

void MainInterface::setStatus( int status )
{
885
    msg_Dbg( p_intf, "I was here, updating your status" );
886
    /* Forward the status to the controls to toggle Play/Pause */
887
    controls->setStatus( status );
Lukas Durfina's avatar
Lukas Durfina committed
888
    fullscreenControls->setStatus( status );
889 890

    controls->updateInput();
Lukas Durfina's avatar
Lukas Durfina committed
891
    fullscreenControls->updateInput();
892 893
    speedControl->setEnable( THEMIM->getIM()->hasInput() );

894
    /* And in the systray for the menu */
895
    if( sysTray )
896
        QVLCMenu::updateSystrayMenu( this, p_intf );
897 898
}

899 900 901
void MainInterface::setRate( int rate )
{
    QString str;
902
    str.setNum( ( 1000 / (double)rate ), 'f', 2 );
903 904
    str.append( "x" );
    speedLabel->setText( str );
905
    speedLabel->setToolTip( str );
906
    speedControl->updateControls( rate );
907 908
}

909 910
void MainInterface::updateOnTimer()
{
911
    /* No event for dying */
912
    if( intf_ShouldDie( p_intf ) )
913
    {
914 915
        QApplication::closeAllWindows();
        QApplication::quit();
916
    }
917 918 919 920 921 922 923 924 925 926 927 928
}

/*****************************************************************************
 * Systray Icon and Systray Menu
 *****************************************************************************/

/**
 * Create a SystemTray icon and a menu that would go with it.
 * Connects to a click handler on the icon.
 **/
void MainInterface::createSystray()
{
929 930 931 932 933
    QIcon iconVLC;
    if( QDate::currentDate().dayOfYear() >= 354 )
        iconVLC =  QIcon( QPixmap( ":/vlc128-christmas.png" ) );
    else
        iconVLC =  QIcon( QPixmap( ":/vlc128.png" ) );
934 935 936 937 938 939 940 941 942
    sysTray = new QSystemTrayIcon( iconVLC, this );
    sysTray->setToolTip( qtr( "VLC media player" ));

    systrayMenu = new QMenu( qtr( "VLC media player" ), this );
    systrayMenu->setIcon( iconVLC );

    QVLCMenu::updateSystrayMenu( this, p_intf, true );
    sysTray->show();

943
    CONNECT( sysTray, activated( QSystemTrayIcon::ActivationReason ),
944 945 946 947 948 949 950 951
            this, handleSystrayClick( QSystemTrayIcon::ActivationReason ) );
}

/**
 * Updates the Systray Icon's menu and toggle the main interface
 */
void MainInterface::toggleUpdateSystrayMenu()
{
952
    /* If hidden, show it */
953 954 955 956 957
    if( isHidden() )
    {
        show();
        activateWindow();
    }
958 959
    else if( isMinimized() )
    {
960
        /* Minimized */
961 962 963
        showNormal();
        activateWindow();
    }
964 965
    else
    {
966
        /* Visible */
967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983
#ifdef WIN32
        /* check if any visible window is above vlc in the z-order,
         * but ignore the ones always on top */
        WINDOWINFO wi;
        HWND hwnd;
        wi.cbSize = sizeof( WINDOWINFO );
        for( hwnd = GetNextWindow( internalWinId(), GW_HWNDPREV );
                hwnd && !IsWindowVisible( hwnd );
                hwnd = GetNextWindow( hwnd, GW_HWNDPREV ) );
        if( !hwnd || !GetWindowInfo( hwnd, &wi ) ||
                (wi.dwExStyle&WS_EX_TOPMOST) )
#else
        if( isActiveWindow() )
#endif
        {
            hide();
        }
984
        else
985 986 987
        {
            activateWindow();
        }
988
    }
989
    QVLCMenu::updateSystrayMenu( this, p_intf );
990 991
}

992 993 994 995 996 997 998 999 1000 1001 1002
void MainInterface::handleSystrayClick(
                                    QSystemTrayIcon::ActivationReason reason )
{
    switch( reason )
    {
        case QSystemTrayIcon::Trigger:
            toggleUpdateSystrayMenu();
            break;
        case QSystemTrayIcon::MiddleClick:
            sysTray->showMessage( qtr( "VLC media player" ),
                    qtr( "Control menu for the player" ),
1003
                    QSystemTrayIcon::Information, 3000 );
1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020
            break;
    }
}

/**
 * Updates the name of the systray Icon tooltip.
 * Doesn't check if the systray exists, check before you call it.
 **/
void MainInterface::updateSystrayTooltipName( QString name )
{
    if( name.isEmpty() )
    {
        sysTray->setToolTip( qtr( "VLC media player" ) );
    }
    else
    {
        sysTray->setToolTip( name );
1021
        if( notificationEnabled && ( isHidden() || isMinimized() ) )
1022 1023
        {
            sysTray->showMessage( qtr( "VLC media player" ), name,
1024
                    QSystemTrayIcon::NoIcon, 3000 );
1025
        }
1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037
    }
}

/**
 * Updates the status of the systray Icon tooltip.
 * Doesn't check if the systray exists, check before you call it.
 **/
void MainInterface::updateSystrayTooltipStatus( int i_status )
{
    switch( i_status )
    {
        case  0:
1038
        case  END_S:
1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055
            {
                sysTray->setToolTip( qtr( "VLC media player" ) );
                break;
            }
        case PLAYING_S:
            {
                sysTray->setToolTip( input_name );
                break;
            }
        case PAUSE_S:
            {
                sysTray->setToolTip( input_name + " - "
                        + qtr( "Paused") );
                break;
            }
    }
}
1056 1057

/************************************************************************
1058
 * D&D Events
1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070
 ************************************************************************/
void MainInterface::dropEvent(QDropEvent *event)
{
     const QMimeData *mimeData = event->mimeData();

     /* D&D of a subtitles file, add it on the fly */
     if( mimeData->urls().size() == 1 )
     {
        if( THEMIM->getIM()->hasInput() )
        {
            if( input_AddSubtitles( THEMIM->getInput(),
                                    qtu( mimeData->urls()[0].toString() ),
1071
                                    true ) )
1072 1073 1074 1075 1076 1077 1078
            {
                event->acceptProposedAction();
                return;
            }
        }
     }
     bool first = true;
1079 1080
     foreach( QUrl url, mimeData->urls() )
     {
1081
        QString s = url.toLocalFile();
1082
        if( s.length() > 0 ) {
1083 1084
            playlist_Add( THEPL, qtu(s), NULL,
                          PLAYLIST_APPEND | (first ? PLAYLIST_GO:0),
1085
                          PLAYLIST_END, true, false );
1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103
            first = false;
        }
     }
     event->acceptProposedAction();
}
void MainInterface::dragEnterEvent(QDragEnterEvent *event)
{
     event->acceptProposedAction();
}
void MainInterface::dragMoveEvent(QDragMoveEvent *event)
{
     event->acceptProposedAction();
}
void MainInterface::dragLeaveEvent(QDragLeaveEvent *event)
{
     event->accept();
}

1104
/************************************************************************
1105
 * Events stuff
1106
 ************************************************************************/
1107 1108
void MainInterface::customEvent( QEvent *event )
{
1109
#if 0
1110 1111 1112 1113 1114
    if( event->type() == PLDockEvent_Type )
    {
        PlaylistDialog::killInstance();
        playlistEmbeddedFlag = true;
        menuBar()->clear();
1115
        QVLCMenu::createMenuBar(this, p_intf, true, visualSelectorEnabled);
1116 1117
        togglePlaylist();
    }
1118 1119 1120
#endif
    /*else */
    if ( event->type() == SetVideoOnTopEvent_Type )
1121 1122 1123 1124 1125 1126 1127 1128 1129 1130
    {
        SetVideoOnTopQtEvent* p_event = (SetVideoOnTopQtEvent*)event;
        if( p_event->OnTop() )
            setWindowFlags(windowFlags() | Qt::WindowStaysOnTopHint);
        else
            setWindowFlags(windowFlags() & ~Qt::WindowStaysOnTopHint);
        show(); /* necessary to apply window flags?? */
    }
}

1131 1132
void MainInterface::keyPressEvent( QKeyEvent *e )
{
1133 1134 1135 1136 1137 1138 1139
    if( ( e->modifiers() &  Qt::ControlModifier ) && ( e->key() & Qt::Key_H )
          && menuBar()->isHidden() )
    {
        toggleMinimalView();
        e->accept();
    }

1140
    int i_vlck = qtEventToVLCKey( e );
1141
    if( i_vlck > 0 )
1142
    {
1143
        var_SetInteger( p_intf->p_libvlc, "key-pressed", i_vlck );
1144 1145 1146 1147 1148 1149
        e->accept();
    }
    else
        e->ignore();
}

1150 1151
void MainInterface::wheelEvent( QWheelEvent *e )
{
Jean-Baptiste Kempf's avatar
Jean-Baptiste Kempf committed
1152
    int i_vlckey = qtWheelEventToVLCKey( e );
1153 1154 1155 1156
    var_SetInteger( p_intf->p_libvlc, "key-pressed", i_vlckey );
    e->accept();
}

Clément Stenac's avatar
Clément Stenac committed
1157 1158 1159
void MainInterface::closeEvent( QCloseEvent *e )
{
    hide();
1160
    THEDP->quit();
Clément Stenac's avatar
Clément Stenac committed
1161
}
1162

1163 1164 1165 1166 1167 1168 1169 1170
void MainInterface::toggleFullScreen( void )
{
    if( isFullScreen() )
        showNormal();
    else
        showFullScreen();
}

1171 1172 1173
/*****************************************************************************
 * Callbacks
 *****************************************************************************/
1174 1175 1176 1177 1178 1179 1180
static int InteractCallback( vlc_object_t *p_this,
                             const char *psz_var, vlc_value_t old_val,
                             vlc_value_t new_val, void *param )
{
    intf_dialog_args_t *p_arg = new intf_dialog_args_t;
    p_arg->p_dialog = (interaction_dialog_t *)(new_val.p_address);
    DialogEvent *event = new DialogEvent( INTF_DIALOG_INTERACTION, 0, p_arg );
1181
    QApplication::postEvent( THEDP, static_cast<QEvent*>(event) );
1182 1183
    return VLC_SUCCESS;
}
1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204

/*****************************************************************************
 * PopupMenuCB: callback triggered by the intf-popupmenu playlist variable.
 *  We don't show the menu directly here because we don't want the
 *  caller to block for a too long time.
 *****************************************************************************/
static int PopupMenuCB( vlc_object_t *p_this, const char *psz_variable,
                        vlc_value_t old_val, vlc_value_t new_val, void *param )
{
    intf_thread_t *p_intf = (intf_thread_t *)param;

    if( p_intf->pf_show_dialog )
    {
        p_intf->pf_show_dialog( p_intf, INTF_DIALOG_POPUPMENU,
                                new_val.b_bool, 0 );
    }

    return VLC_SUCCESS;
}

/*****************************************************************************
1205
 * IntfShowCB: callback triggered by the intf-show libvlc variable.
1206 1207 1208 1209 1210
 *****************************************************************************/
static int IntfShowCB( vlc_object_t *p_this, const char *psz_variable,
                       vlc_value_t old_val, vlc_value_t new_val, void *param )
{
    intf_thread_t *p_intf = (intf_thread_t *)param;
1211
    p_intf->p_sys->p_mi->requestLayoutUpdate();
1212 1213 1214

    return VLC_SUCCESS;
}