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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * GotoTime.cpp : GotoTime and About dialogs
  3.  ****************************************************************************
  4.  * Copyright (C) 2007 the VideoLAN team
  5.  * $Id: 78ecbc1e84e4e7b55dbed804648ba2abe775c442 $
  6.  *
  7.  * Authors: Jean-Baptiste Kempf <jb (at) videolan.org>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. #ifdef HAVE_CONFIG_H
  24. # include "config.h"
  25. #endif
  26. #include "dialogs/gototime.hpp"
  27. #include "input_manager.hpp"
  28. #include <QTabWidget>
  29. #include <QLabel>
  30. #include <QTimeEdit>
  31. #include <QGroupBox>
  32. #include <QDialogButtonBox>
  33. GotoTimeDialog *GotoTimeDialog::instance = NULL;
  34. GotoTimeDialog::GotoTimeDialog( QWidget *parent, intf_thread_t *_p_intf)
  35.                : QVLCDialog( parent, _p_intf )
  36. {
  37.     setWindowFlags( Qt::Tool );
  38.     setWindowTitle( qtr( "Go to Time" ) );
  39.     QGridLayout *mainLayout = new QGridLayout( this );
  40.     mainLayout->setSizeConstraint( QLayout::SetFixedSize );
  41.     QPushButton *gotoButton = new QPushButton( qtr( "&Go" ) );
  42.     QPushButton *cancelButton = new QPushButton( qtr( "&Cancel" ) );
  43.     QDialogButtonBox *buttonBox = new QDialogButtonBox;
  44.     gotoButton->setDefault( true );
  45.     buttonBox->addButton( gotoButton, QDialogButtonBox::AcceptRole );
  46.     buttonBox->addButton( cancelButton, QDialogButtonBox::RejectRole );
  47.     QGroupBox *timeGroupBox = new QGroupBox;
  48.     QGridLayout *boxLayout = new QGridLayout( timeGroupBox );
  49.     QLabel *timeIntro = new QLabel( qtr( "Go to time" ) + ":" );
  50.     timeIntro->setWordWrap( true );
  51.     timeIntro->setAlignment( Qt::AlignCenter );
  52.     timeEdit = new QTimeEdit();
  53.     timeEdit->setDisplayFormat( "hh : mm : ss" );
  54.     timeEdit->setAlignment( Qt::AlignRight );
  55.     timeEdit->setSizePolicy( QSizePolicy::Expanding, QSizePolicy::Minimum );
  56.     QLabel *helpFormat = new QLabel( timeEdit->displayFormat() );
  57.     helpFormat->setSizePolicy( QSizePolicy::Minimum, QSizePolicy::Preferred );
  58.     QSpacerItem *spacerBox = new QSpacerItem( 20, 10, QSizePolicy::Minimum,
  59.                                         QSizePolicy::Fixed );
  60.     QSpacerItem *spacerItem = new QSpacerItem( 20, 3, QSizePolicy::Minimum,
  61.                                         QSizePolicy::Expanding );
  62.     boxLayout->addWidget( timeIntro, 0, 0, 1, 2 );
  63.     boxLayout->addItem( spacerBox, 1, 0, 1, 2 );
  64.     boxLayout->addWidget( timeEdit, 2, 0, 1, 1 );
  65.     boxLayout->addWidget( helpFormat, 2, 1, 1, 1 );
  66.     mainLayout->addWidget( timeGroupBox, 0, 0, 1, 4 );
  67.     mainLayout->addItem( spacerItem, 1, 0 );
  68.     mainLayout->addWidget( buttonBox, 2, 3 );
  69.     BUTTONACT( gotoButton, close() );
  70.     BUTTONACT( cancelButton, cancel() );
  71. }
  72. GotoTimeDialog::~GotoTimeDialog()
  73. {
  74. }
  75. void GotoTimeDialog::cancel()
  76. {
  77.     timeEdit->setTime( QTime( 0, 0, 0) );
  78.     toggleVisible();
  79. }
  80. void GotoTimeDialog::close()
  81. {
  82.     if ( THEMIM->getIM()->hasInput() )
  83.     {
  84.         int64_t i_time = (int64_t)
  85.             ( QTime( 0, 0, 0 ).msecsTo( timeEdit->time() ) ) * 1000;
  86.         var_SetTime( THEMIM->getInput(), "time", i_time );
  87.     }
  88.     toggleVisible();
  89.     timeEdit->setTime( QTime( 0, 0, 0) );
  90. }