playlist.cpp
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:5k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * playlist.cpp : Custom widgets for the playlist
  3.  ****************************************************************************
  4.  * Copyright © 2007-2008 the VideoLAN team
  5.  * $Id: 1535332e8862dff86e2d43976c35a3d6e99a8943 $
  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. #ifdef HAVE_CONFIG_H
  25. # include "config.h"
  26. #endif
  27. #include "components/playlist/panels.hpp"
  28. #include "components/playlist/selector.hpp"
  29. #include "components/playlist/playlist.hpp"
  30. #include "input_manager.hpp" /* art signal */
  31. #include "main_interface.hpp" /* DropEvent TODO remove this*/
  32. /**********************************************************************
  33.  * Playlist Widget. The embedded playlist
  34.  **********************************************************************/
  35. PlaylistWidget::PlaylistWidget( intf_thread_t *_p_i ) : p_intf ( _p_i )
  36. {
  37.     setContentsMargins( 3, 3, 3, 3 );
  38.     /* Left Part and design */
  39.     QSplitter *leftW = new QSplitter( Qt::Vertical, this );
  40.     /* Source Selector */
  41.     selector = new PLSelector( this, p_intf );
  42.     leftW->addWidget( selector );
  43.     /* Create a Container for the Art Label
  44.        in order to have a beautiful resizing for the selector above it */
  45.     QWidget *artContainer = new QWidget;
  46.     QHBoxLayout *artContLay = new QHBoxLayout( artContainer );
  47.     artContLay->setMargin( 0 );
  48.     artContLay->setSpacing( 0 );
  49.     artContainer->setMaximumHeight( 128 );
  50.     /* Art label */
  51.     art = new ArtLabel( artContainer, p_intf );
  52.     art->setToolTip( qtr( "Double click to get media information" ) );
  53.     artContLay->addWidget( art, 1 );
  54.     leftW->addWidget( artContainer );
  55.     /* Initialisation of the playlist */
  56.     playlist_t * p_playlist = THEPL;
  57.     PL_LOCK;
  58.     playlist_item_t *p_root =
  59.                   playlist_GetPreferredNode( THEPL, THEPL->p_local_category );
  60.     PL_UNLOCK;
  61.     rightPanel = new StandardPLPanel( this, p_intf, THEPL, p_root );
  62.     /* Connect the activation of the selector to a redefining of the PL */
  63.     CONNECT( selector, activated( int ), rightPanel, setRoot( int ) );
  64.     /* Connect the activated() to the rootChanged() signal
  65.        This will be used by StandardPLPanel to setCurrentRootId, that will
  66.        change the label of the addButton  */
  67.     connect( selector, SIGNAL( activated( int ) ),
  68.              this, SIGNAL( rootChanged( int ) ) );
  69.     /* Forward removal requests from the selector to the main panel */
  70.     CONNECT( qobject_cast<PLSelector *>( selector )->model,
  71.              shouldRemove( int ),
  72.              qobject_cast<StandardPLPanel *>( rightPanel ), removeItem( int ) );
  73.     emit rootChanged( p_root->i_id );
  74.     /* Add the two sides of the QSplitter */
  75.     addWidget( leftW );
  76.     addWidget( rightPanel );
  77.     QList<int> sizeList;
  78.     sizeList << 180 << 420 ;
  79.     setSizes( sizeList );
  80.     //setSizePolicy( QSizePolicy::Preferred, QSizePolicy::Expanding );
  81.     setStretchFactor( 0, 0 );
  82.     setStretchFactor( 1, 3 );
  83.     leftW->setMaximumWidth( 250 );
  84.     setCollapsible( 1, false );
  85.     /* In case we want to keep the splitter informations */
  86.     // components shall never write there setting to a fixed location, may infer
  87.     // with other uses of the same component...
  88.     // getSettings()->beginGroup( "playlist" );
  89.     getSettings()->beginGroup("Playlist");
  90.     restoreState( getSettings()->value("splitterSizes").toByteArray());
  91.     getSettings()->endGroup();
  92.     setAcceptDrops( true );
  93.     setWindowTitle( qtr( "Playlist" ) );
  94.     setWindowIcon( QApplication::windowIcon() );
  95. }
  96. PlaylistWidget::~PlaylistWidget()
  97. {
  98.     getSettings()->beginGroup("Playlist");
  99.     getSettings()->setValue( "splitterSizes", saveState() );
  100.     getSettings()->endGroup();
  101.     msg_Dbg( p_intf, "Playlist Destroyed" );
  102. }
  103. void PlaylistWidget::dropEvent( QDropEvent *event )
  104. {
  105.     if( p_intf->p_sys->p_mi )
  106.         p_intf->p_sys->p_mi->dropEventPlay( event, false );
  107. }
  108. void PlaylistWidget::dragEnterEvent( QDragEnterEvent *event )
  109. {
  110.     event->acceptProposedAction();
  111. }
  112. void PlaylistWidget::closeEvent( QCloseEvent *event )
  113. {
  114.     if( THEDP->isDying() )
  115.     {
  116.         /* FIXME is it needed ? */
  117.         close();
  118.     }
  119.     else
  120.     {
  121.         if( p_intf->p_sys->p_mi )
  122.             p_intf->p_sys->p_mi->togglePlaylist();
  123.     }
  124.     event->accept();
  125. }