]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/info_panels.cpp
Qt: respect font sizes
[vlc] / modules / gui / qt4 / components / info_panels.cpp
1 /*****************************************************************************
2  * infopanels.cpp : Panels for the information 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  *          Ilkka Ollakka <ileoo@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 "qt4.hpp"
31 #include "components/info_panels.hpp"
32 #include "components/interface_widgets.hpp"
33
34 #include <assert.h>
35 #include <vlc_url.h>
36 #include <vlc_meta.h>
37
38 #include <QTreeWidget>
39 #include <QHeaderView>
40 #include <QList>
41 #include <QStringList>
42 #include <QGridLayout>
43 #include <QLineEdit>
44 #include <QLabel>
45 #include <QSpinBox>
46
47 /************************************************************************
48  * Single panels
49  ************************************************************************/
50
51 /**
52  * First Panel - Meta Info
53  * All the usual MetaData are displayed and can be changed.
54  **/
55 MetaPanel::MetaPanel( QWidget *parent,
56                       intf_thread_t *_p_intf )
57                       : QWidget( parent ), p_intf( _p_intf )
58 {
59     QGridLayout *metaLayout = new QGridLayout( this );
60     metaLayout->setVerticalSpacing( 12 );
61
62     int line = 0; /* Counter for GridLayout */
63     p_input = NULL;
64
65 #define ADD_META( string, widget ) {                                      \
66     metaLayout->addWidget( new QLabel( qtr( string ) + " :" ), line, 0 ); \
67     widget = new QLineEdit;                                               \
68     metaLayout->addWidget( widget, line, 1, 1, 9 );                       \
69     line++;            }
70
71     /* Title, artist and album*/
72     ADD_META( VLC_META_TITLE, title_text ); /* OK */
73     ADD_META( VLC_META_ARTIST, artist_text ); /* OK */
74     ADD_META( VLC_META_ALBUM, collection_text ); /* OK */
75
76     /* Genre Name */
77     /* TODO List id3genres.h is not includable yet ? */
78     genre_text = new QLineEdit;
79     metaLayout->addWidget( new QLabel( qtr( VLC_META_GENRE ) + " :" ), line, 0 );
80     metaLayout->addWidget( genre_text, line, 1, 1, 3 );
81
82     /* Number - on the same line */
83     metaLayout->addWidget( new QLabel( qtr( VLC_META_TRACK_NUMBER )  + " :" ),
84                   line, 5, 1, 2  );
85     seqnum_text = new QLineEdit;
86     seqnum_text->setInputMask("0000");
87     seqnum_text->setAlignment( Qt::AlignRight );
88     metaLayout->addWidget( seqnum_text, line, 7, 1, 3 );
89     line++;
90
91     /* Date (Should be in years) */
92     date_text = new QLineEdit;
93     date_text->setInputMask("0000");
94     date_text->setAlignment( Qt::AlignRight );
95     metaLayout->addWidget( new QLabel( qtr( VLC_META_DATE ) + " :" ), line, 0 );
96     metaLayout->addWidget( date_text, line, 1, 1, 3 );
97
98     /* Rating - on the same line */
99     /*
100     metaLayout->addWidget( new QLabel( qtr( VLC_META_RATING ) + " :" ), line, 4, 1, 2 );
101     rating_text = new QSpinBox; setSpinBounds( rating_text );
102     metaLayout->addWidget( rating_text, line, 6, 1, 1 );
103     */
104     /* Language on the same line */
105     metaLayout->addWidget( new QLabel( qfu( VLC_META_LANGUAGE ) + " :" ), line, 5, 1, 2 );
106     language_text = new QLineEdit;
107     language_text->setReadOnly( true );
108     metaLayout->addWidget( language_text, line,  7, 1, 3 );
109     line++;
110
111     /* ART_URL */
112     art_cover = new CoverArtLabel( this, p_intf );
113     metaLayout->addWidget( art_cover, line, 8, 4, 2, Qt::AlignRight );
114
115 /* Settings is unused */
116 /*    l->addWidget( new QLabel( qtr( VLC_META_SETTING ) + " :" ), line, 5 );
117     setting_text = new QLineEdit;
118     l->addWidget( setting_text, line, 6, 1, 4 ); */
119
120 /* Less used metadata */
121 #define ADD_META_2( string, widget ) {                                    \
122     metaLayout->addWidget( new QLabel( qtr( string ) + " :" ), line, 0 ); \
123     widget = new QLineEdit;                                               \
124     metaLayout->addWidget( widget, line, 1, 1, 7 );                       \
125     line++;            }
126
127     /* Now Playing - Useful for live feeds (HTTP, DVB, ETC...) */
128     ADD_META_2( VLC_META_NOW_PLAYING, nowplaying_text );
129     nowplaying_text->setReadOnly( true );
130     ADD_META_2( VLC_META_PUBLISHER, publisher_text );
131     ADD_META_2( VLC_META_COPYRIGHT, copyright_text );
132     ADD_META_2( N_("Comments"), description_text );
133
134 /* useless metadata */
135
136     //ADD_META_2( VLC_META_ENCODED_BY, encodedby_text );
137     /*  ADD_META( TRACKID )  Useless ? */
138     /*  ADD_URI - DO not show it, done outside */
139
140     metaLayout->setColumnStretch( 1, 2 );
141     metaLayout->setColumnMinimumWidth ( 1, 80 );
142     metaLayout->setRowStretch( line, 10 );
143 #undef ADD_META
144 #undef ADD_META_2
145
146     CONNECT( title_text, textEdited( QString ), this, enterEditMode() );
147     CONNECT( artist_text, textEdited( QString ), this, enterEditMode() );
148     CONNECT( collection_text, textEdited( QString ), this, enterEditMode() );
149     CONNECT( genre_text, textEdited( QString ), this, enterEditMode() );
150     CONNECT( seqnum_text, textEdited( QString ), this, enterEditMode() );
151
152     CONNECT( date_text, textEdited( QString ), this, enterEditMode() );
153     CONNECT( description_text, textEdited( QString ), this, enterEditMode() );
154 /*    CONNECT( rating_text, valueChanged( QString ), this, enterEditMode( QString ) );*/
155
156     /* We are not yet in Edit Mode */
157     b_inEditMode = false;
158 }
159
160 /**
161  * Update all the MetaData and art on an "item-changed" event
162  **/
163 void MetaPanel::update( input_item_t *p_item )
164 {
165     if( !p_item )
166     {
167         clear();
168         return;
169     }
170
171     /* Don't update if you are in edit mode */
172     if( b_inEditMode ) return;
173     else p_input = p_item;
174
175     char *psz_meta;
176 #define UPDATE_META( meta, widget ) {               \
177     psz_meta = input_item_Get##meta( p_item );      \
178     if( !EMPTY_STR( psz_meta ) )                    \
179         widget->setText( qfu( psz_meta ) );         \
180     else                                            \
181         widget->setText( "" ); }                    \
182     free( psz_meta );
183
184 #define UPDATE_META_INT( meta, widget ) {           \
185     psz_meta = input_item_Get##meta( p_item );      \
186     if( !EMPTY_STR( psz_meta ) )                    \
187         widget->setValue( atoi( psz_meta ) ); }     \
188     free( psz_meta );
189
190     /* Name / Title */
191     psz_meta = input_item_GetTitleFbName( p_item );
192     if( psz_meta )
193     {
194         title_text->setText( qfu( psz_meta ) );
195         free( psz_meta );
196     }
197     else
198         title_text->setText( "" );
199
200     /* URL / URI */
201     psz_meta = input_item_GetURL( p_item );
202     if( !EMPTY_STR( psz_meta ) )
203         emit uriSet( qfu( psz_meta ) );
204     else
205     {
206         free( psz_meta );
207         psz_meta = input_item_GetURI( p_item );
208         if( !EMPTY_STR( psz_meta ) )
209             emit uriSet( qfu( psz_meta ) );
210     }
211     free( psz_meta );
212
213     /* Other classic though */
214     UPDATE_META( Artist, artist_text );
215     UPDATE_META( Genre, genre_text );
216     UPDATE_META( Copyright, copyright_text );
217     UPDATE_META( Album, collection_text );
218     UPDATE_META( Description, description_text );
219     UPDATE_META( Language, language_text );
220     UPDATE_META( NowPlaying, nowplaying_text );
221     UPDATE_META( Publisher, publisher_text );
222 //    UPDATE_META( Setting, setting_text );
223 //FIXME this is wrong if has Publisher and EncodedBy fields
224     UPDATE_META( EncodedBy, publisher_text );
225
226     UPDATE_META( Date, date_text );
227     UPDATE_META( TrackNum, seqnum_text );
228 //    UPDATE_META_INT( Rating, rating_text );
229
230 #undef UPDATE_META_INT
231 #undef UPDATE_META
232
233     // If a artURL is available as a local file, directly display it !
234
235     QString file;
236     char *psz_art = input_item_GetArtURL( p_item );
237     if( psz_art && !strncmp( psz_art, "file://", 7 ) &&
238                 decode_URI( psz_art + 7 ) )
239 #ifdef WIN32
240         file = qfu( psz_art + 8 ); // Remove extra / on Win32 URI.
241 #else
242         file = qfu( psz_art + 7 );
243 #endif
244     free( psz_art );
245
246     art_cover->showArtUpdate( file );
247
248 }
249
250 /**
251  * Save the MetaData, triggered by parent->save Button
252  **/
253 void MetaPanel::saveMeta()
254 {
255     if( p_input == NULL )
256         return;
257
258     /* now we read the modified meta data */
259     input_item_SetTitle(  p_input, qtu( title_text->text() ) );
260     input_item_SetArtist( p_input, qtu( artist_text->text() ) );
261     input_item_SetAlbum(  p_input, qtu( collection_text->text() ) );
262     input_item_SetGenre(  p_input, qtu( genre_text->text() ) );
263     input_item_SetTrackNum(  p_input, qtu( seqnum_text->text() ) );
264     input_item_SetDate(  p_input, qtu( date_text->text() ) );
265
266     input_item_SetCopyright( p_input, qtu( copyright_text->text() ) );
267     input_item_SetPublisher( p_input, qtu( publisher_text->text() ) );
268     input_item_SetDescription( p_input, qtu( description_text->text() ) );
269
270     playlist_t *p_playlist = pl_Get( p_intf );
271     input_item_WriteMeta( VLC_OBJECT(p_playlist), p_input );
272
273     /* Reset the status of the mode. No need to emit any signal because parent
274        is the only caller */
275     b_inEditMode = false;
276 }
277
278
279 bool MetaPanel::isInEditMode()
280 {
281     return b_inEditMode;
282 }
283
284 void MetaPanel::enterEditMode()
285 {
286     msg_Dbg( p_intf, "Entering Edit MetaData Mode" );
287     setEditMode( true );
288 }
289
290 void MetaPanel::setEditMode( bool b_editing )
291 {
292     b_inEditMode = b_editing;
293     if( b_editing )emit editing();
294 }
295
296 /*
297  * Clear all the metadata widgets
298  */
299 void MetaPanel::clear()
300 {
301     title_text->clear();
302     artist_text->clear();
303     genre_text->clear();
304     copyright_text->clear();
305     collection_text->clear();
306     seqnum_text->clear();
307     description_text->clear();
308     date_text->clear();
309     language_text->clear();
310     nowplaying_text->clear();
311     publisher_text->clear();
312
313     setEditMode( false );
314     emit uriSet( "" );
315 }
316
317 /**
318  * Second Panel - Shows the extra metadata in a tree, non editable.
319  **/
320 ExtraMetaPanel::ExtraMetaPanel( QWidget *parent,
321                                 intf_thread_t *_p_intf )
322                                 : QWidget( parent ), p_intf( _p_intf )
323 {
324      QGridLayout *layout = new QGridLayout(this);
325
326      QLabel *topLabel = new QLabel( qtr( "Extra metadata and other information"
327                  " are shown in this panel.\n" ) );
328      topLabel->setWordWrap( true );
329      layout->addWidget( topLabel, 0, 0 );
330
331      extraMetaTree = new QTreeWidget( this );
332      extraMetaTree->setAlternatingRowColors( true );
333      extraMetaTree->setColumnCount( 2 );
334      extraMetaTree->resizeColumnToContents( 0 );
335      extraMetaTree->header()->hide();
336 /*     QStringList headerList = ( QStringList() << qtr( "Type" )
337  *                                             << qtr( "Value" ) );
338  * Useless, add this header if you think it would help the user          **
339  */
340
341      layout->addWidget( extraMetaTree, 1, 0 );
342 }
343
344 /**
345  * Update the Extra Metadata from p_meta->i_extras
346  **/
347 void ExtraMetaPanel::update( input_item_t *p_item )
348 {
349     if( !p_item )
350     {
351         clear();
352         return;
353     }
354
355     QList<QTreeWidgetItem *> items;
356
357     extraMetaTree->clear();
358
359     vlc_mutex_lock( &p_item->lock );
360     vlc_meta_t *p_meta = p_item->p_meta;
361     if( !p_meta )
362     {
363         vlc_mutex_unlock( &p_item->lock );
364         return;
365     }
366
367     char ** ppsz_allkey = vlc_meta_CopyExtraNames( p_meta);
368
369     for( int i = 0; ppsz_allkey[i] ; i++ )
370     {
371         const char * psz_value = vlc_meta_GetExtra( p_meta, ppsz_allkey[i] );
372         QStringList tempItem;
373         tempItem.append( qfu( ppsz_allkey[i] ) + " : ");
374         tempItem.append( qfu( psz_value ) );
375         items.append( new QTreeWidgetItem ( extraMetaTree, tempItem ) );
376         free( ppsz_allkey[i] );
377     }
378     vlc_mutex_unlock( &p_item->lock );
379     free( ppsz_allkey );
380
381     extraMetaTree->addTopLevelItems( items );
382     extraMetaTree->resizeColumnToContents( 0 );
383 }
384
385 /**
386  * Clear the ExtraMetaData Tree
387  **/
388 void ExtraMetaPanel::clear()
389 {
390     extraMetaTree->clear();
391 }
392
393 /**
394  * Third panel - Stream info
395  * Display all codecs and muxers info that we could gather.
396  **/
397 InfoPanel::InfoPanel( QWidget *parent,
398                       intf_thread_t *_p_intf )
399                       : QWidget( parent ), p_intf( _p_intf )
400 {
401      QGridLayout *layout = new QGridLayout(this);
402
403      QList<QTreeWidgetItem *> items;
404
405      QLabel *topLabel = new QLabel( qtr( "Information about what your media or"
406               " stream is made of.\nMuxer, Audio and Video Codecs, Subtitles "
407               "are shown." ) );
408      topLabel->setWordWrap( true );
409      layout->addWidget( topLabel, 0, 0 );
410
411      InfoTree = new QTreeWidget(this);
412      InfoTree->setColumnCount( 1 );
413      InfoTree->setColumnWidth( 0, 20000 );
414      InfoTree->header()->hide();
415 //     InfoTree->header()->setStretchLastSection(false);
416 //     InfoTree->header()->setResizeMode(QHeaderView::ResizeToContents);
417      layout->addWidget(InfoTree, 1, 0 );
418 }
419
420 /**
421  * Update the Codecs information on parent->update()
422  **/
423 void InfoPanel::update( input_item_t *p_item)
424 {
425     if( !p_item )
426     {
427         clear();
428         return;
429     }
430
431     InfoTree->clear();
432     QTreeWidgetItem *current_item = NULL;
433     QTreeWidgetItem *child_item = NULL;
434
435     for( int i = 0; i< p_item->i_categories ; i++)
436     {
437         current_item = new QTreeWidgetItem();
438         current_item->setText( 0, qfu(p_item->pp_categories[i]->psz_name) );
439         InfoTree->addTopLevelItem( current_item );
440
441         for( int j = 0 ; j < p_item->pp_categories[i]->i_infos ; j++ )
442         {
443             child_item = new QTreeWidgetItem ();
444             child_item->setText( 0,
445                     qfu(p_item->pp_categories[i]->pp_infos[j]->psz_name)
446                     + ": "
447                     + qfu(p_item->pp_categories[i]->pp_infos[j]->psz_value));
448
449             current_item->addChild(child_item);
450         }
451          InfoTree->setItemExpanded( current_item, true);
452     }
453 }
454
455 /**
456  * Clear the tree
457  **/
458 void InfoPanel::clear()
459 {
460     InfoTree->clear();
461 }
462
463 /**
464  * Save all the information to a file
465  * Not yet implemented.
466  **/
467 /*
468 void InfoPanel::saveCodecsInfo()
469 {}
470 */
471
472 /**
473  * Fourth Panel - Stats
474  * Displays the Statistics for reading/streaming/encoding/displaying in a tree
475  */
476 InputStatsPanel::InputStatsPanel( QWidget *parent,
477                                   intf_thread_t *_p_intf )
478                                   : QWidget( parent ), p_intf( _p_intf )
479 {
480      QGridLayout *layout = new QGridLayout(this);
481
482      QList<QTreeWidgetItem *> items;
483
484      QLabel *topLabel = new QLabel( qtr( "Current"
485                  " media / stream " "statistics") );
486      topLabel->setWordWrap( true );
487      layout->addWidget( topLabel, 0, 0 );
488
489      StatsTree = new QTreeWidget(this);
490      StatsTree->setColumnCount( 3 );
491      StatsTree->header()->hide();
492
493 #define CREATE_TREE_ITEM( itemName, itemText, itemValue, unit ) {              \
494     itemName =                                                                 \
495       new QTreeWidgetItem((QStringList () << itemText << itemValue << unit )); \
496     itemName->setTextAlignment( 1 , Qt::AlignRight ) ; }
497
498 #define CREATE_CATEGORY( catName, itemText ) {                           \
499     CREATE_TREE_ITEM( catName, itemText , "", "" );                      \
500     catName->setExpanded( true );                                        \
501     StatsTree->addTopLevelItem( catName );    }
502
503 #define CREATE_AND_ADD_TO_CAT( itemName, itemText, itemValue, catName, unit ){ \
504     CREATE_TREE_ITEM( itemName, itemText, itemValue, unit );                   \
505     catName->addChild( itemName ); }
506
507     /* Create the main categories */
508     CREATE_CATEGORY( audio, qtr("Audio") );
509     CREATE_CATEGORY( video, qtr("Video") );
510     CREATE_CATEGORY( input, qtr("Input/Read") );
511     CREATE_CATEGORY( streaming, qtr("Output/Written/Sent") );
512
513     CREATE_AND_ADD_TO_CAT( read_media_stat, qtr("Media data size"),
514                            "0", input , "kB" );
515     CREATE_AND_ADD_TO_CAT( input_bitrate_stat, qtr("Input bitrate"),
516                            "0", input, "kb/s" );
517     CREATE_AND_ADD_TO_CAT( demuxed_stat, qtr("Demuxed data size"), "0", input, "kB") ;
518     CREATE_AND_ADD_TO_CAT( stream_bitrate_stat, qtr("Content bitrate"),
519                            "0", input, "kb/s" );
520     CREATE_AND_ADD_TO_CAT( corrupted_stat, qtr("Discarded (corrupted)"),
521                            "0", input, "" );
522     CREATE_AND_ADD_TO_CAT( discontinuity_stat, qtr("Dropped (discontinued)"),
523                            "0", input, "" );
524
525     CREATE_AND_ADD_TO_CAT( vdecoded_stat, qtr("Decoded"),
526                            "0", video, qtr("blocks") );
527     CREATE_AND_ADD_TO_CAT( vdisplayed_stat, qtr("Displayed"),
528                            "0", video, qtr("frames") );
529     CREATE_AND_ADD_TO_CAT( vlost_frames_stat, qtr("Lost"),
530                            "0", video, qtr("frames") );
531
532     CREATE_AND_ADD_TO_CAT( send_stat, qtr("Sent"), "0", streaming, qtr("packets") );
533     CREATE_AND_ADD_TO_CAT( send_bytes_stat, qtr("Sent"),
534                            "0", streaming, "kB" );
535     CREATE_AND_ADD_TO_CAT( send_bitrate_stat, qtr("Upstream rate"),
536                            "0", streaming, "kb/s" );
537
538     CREATE_AND_ADD_TO_CAT( adecoded_stat, qtr("Decoded"),
539                            "0", audio, qtr("blocks") );
540     CREATE_AND_ADD_TO_CAT( aplayed_stat, qtr("Played"),
541                            "0", audio, qtr("buffers") );
542     CREATE_AND_ADD_TO_CAT( alost_stat, qtr("Lost"), "0", audio, qtr("buffers") );
543
544 #undef CREATE_AND_ADD_TO_CAT
545 #undef CREATE_CATEGORY
546 #undef CREATE_TREE_ITEM
547
548     input->setExpanded( true );
549     video->setExpanded( true );
550     streaming->setExpanded( true );
551     audio->setExpanded( true );
552
553     StatsTree->resizeColumnToContents( 0 );
554     StatsTree->setColumnWidth( 1 , 200 );
555
556     layout->addWidget(StatsTree, 1, 0 );
557 }
558
559 /**
560  * Update the Statistics
561  **/
562 void InputStatsPanel::update( input_item_t *p_item )
563 {
564     assert( p_item );
565     vlc_mutex_lock( &p_item->p_stats->lock );
566
567 #define UPDATE( widget, format, calc... ) \
568     { QString str; widget->setText( 1 , str.sprintf( format, ## calc ) );  }
569
570     UPDATE( read_media_stat, "%8.0f",
571             (float)(p_item->p_stats->i_read_bytes)/1000);
572     UPDATE( input_bitrate_stat, "%6.0f",
573                     (float)(p_item->p_stats->f_input_bitrate * 8000 ));
574     UPDATE( demuxed_stat, "%8.0f",
575                     (float)(p_item->p_stats->i_demux_read_bytes)/1000 );
576     UPDATE( stream_bitrate_stat, "%6.0f",
577                     (float)(p_item->p_stats->f_demux_bitrate * 8000 ));
578     UPDATE( corrupted_stat, "%5i", p_item->p_stats->i_demux_corrupted );
579     UPDATE( discontinuity_stat, "%5i", p_item->p_stats->i_demux_discontinuity );
580
581     /* Video */
582     UPDATE( vdecoded_stat, "%5i", p_item->p_stats->i_decoded_video );
583     UPDATE( vdisplayed_stat, "%5i", p_item->p_stats->i_displayed_pictures );
584     UPDATE( vlost_frames_stat, "%5i", p_item->p_stats->i_lost_pictures );
585
586     /* Sout */
587     UPDATE( send_stat, "%5i", p_item->p_stats->i_sent_packets );
588     UPDATE( send_bytes_stat, "%8.0f",
589             (float)(p_item->p_stats->i_sent_bytes)/1000 );
590     UPDATE( send_bitrate_stat, "%6.0f",
591             (float)(p_item->p_stats->f_send_bitrate*8)*1000 );
592
593     /* Audio*/
594     UPDATE( adecoded_stat, "%5i", p_item->p_stats->i_decoded_audio );
595     UPDATE( aplayed_stat, "%5i", p_item->p_stats->i_played_abuffers );
596     UPDATE( alost_stat, "%5i", p_item->p_stats->i_lost_abuffers );
597
598 #undef UPDATE
599
600     vlc_mutex_unlock(& p_item->p_stats->lock );
601 }
602
603 void InputStatsPanel::clear()
604 {
605 }
606