]> git.sesse.net Git - vlc/blob - modules/gui/wxwidgets/dialogs/fileinfo.cpp
Show stats in interface (Refs:#473)
[vlc] / modules / gui / wxwidgets / dialogs / fileinfo.cpp
1 /*****************************************************************************
2  * fileinfo.cpp : wxWindows plugin for vlc
3  *****************************************************************************
4  * Copyright (C) 2000-2004 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Sigmund Augdal Helberg <dnumgis@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/fileinfo.hpp"
25 #include "dialogs/infopanels.hpp"
26
27 /*****************************************************************************
28  * Event Table.
29  *****************************************************************************/
30
31 static int ItemChanged( vlc_object_t *, const char *,
32                         vlc_value_t, vlc_value_t, void * );
33
34
35 /* IDs for the controls and the menu commands */
36 enum
37 {
38     Close_Event
39 };
40
41 BEGIN_EVENT_TABLE(FileInfo, wxFrame)
42     /* Button events */
43     EVT_BUTTON(wxID_OK, FileInfo::OnButtonClose)
44
45     /* Hide the window when the user closes the window */
46     EVT_CLOSE(FileInfo::OnClose)
47
48 END_EVENT_TABLE()
49
50 /*****************************************************************************
51  * Constructor.
52  *****************************************************************************/
53 FileInfo::FileInfo( intf_thread_t *_p_intf, wxWindow *p_parent ):
54     wxFrame( p_parent, -1, wxU(_("Stream and media info")), wxDefaultPosition,
55              wxDefaultSize, wxDEFAULT_FRAME_STYLE )
56 {
57     p_intf = _p_intf;
58     playlist_t *p_playlist = (playlist_t *)vlc_object_find( p_intf,
59                                                  VLC_OBJECT_PLAYLIST,
60                                                  FIND_ANYWHERE );
61
62     /* Initializations */
63     SetIcon( *p_intf->p_sys->p_icon );
64     SetAutoLayout( TRUE );
65
66     wxBoxSizer *panel_sizer = new wxBoxSizer( wxVERTICAL );
67
68     wxNotebook *notebook = new wxNotebook( this, -1 );
69 #if (!wxCHECK_VERSION(2,5,2))
70         wxNotebookSizer *notebook_sizer = new wxNotebookSizer( notebook );
71 #endif
72     item_info = new ItemInfoPanel( p_intf, notebook, false );
73     stats_info = new InputStatsInfoPanel( p_intf, notebook );
74
75     notebook->AddPage( item_info, wxU(_("General") ), true );
76     notebook->AddPage( stats_info, wxU(_("Statistics") ), false );
77
78 #if (!wxCHECK_VERSION(2,5,2))
79     panel_sizer->Add( notebook_sizer, 1, wxEXPAND | wxALL, 5 );
80 #else
81     panel_sizer->Add( notebook, 1, wxEXPAND | wxALL, 5 );
82 #endif
83
84     panel_sizer->Layout();
85     SetSizerAndFit( panel_sizer );
86
87
88     if( p_playlist )
89     {
90         var_AddCallback( p_playlist, "item-change", ItemChanged, this );
91         vlc_object_release( p_playlist );
92     }
93
94     last_update = 0L;
95     b_need_update = VLC_TRUE;
96     Update();
97 }
98
99 void FileInfo::Update()
100 {
101
102     if( mdate() - last_update < 400000L ) return;
103     last_update = mdate();
104
105     playlist_t *p_playlist = (playlist_t *)vlc_object_find( p_intf,
106                                                  VLC_OBJECT_PLAYLIST,
107                                                  FIND_ANYWHERE );
108     if( !p_playlist ) return;
109
110     input_thread_t *p_input =
111         (input_thread_t *)vlc_object_find( p_playlist, VLC_OBJECT_INPUT,
112                                            FIND_CHILD );
113
114     if( !p_input || p_input->b_dead || !p_input->input.p_item->psz_name )
115     {
116         item_info->Clear();
117         stats_info->Clear();
118         if ( p_input )
119         {
120             vlc_object_release(p_input);
121         }
122         vlc_object_release( p_playlist );
123         return;
124     }
125
126     vlc_mutex_lock( &p_input->input.p_item->lock );
127     if( b_need_update == VLC_TRUE )
128     {
129         item_info->Update( p_input->input.p_item );
130     }
131     stats_info->Update( p_input->input.p_item );
132     vlc_mutex_unlock( &p_input->input.p_item->lock );
133
134     vlc_object_release(p_input);
135     vlc_object_release( p_playlist );
136     b_need_update = VLC_FALSE;
137     return;
138 }
139
140 FileInfo::~FileInfo()
141 {
142 }
143
144 void FileInfo::OnButtonClose( wxCommandEvent& event )
145 {
146     wxCloseEvent cevent;
147     OnClose(cevent);
148 }
149
150 void FileInfo::OnClose( wxCloseEvent& WXUNUSED(event) )
151 {
152     Hide();
153 }
154
155 static int ItemChanged( vlc_object_t *p_this, const char *psz_var,
156                         vlc_value_t oldval, vlc_value_t newval, void *param )
157 {
158     FileInfo *p_fileinfo = (FileInfo *)param;
159     p_fileinfo->b_need_update = VLC_TRUE;
160     return VLC_SUCCESS;
161 }