]> git.sesse.net Git - vlc/blob - modules/gui/wxwidgets/input_manager.cpp
* more systray related ifndefs for the Darwin platform
[vlc] / modules / gui / wxwidgets / input_manager.cpp
1 /*****************************************************************************
2  * slider_manager.cpp : Manage an input slider
3  *****************************************************************************
4  * Copyright (C) 2000-2005 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Gildas Bazin <gbazin@videolan.org>
8  *          ClĂ©ment Stenac <zorglub@videolan.org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 #include "input_manager.hpp"
26 #include "interface.hpp"
27 #include "video.hpp"
28
29 #include <vlc_meta.h>
30
31 /* include the toolbar graphics */
32 #include "bitmaps/prev.xpm"
33 #include "bitmaps/next.xpm"
34 #include "bitmaps/playlist.xpm"
35
36 /* IDs for the controls */
37 enum
38 {
39     SliderScroll_Event = wxID_HIGHEST,
40
41     DiscMenu_Event,
42     DiscPrev_Event,
43     DiscNext_Event
44 };
45
46 BEGIN_EVENT_TABLE(InputManager, wxPanel)
47     /* Slider events */
48     EVT_COMMAND_SCROLL(SliderScroll_Event, InputManager::OnSliderUpdate)
49
50     /* Disc Buttons events */
51     EVT_BUTTON(DiscMenu_Event, InputManager::OnDiscMenu)
52     EVT_BUTTON(DiscPrev_Event, InputManager::OnDiscPrev)
53     EVT_BUTTON(DiscNext_Event, InputManager::OnDiscNext)
54
55 END_EVENT_TABLE()
56
57 #define STATUS_STOP 0
58 #define STATUS_PLAYING 1
59 #define STATUS_PAUSE 2
60
61 /*****************************************************************************
62  * Constructor.
63  *****************************************************************************/
64 InputManager::InputManager( intf_thread_t *_p_intf, Interface *_p_main_intf,
65                             wxWindow *p_parent )
66   : wxPanel( p_parent )
67 {
68     p_intf = _p_intf;
69     p_main_intf = _p_main_intf;
70     p_input = NULL;
71     i_old_playing_status = STATUS_STOP;
72     i_old_rate = INPUT_RATE_DEFAULT;
73     b_slider_free = VLC_TRUE;
74     i_input_hide_delay = 0;
75
76     /* Create slider */
77     slider = new wxSlider( this, SliderScroll_Event, 0, 0, SLIDER_MAX_POS );
78
79     /* Create disc buttons */
80     disc_frame = new wxPanel( this );
81
82     disc_menu_button = new wxBitmapButton( disc_frame, DiscMenu_Event,
83                                            wxBitmap( playlist_xpm ) );
84     disc_prev_button = new wxBitmapButton( disc_frame, DiscPrev_Event,
85                                            wxBitmap( prev_xpm ) );
86     disc_next_button = new wxBitmapButton( disc_frame, DiscNext_Event,
87                                            wxBitmap( next_xpm ) );
88
89     disc_sizer = new wxBoxSizer( wxHORIZONTAL );
90     disc_sizer->Add( disc_menu_button, 1, wxEXPAND | wxLEFT | wxRIGHT, 1 );
91     disc_sizer->Add( disc_prev_button, 1, wxEXPAND | wxLEFT | wxRIGHT, 1 );
92     disc_sizer->Add( disc_next_button, 1, wxEXPAND | wxLEFT | wxRIGHT, 1 );
93     disc_frame->SetSizer( disc_sizer );
94     disc_sizer->Layout();
95
96     /* Add everything to the panel */
97     sizer = new wxBoxSizer( wxHORIZONTAL );
98     SetSizer( sizer );
99     sizer->Add( slider, 1, wxEXPAND | wxALL, 5 );
100     sizer->Add( disc_frame, 0, wxALL, 2 );
101
102     /* Hide by default */
103     sizer->Hide( disc_frame );
104     sizer->Hide( slider );
105
106     sizer->Layout();
107     Fit();
108 }
109
110 InputManager::~InputManager()
111 {
112     vlc_mutex_lock( &p_intf->change_lock );
113     if( p_intf->p_sys->p_input ) vlc_object_release( p_intf->p_sys->p_input );
114     p_intf->p_sys->p_input = NULL;
115     vlc_mutex_unlock( &p_intf->change_lock );
116 }
117
118 /*****************************************************************************
119  * Public methods.
120  *****************************************************************************/
121 vlc_bool_t InputManager::IsPlaying()
122 {
123     return (p_input && !p_input->b_die);
124 }
125
126 /*****************************************************************************
127  * Private methods.
128  *****************************************************************************/
129 void InputManager::UpdateInput()
130 {
131     playlist_t *p_playlist =
132         (playlist_t *)vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
133                                        FIND_ANYWHERE );
134     if( p_playlist != NULL )
135     {
136         LockPlaylist( p_intf->p_sys, p_playlist );
137         p_input = p_intf->p_sys->p_input = p_playlist->p_input;
138         if( p_intf->p_sys->p_input )
139              vlc_object_yield( p_intf->p_sys->p_input );
140         UnlockPlaylist( p_intf->p_sys, p_playlist );
141         vlc_object_release( p_playlist );
142     }
143 }
144
145 void InputManager::UpdateNowPlaying()
146 {
147     char *psz_now_playing = vlc_input_item_GetInfo( p_input->input.p_item,
148                 _(VLC_META_INFO_CAT), _(VLC_META_NOW_PLAYING) );
149     if( psz_now_playing && *psz_now_playing )
150     {
151         p_main_intf->statusbar->SetStatusText(
152                     wxString(wxU(psz_now_playing)) + wxT( " - " ) +
153                     wxU(p_input->input.p_item->psz_name), 2 );
154     }
155     else
156     {
157         p_main_intf->statusbar->SetStatusText(
158                    wxU(p_input->input.p_item->psz_name), 2 );
159     }
160     free( psz_now_playing );
161 }
162
163 void InputManager::UpdateButtons( vlc_bool_t b_play )
164 {
165     if( !b_play )
166     {
167         if( i_old_playing_status == STATUS_STOP ) return;
168
169         i_old_playing_status = STATUS_STOP;
170         p_main_intf->TogglePlayButton( PAUSE_S );
171         p_main_intf->statusbar->SetStatusText( wxT(""), 0 );
172         p_main_intf->statusbar->SetStatusText( wxT(""), 2 );
173
174 /* wxCocoa pretends to support this, but at least 2.6.x doesn't */
175 #ifndef __APPLE__
176 #ifdef wxHAS_TASK_BAR_ICON
177         if( p_main_intf->p_systray )
178         {
179             p_main_intf->p_systray->UpdateTooltip(
180                 wxString(wxT("VLC media player - ")) + wxU(_("Stopped")) );
181         }
182 #endif
183 #endif
184
185         return;
186     }
187
188     /* Manage Playing status */
189     vlc_value_t val;
190     var_Get( p_input, "state", &val );
191     val.i_int = val.i_int == PAUSE_S ? STATUS_PAUSE : STATUS_PLAYING;
192     if( i_old_playing_status != val.i_int )
193     {
194         i_old_playing_status = val.i_int;
195         p_main_intf->TogglePlayButton( val.i_int == STATUS_PAUSE ?
196                                        PAUSE_S : PLAYING_S );
197
198 /* wxCocoa pretends to support this, but at least 2.6.x doesn't */
199 #ifndef __APPLE__
200 #ifdef wxHAS_TASK_BAR_ICON
201         if( p_main_intf->p_systray )
202         {
203             p_main_intf->p_systray->UpdateTooltip(
204                 wxU(p_input->input.p_item->psz_name) + wxString(wxT(" - ")) +
205                 (val.i_int == PAUSE_S ? wxU(_("Paused")) : wxU(_("Playing"))));
206         }
207 #endif
208 #endif
209     }
210 }
211
212 void InputManager::UpdateDiscButtons()
213 {
214     vlc_value_t val;
215     var_Change( p_input, "title", VLC_VAR_CHOICESCOUNT, &val, NULL );
216     if( val.i_int > 0 && !disc_frame->IsShown() )
217     {
218         vlc_value_t val;
219
220         #define HELP_MENU N_("Menu")
221         #define HELP_PCH N_("Previous chapter")
222         #define HELP_NCH N_("Next chapter")
223         #define HELP_PTR N_("Previous track")
224         #define HELP_NTR N_("Next track")
225
226         var_Change( p_input, "chapter", VLC_VAR_CHOICESCOUNT, &val, NULL );
227
228         if( val.i_int > 0 )
229         {
230             disc_menu_button->Show();
231             disc_sizer->Show( disc_menu_button );
232             disc_sizer->Layout();
233             disc_sizer->Fit( disc_frame );
234             disc_menu_button->SetToolTip( wxU(_( HELP_MENU ) ) );
235             disc_prev_button->SetToolTip( wxU(_( HELP_PCH ) ) );
236             disc_next_button->SetToolTip( wxU(_( HELP_NCH ) ) );
237         }
238         else
239         {
240             disc_menu_button->Hide();
241             disc_sizer->Hide( disc_menu_button );
242             disc_prev_button->SetToolTip( wxU(_( HELP_PTR ) ) );
243             disc_next_button->SetToolTip( wxU(_( HELP_NTR ) ) );
244         }
245
246         ShowDiscFrame();
247     }
248     else if( val.i_int == 0 && disc_frame->IsShown() )
249     {
250         HideDiscFrame();
251     }
252 }
253
254 void InputManager::HideSlider()
255 {
256     ShowSlider( false );
257 }
258
259 void InputManager::HideDiscFrame()
260 {
261     ShowDiscFrame( false );
262 }
263
264 void InputManager::UpdateTime()
265 {
266     char psz_time[ MSTRTIME_MAX_SIZE ], psz_total[ MSTRTIME_MAX_SIZE ];
267     mtime_t i_seconds;
268
269     i_seconds = var_GetTime( p_intf->p_sys->p_input, "length" ) / 1000000;
270     secstotimestr( psz_total, i_seconds );
271
272     i_seconds = var_GetTime( p_intf->p_sys->p_input, "time" ) / 1000000;
273     secstotimestr( psz_time, i_seconds );
274
275     p_main_intf->statusbar->SetStatusText(
276         wxU(psz_time) + wxString(wxT(" / ")) +wxU(psz_total), 0 );
277 }
278
279 void InputManager::Update()
280 {
281     /* Update the input */
282     if( p_input == NULL )
283     {
284         UpdateInput();
285
286         if( p_input )
287         {
288             slider->SetValue( 0 );
289         }
290         else if( !i_input_hide_delay )
291         {
292             i_input_hide_delay = mdate() + 200000;
293         }
294         else if( i_input_hide_delay < mdate() )
295         {
296             if( disc_frame->IsShown() ) HideDiscFrame();
297             if( slider->IsShown() ) HideSlider();
298             i_input_hide_delay = 0;
299         }
300     }
301     else if( p_input->b_dead )
302     {
303         UpdateButtons( VLC_FALSE );
304         vlc_object_release( p_input );
305         p_input = NULL;
306     }
307     else
308     {
309         i_input_hide_delay = 0;
310     }
311
312     if( p_input && !p_input->b_die )
313     {
314         vlc_value_t pos, len;
315
316         UpdateTime();
317         UpdateButtons( VLC_TRUE );
318         UpdateNowPlaying();
319         UpdateDiscButtons();
320
321         /* Really manage the slider */
322         var_Get( p_input, "position", &pos );
323         var_Get( p_input, "length", &len );
324
325         if( pos.f_float > 0 && !slider->IsShown() ) ShowSlider();
326         else if(  pos.f_float <= 0 &&  slider->IsShown() ) HideSlider();
327
328         /* Update the slider if the user isn't dragging it. */
329         if( slider->IsShown() && b_slider_free )
330         {
331             i_slider_pos = (int)(SLIDER_MAX_POS * pos.f_float);
332             slider->SetValue( i_slider_pos );
333         }
334
335         /* Manage Speed status */
336         vlc_value_t val;
337         var_Get( p_input, "rate", &val );
338         if( i_old_rate != val.i_int )
339         {
340             p_main_intf->statusbar->SetStatusText(
341                 wxString::Format(wxT("x%.2f"),
342                 (float)INPUT_RATE_DEFAULT / val.i_int ), 1 );
343             i_old_rate = val.i_int;
344         }
345     }
346 }
347
348 /*****************************************************************************
349  * Event Handlers.
350  *****************************************************************************/
351 void InputManager::OnDiscMenu( wxCommandEvent& WXUNUSED(event) )
352 {
353     input_thread_t *p_input =
354         (input_thread_t *)vlc_object_find( p_intf, VLC_OBJECT_INPUT,
355                                            FIND_ANYWHERE );
356     if( p_input )
357     {
358         vlc_value_t val; val.i_int = 2;
359
360         var_Set( p_input, "title  0", val);
361         vlc_object_release( p_input );
362     }
363 }
364
365 void InputManager::OnDiscPrev( wxCommandEvent& WXUNUSED(event) )
366 {
367     input_thread_t *p_input =
368         (input_thread_t *)vlc_object_find( p_intf, VLC_OBJECT_INPUT,
369                                            FIND_ANYWHERE );
370     if( p_input )
371     {
372         int i_type = var_Type( p_input, "prev-chapter" );
373         vlc_value_t val; val.b_bool = VLC_TRUE;
374
375         var_Set( p_input, ( i_type & VLC_VAR_TYPE ) != 0 ?
376                  "prev-chapter" : "prev-title", val );
377
378         vlc_object_release( p_input );
379     }
380 }
381
382 void InputManager::OnDiscNext( wxCommandEvent& WXUNUSED(event) )
383 {
384     input_thread_t *p_input =
385         (input_thread_t *)vlc_object_find( p_intf, VLC_OBJECT_INPUT,
386                                            FIND_ANYWHERE );
387     if( p_input )
388     {
389         int i_type = var_Type( p_input, "next-chapter" );
390         vlc_value_t val; val.b_bool = VLC_TRUE;
391
392         var_Set( p_input, ( i_type & VLC_VAR_TYPE ) != 0 ?
393                  "next-chapter" : "next-title", val );
394
395         vlc_object_release( p_input );
396     }
397 }
398
399 void InputManager::OnSliderUpdate( wxScrollEvent& event )
400 {
401     vlc_mutex_lock( &p_intf->change_lock );
402
403 #ifdef WIN32
404     if( event.GetEventType() == wxEVT_SCROLL_THUMBRELEASE
405         || event.GetEventType() == wxEVT_SCROLL_ENDSCROLL )
406     {
407 #endif
408         if( i_slider_pos != event.GetPosition() && p_intf->p_sys->p_input )
409         {
410             vlc_value_t pos;
411             pos.f_float = (float)event.GetPosition() / (float)SLIDER_MAX_POS;
412             var_Set( p_intf->p_sys->p_input, "position", pos );
413         }
414
415 #ifdef WIN32
416         b_slider_free = VLC_TRUE;
417     }
418     else
419     {
420         b_slider_free = VLC_FALSE;
421         if( p_intf->p_sys->p_input ) UpdateTime();
422     }
423 #endif
424
425 #undef WIN32
426     vlc_mutex_unlock( &p_intf->change_lock );
427 }
428
429 void InputManager::ShowSlider( bool show )
430 {
431     if( !!show == !!slider->IsShown() ) return;
432
433     UpdateVideoWindow( p_intf, p_main_intf->video_window );
434
435     sizer->Show( slider, show );
436     sizer->Layout();
437
438     wxCommandEvent intf_event( wxEVT_INTF, 0 );
439     p_main_intf->AddPendingEvent( intf_event );
440 }
441
442 void InputManager::ShowDiscFrame( bool show )
443 {
444     if( !!show == !!disc_frame->IsShown() ) return;
445
446     UpdateVideoWindow( p_intf, p_main_intf->video_window );
447
448     sizer->Show( disc_frame, show );
449     sizer->Layout();
450
451     wxCommandEvent intf_event( wxEVT_INTF, 0 );
452     p_main_intf->AddPendingEvent( intf_event );
453 }