]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/convert.cpp
Added window roles for X11
[vlc] / modules / gui / qt4 / dialogs / convert.cpp
1 /*****************************************************************************
2  * Convert.cpp : Convertion dialogs
3  ****************************************************************************
4  * Copyright (C) 2009 the VideoLAN team
5  * $Id$
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
24 #ifdef HAVE_CONFIG_H
25 # include "config.h"
26 #endif
27
28 #include "dialogs/sout.hpp"
29 #include "dialogs/convert.hpp"
30 #include "components/sout/sout_widgets.hpp"
31
32 #include "util/qt_dirs.hpp"
33
34 #include <QLabel>
35 #include <QGroupBox>
36 #include <QDialogButtonBox>
37 #include <QFileDialog>
38 #include <QCheckBox>
39
40 ConvertDialog::ConvertDialog( QWidget *parent, intf_thread_t *_p_intf,
41                               const QString& inputMRL )
42               : QVLCDialog( parent, _p_intf )
43 {
44     setWindowTitle( qtr( "Convert" ) );
45     setWindowRole( "vlc-convert" );
46
47     QGridLayout *mainLayout = new QGridLayout( this );
48     SoutInputBox *inputBox = new SoutInputBox( this );
49     inputBox->setMRL( inputMRL );
50     mainLayout->addWidget( inputBox, 0, 0, 1, -1  );
51
52     /**
53      * Destination
54      **/
55     QGroupBox *destBox = new QGroupBox( qtr( "Destination" ) );
56     QGridLayout *destLayout = new QGridLayout( destBox );
57
58     QLabel *destLabel = new QLabel( qtr( "Destination file:" ) );
59     destLayout->addWidget( destLabel, 0, 0);
60
61     fileLine = new QLineEdit;
62     fileLine->setMinimumWidth( 300 );
63     fileLine->setFocus( Qt::ActiveWindowFocusReason );
64     destLabel->setBuddy( fileLine );
65
66     QPushButton *fileSelectButton = new QPushButton( qtr( "Browse" ) );
67     destLayout->addWidget( fileLine, 0, 1 );
68     destLayout->addWidget( fileSelectButton, 0, 2);
69     BUTTONACT( fileSelectButton, fileBrowse() );
70
71     displayBox = new QCheckBox( qtr( "Display the output" ) );
72     displayBox->setToolTip( qtr( "This display the resulting media, but can "
73                                "slow things down." ) );
74     destLayout->addWidget( displayBox, 2, 0, 1, -1 );
75
76     mainLayout->addWidget( destBox, 1, 0, 1, -1  );
77
78
79     /* Profile Editor */
80     QGroupBox *settingBox = new QGroupBox( qtr( "Settings" ) );
81     QGridLayout *settingLayout = new QGridLayout( settingBox );
82
83     profile = new VLCProfileSelector( this );
84     settingLayout->addWidget( profile, 0, 0, 1, -1 );
85
86     deinterBox = new QCheckBox( qtr( "Deinterlace" ) );
87     settingLayout->addWidget( deinterBox, 1, 0 );
88
89     dumpBox = new QCheckBox( qtr( "Dump raw input" ) );
90     settingLayout->addWidget( dumpBox, 1, 1 );
91
92     mainLayout->addWidget( settingBox, 3, 0, 1, -1  );
93
94     /* Buttons */
95     QPushButton *okButton = new QPushButton( qtr( "&Start" ) );
96     QPushButton *cancelButton = new QPushButton( qtr( "&Cancel" ) );
97     QDialogButtonBox *buttonBox = new QDialogButtonBox;
98
99     okButton->setDefault( true );
100     buttonBox->addButton( okButton, QDialogButtonBox::AcceptRole );
101     buttonBox->addButton( cancelButton, QDialogButtonBox::RejectRole );
102
103     mainLayout->addWidget( buttonBox, 5, 3 );
104
105     BUTTONACT( okButton, close() );
106     BUTTONACT( cancelButton, cancel() );
107 }
108
109 void ConvertDialog::fileBrowse()
110 {
111     QString fileName = QFileDialog::getSaveFileName( this, qtr( "Save file..." ),
112             "",
113  qtr( "Containers (*.ps *.ts *.mpg *.ogg *.asf *.mp4 *.mov *.wav *.raw *.flv)" ) );
114     fileLine->setText( toNativeSeparators( fileName ) );
115 }
116
117 void ConvertDialog::cancel()
118 {
119     reject();
120 }
121
122 void ConvertDialog::close()
123 {
124     hide();
125
126     if( dumpBox->isChecked() )
127     {
128         mrl = "demux=dump :demuxdump-file=" + fileLine->text();
129     }
130     else
131     {
132         mrl = "sout=#" + profile->getTranscode();
133         if( deinterBox->isChecked() )
134         {
135             mrl.remove( '}' );
136             mrl += ",deinterlace}";
137         }
138         mrl += ":duplicate{";
139         if( displayBox->isChecked() ) mrl += "dst=display,";
140         mrl += "dst=std{access=file,mux=" + profile->getMux() +
141             ",dst='" + fileLine->text() + "'}";
142     }
143
144     msg_Warn( p_intf, "Transcode MRL: %s", qtu( mrl ) );
145     accept();
146 }
147