]> git.sesse.net Git - vlc/blob - modules/gui/wxwidgets/dialogs/fileinfo.cpp
* Show meta-information separately
[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     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 MetaDataPanel( p_intf, notebook, false );
73     advanced_info = new AdvancedInfoPanel( p_intf, notebook );
74     stats_info = new InputStatsInfoPanel( p_intf, notebook );
75
76     notebook->AddPage( item_info, wxU(_("General") ), true );
77     notebook->AddPage( advanced_info, wxU(_("Advanced information") ), false );
78     notebook->AddPage( stats_info, wxU(_("Statistics") ), false );
79
80 #if (!wxCHECK_VERSION(2,5,2))
81     panel_sizer->Add( notebook_sizer, 1, wxEXPAND | wxALL, 5 );
82 #else
83     panel_sizer->Add( notebook, 1, wxEXPAND | wxALL, 5 );
84 #endif
85
86     panel_sizer->Layout();
87     SetSizerAndFit( panel_sizer );
88
89     if( p_playlist )
90     {
91         var_AddCallback( p_playlist, "item-change", ItemChanged, this );
92         vlc_object_release( p_playlist );
93     }
94
95     last_update = 0L;
96     b_need_update = VLC_TRUE;
97     Update();
98 }
99
100 void FileInfo::Update()
101 {
102
103     if( mdate() - last_update < 400000L ) return;
104     last_update = mdate();
105
106     playlist_t *p_playlist = (playlist_t *)vlc_object_find( p_intf,
107                                                  VLC_OBJECT_PLAYLIST,
108                                                  FIND_ANYWHERE );
109     if( !p_playlist ) return;
110
111     input_thread_t *p_input = p_playlist->p_input ;
112
113     if( !p_input || p_input->b_dead || !p_input->input.p_item->psz_name )
114     {
115         item_info->Clear();
116         advanced_info->Clear();
117         stats_info->Clear();
118         vlc_object_release( p_playlist );
119         return;
120     }
121
122     vlc_object_yield( p_input );
123     vlc_mutex_lock( &p_input->input.p_item->lock );
124     if( b_need_update == VLC_TRUE )
125     {
126         vlc_mutex_unlock( &p_input->input.p_item->lock  );
127         item_info->Update( p_input->input.p_item );
128         vlc_mutex_lock( &p_input->input.p_item->lock  );
129         advanced_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     panel_sizer->Layout();
138
139     return;
140 }
141
142 FileInfo::~FileInfo()
143 {
144 }
145
146 void FileInfo::OnButtonClose( wxCommandEvent& event )
147 {
148     wxCloseEvent cevent;
149     OnClose(cevent);
150 }
151
152 void FileInfo::OnClose( wxCloseEvent& WXUNUSED(event) )
153 {
154     Hide();
155 }
156
157 static int ItemChanged( vlc_object_t *p_this, const char *psz_var,
158                         vlc_value_t oldval, vlc_value_t newval, void *param )
159 {
160     FileInfo *p_fileinfo = (FileInfo *)param;
161     p_fileinfo->b_need_update = VLC_TRUE;
162     return VLC_SUCCESS;
163 }