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