]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/sout.cpp
UI: prefix/namespace resources for better maintainability
[vlc] / modules / gui / qt4 / dialogs / sout.cpp
1 /*****************************************************************************
2  * sout.cpp : Stream output dialog ( old-style )
3  ****************************************************************************
4  * Copyright (C) 2007-2009 the VideoLAN team
5  *
6  * $Id$
7  *
8  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
9  *          Jean-Baptiste Kempf <jb@videolan.org>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * ( at your option ) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24  *****************************************************************************/
25
26 #ifdef HAVE_CONFIG_H
27 # include "config.h"
28 #endif
29
30 #include "dialogs/sout.hpp"
31 #include "util/qt_dirs.hpp"
32 #include "components/sout/sout_widgets.hpp"
33
34 #include <QString>
35 #include <QFileDialog>
36 #include <QToolButton>
37
38 SoutDialog::SoutDialog( QWidget *parent, intf_thread_t *_p_intf, const QString& inputMRL )
39            : QVLCDialog( parent,  _p_intf )
40 {
41     setWindowTitle( qtr( "Stream Output" ) );
42
43     /* UI stuff */
44     ui.setupUi( this );
45     ui.inputBox->setMRL( inputMRL );
46     ui.helpEdit->setPlainText( qtr("This dialog will allow you to stream or "
47             "convert your media for use locally, on your private network, "
48             "or on the Internet.\n"
49             "You should start by checking that source matches what you want "
50             "your input to be and then press the \"Next\" "
51             "button to continue.\n") );
52
53     ui.mrlEdit->setToolTip ( qtr( "Stream output string.\n"
54                 "This is automatically generated "
55                  "when you change the above settings,\n"
56                  "but you can change it manually." ) ) ;
57
58 #if 0
59     /* This needs Qt4.5 to be cool */
60     ui.destTab->setTabsClosable( true );
61 #else
62     closeTabButton = new QToolButton( this );
63     ui.destTab->setCornerWidget( closeTabButton );
64     closeTabButton->hide();
65     closeTabButton->setAutoRaise( true );
66     closeTabButton->setIcon( QIcon( ":/toolbar/clear" ) );
67     BUTTONACT( closeTabButton, closeTab() );
68 #endif
69     CONNECT( ui.destTab, currentChanged( int ), this, tabChanged( int ) );
70     ui.destTab->setTabIcon( 0, QIcon( ":/buttons/playlist/playlist_add" ) );
71
72     ui.destBox->addItem( qtr( "File" ) );
73     ui.destBox->addItem( "HTTP" );
74     ui.destBox->addItem( "MMS" );
75     ui.destBox->addItem( "UDP" );
76     ui.destBox->addItem( "RTP" );
77     ui.destBox->addItem( "IceCast" );
78
79     BUTTONACT( ui.addButton, addDest() );
80
81 //     /* Connect everything to the updateMRL function */
82 #define CB( x ) CONNECT( ui.x, toggled( bool ), this, updateMRL() );
83 #define CT( x ) CONNECT( ui.x, textChanged( const QString& ), this, updateMRL() );
84 #define CS( x ) CONNECT( ui.x, valueChanged( int ), this, updateMRL() );
85 #define CC( x ) CONNECT( ui.x, currentIndexChanged( int ), this, updateMRL() );
86
87     /* Misc */
88     CB( soutAll ); CB( soutKeep );  CS( ttl ); CT( sapName ); CT( sapGroup );
89     CB( localOutput );
90     CONNECT( ui.profileSelect, optionsChanged(), this, updateMRL() );
91
92     okButton = new QPushButton( qtr( "&Stream" ) );
93     QPushButton *cancelButton = new QPushButton( qtr( "&Cancel" ) );
94
95     okButton->setDefault( true );
96     ui.acceptButtonBox->addButton( okButton, QDialogButtonBox::AcceptRole );
97     ui.acceptButtonBox->addButton( cancelButton, QDialogButtonBox::RejectRole );
98
99     BUTTONACT( okButton, ok() );
100     BUTTONACT( cancelButton, cancel() );
101
102     BUTTONACT( ui.nextButton, next() );
103     BUTTONACT( ui.nextButton2, next() );
104     BUTTONACT( ui.prevButton, prev() );
105     BUTTONACT( ui.prevButton2, prev() );
106
107 #undef CC
108 #undef CS
109 #undef CT
110 #undef CB
111 }
112
113 void SoutDialog::next()
114 {
115     ui.toolBox->setCurrentIndex( ui.toolBox->currentIndex() + 1 );
116 }
117
118 void SoutDialog::prev()
119 {
120     ui.toolBox->setCurrentIndex( ui.toolBox->currentIndex() - 1 );
121 }
122
123 void SoutDialog::tabChanged( int i )
124 {
125     closeTabButton->setVisible( (i != 0) );
126 }
127
128 void SoutDialog::closeTab()
129 {
130     int i = ui.destTab->currentIndex();
131     if( i == 0 ) return;
132
133     QWidget *temp = ui.destTab->currentWidget();
134     ui.destTab->removeTab( i );
135     delete temp;
136     updateMRL();
137 }
138
139 void SoutDialog::addDest( )
140 {
141     int index;
142     switch( ui.destBox->currentIndex() )
143     {
144         case 0:
145             {
146                 FileDestBox *fdb = new FileDestBox( this );
147                 index = ui.destTab->addTab( fdb, "File" );
148                 CONNECT( fdb, mrlUpdated(), this, updateMRL() );
149             }
150             break;
151         case 1:
152             {
153                 HTTPDestBox *hdb = new HTTPDestBox( this );
154                 index = ui.destTab->addTab( hdb, "HTTP" );
155                 CONNECT( hdb, mrlUpdated(), this, updateMRL() );
156             }
157             break;
158         case 2:
159             {
160                 MMSHDestBox *mdb = new MMSHDestBox( this );
161                 index = ui.destTab->addTab( mdb, "MMSH" );
162                 CONNECT( mdb, mrlUpdated(), this, updateMRL() );
163             }
164             break;
165         case 3:
166             {
167                 UDPDestBox *udb = new UDPDestBox( this );
168                 index = ui.destTab->addTab( udb, "UDP" );
169                 CONNECT( udb, mrlUpdated(), this, updateMRL() );
170             }
171             break;
172         case 4:
173             {
174                 RTPDestBox *rdb = new RTPDestBox( this );
175                 index = ui.destTab->addTab( rdb, "RTP" );
176                 CONNECT( rdb, mrlUpdated(), this, updateMRL() );
177             }
178             break;
179         case 5:
180             {
181                 ICEDestBox *idb = new ICEDestBox( this );
182                 index = ui.destTab->addTab( idb, "Icecast" );
183                 CONNECT( idb, mrlUpdated(), this, updateMRL() );
184             }
185     }
186
187     ui.destTab->setCurrentIndex( index );
188     updateMRL();
189 }
190
191 void SoutDialog::ok()
192 {
193     mrl = ui.mrlEdit->toPlainText();
194     accept();
195 }
196
197 void SoutDialog::cancel()
198 {
199     mrl.clear();
200     reject();
201 }
202
203 void SoutDialog::updateMRL()
204 {
205     QString qs_mux = ui.profileSelect->getMux();
206
207     SoutMrl smrl( ":sout=#" );
208     if( !ui.profileSelect->getTranscode().isEmpty() && ui.transcodeBox->isChecked() )
209     {
210         smrl.begin( ui.profileSelect->getTranscode() );
211         smrl.end();
212     }
213
214     bool multi = false;
215
216     if( ui.destTab->count() >= 3 ||
217         ( ui.destTab->count() == 2 && ui.localOutput->isChecked() ) )
218         multi = true;
219
220     if( multi )
221         smrl.begin( "duplicate" );
222
223     for( int i = 1; i < ui.destTab->count(); i++ )
224     {
225         VirtualDestBox *vdb = qobject_cast<VirtualDestBox *>(ui.destTab->widget( i ));
226         QString tempMRL = vdb->getMRL( qs_mux );
227
228         if( tempMRL.isEmpty() ) continue;
229         if( multi )
230             smrl.option( "dst", tempMRL );
231         else
232         {
233             smrl.begin( tempMRL);
234             smrl.end();
235         }
236     }
237     if( ui.localOutput->isChecked() )
238     {
239         if( multi )
240             smrl.option( "dst", "display" );
241         else
242         {
243             smrl.begin( "display" );
244             smrl.end();
245         }
246     }
247
248     if ( multi ) smrl.end();
249
250     mrl = smrl.getMrl();
251
252     /* FIXME, deal with SAP
253     sout.b_sap = ui.sap->isChecked();
254     sout.psz_group = strdup( qtu( ui.sapGroup->text() ) );
255     sout.psz_name = strdup( qtu( ui.sapName->text() ) ); */
256
257     if( ui.soutAll->isChecked() )  mrl.append( " :sout-all" );
258
259     if( ui.soutKeep->isChecked() ) mrl.append( " :sout-keep" );
260
261     ui.mrlEdit->setPlainText( mrl );
262 }
263