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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * mediainfo.cpp : Information about an item
  3.  ****************************************************************************
  4.  * Copyright (C) 2006-2008 the VideoLAN team
  5.  * $Id: 41a5ef34050cd8250814f045e798cbebd65e2664 $
  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 "dialogs/mediainfo.hpp"
  28. #include "input_manager.hpp"
  29. #include <QTabWidget>
  30. #include <QGridLayout>
  31. #include <QLineEdit>
  32. #include <QLabel>
  33. MediaInfoDialog *MediaInfoDialog::instance = NULL;
  34. /* This Dialog has two main modes:
  35.     - General Mode that shows the current Played item, and the stats
  36.     - Single mode that shows the info on ONE SINGLE Item on the playlist
  37.    Please be Careful of not breaking one the modes behaviour... */
  38. MediaInfoDialog::MediaInfoDialog( intf_thread_t *_p_intf,
  39.                                   input_item_t *p_item ) :
  40.                                   QVLCFrame( _p_intf )
  41. {
  42.     isMainInputInfo = ( p_item == NULL );
  43.     setWindowTitle( qtr( "Media Information" ) );
  44.     /* TabWidgets and Tabs creation */
  45.     infoTabW = new QTabWidget;
  46.     MP = new MetaPanel( infoTabW, p_intf );
  47.     infoTabW->addTab( MP, qtr( "&General" ) );
  48.     EMP = new ExtraMetaPanel( infoTabW, p_intf );
  49.     infoTabW->addTab( EMP, qtr( "&Extra Metadata" ) );
  50.     IP = new InfoPanel( infoTabW, p_intf );
  51.     infoTabW->addTab( IP, qtr( "&Codec Details" ) );
  52.     if( isMainInputInfo )
  53.     {
  54.         ISP = new InputStatsPanel( infoTabW, p_intf );
  55.         infoTabW->addTab( ISP, qtr( "&Statistics" ) );
  56.     }
  57.     QGridLayout *layout = new QGridLayout( this );
  58.     /* No need to use a QDialogButtonBox here */
  59.     saveMetaButton = new QPushButton( qtr( "&Save Metadata" ) );
  60.     saveMetaButton->hide();
  61.     QPushButton *closeButton = new QPushButton( qtr( "&Close" ) );
  62.     closeButton->setDefault( true );
  63.     QLabel *uriLabel = new QLabel( qtr( "Location:" ) );
  64.     QLineEdit *uriLine = new QLineEdit;
  65.     layout->addWidget( infoTabW, 0, 0, 1, 8 );
  66.     layout->addWidget( uriLabel, 1, 0, 1, 1 );
  67.     layout->addWidget( uriLine, 1, 1, 1, 7 );
  68.     layout->addWidget( saveMetaButton, 2, 6 );
  69.     layout->addWidget( closeButton, 2, 7 );
  70.     BUTTONACT( closeButton, close() );
  71.     /* The tabs buttons are shown in the main dialog for space and cosmetics */
  72.     BUTTONACT( saveMetaButton, saveMeta() );
  73.     /* Let the MetaData Panel update the URI */
  74.     CONNECT( MP, uriSet( const QString& ), uriLine, setText( const QString& ) );
  75.     CONNECT( MP, editing(), saveMetaButton, show() );
  76.     /* Display the buttonBar according to the Tab selected */
  77.     CONNECT( infoTabW, currentChanged( int ), this, updateButtons( int ) );
  78.     /* If using the General Mode */
  79.     if( isMainInputInfo )
  80.     {
  81.         msg_Dbg( p_intf, "Using a general info windows" );
  82.         /**
  83.          * Connects on the various signals of input_Manager
  84.          * For the currently playing element
  85.          **/
  86.         CONNECT( THEMIM->getIM(), infoChanged( input_item_t* ),
  87.                  IP, update( input_item_t* ) );
  88.         CONNECT( THEMIM->getIM(), metaChanged( input_item_t* ),
  89.                  MP, update( input_item_t* ) );
  90.         CONNECT( THEMIM->getIM(), metaChanged( input_item_t* ),
  91.                  EMP, update( input_item_t* ) );
  92.         CONNECT( THEMIM->getIM(), statisticsUpdated( input_item_t* ),
  93.                  ISP, update( input_item_t* ) );
  94.         if( THEMIM->getInput() )
  95.             p_item = input_GetItem( THEMIM->getInput() );
  96.     }
  97.     else
  98.         msg_Dbg( p_intf, "Using an item specific info windows" );
  99.     /* Call update at start, so info is filled up at begginning */
  100.     if( p_item )
  101.         updateAllTabs( p_item );
  102.     readSettings( "Mediainfo", QSize( 600 , 480 ) );
  103. }
  104. MediaInfoDialog::~MediaInfoDialog()
  105. {
  106.     writeSettings( "Mediainfo" );
  107. }
  108. void MediaInfoDialog::showTab( int i_tab = 0 )
  109. {
  110.     infoTabW->setCurrentIndex( i_tab );
  111.     show();
  112. }
  113. void MediaInfoDialog::saveMeta()
  114. {
  115.     MP->saveMeta();
  116.     saveMetaButton->hide();
  117. }
  118. void MediaInfoDialog::updateAllTabs( input_item_t *p_item )
  119. {
  120.     IP->update( p_item );
  121.     MP->update( p_item );
  122.     EMP->update( p_item );
  123.     if( isMainInputInfo ) ISP->update( p_item );
  124. }
  125. void MediaInfoDialog::clearAllTabs()
  126. {
  127.     IP->clear();
  128.     MP->clear();
  129.     EMP->clear();
  130.     if( isMainInputInfo ) ISP->clear();
  131. }
  132. void MediaInfoDialog::close()
  133. {
  134.     hide();
  135.     /* if dialog is closed, revert editing if not saved */
  136.     if( MP->isInEditMode() )
  137.     {
  138.         MP->setEditMode( false );
  139.         updateButtons( 0 );
  140.     }
  141.     if( !isMainInputInfo )
  142.         deleteLater();
  143. }
  144. void MediaInfoDialog::updateButtons( int i_tab )
  145. {
  146.     if( MP->isInEditMode() && i_tab == 0 )
  147.         saveMetaButton->show();
  148.     else
  149.         saveMetaButton->hide();
  150. }