]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/open.cpp
Qt4 - Open Disc: handle dvdsimple
[vlc] / modules / gui / qt4 / components / open.cpp
1 /*****************************************************************************
2  * open.cpp : Panels for the open dialogs
3  ****************************************************************************
4  * Copyright (C) 2006-2007 the VideoLAN team
5  * $Id$
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
25
26 #include "qt4.hpp"
27 #include "components/open.hpp"
28 #include "dialogs/open.hpp"
29 #include "dialogs_provider.hpp"
30 #include "util/customwidgets.hpp"
31
32 #include <QFileDialog>
33 #include <QDialogButtonBox>
34 #include <QLineEdit>
35
36 /**************************************************************************
37  * File open
38  **************************************************************************/
39 FileOpenPanel::FileOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) :
40                                 OpenPanel( _parent, _p_intf )
41 {
42     /* Classic UI Setup */
43     ui.setupUi( this );
44
45     /* Use a QFileDialog and customize it because we don't want to
46        rewrite it all. Be careful to your eyes cause there are a few hacks.
47        Be very careful and test correctly when you modify this. */
48
49     /* Set Filters for file selection */
50     QString fileTypes = "";
51     ADD_FILTER_MEDIA( fileTypes );
52     ADD_FILTER_VIDEO( fileTypes );
53     ADD_FILTER_AUDIO( fileTypes );
54     ADD_FILTER_PLAYLIST( fileTypes );
55     ADD_FILTER_ALL( fileTypes );
56     fileTypes.replace(QString(";*"), QString(" *"));
57
58     // Make this QFileDialog a child of tempWidget from the ui.
59     dialogBox = new FileOpenBox( ui.tempWidget, NULL,
60             qfu( p_intf->p_libvlc->psz_homedir ), fileTypes );
61 /*    dialogBox->setFileMode( QFileDialog::ExistingFiles );*/
62     dialogBox->setAcceptMode( QFileDialog::AcceptOpen );
63
64     /* We don't want to see a grip in the middle of the window, do we? */
65     dialogBox->setSizeGripEnabled( false );
66     dialogBox->setToolTip( qtr( "Select one or multiple files, or a folder" ));
67
68     // Add it to the layout
69     ui.gridLayout->addWidget( dialogBox, 0, 0, 1, 3 );
70
71     // But hide the two OK/Cancel buttons. Enable them for debug.
72     QDialogButtonBox *fileDialogAcceptBox =
73                         findChildren<QDialogButtonBox*>()[0];
74     fileDialogAcceptBox->hide();
75
76     /* Ugly hacks to get the good Widget */
77     //This lineEdit is the normal line in the fileDialog.
78     lineFileEdit = findChildren<QLineEdit*>()[3];
79     lineFileEdit->hide();
80
81     /* Make a list of QLabel inside the QFileDialog to access the good ones */
82     QList<QLabel *> listLabel = findChildren<QLabel*>();
83
84     /* Hide the FileNames one. Enable it for debug */
85     listLabel[4]->hide();
86     /* Change the text that was uncool in the usual box */
87     listLabel[5]->setText( qtr( "Filter:" ) );
88
89     // Hide the subtitles control by default.
90     ui.subFrame->hide();
91
92     /* Build the subs size combo box */
93     module_config_t *p_item =
94         config_FindConfig( VLC_OBJECT(p_intf), "freetype-rel-fontsize" );
95     if( p_item )
96     {
97         for( int i_index = 0; i_index < p_item->i_list; i_index++ )
98         {
99             ui.sizeSubComboBox->addItem(
100                 qfu( p_item->ppsz_list_text[i_index] ),
101                 QVariant( p_item->pi_list[i_index] ) );
102             if( p_item->value.i == p_item->pi_list[i_index] )
103             {
104                 ui.sizeSubComboBox->setCurrentIndex( i_index );
105             }
106         }
107     }
108
109     /* Build the subs align combo box */
110     p_item = config_FindConfig( VLC_OBJECT(p_intf), "subsdec-align" );
111     if( p_item )
112     {
113         for( int i_index = 0; i_index < p_item->i_list; i_index++ )
114         {
115             ui.alignSubComboBox->addItem(
116                 qfu( p_item->ppsz_list_text[i_index] ),
117                 QVariant( p_item->pi_list[i_index] ) );
118             if( p_item->value.i == p_item->pi_list[i_index] )
119             {
120                 ui.alignSubComboBox->setCurrentIndex( i_index );
121             }
122         }
123     }
124
125     BUTTONACT( ui.subBrowseButton, browseFileSub() );
126     BUTTONACT( ui.subCheckBox, toggleSubtitleFrame());
127
128     CONNECT( ui.fileInput, editTextChanged(QString ), this, updateMRL());
129     CONNECT( ui.subInput, editTextChanged(QString ), this, updateMRL());
130     CONNECT( ui.alignSubComboBox, currentIndexChanged(int), this, updateMRL());
131     CONNECT( ui.sizeSubComboBox, currentIndexChanged(int), this, updateMRL());
132     CONNECT( lineFileEdit, textChanged( QString ), this, browseFile());
133 }
134
135 FileOpenPanel::~FileOpenPanel()
136 {}
137
138 QStringList FileOpenPanel::browse(QString help)
139 {
140     return THEDP->showSimpleOpen( help );
141 }
142
143 void FileOpenPanel::browseFile()
144 {
145     QString fileString = "";
146     foreach( QString file, dialogBox->selectedFiles() ) {
147          fileString += "\"" + file + "\" ";
148     }
149     ui.fileInput->setEditText( fileString );
150     updateMRL();
151 }
152
153 void FileOpenPanel::browseFileSub()
154 {
155     // FIXME Handle selection of more than one subtitles file
156     QStringList files = THEDP->showSimpleOpen( qtr("Open subtitles file"),
157                             EXT_FILTER_SUBTITLE,
158                             dialogBox->directory().absolutePath() );
159     if( files.isEmpty() ) return;
160     ui.subInput->setEditText( files.join(" ") );
161     updateMRL();
162 }
163
164 void FileOpenPanel::updateMRL()
165 {
166     QString mrl = ui.fileInput->currentText();
167
168     if( ui.subCheckBox->isChecked() ) {
169         mrl.append( " :sub-file=" + ui.subInput->currentText() );
170         int align = ui.alignSubComboBox->itemData( ui.alignSubComboBox->currentIndex() ).toInt();
171         mrl.append( " :subsdec-align=" + QString().setNum( align ) );
172         int size = ui.sizeSubComboBox->itemData( ui.sizeSubComboBox->currentIndex() ).toInt();
173         mrl.append( " :freetype-rel-fontsize=" + QString().setNum( size ) );
174     }
175     emit mrlUpdated( mrl );
176     emit methodChanged( "file-caching" );
177 }
178
179
180 /* Function called by Open Dialog when clicke on Play/Enqueue */
181 void FileOpenPanel::accept()
182 {
183     ui.fileInput->addItem(ui.fileInput->currentText());
184     if ( ui.fileInput->count() > 8 ) ui.fileInput->removeItem(0);
185 }
186
187 void FileOpenBox::accept()
188 {
189     OpenDialog::getInstance( NULL, NULL )->play();
190 }
191
192 /* Function called by Open Dialog when clicked on cancel */
193 void FileOpenPanel::clear()
194 {
195     ui.fileInput->setEditText( "" );
196     ui.subInput->setEditText( "" );
197 }
198
199 void FileOpenPanel::toggleSubtitleFrame()
200 {
201     if (ui.subFrame->isVisible())
202     {
203         ui.subFrame->hide();
204         updateGeometry();
205     /* FiXME Size */
206     }
207     else
208     {
209         ui.subFrame->show();
210     }
211
212     /* Update the MRL */
213     updateMRL();
214 }
215
216 /**************************************************************************
217  * Disk open
218  **************************************************************************/
219 DiscOpenPanel::DiscOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) :
220                                 OpenPanel( _parent, _p_intf )
221 {
222     ui.setupUi( this );
223
224     CONNECT( ui.deviceCombo, editTextChanged(QString ), this, updateMRL());
225     BUTTONACT( ui.dvdRadioButton, updateMRL());
226     BUTTONACT( ui.vcdRadioButton, updateMRL());
227     BUTTONACT( ui.audioCDRadioButton, updateMRL());
228     BUTTONACT( ui.dvdsimple,  updateMRL());
229
230     CONNECT( ui.titleSpin, valueChanged(int), this, updateMRL());
231     CONNECT( ui.chapterSpin, valueChanged(int), this, updateMRL());
232 }
233
234 DiscOpenPanel::~DiscOpenPanel()
235 {}
236
237 void DiscOpenPanel::clear()
238 {
239     ui.titleSpin->setValue(0);
240     ui.chapterSpin->setValue(0);
241 }
242
243 void DiscOpenPanel::updateMRL()
244 {
245     QString mrl = "";
246     /* DVD */
247     if( ui.dvdRadioButton->isChecked() ) {
248         if( !ui.dvdsimple->isChecked() )
249             mrl = "dvd://";
250         else
251             mrl = "dvdsimple://";
252         mrl += ui.deviceCombo->currentText();
253         emit methodChanged( "dvdnav-caching" );
254
255         if ( ui.titleSpin->value() > 0 ) {
256             mrl += QString("@%1").arg(ui.titleSpin->value());
257             if ( ui.chapterSpin->value() > 0 ) {
258                 mrl+= QString(":%1").arg(ui.chapterSpin->value());
259             }
260         }
261
262     /* VCD */
263     } else if (ui.vcdRadioButton->isChecked() ) {
264         mrl = "vcd://" + ui.deviceCombo->currentText();
265         emit methodChanged( "vcd-caching" );
266
267         if( ui.titleSpin->value() > 0 ) {
268             mrl += QString("@%1").arg(ui.titleSpin->value());
269         }
270
271     /* CDDA */
272     } else {
273         mrl = "cdda://" + ui.deviceCombo->currentText();
274     }
275
276     emit mrlUpdated(mrl);
277 }
278
279
280
281 /**************************************************************************
282  * Net open
283  **************************************************************************/
284 NetOpenPanel::NetOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) :
285                                 OpenPanel( _parent, _p_intf )
286 {
287     ui.setupUi( this );
288
289     CONNECT( ui.protocolCombo, currentIndexChanged(int),
290              this, updateProtocol(int) );
291     CONNECT( ui.portSpin, valueChanged(int), this, updateMRL());
292     CONNECT( ui.addressText, textChanged(QString), this, updateAddress());
293     CONNECT( ui.timeShift, clicked(), this, updateMRL());
294     CONNECT( ui.ipv6, clicked(), this, updateMRL());
295
296     ui.protocolCombo->addItem("HTTP", QVariant("http"));
297     ui.protocolCombo->addItem("FTP", QVariant("ftp"));
298     ui.protocolCombo->addItem("MMS", QVariant("mms"));
299     ui.protocolCombo->addItem("RTSP", QVariant("rtsp"));
300     ui.protocolCombo->addItem("UDP/RTP (unicast)", QVariant("udp"));
301     ui.protocolCombo->addItem("UDP/RTP (multicast)", QVariant("udp"));
302 }
303
304 NetOpenPanel::~NetOpenPanel()
305 {}
306
307 void NetOpenPanel::clear()
308 {}
309
310 void NetOpenPanel::updateProtocol(int idx) {
311     QString addr = ui.addressText->text();
312     QString proto = ui.protocolCombo->itemData(idx).toString();
313
314     ui.timeShift->setEnabled( idx >= 4);
315     ui.ipv6->setEnabled( idx == 4 );
316     ui.addressText->setEnabled( idx != 4 );
317     ui.portSpin->setEnabled( idx >= 4 );
318
319     /* If we already have a protocol in the address, replace it */
320     if( addr.contains( "://")) {
321         msg_Err( p_intf, "replace");
322         addr.replace(QRegExp("^.*://"), proto + "://");
323         ui.addressText->setText(addr);
324     }
325
326     updateMRL();
327 }
328
329 void NetOpenPanel::updateAddress() {
330     updateMRL();
331 }
332
333 void NetOpenPanel::updateMRL() {
334     QString mrl = "";
335     QString addr = ui.addressText->text();
336     int proto = ui.protocolCombo->currentIndex();
337
338     if( addr.contains( "://") && proto != 4 ) {
339         mrl = addr;
340     } else {
341         switch(proto) {
342         case 0:
343             mrl = "http://" + addr;
344             emit methodChanged("http-caching");
345             break;
346         case 2:
347             mrl = "mms://" + addr;
348             emit methodChanged("mms-caching");
349             break;
350         case 1:
351             mrl = "ftp://" + addr;
352             emit methodChanged("ftp-caching");
353             break;
354         case 3: /* RTSP */
355             mrl = "rtsp://" + addr;
356             emit methodChanged("rtsp-caching");
357             break;
358         case 4:
359             mrl = "udp://@";
360             if( ui.ipv6->isEnabled() && ui.ipv6->isChecked() ) {
361                 mrl += "[::]";
362             }
363             mrl += QString(":%1").arg(ui.portSpin->value());
364             emit methodChanged("udp-caching");
365             break;
366         case 5: /* UDP multicast */
367             mrl = "udp://@";
368             /* Add [] to IPv6 */
369             if ( addr.contains(':') && !addr.contains('[') ) {
370                 mrl += "[" + addr + "]";
371             } else mrl += addr;
372             mrl += QString(":%1").arg(ui.portSpin->value());
373             emit methodChanged("udp-caching");
374         }
375     }
376     if( ui.timeShift->isEnabled() && ui.timeShift->isChecked() ) {
377         mrl += " :access-filter=timeshift";
378     }
379     emit mrlUpdated(mrl);
380 }
381
382 /**************************************************************************
383  * Capture open
384  **************************************************************************/
385 CaptureOpenPanel::CaptureOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) :
386                                 OpenPanel( _parent, _p_intf )
387 {
388     ui.setupUi( this );
389 }
390
391 CaptureOpenPanel::~CaptureOpenPanel()
392 {}
393
394 void CaptureOpenPanel::clear()
395 {}
396
397 void CaptureOpenPanel::updateMRL()
398 {
399     QString mrl = "";
400     emit mrlUpdated(mrl);
401 }