]> git.sesse.net Git - vlc/blobdiff - modules/gui/qt4/dialogs/gototime.cpp
Added window roles for X11
[vlc] / modules / gui / qt4 / dialogs / gototime.cpp
index b3fb57ad26098712b1544d90c92dbb6c300933a6..5832acd52ffa377fe6011ce99a430c8a974f1832 100644 (file)
@@ -1,8 +1,8 @@
 /*****************************************************************************
  * GotoTime.cpp : GotoTime and About dialogs
  ****************************************************************************
- * Copyright (C) 2006 the VideoLAN team
- * $Id: Messages.cpp 16024 2006-07-13 13:51:05Z xtophe $
+ * Copyright (C) 2007 the VideoLAN team
+ * $Id$
  *
  * Authors: Jean-Baptiste Kempf <jb (at) videolan.org>
  *
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 #include "dialogs/gototime.hpp"
 
-#include "dialogs_provider.hpp"
-#include "util/qvlcframe.hpp"
-#include "qt4.hpp"
+#include "input_manager.hpp"
 
 #include <QTabWidget>
-#include <QFile>
 #include <QLabel>
 #include <QTimeEdit>
 #include <QGroupBox>
+#include <QDialogButtonBox>
 
 GotoTimeDialog *GotoTimeDialog::instance = NULL;
 
-GotoTimeDialog::GotoTimeDialog( intf_thread_t *_p_intf) :  QVLCFrame( _p_intf )
+GotoTimeDialog::GotoTimeDialog( QWidget *parent, intf_thread_t *_p_intf)
+               : QVLCDialog( parent, _p_intf )
 {
+    setWindowFlags( Qt::Tool );
     setWindowTitle( qtr( "Go to Time" ) );
-    resize( 250, 180 );
+    setWindowRole( "vlc-goto-time" );
 
     QGridLayout *mainLayout = new QGridLayout( this );
+    mainLayout->setSizeConstraint( QLayout::SetFixedSize );
 
-    QPushButton *closeButton = new QPushButton( qtr( "&Close" ) );
+    QPushButton *gotoButton = new QPushButton( qtr( "&Go" ) );
+    QPushButton *cancelButton = new QPushButton( qtr( "&Cancel" ) );
+    QDialogButtonBox *buttonBox = new QDialogButtonBox;
 
-    QGroupBox *timeGroupBox = new QGroupBox( "Time" );
+    gotoButton->setDefault( true );
+    buttonBox->addButton( gotoButton, QDialogButtonBox::AcceptRole );
+    buttonBox->addButton( cancelButton, QDialogButtonBox::RejectRole );
+
+    QGroupBox *timeGroupBox = new QGroupBox;
     QGridLayout *boxLayout = new QGridLayout( timeGroupBox );
 
-    QLabel *timeIntro = new
-        QLabel( "Enter below the desired time you want to go in the media." );
+    QLabel *timeIntro = new QLabel( qtr( "Go to time" ) + ":" );
     timeIntro->setWordWrap( true );
     timeIntro->setAlignment( Qt::AlignCenter );
 
@@ -60,11 +69,11 @@ GotoTimeDialog::GotoTimeDialog( intf_thread_t *_p_intf) :  QVLCFrame( _p_intf )
     QLabel *helpFormat = new QLabel( timeEdit->displayFormat() );
     helpFormat->setSizePolicy( QSizePolicy::Minimum, QSizePolicy::Preferred );
 
-    QSpacerItem *spacerBox = new QSpacerItem(20, 10, QSizePolicy::Minimum,
-                                        QSizePolicy::Fixed);
+    QSpacerItem *spacerBox = new QSpacerItem( 20, 10, QSizePolicy::Minimum,
+                                        QSizePolicy::Fixed );
 
-    QSpacerItem *spacerItem = new QSpacerItem(20, 5, QSizePolicy::Minimum,
-                                        QSizePolicy::Expanding);
+    QSpacerItem *spacerItem = new QSpacerItem( 20, 3, QSizePolicy::Minimum,
+                                        QSizePolicy::Expanding );
 
     boxLayout->addWidget( timeIntro, 0, 0, 1, 2 );
     boxLayout->addItem( spacerBox, 1, 0, 1, 2 );
@@ -73,17 +82,30 @@ GotoTimeDialog::GotoTimeDialog( intf_thread_t *_p_intf) :  QVLCFrame( _p_intf )
 
     mainLayout->addWidget( timeGroupBox, 0, 0, 1, 4 );
     mainLayout->addItem( spacerItem, 1, 0 );
-    mainLayout->addWidget( closeButton, 2, 3 );
+    mainLayout->addWidget( buttonBox, 2, 3 );
 
-    BUTTONACT( closeButton, close() );
+    BUTTONACT( gotoButton, close() );
+    BUTTONACT( cancelButton, cancel() );
 }
 
 GotoTimeDialog::~GotoTimeDialog()
 {
 }
 
-void GotoTimeDialog::close()
+void GotoTimeDialog::cancel()
 {
+    timeEdit->setTime( QTime( 0, 0, 0) );
+    toggleVisible();
+}
 
-    this->toggleVisible();
+void GotoTimeDialog::close()
+{
+    if ( THEMIM->getIM()->hasInput() )
+    {
+        int64_t i_time = (int64_t)
+            ( QTime( 0, 0, 0 ).msecsTo( timeEdit->time() ) ) * 1000;
+        var_SetTime( THEMIM->getInput(), "time", i_time );
+    }
+    toggleVisible();
+    timeEdit->setTime( QTime( 0, 0, 0) );
 }