]> git.sesse.net Git - vlc/blob - modules/gui/wxwidgets/dialogs/infopanels.cpp
Bitrates only
[vlc] / modules / gui / wxwidgets / dialogs / infopanels.cpp
1 /*****************************************************************************
2  * infopanels.cpp : Information panels (general info, stats, ...)
3  *****************************************************************************
4  * Copyright (C) 2000-2004 the VideoLAN team
5  * $Id: iteminfo.cpp 13905 2006-01-12 23:10:04Z dionoea $
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #include "dialogs/infopanels.hpp"
25 #include <wx/combobox.h>
26 #include <wx/statline.h>
27
28 #include <vlc_meta.h>
29
30 #ifndef wxRB_SINGLE
31 #   define wxRB_SINGLE 0
32 #endif
33
34 /*****************************************************************************
35  * General info (URI, name, metadata)
36  *****************************************************************************/
37 BEGIN_EVENT_TABLE( MetaDataPanel, wxPanel )
38 END_EVENT_TABLE()
39
40 MetaDataPanel::MetaDataPanel( intf_thread_t *_p_intf,
41                               wxWindow* _p_parent,
42                               bool _b_modifiable ):
43     wxPanel( _p_parent, -1 )
44 {
45     int flags= wxTE_PROCESS_ENTER;
46     /* Initializations */
47     p_intf = _p_intf;
48     p_parent = _p_parent;
49     b_modifiable = _b_modifiable;
50
51     SetAutoLayout( TRUE );
52
53     wxBoxSizer *panel_sizer = new wxBoxSizer( wxVERTICAL );
54
55     wxFlexGridSizer *sizer = new wxFlexGridSizer(2,8,20);
56     sizer->AddGrowableCol(1);
57
58     if( !b_modifiable )
59         flags |= wxTE_READONLY;
60
61     /* URI Textbox */
62     wxStaticText *uri_static =
63            new wxStaticText( this, -1, wxU(_("URI")) );
64     sizer->Add( uri_static, 0 , wxALL , 0 );
65
66     uri_text = new wxTextCtrl( this, -1,
67             wxU(""), wxDefaultPosition, wxSize( 300, -1 ), flags );
68     sizer->Add( uri_text, 1 ,  wxALL|wxEXPAND , 0 );
69
70     /* Name Textbox */
71     wxStaticText *name_static =
72            new wxStaticText(  this, -1, wxU(_("Name")) );
73     sizer->Add( name_static, 0 , wxALL , 0  );
74
75     name_text = new wxTextCtrl( this, -1,
76             wxU(""), wxDefaultPosition, wxSize( 300, -1 ), flags );
77     sizer->Add( name_text, 1 , wxALL|wxEXPAND , 0 );
78     sizer->Layout();
79
80     /* Metadata */
81     wxFlexGridSizer *meta_sizer = new wxFlexGridSizer(2,11,20);
82     meta_sizer->AddGrowableCol(1);
83
84 #define ADD_META( string, widget ) {                                        \
85         meta_sizer->Add( new wxStaticText( this, -1, wxU(_(string) ) ),1,   \
86                          wxTOP|wxRIGHT|wxLEFT|wxEXPAND, 0 );                \
87         widget = new wxStaticText( this, -1, wxU( "" ) );                   \
88         meta_sizer->Add( widget, 1, wxTOP|wxRIGHT|wxLEFT|wxEXPAND, 0 ); }
89
90     ADD_META( VLC_META_ARTIST, artist_text );
91     ADD_META( VLC_META_GENRE, genre_text );
92     ADD_META( VLC_META_COPYRIGHT, copyright_text );
93     ADD_META( VLC_META_COLLECTION, collection_text );
94     ADD_META( VLC_META_SEQ_NUM, seqnum_text );
95     ADD_META( VLC_META_DESCRIPTION, description_text );
96     ADD_META( VLC_META_RATING, rating_text );
97     ADD_META( VLC_META_DATE, date_text );
98     ADD_META( VLC_META_LANGUAGE, language_text );
99     ADD_META( VLC_META_NOW_PLAYING, nowplaying_text );
100     ADD_META( VLC_META_PUBLISHER, publisher_text );
101
102     meta_sizer->Layout();
103
104     panel_sizer->Add( sizer, 0, wxEXPAND | wxALL, 5 );
105     panel_sizer->Add( meta_sizer, 0, wxEXPAND | wxALL, 5 );
106     panel_sizer->Layout();
107     SetSizerAndFit( panel_sizer );
108 }
109
110 MetaDataPanel::~MetaDataPanel()
111 {
112 }
113
114 void MetaDataPanel::Update( input_item_t *p_item )
115 {
116     /* Rebuild the tree */
117     Clear();
118
119     uri_text->SetValue( wxU( p_item->psz_uri ) );
120     name_text->SetValue( wxU( p_item->psz_name ) );
121
122 #define UPDATE_META( meta, widget ) {                                       \
123     char *psz_meta = vlc_input_item_GetInfo( p_item, _(VLC_META_INFO_CAT),  \
124                                             _(meta) );                      \
125     if( psz_meta != NULL && *psz_meta)                                      \
126     {                                                                       \
127         widget->SetLabel( wxU( psz_meta ) );                                \
128     }                                                                       \
129     else { widget->SetLabel( wxU( "-" ) ); }                                \
130     }
131
132     UPDATE_META( VLC_META_ARTIST, artist_text );
133     UPDATE_META( VLC_META_GENRE, genre_text );
134     UPDATE_META( VLC_META_COPYRIGHT, copyright_text );
135     UPDATE_META( VLC_META_COLLECTION, collection_text );
136     UPDATE_META( VLC_META_SEQ_NUM, seqnum_text );
137     UPDATE_META( VLC_META_DESCRIPTION, description_text );
138     UPDATE_META( VLC_META_RATING, rating_text );
139     UPDATE_META( VLC_META_DATE, date_text );
140     UPDATE_META( VLC_META_LANGUAGE, language_text );
141     UPDATE_META( VLC_META_NOW_PLAYING, nowplaying_text );
142     UPDATE_META( VLC_META_PUBLISHER, publisher_text );
143
144 #undef UPDATE_META
145 }
146
147 char* MetaDataPanel::GetURI( )
148 {
149     return  strdup( uri_text->GetLineText(0).mb_str() );
150 }
151
152 char* MetaDataPanel::GetName( )
153 {
154     return  strdup( name_text->GetLineText(0).mb_str() );
155 }
156
157 void MetaDataPanel::Clear()
158 {
159 }
160
161 void MetaDataPanel::OnOk( )
162 {
163 }
164
165 void MetaDataPanel::OnCancel( )
166 {
167 }
168
169
170 /*****************************************************************************
171  * General info panel
172  *****************************************************************************/
173 BEGIN_EVENT_TABLE( AdvancedInfoPanel, wxPanel )
174 END_EVENT_TABLE()
175
176 AdvancedInfoPanel::AdvancedInfoPanel( intf_thread_t *_p_intf,
177                                       wxWindow* _p_parent ):
178     wxPanel( _p_parent, -1 )
179 {
180     int flags= wxTE_PROCESS_ENTER;
181     /* Initializations */
182     p_intf = _p_intf;
183     p_parent = _p_parent;
184
185     SetAutoLayout( TRUE );
186
187     wxBoxSizer *panel_sizer = new wxBoxSizer( wxVERTICAL );
188
189     wxFlexGridSizer *sizer = new wxFlexGridSizer(2,8,20);
190     sizer->AddGrowableCol(1);
191
192     /* Treeview */
193     info_tree = new wxTreeCtrl( this, -1, wxDefaultPosition,
194                                 wxSize(220,200),
195                                 wxSUNKEN_BORDER |wxTR_HAS_BUTTONS |
196                                 wxTR_HIDE_ROOT );
197     info_root = info_tree->AddRoot( wxU( "" ) );
198
199     panel_sizer->Add( info_tree, 1, wxEXPAND | wxALL, 5 );
200     panel_sizer->Layout();
201     SetSizerAndFit( panel_sizer );
202 }
203
204 AdvancedInfoPanel::~AdvancedInfoPanel()
205 {
206 }
207
208 void AdvancedInfoPanel::Update( input_item_t *p_item )
209 {
210     /* Rebuild the tree */
211     Clear();
212
213     for( int i = 0; i< p_item->i_categories ; i++)
214     {
215         wxTreeItemId cat = info_tree->AppendItem( info_root,
216                             wxU( p_item->pp_categories[i]->psz_name) );
217
218         for( int j = 0 ; j < p_item->pp_categories[i]->i_infos ; j++ )
219         {
220            info_tree->AppendItem( cat , (wxString)
221                wxU(p_item->pp_categories[i]->pp_infos[j]->psz_name) +
222                wxT(": ") +
223                wxU(p_item->pp_categories[i]->pp_infos[j]->psz_value) );
224         }
225
226         info_tree->Expand( cat );
227     }
228 }
229
230 void AdvancedInfoPanel::Clear()
231 {
232     info_tree->DeleteChildren( info_root );
233 }
234
235 void AdvancedInfoPanel::OnOk( )
236 {
237 }
238
239 void AdvancedInfoPanel::OnCancel( )
240 {
241 }
242
243 /*****************************************************************************
244  * Statistics info panel
245  *****************************************************************************/
246 BEGIN_EVENT_TABLE( InputStatsInfoPanel, wxPanel )
247 END_EVENT_TABLE()
248
249 InputStatsInfoPanel::InputStatsInfoPanel( intf_thread_t *_p_intf,
250                                           wxWindow* _p_parent ):
251     wxPanel( _p_parent, -1 )
252 {
253     /* Initializations */
254     p_intf = _p_intf;
255     p_parent = _p_parent;
256
257     SetAutoLayout( TRUE );
258
259     panel_sizer = new wxBoxSizer( wxVERTICAL );
260
261     sizer = new wxFlexGridSizer( 2,2,20 );
262
263     /* Input */
264     wxStaticBox *input_box = new wxStaticBox( this, -1,
265                                               wxU( _("Input") ) );
266     input_box->SetAutoLayout( TRUE );
267     input_bsizer = new wxStaticBoxSizer( input_box, wxVERTICAL );
268     input_sizer = new wxFlexGridSizer( 2,2, 20 );
269
270 #define INPUT_ADD(txt,widget,dflt) \
271     { input_sizer->Add ( new wxStaticText( this, -1, wxU(_( txt ) ) ),  \
272                          0, wxEXPAND| wxRIGHT, 5 );                     \
273       widget = new wxStaticText( this, -1, wxU( dflt ) );               \
274       input_sizer->Add( widget, 0, wxEXPAND| wxLEFT, 5  );              \
275     }
276
277     INPUT_ADD( "Read at media", read_bytes_text, "0" );
278     INPUT_ADD( "Input bitrate", input_bitrate_text, "0" );
279
280     INPUT_ADD( "Demuxed", demux_bytes_text ,"0");
281     /* Hack to get enough size */
282     INPUT_ADD( "Stream bitrate", demux_bitrate_text, "0              " );
283
284     input_sizer->Layout();
285     input_bsizer->Add( input_sizer, 0, wxALL | wxGROW, 5 );
286     input_bsizer->Layout();
287     sizer->Add( input_bsizer, 0, wxALL|wxGROW, 5 );
288
289    /* Vout */
290     wxStaticBox *video_box = new wxStaticBox( this, -1,
291                                               wxU( _("Video" ) ) );
292     video_box->SetAutoLayout( TRUE );
293     video_bsizer = new wxStaticBoxSizer( video_box,
294                                                           wxVERTICAL );
295     video_sizer = new wxFlexGridSizer( 2,3, 20 );
296
297 #define VIDEO_ADD(txt,widget,dflt) \
298     { video_sizer->Add ( new wxStaticText( this, -1, wxU(_( txt ) ) ),   \
299                          0, wxEXPAND|wxLEFT , 5  );                      \
300       widget = new wxStaticText( this, -1, wxU( dflt ) );                \
301       video_sizer->Add( widget, 0, wxEXPAND|wxRIGHT, 5 );                \
302     }
303     VIDEO_ADD( "Decoded blocks", video_decoded_text, "0" );
304     /* Hack to get enough size */
305     VIDEO_ADD( "Displayed frames", displayed_text, "0                  " );
306     VIDEO_ADD( "Lost frames", lost_frames_text, "0" );
307
308
309     video_sizer->Layout();
310     video_bsizer->Add( video_sizer, 0, wxALL | wxGROW, 5 );
311     video_bsizer->Layout();
312     sizer->Add( video_bsizer , 0, wxALL| wxGROW, 5 );
313
314     /* Sout */
315     wxStaticBox *sout_box = new wxStaticBox( this, -1,
316                                               wxU( _("Streaming" ) ) );
317     sout_box->SetAutoLayout( TRUE );
318     sout_bsizer = new wxStaticBoxSizer( sout_box, wxVERTICAL );
319     sout_sizer = new wxFlexGridSizer( 2,3, 20 );
320
321 #define SOUT_ADD(txt,widget,dflt) \
322     { sout_sizer->Add ( new wxStaticText( this, -1, wxU(_( txt ) ) ),    \
323                          0, wxEXPAND|wxLEFT|wxALIGN_LEFT , 5  );         \
324       widget = new wxStaticText( this, -1, wxU( dflt ) );                \
325       sout_sizer->Add( widget, 0, wxEXPAND|wxRIGHT|wxALIGN_LEFT, 5 );   \
326     }
327     SOUT_ADD( "Sent packets", sout_sent_packets_text, "0" );
328     SOUT_ADD( "Sent bytes", sout_sent_bytes_text, "0          " );
329     SOUT_ADD( "Send rate", sout_send_bitrate_text, "0        " );
330     sout_sizer->Layout();
331     sout_bsizer->Add( sout_sizer, 0, wxALL | wxGROW, 5 );
332     sout_bsizer->Layout();
333     sizer->Add( sout_bsizer , 0, wxALL| wxGROW, 5 );
334
335    /* Aout */
336     wxStaticBox *audio_box = new wxStaticBox( this, -1,
337                                               wxU( _("Audio" ) ) );
338     audio_box->SetAutoLayout( TRUE );
339     audio_bsizer = new wxStaticBoxSizer( audio_box, wxVERTICAL );
340     audio_sizer = new wxFlexGridSizer( 2,3, 20 );
341
342 #define AUDIO_ADD(txt,widget,dflt) \
343     { audio_sizer->Add ( new wxStaticText( this, -1, wxU(_( txt ) ) ),   \
344                          0, wxEXPAND|wxLEFT , 5  );                      \
345       widget = new wxStaticText( this, -1, wxU( dflt ) );                \
346       audio_sizer->Add( widget, 0, wxEXPAND|wxRIGHT, 5 );                \
347     }
348     AUDIO_ADD( "Decoded blocks", audio_decoded_text, "0" );
349     /* Hack to get enough size */
350     AUDIO_ADD( "Played buffers", played_abuffers_text,
351                                  "0                  " );
352     AUDIO_ADD( "Lost buffers", lost_abuffers_text, "0" );
353     audio_sizer->Layout();
354     audio_bsizer->Add( audio_sizer, 0, wxALL | wxGROW, 5 );
355     audio_bsizer->Layout();
356     sizer->Add( audio_bsizer , 0, wxALL| wxGROW, 5 );
357
358     sizer->Layout();
359     panel_sizer->Add( sizer, 0, wxEXPAND, 5 );
360     panel_sizer->Layout();
361     SetSizerAndFit( panel_sizer );
362 }
363
364 InputStatsInfoPanel::~InputStatsInfoPanel()
365 {
366 }
367
368 void InputStatsInfoPanel::Update( input_item_t *p_item )
369 {
370     vlc_mutex_lock( &p_item->p_stats->lock );
371
372     /* Input */
373 #define UPDATE( widget,format, calc... )   \
374 {                                       \
375     wxString formatted;                 \
376     formatted.Printf(  wxString( wxT(format) ), ## calc ); \
377     widget->SetLabel( formatted );                      \
378 }
379     UPDATE( read_bytes_text, "%8.0f kB",(float)(p_item->p_stats->i_read_bytes)/1000 );
380     UPDATE( input_bitrate_text, "%6.0f kb/s", (float)(p_item->p_stats->f_input_bitrate)*8000 );
381     UPDATE( demux_bytes_text, "%8.0f kB", (float)(p_item->p_stats->i_demux_read_bytes)/1000 );
382     UPDATE( demux_bitrate_text, "%6.0f kb/s",  (float)(p_item->p_stats->f_demux_bitrate)*8000 );
383
384     /* Video */
385     UPDATE( video_decoded_text, "%5i", p_item->p_stats->i_decoded_video );
386     UPDATE( displayed_text, "%5i", p_item->p_stats->i_displayed_pictures );
387     UPDATE( lost_frames_text, "%5i", p_item->p_stats->i_lost_pictures );
388
389     /* Sout */
390     UPDATE( sout_sent_packets_text, "%5i", p_item->p_stats->i_sent_packets );
391     UPDATE( sout_sent_bytes_text, "%8.0f kB",
392             (float)(p_item->p_stats->i_sent_bytes)/1000 );
393     UPDATE( sout_send_bitrate_text, "%6.0f kb/s",
394             (float)(p_item->p_stats->f_send_bitrate*8)*1000 );
395
396     /* Audio*/
397     UPDATE( audio_decoded_text, "%5i", p_item->p_stats->i_decoded_audio );
398     UPDATE( played_abuffers_text, "%5i", p_item->p_stats->i_played_abuffers );
399     UPDATE( lost_abuffers_text, "%5i", p_item->p_stats->i_lost_abuffers );
400
401     vlc_mutex_unlock( &p_item->p_stats->lock );
402
403     input_sizer->Layout();
404     video_sizer->Layout();
405
406     sizer->Layout();
407     panel_sizer->Layout();
408     SetSizerAndFit( panel_sizer );
409 }
410
411 void InputStatsInfoPanel::Clear()
412 {}
413
414 void InputStatsInfoPanel::OnOk( )
415 {}
416
417 void InputStatsInfoPanel::OnCancel( )
418 {}
419