]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/open.cpp
* build the subtitle align combo box
[vlc] / modules / gui / qt4 / components / open.cpp
1 /*****************************************************************************
2  * open.cpp : Panels for the open dialogs
3  ****************************************************************************
4  * Copyright (C) 2006 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_provider.hpp"
29 #include "util/customwidgets.hpp"
30
31 #include <QFileDialog>
32 #include <QDialogButtonBox>
33 #include <QLineEdit>
34
35 /**************************************************************************
36  * File open
37  **************************************************************************/
38 FileOpenPanel::FileOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) :
39                                 OpenPanel( _parent, _p_intf )
40 {
41     /* Classic UI Setup */
42     ui.setupUi( this );
43
44     /* Use a QFileDialog and customize it because we don't want to
45        rewrite it all. Be careful to your eyes cause there are a few hacks.
46        Be very careful and test correctly when you modify this. */
47
48     /* Set Filters for file selection */
49     QString fileTypes = "";
50     ADD_FILTER_MEDIA( fileTypes );
51     ADD_FILTER_VIDEO( fileTypes );
52     ADD_FILTER_AUDIO( fileTypes );
53     ADD_FILTER_PLAYLIST( fileTypes );
54     ADD_FILTER_ALL( fileTypes );
55     fileTypes.replace(QString(";*"), QString(" *"));
56
57     // Make this QFileDialog a child of tempWidget from the ui.
58     dialogBox = new QFileDialog( ui.tempWidget, NULL,
59             qfu( p_intf->p_libvlc->psz_homedir ), fileTypes );
60     dialogBox->setFileMode( QFileDialog::ExistingFiles );
61     /* We don't want to see a grip in the middle of the window, do we? */
62     dialogBox->setSizeGripEnabled( false );
63     dialogBox->setToolTip( qtr( "Select one or multiple files, or a folder" ));
64
65     // Add it to the layout
66     ui.gridLayout->addWidget( dialogBox, 0, 0, 1, 3 );
67
68     // But hide the two OK/Cancel buttons. Enable them for debug.
69 #ifndef WIN32
70     findChild<QDialogButtonBox*>()->hide();
71 #endif
72
73     /* Ugly hacks to get the good Widget */
74     //This lineEdit is the normal line in the fileDialog.
75     lineFileEdit = findChildren<QLineEdit*>()[3];
76     lineFileEdit->hide();
77
78     /* Make a list of QLabel inside the QFileDialog to access the good ones */
79     QList<QLabel *> listLabel = findChildren<QLabel*>();
80
81     /* Hide the FileNames one. Enable it for debug */
82     listLabel[4]->hide();
83     /* Change the text that was uncool in the usual box */
84     listLabel[5]->setText( qtr( "Filter:" ) );
85
86     /* Hacks Continued Catch the close event */
87     dialogBox->installEventFilter( this );
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     ui.subInput->setEditText( files.join(" ") );
160     updateMRL();
161 }
162
163 void FileOpenPanel::updateMRL()
164 {
165     QString mrl = ui.fileInput->currentText();
166
167     if( ui.subCheckBox->isChecked() ) {
168         mrl.append( " :sub-file=" + ui.subInput->currentText() );
169         mrl.append( " :subsdec-align=" + ui.alignSubComboBox->currentText() );
170         mrl.append( " :sub-rel-fontsize=" + ui.sizeSubComboBox->currentText() );
171     }
172     emit mrlUpdated( mrl );
173     emit methodChanged( "file-caching" );
174 }
175
176
177 /* Function called by Open Dialog when clicke on Play/Enqueue */
178 void FileOpenPanel::accept()
179 {
180     ui.fileInput->addItem(ui.fileInput->currentText());
181     if ( ui.fileInput->count() > 8 ) ui.fileInput->removeItem(0);
182 }
183
184
185 /* Function called by Open Dialog when clicked on cancel */
186 void FileOpenPanel::clear()
187 {
188     ui.fileInput->setEditText( "" );
189     ui.subInput->setEditText( "" );
190 }
191
192 bool FileOpenPanel::eventFilter(QObject *object, QEvent *event)
193 {
194     if ( ( object == dialogBox ) && ( event->type() == QEvent::Hide ) )
195     {
196          event->ignore();
197          return true;
198     }
199     // standard event processing
200     else
201         return QObject::eventFilter(object, event);
202 }
203
204 void FileOpenPanel::toggleSubtitleFrame()
205 {
206     if (ui.subFrame->isVisible())
207     {
208         ui.subFrame->hide();
209 //        setMinimumHeight(1);
210         resize( sizeHint());
211     }
212     else
213     {
214         ui.subFrame->show();
215     }
216
217     /* Update the MRL */
218     updateMRL();
219 }
220
221 /**************************************************************************
222  * Disk open
223  **************************************************************************/
224 DiskOpenPanel::DiskOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) :
225                                 OpenPanel( _parent, _p_intf )
226 {
227     ui.setupUi( this );
228
229     CONNECT( ui.deviceCombo, editTextChanged(QString ), this, updateMRL());
230     BUTTONACT( ui.dvdRadioButton, updateMRL());
231     BUTTONACT( ui.vcdRadioButton, updateMRL());
232     BUTTONACT( ui.audioCDRadioButton, updateMRL());
233
234     CONNECT( ui.titleSpin, valueChanged(int), this, updateMRL());
235     CONNECT( ui.chapterSpin, valueChanged(int), this, updateMRL());
236 }
237
238 DiskOpenPanel::~DiskOpenPanel()
239 {}
240
241 void DiskOpenPanel::clear()
242 {
243     ui.titleSpin->setValue(0);
244     ui.chapterSpin->setValue(0);
245 }
246
247 void DiskOpenPanel::updateMRL()
248 {
249     QString mrl = "";
250     /* DVD */
251     if( ui.dvdRadioButton->isChecked() ) {
252         mrl = "dvd://" + 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 }