1 /*****************************************************************************
2 * open.cpp : Panels for the open dialogs
3 ****************************************************************************
4 * Copyright (C) 2006 the VideoLAN team
7 * Authors: Clément Stenac <zorglub@videolan.org>
8 * Jean-Baptiste Kempf <jb@videolan.org>
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.
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.
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 *****************************************************************************/
27 #include "components/open.hpp"
28 #include "dialogs/open.hpp"
29 #include "dialogs_provider.hpp"
30 #include "util/customwidgets.hpp"
32 #include <QFileDialog>
33 #include <QDialogButtonBox>
36 /**************************************************************************
38 **************************************************************************/
39 FileOpenPanel::FileOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) :
40 OpenPanel( _parent, _p_intf )
42 /* Classic UI Setup */
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. */
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(" *"));
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 );
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" ));
68 // Add it to the layout
69 ui.gridLayout->addWidget( dialogBox, 0, 0, 1, 3 );
71 // But hide the two OK/Cancel buttons. Enable them for debug.
72 QDialogButtonBox *fileDialogAcceptBox =
73 findChildren<QDialogButtonBox*>()[0];
74 fileDialogAcceptBox->hide();
76 /* Ugly hacks to get the good Widget */
77 //This lineEdit is the normal line in the fileDialog.
78 lineFileEdit = findChildren<QLineEdit*>()[3];
81 /* Make a list of QLabel inside the QFileDialog to access the good ones */
82 QList<QLabel *> listLabel = findChildren<QLabel*>();
84 /* Hide the FileNames one. Enable it for debug */
86 /* Change the text that was uncool in the usual box */
87 listLabel[5]->setText( qtr( "Filter:" ) );
89 // Hide the subtitles control by default.
92 /* Build the subs size combo box */
93 module_config_t *p_item =
94 config_FindConfig( VLC_OBJECT(p_intf), "freetype-rel-fontsize" );
97 for( int i_index = 0; i_index < p_item->i_list; i_index++ )
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] )
104 ui.sizeSubComboBox->setCurrentIndex( i_index );
109 /* Build the subs align combo box */
110 p_item = config_FindConfig( VLC_OBJECT(p_intf), "subsdec-align" );
113 for( int i_index = 0; i_index < p_item->i_list; i_index++ )
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] )
120 ui.alignSubComboBox->setCurrentIndex( i_index );
125 BUTTONACT( ui.subBrowseButton, browseFileSub() );
126 BUTTONACT( ui.subCheckBox, toggleSubtitleFrame());
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());
135 FileOpenPanel::~FileOpenPanel()
138 QStringList FileOpenPanel::browse(QString help)
140 return THEDP->showSimpleOpen( help );
143 void FileOpenPanel::browseFile()
145 QString fileString = "";
146 foreach( QString file, dialogBox->selectedFiles() ) {
147 fileString += "\"" + file + "\" ";
149 ui.fileInput->setEditText( fileString );
153 void FileOpenPanel::browseFileSub()
155 // FIXME Handle selection of more than one subtitles file
156 QStringList files = THEDP->showSimpleOpen( qtr("Open subtitles file"),
158 dialogBox->directory().absolutePath() );
159 if( files.isEmpty() ) return;
160 ui.subInput->setEditText( files.join(" ") );
164 void FileOpenPanel::updateMRL()
166 QString mrl = ui.fileInput->currentText();
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 ) );
175 emit mrlUpdated( mrl );
176 emit methodChanged( "file-caching" );
180 /* Function called by Open Dialog when clicke on Play/Enqueue */
181 void FileOpenPanel::accept()
183 ui.fileInput->addItem(ui.fileInput->currentText());
184 if ( ui.fileInput->count() > 8 ) ui.fileInput->removeItem(0);
187 void FileOpenBox::accept()
189 OpenDialog::getInstance( NULL, NULL )->play();
192 /* Function called by Open Dialog when clicked on cancel */
193 void FileOpenPanel::clear()
195 ui.fileInput->setEditText( "" );
196 ui.subInput->setEditText( "" );
199 void FileOpenPanel::toggleSubtitleFrame()
201 if (ui.subFrame->isVisible())
216 /**************************************************************************
218 **************************************************************************/
219 DiscOpenPanel::DiscOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) :
220 OpenPanel( _parent, _p_intf )
224 CONNECT( ui.deviceCombo, editTextChanged(QString ), this, updateMRL());
225 BUTTONACT( ui.dvdRadioButton, updateMRL());
226 BUTTONACT( ui.vcdRadioButton, updateMRL());
227 BUTTONACT( ui.audioCDRadioButton, updateMRL());
229 CONNECT( ui.titleSpin, valueChanged(int), this, updateMRL());
230 CONNECT( ui.chapterSpin, valueChanged(int), this, updateMRL());
233 DiscOpenPanel::~DiscOpenPanel()
236 void DiscOpenPanel::clear()
238 ui.titleSpin->setValue(0);
239 ui.chapterSpin->setValue(0);
242 void DiscOpenPanel::updateMRL()
246 if( ui.dvdRadioButton->isChecked() ) {
247 mrl = "dvd://" + ui.deviceCombo->currentText();
248 emit methodChanged( "dvdnav-caching" );
250 if ( ui.titleSpin->value() > 0 ) {
251 mrl += QString("@%1").arg(ui.titleSpin->value());
252 if ( ui.chapterSpin->value() > 0 ) {
253 mrl+= QString(":%1").arg(ui.chapterSpin->value());
258 } else if (ui.vcdRadioButton->isChecked() ) {
259 mrl = "vcd://" + ui.deviceCombo->currentText();
260 emit methodChanged( "vcd-caching" );
262 if( ui.titleSpin->value() > 0 ) {
263 mrl += QString("@%1").arg(ui.titleSpin->value());
268 mrl = "cdda://" + ui.deviceCombo->currentText();
271 emit mrlUpdated(mrl);
276 /**************************************************************************
278 **************************************************************************/
279 NetOpenPanel::NetOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) :
280 OpenPanel( _parent, _p_intf )
284 CONNECT( ui.protocolCombo, currentIndexChanged(int),
285 this, updateProtocol(int) );
286 CONNECT( ui.portSpin, valueChanged(int), this, updateMRL());
287 CONNECT( ui.addressText, textChanged(QString), this, updateAddress());
288 CONNECT( ui.timeShift, clicked(), this, updateMRL());
289 CONNECT( ui.ipv6, clicked(), this, updateMRL());
291 ui.protocolCombo->addItem("HTTP", QVariant("http"));
292 ui.protocolCombo->addItem("FTP", QVariant("ftp"));
293 ui.protocolCombo->addItem("MMS", QVariant("mms"));
294 ui.protocolCombo->addItem("RTSP", QVariant("rtsp"));
295 ui.protocolCombo->addItem("UDP/RTP (unicast)", QVariant("udp"));
296 ui.protocolCombo->addItem("UDP/RTP (multicast)", QVariant("udp"));
299 NetOpenPanel::~NetOpenPanel()
302 void NetOpenPanel::clear()
305 void NetOpenPanel::updateProtocol(int idx) {
306 QString addr = ui.addressText->text();
307 QString proto = ui.protocolCombo->itemData(idx).toString();
309 ui.timeShift->setEnabled( idx >= 4);
310 ui.ipv6->setEnabled( idx == 4 );
311 ui.addressText->setEnabled( idx != 4 );
312 ui.portSpin->setEnabled( idx >= 4 );
314 /* If we already have a protocol in the address, replace it */
315 if( addr.contains( "://")) {
316 msg_Err( p_intf, "replace");
317 addr.replace(QRegExp("^.*://"), proto + "://");
318 ui.addressText->setText(addr);
324 void NetOpenPanel::updateAddress() {
328 void NetOpenPanel::updateMRL() {
330 QString addr = ui.addressText->text();
331 int proto = ui.protocolCombo->currentIndex();
333 if( addr.contains( "://") && proto != 4 ) {
338 mrl = "http://" + addr;
339 emit methodChanged("http-caching");
342 mrl = "mms://" + addr;
343 emit methodChanged("mms-caching");
346 mrl = "ftp://" + addr;
347 emit methodChanged("ftp-caching");
350 mrl = "rtsp://" + addr;
351 emit methodChanged("rtsp-caching");
355 if( ui.ipv6->isEnabled() && ui.ipv6->isChecked() ) {
358 mrl += QString(":%1").arg(ui.portSpin->value());
359 emit methodChanged("udp-caching");
361 case 5: /* UDP multicast */
364 if ( addr.contains(':') && !addr.contains('[') ) {
365 mrl += "[" + addr + "]";
367 mrl += QString(":%1").arg(ui.portSpin->value());
368 emit methodChanged("udp-caching");
371 if( ui.timeShift->isEnabled() && ui.timeShift->isChecked() ) {
372 mrl += " :access-filter=timeshift";
374 emit mrlUpdated(mrl);
377 /**************************************************************************
379 **************************************************************************/
380 CaptureOpenPanel::CaptureOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) :
381 OpenPanel( _parent, _p_intf )
386 CaptureOpenPanel::~CaptureOpenPanel()
389 void CaptureOpenPanel::clear()
392 void CaptureOpenPanel::updateMRL()
395 emit mrlUpdated(mrl);