]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/info_panels.cpp
Workaround braindead QT implementation of ResizeToContents
[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
37 #include <QTreeWidget>
38 #include <QHeaderView>
39 #include <QList>
40 #include <QStringList>
41 #include <QGridLayout>
42 #include <QLineEdit>
43 #include <QLabel>
44 #include <QSpinBox>
45
46 /************************************************************************
47  * Single panels
48  ************************************************************************/
49
50 /**
51  * First Panel - Meta Info
52  * All the usual MetaData are displayed and can be changed.
53  **/
54 MetaPanel::MetaPanel( QWidget *parent,
55                       intf_thread_t *_p_intf )
56                       : QWidget( parent ), p_intf( _p_intf )
57 {
58     QGridLayout *metaLayout = new QGridLayout( this );
59
60     int line = 0; /* Counter for GridLayout */
61     p_input = NULL;
62
63 #define ADD_META( string, widget ) {                                      \
64     metaLayout->addWidget( new QLabel( qtr( string ) + " :" ), line, 0 ); \
65     widget = new QLineEdit;                                               \
66     metaLayout->addWidget( widget, line, 1, 1, 9 );                       \
67     line++;            }
68
69     /* Title, artist and album*/
70     ADD_META( VLC_META_TITLE, title_text ); /* OK */
71     ADD_META( VLC_META_ARTIST, artist_text ); /* OK */
72     ADD_META( VLC_META_ALBUM, collection_text ); /* OK */
73
74     /* Genre Name */
75     /* TODO List id3genres.h is not includable yet ? */
76     genre_text = new QLineEdit;
77     metaLayout->addWidget( new QLabel( qtr( VLC_META_GENRE ) + " :" ), line, 0 );
78     metaLayout->addWidget( genre_text, line, 1, 1, 3 );
79
80     /* Number - on the same line */
81     metaLayout->addWidget( new QLabel( qtr( VLC_META_TRACK_NUMBER )  + " :" ),
82                   line, 5, 1, 2  );
83     seqnum_text = new QLineEdit;
84     seqnum_text->setInputMask("0000");
85     seqnum_text->setAlignment( Qt::AlignRight );
86     metaLayout->addWidget( seqnum_text, line, 7, 1, 3 );
87     line++;
88
89     /* Date (Should be in years) */
90     date_text = new QLineEdit;
91     date_text->setInputMask("0000");
92     date_text->setAlignment( Qt::AlignRight );
93     metaLayout->addWidget( new QLabel( qtr( VLC_META_DATE ) + " :" ), line, 0 );
94     metaLayout->addWidget( date_text, line, 1, 1, 3 );
95
96     /* Rating - on the same line */
97     /*
98     metaLayout->addWidget( new QLabel( qtr( VLC_META_RATING ) + " :" ), line, 4, 1, 2 );
99     rating_text = new QSpinBox; setSpinBounds( rating_text );
100     metaLayout->addWidget( rating_text, line, 6, 1, 1 );
101     */
102     /* Language on the same line */
103     metaLayout->addWidget( new QLabel( qfu( VLC_META_LANGUAGE ) + " :" ), line, 5, 1, 2 );
104     language_text = new QLineEdit;
105     language_text->setReadOnly( true );
106     metaLayout->addWidget( language_text, line,  7, 1, 3 );
107     line++;
108
109     /* ART_URL */
110     art_cover = new CoverArtLabel( this, p_intf );
111     metaLayout->addWidget( art_cover, line, 8, 4, 2, Qt::AlignRight );
112
113 /* Settings is unused */
114 /*    l->addWidget( new QLabel( qtr( VLC_META_SETTING ) + " :" ), line, 5 );
115     setting_text = new QLineEdit;
116     l->addWidget( setting_text, line, 6, 1, 4 ); */
117
118 /* Less used metadata */
119 #define ADD_META_2( string, widget ) {                                    \
120     metaLayout->addWidget( new QLabel( qtr( string ) + " :" ), line, 0 ); \
121     widget = new QLineEdit;                                               \
122     metaLayout->addWidget( widget, line, 1, 1, 7 );                       \
123     line++;            }
124
125     /* Now Playing - Useful for live feeds (HTTP, DVB, ETC...) */
126     ADD_META_2( VLC_META_NOW_PLAYING, nowplaying_text );
127     nowplaying_text->setReadOnly( true );
128     ADD_META_2( VLC_META_PUBLISHER, publisher_text );
129     ADD_META_2( VLC_META_COPYRIGHT, copyright_text );
130     ADD_META_2( N_("Comments"), description_text );
131
132 /* useless metadata */
133
134     //ADD_META_2( VLC_META_ENCODED_BY, encodedby_text );
135     /*  ADD_META( TRACKID )  Useless ? */
136     /*  ADD_URI - DO not show it, done outside */
137
138     metaLayout->setColumnStretch( 1, 2 );
139     metaLayout->setColumnMinimumWidth ( 1, 80 );
140 #undef ADD_META
141 #undef ADD_META_2
142
143     CONNECT( title_text, textEdited( QString ), this, enterEditMode() );
144     CONNECT( artist_text, textEdited( QString ), this, enterEditMode() );
145     CONNECT( collection_text, textEdited( QString ), this, enterEditMode() );
146     CONNECT( genre_text, textEdited( QString ), this, enterEditMode() );
147     CONNECT( seqnum_text, textEdited( QString ), this, enterEditMode() );
148
149     CONNECT( date_text, textEdited( QString ), this, enterEditMode() );
150     CONNECT( description_text, textEdited( QString ), this, enterEditMode() );
151 /*    CONNECT( rating_text, valueChanged( QString ), this, enterEditMode( QString ) );*/
152
153     /* We are not yet in Edit Mode */
154     b_inEditMode = false;
155 }
156
157 /**
158  * Update all the MetaData and art on an "item-changed" event
159  **/
160 void MetaPanel::update( input_item_t *p_item )
161 {
162     if( !p_item )
163     {
164         clear();
165         return;
166     }
167
168     /* Don't update if you are in edit mode */
169     if( b_inEditMode ) return;
170     else p_input = p_item;
171
172     char *psz_meta;
173 #define UPDATE_META( meta, widget ) {               \
174     psz_meta = input_item_Get##meta( p_item );      \
175     if( !EMPTY_STR( psz_meta ) )                    \
176         widget->setText( qfu( psz_meta ) );         \
177     else                                            \
178         widget->setText( "" ); }                    \
179     free( psz_meta );
180
181 #define UPDATE_META_INT( meta, widget ) {           \
182     psz_meta = input_item_Get##meta( p_item );      \
183     if( !EMPTY_STR( psz_meta ) )                    \
184         widget->setValue( atoi( psz_meta ) ); }     \
185     free( psz_meta );
186
187     /* Name / Title */
188     psz_meta = input_item_GetTitleFbName( p_item );
189     if( psz_meta )
190     {
191         title_text->setText( qfu( psz_meta ) );
192         free( psz_meta );
193     }
194     else
195         title_text->setText( "" );
196
197     /* URL / URI */
198     psz_meta = input_item_GetURL( p_item );
199     if( !EMPTY_STR( psz_meta ) )
200         emit uriSet( qfu( psz_meta ) );
201     else
202     {
203         free( psz_meta );
204         psz_meta = input_item_GetURI( p_item );
205         if( !EMPTY_STR( psz_meta ) )
206             emit uriSet( qfu( psz_meta ) );
207     }
208     free( psz_meta );
209
210     /* Other classic though */
211     UPDATE_META( Artist, artist_text );
212     UPDATE_META( Genre, genre_text );
213     UPDATE_META( Copyright, copyright_text );
214     UPDATE_META( Album, collection_text );
215     UPDATE_META( Description, description_text );
216     UPDATE_META( Language, language_text );
217     UPDATE_META( NowPlaying, nowplaying_text );
218     UPDATE_META( Publisher, publisher_text );
219 //    UPDATE_META( Setting, setting_text );
220 //FIXME this is wrong if has Publisher and EncodedBy fields
221     UPDATE_META( EncodedBy, publisher_text );
222
223     UPDATE_META( Date, date_text );
224     UPDATE_META( TrackNum, seqnum_text );
225 //    UPDATE_META_INT( Rating, rating_text );
226
227 #undef UPDATE_META_INT
228 #undef UPDATE_META
229
230     // If a artURL is available as a local file, directly display it !
231
232     QString file;
233     char *psz_art = input_item_GetArtURL( p_item );
234     if( psz_art && !strncmp( psz_art, "file://", 7 ) &&
235                 decode_URI( psz_art + 7 ) )
236 #ifdef WIN32
237         file = qfu( psz_art + 8 ); // Remove extra / on Win32 URI.
238 #else
239         file = qfu( psz_art + 7 );
240 #endif
241     free( psz_art );
242
243     art_cover->showArtUpdate( file );
244
245 }
246
247 /**
248  * Save the MetaData, triggered by parent->save Button
249  **/
250 void MetaPanel::saveMeta()
251 {
252     if( p_input == NULL )
253         return;
254
255     /* now we read the modified meta data */
256     input_item_SetTitle(  p_input, qtu( title_text->text() ) );
257     input_item_SetArtist( p_input, qtu( artist_text->text() ) );
258     input_item_SetAlbum(  p_input, qtu( collection_text->text() ) );
259     input_item_SetGenre(  p_input, qtu( genre_text->text() ) );
260     input_item_SetTrackNum(  p_input, qtu( seqnum_text->text() ) );
261     input_item_SetDate(  p_input, qtu( date_text->text() ) );
262
263     input_item_SetCopyright( p_input, qtu( copyright_text->text() ) );
264     input_item_SetPublisher( p_input, qtu( publisher_text->text() ) );
265     input_item_SetDescription( p_input, qtu( description_text->text() ) );
266
267     playlist_t *p_playlist = pl_Hold( p_intf );
268     input_item_WriteMeta( VLC_OBJECT(p_playlist), p_input );
269     pl_Release( p_intf );
270
271     /* Reset the status of the mode. No need to emit any signal because parent
272        is the only caller */
273     b_inEditMode = false;
274 }
275
276
277 bool MetaPanel::isInEditMode()
278 {
279     return b_inEditMode;
280 }
281
282 void MetaPanel::enterEditMode()
283 {
284     msg_Dbg( p_intf, "Entering Edit MetaData Mode" );
285     setEditMode( true );
286 }
287
288 void MetaPanel::setEditMode( bool b_editing )
289 {
290     b_inEditMode = b_editing;
291     if( b_editing )emit editing();
292 }
293
294 /*
295  * Clear all the metadata widgets
296  */
297 void MetaPanel::clear()
298 {
299     title_text->clear();
300     artist_text->clear();
301     genre_text->clear();
302     copyright_text->clear();
303     collection_text->clear();
304     seqnum_text->clear();
305     description_text->clear();
306     date_text->clear();
307     language_text->clear();
308     nowplaying_text->clear();
309     publisher_text->clear();
310
311     setEditMode( false );
312     emit uriSet( "" );
313 }
314
315 /**
316  * Second Panel - Shows the extra metadata in a tree, non editable.
317  **/
318 ExtraMetaPanel::ExtraMetaPanel( QWidget *parent,
319                                 intf_thread_t *_p_intf )
320                                 : QWidget( parent ), p_intf( _p_intf )
321 {
322      QGridLayout *layout = new QGridLayout(this);
323
324      QLabel *topLabel = new QLabel( qtr( "Extra metadata and other information"
325                  " are shown in this panel.\n" ) );
326      topLabel->setWordWrap( true );
327      layout->addWidget( topLabel, 0, 0 );
328
329      extraMetaTree = new QTreeWidget( this );
330      extraMetaTree->setAlternatingRowColors( true );
331      extraMetaTree->setColumnCount( 2 );
332      extraMetaTree->resizeColumnToContents( 0 );
333      extraMetaTree->header()->hide();
334 /*     QStringList headerList = ( QStringList() << qtr( "Type" )
335  *                                             << qtr( "Value" ) );
336  * Useless, add this header if you think it would help the user          **
337  */
338
339      layout->addWidget( extraMetaTree, 1, 0 );
340 }
341
342 /**
343  * Update the Extra Metadata from p_meta->i_extras
344  **/
345 void ExtraMetaPanel::update( input_item_t *p_item )
346 {
347     if( !p_item )
348     {
349         clear();
350         return;
351     }
352
353     QList<QTreeWidgetItem *> items;
354
355     extraMetaTree->clear();
356
357     vlc_mutex_lock( &p_item->lock );
358     vlc_meta_t *p_meta = p_item->p_meta;
359     if( !p_meta )
360     {
361         vlc_mutex_unlock( &p_item->lock );
362         return;
363     }
364
365     vlc_dictionary_t * p_dict = &p_meta->extra_tags;
366     char ** ppsz_allkey = vlc_dictionary_all_keys( p_dict );
367
368     for( int i = 0; ppsz_allkey[i] ; i++ )
369     {
370         const char * psz_value = (const char *)vlc_dictionary_value_for_key(
371                 p_dict, 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