]> git.sesse.net Git - vlc/blob - modules/gui/qt4/input_manager.cpp
qt4: Don't update art when it hasn't changed
[vlc] / modules / gui / qt4 / input_manager.cpp
1 /*****************************************************************************
2  * input_manager.cpp : Manage an input and interact with its GUI elements
3  ****************************************************************************
4  * Copyright (C) 2006-2008 the VideoLAN team
5  * $Id$
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *          Ilkka Ollakka  <ileoo@videolan.org>
9  *          Jean-Baptiste <jb@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 "input_manager.hpp"
31 #include <vlc_keys.h>
32 #include <vlc_url.h>
33
34 #include <QApplication>
35
36 #include <assert.h>
37
38 static int ItemChanged( vlc_object_t *, const char *,
39                         vlc_value_t, vlc_value_t, void * );
40 static int PLItemChanged( vlc_object_t *, const char *,
41                         vlc_value_t, vlc_value_t, void * );
42 static int PLItemAppended( vlc_object_t *, const char *,
43                         vlc_value_t, vlc_value_t, void * );
44 static int PLItemRemoved( vlc_object_t *, const char *,
45                         vlc_value_t, vlc_value_t, void * );
46 static int VolumeChanged( vlc_object_t *, const char *,
47                         vlc_value_t, vlc_value_t, void * );
48 static int SoundMuteChanged( vlc_object_t *, const char *,
49                         vlc_value_t, vlc_value_t, void * );
50
51 static int RandomChanged( vlc_object_t *, const char *,
52                         vlc_value_t, vlc_value_t, void * );
53 static int LoopChanged( vlc_object_t *, const char *,
54                         vlc_value_t, vlc_value_t, void * );
55 static int RepeatChanged( vlc_object_t *, const char *,
56                         vlc_value_t, vlc_value_t, void * );
57
58
59 static int InputEvent( vlc_object_t *, const char *,
60                        vlc_value_t, vlc_value_t, void * );
61 static int VbiEvent( vlc_object_t *, const char *,
62                      vlc_value_t, vlc_value_t, void * );
63
64
65 /**********************************************************************
66  * InputManager implementation
67  **********************************************************************
68  * The Input Manager can be the main one around the playlist
69  * But can also be used for VLM dialog or similar
70  **********************************************************************/
71
72 InputManager::InputManager( QObject *parent, intf_thread_t *_p_intf) :
73                            QObject( parent ), p_intf( _p_intf )
74 {
75     i_old_playing_status = END_S;
76     oldName      = "";
77     artUrl       = "";
78     p_input      = NULL;
79     i_rate       = 0;
80     p_item       = NULL;
81     b_video      = false;
82     timeA        = 0;
83     timeB        = 0;
84     f_cache      = -1.; /* impossible initial value, different from all */
85 }
86
87 InputManager::~InputManager()
88 {
89     delInput();
90 }
91
92 /* Define the Input used.
93    Add the callbacks on input
94    p_input is held once here */
95 void InputManager::setInput( input_thread_t *_p_input )
96 {
97     delInput();
98     p_input = _p_input;
99     if( p_input && !( p_input->b_dead || !vlc_object_alive (p_input) ) )
100     {
101         msg_Dbg( p_intf, "IM: Setting an input" );
102         vlc_object_hold( p_input );
103         emit statusChanged( PLAYING_S );
104         UpdateName();
105         UpdateArt();
106         UpdateTeletext();
107         UpdateNavigation();
108         UpdateVout();
109         addCallbacks();
110         p_item = input_GetItem( p_input );
111     }
112     else
113     {
114         p_input = NULL;
115         p_item = NULL;
116         emit rateChanged( INPUT_RATE_DEFAULT );
117     }
118 }
119
120 /* delete Input if it ever existed.
121    Delete the callbacls on input
122    p_input is released once here */
123 void InputManager::delInput()
124 {
125     if( !p_input ) return;
126     msg_Dbg( p_intf, "IM: Deleting the input" );
127
128     delCallbacks();
129     i_old_playing_status = END_S;
130     p_item               = NULL;
131     oldName              = "";
132     artUrl               = "";
133     b_video              = false;
134     timeA                = 0;
135     timeB                = 0;
136
137     vlc_object_release( p_input );
138     p_input = NULL;
139
140     emit positionUpdated( -1.0, 0 ,0 );
141     emit rateChanged( INPUT_RATE_DEFAULT ); /* TODO: Do we want this ? */
142     emit nameChanged( "" );
143     emit chapterChanged( 0 );
144     emit titleChanged( 0 );
145     emit statusChanged( END_S );
146
147     emit teletextPossible( false );
148     emit AtoBchanged( false, false );
149     emit voutChanged( false );
150     emit voutListChanged( NULL, 0 );
151
152     /* Reset all InfoPanels but stats */
153     emit artChanged( NULL );
154     emit infoChanged( NULL );
155     emit currentMetaChanged( (input_item_t *)NULL );
156
157     emit encryptionChanged( false );
158     emit recordingStateChanged( false );
159 }
160
161 /* Convert the event from the callbacks in actions */
162 void InputManager::customEvent( QEvent *event )
163 {
164     int i_type = event->type();
165     IMEvent *ple = static_cast<IMEvent *>(event);
166
167     if( i_type == ItemChanged_Type )
168         UpdateMeta( ple->p_item );
169
170     if( !hasInput() )
171         return;
172
173     /* Actions */
174     switch( i_type )
175     {
176     case PositionUpdate_Type:
177         UpdatePosition();
178         break;
179     case StatisticsUpdate_Type:
180         UpdateStats();
181         break;
182     case ItemChanged_Type:
183         /* Ignore ItemChanged_Type event that does not apply to our input */
184         if( p_item == ple->p_item )
185         {
186             UpdateStatus();
187             // UpdateName();
188             UpdateArt();
189             /* Update duration of file */
190         }
191         break;
192     case ItemStateChanged_Type:
193         // TODO: Fusion with above state
194         UpdateStatus();
195         // UpdateName();
196         // UpdateNavigation(); This shouldn't be useful now
197         // UpdateTeletext(); Same
198         break;
199     case NameChanged_Type:
200         UpdateName();
201         break;
202     case MetaChanged_Type:
203         UpdateMeta();
204         UpdateName(); /* Needed for NowPlaying */
205         UpdateArt(); /* Art is part of meta in the core */
206         break;
207     case InfoChanged_Type:
208         UpdateInfo();
209         break;
210     case ItemTitleChanged_Type:
211         UpdateNavigation();
212         UpdateName(); /* Display the name of the Chapter, if exists */
213         break;
214     case ItemRateChanged_Type:
215         UpdateRate();
216         break;
217     case ItemEsChanged_Type:
218         UpdateTeletext();
219         // We don't do anything ES related. Why ?
220         break;
221     case ItemTeletextChanged_Type:
222         UpdateTeletext();
223         break;
224     case InterfaceVoutUpdate_Type:
225         UpdateVout();
226         break;
227     case SynchroChanged_Type:
228         emit synchroChanged();
229         break;
230     case CachingEvent_Type:
231         UpdateCaching();
232         break;
233     case BookmarksChanged_Type:
234         emit bookmarksChanged();
235         break;
236     case InterfaceAoutUpdate_Type:
237         UpdateAout();
238         break;
239     case RecordingEvent_Type:
240         UpdateRecord();
241         break;
242     case ProgramChanged_Type:
243         UpdateProgramEvent();
244         break;
245     default:
246         msg_Warn( p_intf, "This shouldn't happen: %i", i_type );
247         assert(0);
248     }
249 }
250
251 /* Add the callbacks on Input. Self explanatory */
252 inline void InputManager::addCallbacks()
253 {
254     var_AddCallback( p_input, "intf-event", InputEvent, this );
255 }
256
257 /* Delete the callbacks on Input. Self explanatory */
258 inline void InputManager::delCallbacks()
259 {
260     var_DelCallback( p_input, "intf-event", InputEvent, this );
261 }
262
263 /* Static callbacks for IM */
264 static int ItemChanged( vlc_object_t *p_this, const char *psz_var,
265                         vlc_value_t oldval, vlc_value_t newval, void *param )
266 {
267     InputManager *im = (InputManager*)param;
268     input_item_t *p_item = static_cast<input_item_t *>(newval.p_address);
269
270     IMEvent *event = new IMEvent( ItemChanged_Type, p_item );
271     QApplication::postEvent( im, event );
272     return VLC_SUCCESS;
273 }
274
275 static int InputEvent( vlc_object_t *p_this, const char *,
276                        vlc_value_t, vlc_value_t newval, void *param )
277 {
278     InputManager *im = (InputManager*)param;
279     IMEvent *event;
280
281     switch( newval.i_int )
282     {
283     case INPUT_EVENT_STATE:
284         event = new IMEvent( ItemStateChanged_Type );
285         break;
286     case INPUT_EVENT_RATE:
287         event = new IMEvent( ItemRateChanged_Type );
288         break;
289     case INPUT_EVENT_POSITION:
290     //case INPUT_EVENT_LENGTH:
291         event = new IMEvent( PositionUpdate_Type );
292         break;
293
294     case INPUT_EVENT_TITLE:
295     case INPUT_EVENT_CHAPTER:
296         event = new IMEvent( ItemTitleChanged_Type );
297         break;
298
299     case INPUT_EVENT_ES:
300         event = new IMEvent( ItemEsChanged_Type );
301         break;
302     case INPUT_EVENT_TELETEXT:
303         event = new IMEvent( ItemTeletextChanged_Type );
304         break;
305
306     case INPUT_EVENT_STATISTICS:
307         event = new IMEvent( StatisticsUpdate_Type );
308         break;
309
310     case INPUT_EVENT_VOUT:
311         event = new IMEvent( InterfaceVoutUpdate_Type );
312         break;
313     case INPUT_EVENT_AOUT:
314         event = new IMEvent( InterfaceAoutUpdate_Type );
315         break;
316
317     case INPUT_EVENT_ITEM_META: /* Codec MetaData + Art */
318         event = new IMEvent( MetaChanged_Type );
319         break;
320     case INPUT_EVENT_ITEM_INFO: /* Codec Info */
321         event = new IMEvent( InfoChanged_Type );
322         break;
323     case INPUT_EVENT_ITEM_NAME:
324         event = new IMEvent( NameChanged_Type );
325         break;
326
327     case INPUT_EVENT_AUDIO_DELAY:
328     case INPUT_EVENT_SUBTITLE_DELAY:
329         event = new IMEvent( SynchroChanged_Type );
330         break;
331
332     case INPUT_EVENT_CACHE:
333         event = new IMEvent( CachingEvent_Type );
334         break;
335
336     case INPUT_EVENT_BOOKMARK:
337         event = new IMEvent( BookmarksChanged_Type );
338         break;
339
340     case INPUT_EVENT_RECORD:
341         event = new IMEvent( RecordingEvent_Type );
342         break;
343
344     case INPUT_EVENT_PROGRAM:
345         /* This is for PID changes */
346         event = new IMEvent( ProgramChanged_Type );
347         break;
348
349     case INPUT_EVENT_SIGNAL:
350         /* This is for capture-card signals */
351         /* event = new IMEvent( SignalChanged_Type );
352         break; */
353     default:
354         event = NULL;
355         break;
356     }
357
358     if( event )
359         QApplication::postEvent( im, event );
360     return VLC_SUCCESS;
361 }
362
363 static int VbiEvent( vlc_object_t *, const char *,
364                      vlc_value_t, vlc_value_t, void *param )
365 {
366     InputManager *im = (InputManager*)param;
367     IMEvent *event = new IMEvent( ItemTeletextChanged_Type );
368
369     QApplication::postEvent( im, event );
370     return VLC_SUCCESS;
371 }
372
373 void InputManager::UpdatePosition()
374 {
375     /* Update position */
376     int i_length, i_time; /* Int is enough, since we store seconds */
377     float f_pos;
378     i_length = var_GetTime(  p_input , "length" ) / 1000000;
379     i_time = var_GetTime(  p_input , "time") / 1000000;
380     f_pos = var_GetFloat(  p_input , "position" );
381     emit positionUpdated( f_pos, i_time, i_length );
382 }
383
384 void InputManager::UpdateNavigation()
385 {
386     /* Update navigation status */
387     vlc_value_t val; val.i_int = 0;
388
389     if( hasInput() )
390         var_Change( p_input, "title", VLC_VAR_CHOICESCOUNT, &val, NULL );
391
392     if( val.i_int > 0 )
393     {
394         emit titleChanged( true );
395         msg_Dbg( p_intf, "Title %i", val.i_int );
396         /* p_input != NULL since val.i_int != 0 */
397         val.i_int = 0;
398         var_Change( p_input, "chapter", VLC_VAR_CHOICESCOUNT, &val, NULL );
399         emit chapterChanged( (val.i_int > 0) );
400         msg_Dbg( p_intf, "Chapter: %i", val.i_int );
401     }
402     else
403         emit titleChanged( false );
404 }
405
406 void InputManager::UpdateStatus()
407 {
408     /* Update playing status */
409     int state = var_GetInteger( p_input, "state" );
410     if( i_old_playing_status != state )
411     {
412         i_old_playing_status = state;
413         emit statusChanged( state );
414     }
415 }
416
417 void InputManager::UpdateRate()
418 {
419     /* Update Rate */
420     int i_new_rate = INPUT_RATE_DEFAULT / var_GetFloat( p_input, "rate" );
421     if( i_new_rate != i_rate )
422     {
423         i_rate = i_new_rate;
424         /* Update rate */
425         emit rateChanged( i_rate );
426     }
427 }
428
429 void InputManager::UpdateName()
430 {
431     /* Update text, name and nowplaying */
432     QString text;
433
434     /* Try to get the Title, then the Name */
435     char *psz_name = input_item_GetTitleFbName( input_GetItem( p_input ) );
436
437     /* Try to get the nowplaying */
438     char *psz_nowplaying =
439         input_item_GetNowPlaying( input_GetItem( p_input ) );
440     if( !EMPTY_STR( psz_nowplaying ) )
441     {
442         text.sprintf( "%s - %s", psz_nowplaying, psz_name );
443     }
444     else  /* Do it ourself */
445     {
446         char *psz_artist = input_item_GetArtist( input_GetItem( p_input ) );
447
448         if( !EMPTY_STR( psz_artist ) )
449             text.sprintf( "%s - %s", psz_artist, psz_name );
450         else
451             text.sprintf( "%s", psz_name );
452
453         free( psz_artist );
454     }
455     /* Free everything */
456     free( psz_name );
457     free( psz_nowplaying );
458
459     /* If we have Nothing */
460     if( text.isEmpty() )
461     {
462         psz_name = input_item_GetURI( input_GetItem( p_input ) );
463         text.sprintf( "%s", psz_name );
464         text = text.remove( 0, text.lastIndexOf( DIR_SEP ) + 1 );
465         free( psz_name );
466     }
467
468     if( oldName != text )
469     {
470         emit nameChanged( text );
471         oldName = text;
472     }
473 }
474
475 bool InputManager::hasAudio()
476 {
477     if( hasInput() )
478     {
479         vlc_value_t val;
480         var_Change( p_input, "audio-es", VLC_VAR_CHOICESCOUNT, &val, NULL );
481         return val.i_int > 0;
482     }
483     return false;
484 }
485
486 void InputManager::UpdateTeletext()
487 {
488     if( hasInput() )
489     {
490         const bool b_enabled = var_CountChoices( p_input, "teletext-es" ) > 0;
491         const int i_teletext_es = var_GetInteger( p_input, "teletext-es" );
492
493         /* Teletext is possible. Show the buttons */
494         emit teletextPossible( b_enabled );
495
496         /* If Teletext is selected */
497         if( b_enabled && i_teletext_es >= 0 )
498         {
499             /* Then, find the current page */
500             int i_page = 100;
501             bool b_transparent = false;
502
503             vlc_object_t *p_vbi = (vlc_object_t *)
504                 vlc_object_find_name( p_input, "zvbi", FIND_CHILD );
505
506             if( p_vbi )
507             {
508                 /* We deleted it (if not here, it does not harm), because
509                  * var_AddCallback will silently add a duplicated one */
510                 var_DelCallback( p_vbi, "vbi-page", VbiEvent, this );
511                 /* This callback is not remove explicitly, but interfaces
512                  * are guaranted to outlive input */
513                 var_AddCallback( p_vbi, "vbi-page", VbiEvent, this );
514
515                 i_page = var_GetInteger( p_vbi, "vbi-page" );
516                 b_transparent = !var_GetBool( p_vbi, "vbi-opaque" );
517                 vlc_object_release( p_vbi );
518             }
519             emit newTelexPageSet( i_page );
520             emit teletextTransparencyActivated( b_transparent );
521
522         }
523         emit teletextActivated( b_enabled && i_teletext_es >= 0 );
524     }
525     else
526     {
527         emit teletextActivated( false );
528         emit teletextPossible( false );
529     }
530 }
531
532 void InputManager::UpdateVout()
533 {
534     if( hasInput() )
535     {
536         /* Get current vout lists from input */
537         int i_vout;
538         vout_thread_t **pp_vout;
539         if( input_Control( p_input, INPUT_GET_VOUTS, &pp_vout, &i_vout ) )
540         {
541             i_vout = 0;
542             pp_vout = NULL;
543         }
544
545         /* */
546         emit voutListChanged( pp_vout, i_vout );
547
548         /* */
549         bool b_old_video = b_video;
550         b_video = i_vout > 0;
551         if( !!b_old_video != !!b_video )
552             emit voutChanged( b_video );
553
554         /* Release the vout list */
555         for( int i = 0; i < i_vout; i++ )
556             vlc_object_release( (vlc_object_t*)pp_vout[i] );
557         free( pp_vout );
558     }
559 }
560 void InputManager::UpdateAout()
561 {
562     if( hasInput() )
563     {
564         /* TODO */
565     }
566 }
567 void InputManager::UpdateCaching()
568 {
569     if(!hasInput()) return;
570
571     float f_newCache = var_GetFloat ( p_input, "cache" );
572     if( f_newCache != f_cache )
573     {
574         f_cache = f_newCache;
575         /* Update rate */
576         emit cachingChanged( f_cache );
577     }
578 }
579
580 void InputManager::requestArtUpdate()
581 {
582     if( hasInput() )
583     {
584         playlist_t *p_playlist = pl_Hold( p_intf );
585         playlist_AskForArtEnqueue( p_playlist, input_GetItem( p_input ), pl_Unlocked );
586         pl_Release( p_intf );
587     }
588     else
589     {
590         /* No input will signal the cover art to update,
591          * let's do it ourself */
592         UpdateArt();
593     }
594 }
595
596 void InputManager::UpdateArt()
597 {
598     QString url;
599
600     if( hasInput() )
601     {
602         char *psz_art = input_item_GetArtURL( input_GetItem( p_input ) );
603         if( psz_art && !strncmp( psz_art, "file://", 7 ) &&
604                 decode_URI( psz_art + 7 ) )
605 #ifdef WIN32
606             url = qfu( psz_art + 8 ); // Remove extra / starting on Win32.
607 #else
608             url = qfu( psz_art + 7 );
609 #endif
610         free( psz_art );
611
612         url = url.replace( "file://", "" );
613         /* Taglib seems to define a attachment://, It won't work yet */
614         url = url.replace( "attachment://", "" );
615     }
616
617     /* the art hasn't changed, no need to update */
618     if(artUrl == url)
619         return;
620
621     /* Update Art meta */
622     artUrl = url;
623     emit artChanged( artUrl );
624 }
625
626 inline void InputManager::UpdateStats()
627 {
628     emit statisticsUpdated( input_GetItem( p_input ) );
629 }
630
631 inline void InputManager::UpdateMeta( input_item_t *p_item )
632 {
633     emit metaChanged( p_item );
634 }
635
636 inline void InputManager::UpdateMeta()
637 {
638     emit currentMetaChanged( input_GetItem( p_input ) );
639 }
640
641 inline void InputManager::UpdateInfo()
642 {
643     emit infoChanged( input_GetItem( p_input ) );
644 }
645
646 void InputManager::UpdateRecord()
647 {
648     if( hasInput() )
649     {
650         emit recordingStateChanged( var_GetBool( p_input, "record" ) );
651     }
652 }
653
654 void InputManager::UpdateProgramEvent()
655 {
656     if( hasInput() )
657     {
658         bool b_scrambled = var_GetBool( p_input, "program-scrambled" );
659         emit encryptionChanged( b_scrambled );
660     }
661 }
662
663 /* User update of the slider */
664 void InputManager::sliderUpdate( float new_pos )
665 {
666     if( hasInput() )
667         var_SetFloat( p_input, "position", new_pos );
668 }
669
670 /* User togglePlayPause */
671 void InputManager::togglePlayPause()
672 {
673     if( hasInput() )
674     {
675         int state = var_GetInteger( p_input, "state" );
676         state = ( state != PLAYING_S ) ? PLAYING_S : PAUSE_S;
677         var_SetInteger( p_input, "state", state );
678         emit statusChanged( state );
679     }
680 }
681
682 void InputManager::sectionPrev()
683 {
684     if( hasInput() )
685     {
686         int i_type = var_Type( p_input, "next-chapter" );
687         var_TriggerCallback( p_input, (i_type & VLC_VAR_TYPE) != 0 ?
688                              "prev-chapter":"prev-title" );
689     }
690 }
691
692 void InputManager::sectionNext()
693 {
694     if( hasInput() )
695     {
696         int i_type = var_Type( p_input, "next-chapter" );
697         var_TriggerCallback( p_input, (i_type & VLC_VAR_TYPE) != 0 ?
698                              "next-chapter":"next-title" );
699     }
700 }
701
702 void InputManager::sectionMenu()
703 {
704     if( hasInput() )
705     {
706         vlc_value_t val, text;
707
708         if( var_Change( p_input, "title  0", VLC_VAR_GETLIST, &val, &text ) < 0 )
709             return;
710
711         /* XXX is it "Root" or "Title" we want here ?" (set 0 by default) */
712         int root = 0;
713         for( int i = 0; i < val.p_list->i_count; i++ )
714         {
715             if( !strcmp( text.p_list->p_values[i].psz_string, "Title" ) )
716                 root = i;
717         }
718         var_FreeList( &val, &text );
719
720         var_SetInteger( p_input, "title  0", root );
721     }
722 }
723
724 /*
725  *  Teletext Functions
726  */
727
728 /* Set a new Teletext Page */
729 void InputManager::telexSetPage( int page )
730 {
731     if( hasInput() )
732     {
733         const int i_teletext_es = var_GetInteger( p_input, "teletext-es" );
734
735         if( i_teletext_es >= 0 )
736         {
737             vlc_object_t *p_vbi = (vlc_object_t *) vlc_object_find_name( p_input,
738                         "zvbi", FIND_CHILD );
739             if( p_vbi )
740             {
741                 var_SetInteger( p_vbi, "vbi-page", page );
742                 vlc_object_release( p_vbi );
743                 emit newTelexPageSet( page );
744             }
745         }
746     }
747 }
748
749 /* Set the transparency on teletext */
750 void InputManager::telexSetTransparency( bool b_transparentTelextext )
751 {
752     if( hasInput() )
753     {
754         vlc_object_t *p_vbi = (vlc_object_t *) vlc_object_find_name( p_input,
755                     "zvbi", FIND_CHILD );
756         if( p_vbi )
757         {
758             var_SetBool( p_vbi, "vbi-opaque", !b_transparentTelextext );
759             vlc_object_release( p_vbi );
760             emit teletextTransparencyActivated( b_transparentTelextext );
761         }
762     }
763 }
764
765 void InputManager::activateTeletext( bool b_enable )
766 {
767     vlc_value_t list;
768     vlc_value_t text;
769     if( hasInput() && !var_Change( p_input, "teletext-es", VLC_VAR_GETLIST, &list, &text ) )
770     {
771         if( list.p_list->i_count > 0 )
772         {
773             /* Prefer the page 100 if it is present */
774             int i;
775             for( i = 0; i < text.p_list->i_count; i++ )
776             {
777                 /* The description is the page number as a string */
778                 const char *psz_page = text.p_list->p_values[i].psz_string;
779                 if( psz_page && !strcmp( psz_page, "100" ) )
780                     break;
781             }
782             if( i >= list.p_list->i_count )
783                 i = 0;
784             var_SetInteger( p_input, "spu-es", b_enable ? list.p_list->p_values[i].i_int : -1 );
785         }
786         var_FreeList( &list, &text );
787     }
788 }
789
790 void InputManager::reverse()
791 {
792     if( hasInput() )
793     {
794         float f_rate = var_GetFloat( p_input, "rate" );
795         var_SetFloat( p_input, "rate", -f_rate );
796     }
797 }
798
799 void InputManager::slower()
800 {
801     if( hasInput() )
802         var_TriggerCallback( p_input, "rate-slower" );
803 }
804
805 void InputManager::faster()
806 {
807     if( hasInput() )
808         var_TriggerCallback( p_input, "rate-faster" );
809 }
810
811 void InputManager::littlefaster()
812 {
813     var_SetInteger( p_intf->p_libvlc, "key-action", ACTIONID_RATE_FASTER_FINE );
814 }
815
816 void InputManager::littleslower()
817 {
818     var_SetInteger( p_intf->p_libvlc, "key-action", ACTIONID_RATE_SLOWER_FINE );
819 }
820
821 void InputManager::normalRate()
822 {
823     if( hasInput() )
824         var_SetFloat( p_input, "rate", 1. );
825 }
826
827 void InputManager::setRate( int new_rate )
828 {
829     if( hasInput() )
830         var_SetFloat( p_input, "rate",
831                       (float)INPUT_RATE_DEFAULT / (float)new_rate );
832 }
833
834 void InputManager::jumpFwd()
835 {
836     int i_interval = config_GetInt( p_input, "short-jump-size" );
837     if( i_interval > 0 )
838     {
839         mtime_t val = (mtime_t)(i_interval) * 1000000L;
840         var_SetTime( p_input, "time-offset", val );
841     }
842 }
843
844 void InputManager::jumpBwd()
845 {
846     int i_interval = config_GetInt( p_input, "short-jump-size" );
847     if( i_interval > 0 )
848     {
849         mtime_t val = -1 *(mtime_t)(i_interval) * 1000000L;
850         var_SetTime( p_input, "time-offset", val );
851     }
852 }
853
854 void InputManager::setAtoB()
855 {
856     if( !timeA )
857     {
858         timeA = var_GetTime( THEMIM->getInput(), "time"  );
859     }
860     else if( !timeB )
861     {
862         timeB = var_GetTime( THEMIM->getInput(), "time"  );
863         var_SetTime( THEMIM->getInput(), "time" , timeA );
864         CONNECT( this, positionUpdated( float, int, int ),
865                  this, AtoBLoop( float, int, int ) );
866     }
867     else
868     {
869         timeA = 0;
870         timeB = 0;
871         disconnect( this, SIGNAL( positionUpdated( float, int, int ) ),
872                     this, SLOT( AtoBLoop( float, int, int ) ) );
873     }
874     emit AtoBchanged( (timeA != 0 ), (timeB != 0 ) );
875 }
876
877 /* Function called regularly when in an AtoB loop */
878 void InputManager::AtoBLoop( float, int i_time, int )
879 {
880     if( timeB )
881     {
882         if( ( i_time >= (int)( timeB/1000000 ) )
883             || ( i_time < (int)( timeA/1000000 ) ) )
884             var_SetTime( THEMIM->getInput(), "time" , timeA );
885     }
886 }
887
888 /**********************************************************************
889  * MainInputManager implementation. Wrap an input manager and
890  * take care of updating the main playlist input.
891  * Used in the main playlist Dialog
892  **********************************************************************/
893 MainInputManager * MainInputManager::instance = NULL;
894
895 MainInputManager::MainInputManager( intf_thread_t *_p_intf )
896                  : QObject(NULL), p_intf( _p_intf )
897 {
898     p_input = NULL;
899     im = new InputManager( this, p_intf );
900
901     var_AddCallback( THEPL, "item-change", ItemChanged, im );
902     var_AddCallback( THEPL, "item-current", PLItemChanged, this );
903     var_AddCallback( THEPL, "activity", PLItemChanged, this );
904     var_AddCallback( THEPL, "playlist-item-append", PLItemAppended, this );
905     var_AddCallback( THEPL, "playlist-item-deleted", PLItemRemoved, this );
906     var_AddCallback( THEPL, "random", RandomChanged, this );
907     var_AddCallback( THEPL, "repeat", RepeatChanged, this );
908     var_AddCallback( THEPL, "loop", LoopChanged, this );
909
910     var_AddCallback( p_intf->p_libvlc, "volume-change", VolumeChanged, this );
911     var_AddCallback( p_intf->p_libvlc, "volume-muted", SoundMuteChanged, this );
912
913     /* Warn our embedded IM about input changes */
914     CONNECT( this, inputChanged( input_thread_t * ),
915              im, setInput( input_thread_t * ) );
916
917     /* emit check if playlist has already started playing */
918     input_thread_t *p_input = playlist_CurrentInput( THEPL );
919     if( p_input )
920     {
921         input_item_t *p_item = input_GetItem( p_input );
922         if( p_item )
923         {
924             IMEvent *event = new IMEvent( ItemChanged_Type, p_item );
925             customEvent( event );
926             delete event;
927         }
928         vlc_object_release( p_input );
929     }
930 }
931
932 MainInputManager::~MainInputManager()
933 {
934     if( p_input )
935     {
936        emit inputChanged( NULL );
937        var_DelCallback( p_input, "state", PLItemChanged, this );
938        vlc_object_release( p_input );
939     }
940
941     var_DelCallback( p_intf->p_libvlc, "volume-change", VolumeChanged, this );
942     var_DelCallback( p_intf->p_libvlc, "volume-muted", SoundMuteChanged, this );
943
944     var_DelCallback( THEPL, "activity", PLItemChanged, this );
945     var_DelCallback( THEPL, "item-change", ItemChanged, im );
946
947     var_DelCallback( THEPL, "item-current", PLItemChanged, this );
948     var_DelCallback( THEPL, "playlist-item-append", PLItemAppended, this );
949     var_DelCallback( THEPL, "playlist-item-deleted", PLItemRemoved, this );
950     var_DelCallback( THEPL, "random", RandomChanged, this );
951     var_DelCallback( THEPL, "repeat", RepeatChanged, this );
952     var_DelCallback( THEPL, "loop", LoopChanged, this );
953
954 }
955
956 vout_thread_t* MainInputManager::getVout()
957 {
958     return p_input ? input_GetVout( p_input ) : NULL;
959 }
960
961 aout_instance_t * MainInputManager::getAout()
962 {
963     return p_input ? input_GetAout( p_input ) : NULL;
964 }
965
966 void MainInputManager::customEvent( QEvent *event )
967 {
968     int type = event->type();
969
970     PLEvent *plEv;
971
972     // msg_Dbg( p_intf, "New MainIM Event of type: %i", type );
973     switch( type )
974     {
975     case VolumeChanged_Type:
976         emit volumeChanged();
977         return;
978     case SoundMuteChanged_Type:
979         emit soundMuteChanged();
980         return;
981     case PLItemAppended_Type:
982         plEv = static_cast<PLEvent*>( event );
983         emit playlistItemAppended( plEv->i_item, plEv->i_parent );
984         return;
985     case PLItemRemoved_Type:
986         plEv = static_cast<PLEvent*>( event );
987         emit playlistItemRemoved( plEv->i_item );
988         return;
989     case RandomChanged_Type:
990         emit randomChanged( var_GetBool( THEPL, "random" ) );
991         return;
992     case LoopChanged_Type:
993     case RepeatChanged_Type:
994         notifyRepeatLoop();
995         return;
996     default:
997         if( type != ItemChanged_Type ) return;
998     }
999
1000     /* Should be PLItemChanged Event */
1001     if( !p_intf->p_sys->b_isDialogProvider )
1002     {
1003         if( p_input && ( p_input->b_dead || !vlc_object_alive (p_input) ) )
1004         {
1005             emit inputChanged( p_input );
1006             var_DelCallback( p_input, "state", PLItemChanged, this );
1007             vlc_object_release( p_input );
1008             p_input = NULL;
1009             return;
1010         }
1011
1012         if( !p_input )
1013         {
1014             p_input = playlist_CurrentInput(THEPL);
1015             if( p_input )
1016             {
1017                 var_AddCallback( p_input, "state", PLItemChanged, this );
1018                 emit inputChanged( p_input );
1019             }
1020         }
1021     }
1022     else
1023     {
1024         /* remove previous stored p_input */
1025         if( p_input )
1026         {
1027             vlc_object_release( p_input );
1028             p_input = NULL;
1029         }
1030         /* we are working as a dialogs provider */
1031         playlist_t *p_playlist = pl_Hold( p_intf );
1032         p_input = playlist_CurrentInput( p_playlist );
1033         if( p_input )
1034         {
1035             emit inputChanged( p_input );
1036         }
1037         pl_Release( p_intf );
1038     }
1039 }
1040
1041 /* Playlist Control functions */
1042 void MainInputManager::stop()
1043 {
1044    playlist_Stop( THEPL );
1045 }
1046
1047 void MainInputManager::next()
1048 {
1049    playlist_Next( THEPL );
1050 }
1051
1052 void MainInputManager::prev()
1053 {
1054    playlist_Prev( THEPL );
1055 }
1056
1057 void MainInputManager::togglePlayPause()
1058 {
1059     /* No input, play */
1060     if( !p_input )
1061         playlist_Play( THEPL );
1062     else
1063         getIM()->togglePlayPause();
1064 }
1065
1066 void MainInputManager::play()
1067 {
1068     /* No input, play */
1069     if( !p_input )
1070         playlist_Play( THEPL );
1071     else
1072     {
1073         if( PLAYING_S != var_GetInteger( p_input, "state" ) )
1074         {
1075             getIM()->togglePlayPause();
1076         }
1077     }
1078 }
1079
1080 void MainInputManager::pause()
1081 {
1082     if(p_input && PLAYING_S == var_GetInteger( p_input, "state" ) )
1083     {
1084         getIM()->togglePlayPause();
1085     }
1086 }
1087
1088 void MainInputManager::toggleRandom()
1089 {
1090     var_ToggleBool( THEPL, "random" );
1091 }
1092
1093 void MainInputManager::notifyRepeatLoop()
1094 {
1095     int i_value = var_GetBool( THEPL, "loop" ) * REPEAT_ONE
1096               + var_GetBool( THEPL, "repeat" ) * REPEAT_ALL;
1097
1098     emit repeatLoopChanged( i_value );
1099 }
1100
1101 void MainInputManager::loopRepeatLoopStatus()
1102 {
1103     /* Toggle Normal -> Loop -> Repeat -> Normal ... */
1104     if( var_GetBool( THEPL, "repeat" ) )
1105         var_SetBool( THEPL, "repeat", false );
1106     else if( var_GetBool( THEPL, "loop" ) )
1107     {
1108         var_SetBool( THEPL, "loop", false );
1109         var_SetBool( THEPL, "repeat", true );
1110     }
1111     else
1112         var_SetBool( THEPL, "loop", true );
1113 }
1114
1115 void MainInputManager::activatePlayQuit( bool b_exit )
1116 {
1117     var_SetBool( THEPL, "play-and-exit", b_exit );
1118 }
1119
1120
1121 /****************************
1122  * Static callbacks for MIM *
1123  ****************************/
1124 static int PLItemChanged( vlc_object_t *p_this, const char *psz_var,
1125                         vlc_value_t oldval, vlc_value_t, void *param )
1126 {
1127     MainInputManager *mim = (MainInputManager*)param;
1128
1129     IMEvent *event = new IMEvent( ItemChanged_Type );
1130     QApplication::postEvent( mim, event );
1131     return VLC_SUCCESS;
1132 }
1133
1134 static int VolumeChanged( vlc_object_t *p_this, const char *psz_var,
1135                         vlc_value_t oldval, vlc_value_t newval, void *param )
1136 {
1137     MainInputManager *mim = (MainInputManager*)param;
1138
1139     IMEvent *event = new IMEvent( VolumeChanged_Type );
1140     QApplication::postEvent( mim, event );
1141     return VLC_SUCCESS;
1142 }
1143
1144 static int SoundMuteChanged( vlc_object_t *p_this, const char *psz_var,
1145                         vlc_value_t oldval, vlc_value_t newval, void *param )
1146 {
1147     MainInputManager *mim = (MainInputManager*)param;
1148
1149     IMEvent *event = new IMEvent( SoundMuteChanged_Type );
1150     QApplication::postEvent( mim, event );
1151     return VLC_SUCCESS;
1152 }
1153
1154 static int PLItemAppended
1155 ( vlc_object_t * obj, const char *var, vlc_value_t old, vlc_value_t cur, void *data )
1156 {
1157     MainInputManager *mim = static_cast<MainInputManager*>(data);
1158     playlist_add_t *p_add = static_cast<playlist_add_t*>( cur.p_address );
1159
1160     PLEvent *event = new PLEvent( PLItemAppended_Type, p_add->i_item, p_add->i_node  );
1161     QApplication::postEvent( mim, event );
1162     return VLC_SUCCESS;
1163 }
1164 static int PLItemRemoved
1165 ( vlc_object_t * obj, const char *var, vlc_value_t old, vlc_value_t cur, void *data )
1166 {
1167     MainInputManager *mim = static_cast<MainInputManager*>(data);
1168
1169     PLEvent *event = new PLEvent( PLItemRemoved_Type, cur.i_int, 0  );
1170     QApplication::postEvent( mim, event );
1171     return VLC_SUCCESS;
1172 }
1173
1174 static int RandomChanged
1175 ( vlc_object_t * obj, const char *var, vlc_value_t old, vlc_value_t cur, void *data )
1176 {
1177     MainInputManager *mim = static_cast<MainInputManager*>(data);
1178
1179     IMEvent *event = new IMEvent( RandomChanged_Type );
1180     QApplication::postEvent( mim, event );
1181     return VLC_SUCCESS;
1182 }
1183
1184 /* Probably could be merged with next callback */
1185 static int LoopChanged
1186 ( vlc_object_t * obj, const char *var, vlc_value_t old, vlc_value_t cur, void *data )
1187 {
1188     MainInputManager *mim = static_cast<MainInputManager*>(data);
1189
1190     IMEvent *event = new IMEvent( LoopChanged_Type );
1191     QApplication::postEvent( mim, event );
1192     return VLC_SUCCESS;
1193 }
1194
1195 static int RepeatChanged
1196 ( vlc_object_t * obj, const char *var, vlc_value_t old, vlc_value_t cur, void *data )
1197 {
1198     MainInputManager *mim = static_cast<MainInputManager*>(data);
1199
1200     IMEvent *event = new IMEvent( RepeatChanged_Type );
1201     QApplication::postEvent( mim, event );
1202     return VLC_SUCCESS;
1203 }