]> git.sesse.net Git - vlc/blob - modules/gui/qt4/input_manager.cpp
f7f3bfa84552a7b0d781df59758fbb3c86ec05fe
[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     return qfu( psz_art ? psz_art : "" );
647 }
648
649 void InputManager::UpdateArt()
650 {
651     QString url;
652
653     if( hasInput() )
654         url = decodeArtURL( input_GetItem( p_input ) );
655
656     /* the art hasn't changed, no need to update */
657     if(artUrl == url)
658         return;
659
660     /* Update Art meta */
661     artUrl = url;
662     emit artChanged( artUrl );
663 }
664
665 inline void InputManager::UpdateStats()
666 {
667     emit statisticsUpdated( input_GetItem( p_input ) );
668 }
669
670 inline void InputManager::UpdateMeta( input_item_t *p_item )
671 {
672     emit metaChanged( p_item );
673 }
674
675 inline void InputManager::UpdateMeta()
676 {
677     emit currentMetaChanged( input_GetItem( p_input ) );
678 }
679
680 inline void InputManager::UpdateInfo()
681 {
682     emit infoChanged( input_GetItem( p_input ) );
683 }
684
685 void InputManager::UpdateRecord()
686 {
687     if( hasInput() )
688     {
689         emit recordingStateChanged( var_GetBool( p_input, "record" ) );
690     }
691 }
692
693 void InputManager::UpdateProgramEvent()
694 {
695     if( hasInput() )
696     {
697         bool b_scrambled = var_GetBool( p_input, "program-scrambled" );
698         emit encryptionChanged( b_scrambled );
699     }
700 }
701
702 /* User update of the slider */
703 void InputManager::sliderUpdate( float new_pos )
704 {
705     if( hasInput() )
706         var_SetFloat( p_input, "position", new_pos );
707     emit seekRequested( new_pos );
708 }
709
710 /* User togglePlayPause */
711 void InputManager::togglePlayPause()
712 {
713     if( hasInput() )
714     {
715         int state = var_GetInteger( p_input, "state" );
716         state = ( state != PLAYING_S ) ? PLAYING_S : PAUSE_S;
717         var_SetInteger( p_input, "state", state );
718     }
719 }
720
721 void InputManager::sectionPrev()
722 {
723     if( hasInput() )
724     {
725         int i_type = var_Type( p_input, "next-chapter" );
726         var_TriggerCallback( p_input, (i_type & VLC_VAR_TYPE) != 0 ?
727                              "prev-chapter":"prev-title" );
728     }
729 }
730
731 void InputManager::sectionNext()
732 {
733     if( hasInput() )
734     {
735         int i_type = var_Type( p_input, "next-chapter" );
736         var_TriggerCallback( p_input, (i_type & VLC_VAR_TYPE) != 0 ?
737                              "next-chapter":"next-title" );
738     }
739 }
740
741 void InputManager::sectionMenu()
742 {
743     if( hasInput() )
744     {
745         vlc_value_t val, text;
746
747         if( var_Change( p_input, "title  0", VLC_VAR_GETLIST, &val, &text ) < 0 )
748             return;
749
750         /* XXX is it "Root" or "Title" we want here ?" (set 0 by default) */
751         int root = 0;
752         for( int i = 0; i < val.p_list->i_count; i++ )
753         {
754             if( !strcmp( text.p_list->p_values[i].psz_string, "Title" ) )
755                 root = i;
756         }
757         var_FreeList( &val, &text );
758
759         var_SetInteger( p_input, "title  0", root );
760     }
761 }
762
763 /*
764  *  Teletext Functions
765  */
766
767 /* Set a new Teletext Page */
768 void InputManager::telexSetPage( int page )
769 {
770     if( hasInput() && p_input_vbi )
771     {
772         const int i_teletext_es = var_GetInteger( p_input, "teletext-es" );
773
774         if( i_teletext_es >= 0 )
775         {
776             var_SetInteger( p_input_vbi, "vbi-page", page );
777             emit newTelexPageSet( page );
778         }
779     }
780 }
781
782 /* Set the transparency on teletext */
783 void InputManager::telexSetTransparency( bool b_transparentTelextext )
784 {
785     if( hasInput() && p_input_vbi )
786     {
787         var_SetBool( p_input_vbi, "vbi-opaque", !b_transparentTelextext );
788         emit teletextTransparencyActivated( b_transparentTelextext );
789     }
790 }
791
792 void InputManager::activateTeletext( bool b_enable )
793 {
794     vlc_value_t list;
795     vlc_value_t text;
796     if( hasInput() && !var_Change( p_input, "teletext-es", VLC_VAR_GETLIST, &list, &text ) )
797     {
798         if( list.p_list->i_count > 0 )
799         {
800             /* Prefer the page 100 if it is present */
801             int i;
802             for( i = 0; i < text.p_list->i_count; i++ )
803             {
804                 /* The description is the page number as a string */
805                 const char *psz_page = text.p_list->p_values[i].psz_string;
806                 if( psz_page && !strcmp( psz_page, "100" ) )
807                     break;
808             }
809             if( i >= list.p_list->i_count )
810                 i = 0;
811             var_SetInteger( p_input, "spu-es", b_enable ? list.p_list->p_values[i].i_int : -1 );
812         }
813         var_FreeList( &list, &text );
814     }
815 }
816
817 void InputManager::reverse()
818 {
819     if( hasInput() )
820     {
821         float f_rate = var_GetFloat( p_input, "rate" );
822         var_SetFloat( p_input, "rate", -f_rate );
823     }
824 }
825
826 void InputManager::slower()
827 {
828     if( hasInput() )
829         var_TriggerCallback( p_input, "rate-slower" );
830 }
831
832 void InputManager::faster()
833 {
834     if( hasInput() )
835         var_TriggerCallback( p_input, "rate-faster" );
836 }
837
838 void InputManager::littlefaster()
839 {
840     var_SetInteger( p_intf->p_libvlc, "key-action", ACTIONID_RATE_FASTER_FINE );
841 }
842
843 void InputManager::littleslower()
844 {
845     var_SetInteger( p_intf->p_libvlc, "key-action", ACTIONID_RATE_SLOWER_FINE );
846 }
847
848 void InputManager::normalRate()
849 {
850     if( hasInput() )
851         var_SetFloat( p_input, "rate", 1. );
852 }
853
854 void InputManager::setRate( int new_rate )
855 {
856     if( hasInput() )
857         var_SetFloat( p_input, "rate",
858                       (float)INPUT_RATE_DEFAULT / (float)new_rate );
859 }
860
861 void InputManager::jumpFwd()
862 {
863     int i_interval = var_InheritInteger( p_input, "short-jump-size" );
864     if( i_interval > 0 )
865     {
866         mtime_t val = (mtime_t)(i_interval) * 1000000L;
867         var_SetTime( p_input, "time-offset", val );
868     }
869 }
870
871 void InputManager::jumpBwd()
872 {
873     int i_interval = var_InheritInteger( p_input, "short-jump-size" );
874     if( i_interval > 0 )
875     {
876         mtime_t val = -1 *(mtime_t)(i_interval) * 1000000L;
877         var_SetTime( p_input, "time-offset", val );
878     }
879 }
880
881 void InputManager::setAtoB()
882 {
883     if( !timeA )
884     {
885         timeA = var_GetTime( THEMIM->getInput(), "time"  );
886     }
887     else if( !timeB )
888     {
889         timeB = var_GetTime( THEMIM->getInput(), "time"  );
890         var_SetTime( THEMIM->getInput(), "time" , timeA );
891         CONNECT( this, positionUpdated( float, int64_t, int ),
892                  this, AtoBLoop( float, int64_t, int ) );
893     }
894     else
895     {
896         timeA = 0;
897         timeB = 0;
898         disconnect( this, SIGNAL( positionUpdated( float, int64_t, int ) ),
899                     this, SLOT( AtoBLoop( float, int64_t, int ) ) );
900     }
901     emit AtoBchanged( (timeA != 0 ), (timeB != 0 ) );
902 }
903
904 /* Function called regularly when in an AtoB loop */
905 void InputManager::AtoBLoop( float, int64_t i_time, int )
906 {
907     if( timeB )
908     {
909         if( i_time >= timeB || i_time < timeA )
910             var_SetTime( THEMIM->getInput(), "time" , timeA );
911     }
912 }
913
914 /**********************************************************************
915  * MainInputManager implementation. Wrap an input manager and
916  * take care of updating the main playlist input.
917  * Used in the main playlist Dialog
918  **********************************************************************/
919 MainInputManager * MainInputManager::instance = NULL;
920
921 MainInputManager::MainInputManager( intf_thread_t *_p_intf )
922                  : QObject(NULL), p_intf( _p_intf )
923 {
924     p_input = NULL;
925     im = new InputManager( this, p_intf );
926
927     var_AddCallback( THEPL, "item-change", ItemChanged, im );
928     var_AddCallback( THEPL, "item-current", PLItemChanged, this );
929     var_AddCallback( THEPL, "activity", PLItemChanged, this );
930     var_AddCallback( THEPL, "leaf-to-parent", LeafToParent, this );
931     var_AddCallback( THEPL, "playlist-item-append", PLItemAppended, this );
932     var_AddCallback( THEPL, "playlist-item-deleted", PLItemRemoved, this );
933     var_AddCallback( THEPL, "random", RandomChanged, this );
934     var_AddCallback( THEPL, "repeat", RepeatChanged, this );
935     var_AddCallback( THEPL, "loop", LoopChanged, this );
936
937     var_AddCallback( THEPL, "volume-change", VolumeChanged, this );
938     var_AddCallback( THEPL, "volume-muted", SoundMuteChanged, this );
939
940     /* Warn our embedded IM about input changes */
941     DCONNECT( this, inputChanged( input_thread_t * ),
942               im, setInput( input_thread_t * ) );
943
944     /* emit check if playlist has already started playing */
945     input_thread_t *p_input = playlist_CurrentInput( THEPL );
946     if( p_input )
947     {
948         input_item_t *p_item = input_GetItem( p_input );
949         if( p_item )
950         {
951             IMEvent *event = new IMEvent( ItemChanged_Type, p_item );
952             customEvent( event );
953             delete event;
954         }
955         vlc_object_release( p_input );
956     }
957 }
958
959 MainInputManager::~MainInputManager()
960 {
961     if( p_input )
962     {
963        emit inputChanged( NULL );
964        var_DelCallback( p_input, "state", PLItemChanged, this );
965        vlc_object_release( p_input );
966     }
967
968     var_DelCallback( THEPL, "volume-change", VolumeChanged, this );
969     var_DelCallback( THEPL, "volume-muted", SoundMuteChanged, this );
970
971     var_DelCallback( THEPL, "activity", PLItemChanged, this );
972     var_DelCallback( THEPL, "item-change", ItemChanged, im );
973     var_DelCallback( THEPL, "leaf-to-parent", LeafToParent, this );
974
975     var_DelCallback( THEPL, "item-current", PLItemChanged, this );
976     var_DelCallback( THEPL, "playlist-item-append", PLItemAppended, this );
977     var_DelCallback( THEPL, "playlist-item-deleted", PLItemRemoved, this );
978     var_DelCallback( THEPL, "random", RandomChanged, this );
979     var_DelCallback( THEPL, "repeat", RepeatChanged, this );
980     var_DelCallback( THEPL, "loop", LoopChanged, this );
981
982 }
983
984 vout_thread_t* MainInputManager::getVout()
985 {
986     return p_input ? input_GetVout( p_input ) : NULL;
987 }
988
989 aout_instance_t * MainInputManager::getAout()
990 {
991     return p_input ? input_GetAout( p_input ) : NULL;
992 }
993
994 void MainInputManager::customEvent( QEvent *event )
995 {
996     int type = event->type();
997
998     PLEvent *plEv;
999     IMEvent *imEv;
1000
1001     // msg_Dbg( p_intf, "New MainIM Event of type: %i", type );
1002     switch( type )
1003     {
1004     case VolumeChanged_Type:
1005         emit volumeChanged();
1006         return;
1007     case SoundMuteChanged_Type:
1008         emit soundMuteChanged();
1009         return;
1010     case PLItemAppended_Type:
1011         plEv = static_cast<PLEvent*>( event );
1012         emit playlistItemAppended( plEv->i_item, plEv->i_parent );
1013         return;
1014     case PLItemRemoved_Type:
1015         plEv = static_cast<PLEvent*>( event );
1016         emit playlistItemRemoved( plEv->i_item );
1017         return;
1018     case RandomChanged_Type:
1019         emit randomChanged( var_GetBool( THEPL, "random" ) );
1020         return;
1021     case LoopChanged_Type:
1022     case RepeatChanged_Type:
1023         notifyRepeatLoop();
1024         return;
1025     case LeafToParent_Type:
1026         imEv = static_cast<IMEvent*>( event );
1027         emit leafBecameParent( imEv->p_item );
1028     default:
1029         if( type != ItemChanged_Type ) return;
1030     }
1031
1032     /* Should be PLItemChanged Event */
1033     if( !p_intf->p_sys->b_isDialogProvider )
1034     {
1035         if( p_input && ( p_input->b_dead || !vlc_object_alive (p_input) ) )
1036         {
1037             emit inputChanged( p_input );
1038             var_DelCallback( p_input, "state", PLItemChanged, this );
1039             vlc_object_release( p_input );
1040             p_input = NULL;
1041             return;
1042         }
1043
1044         if( !p_input )
1045         {
1046             p_input = playlist_CurrentInput(THEPL);
1047             if( p_input )
1048             {
1049                 var_AddCallback( p_input, "state", PLItemChanged, this );
1050                 emit inputChanged( p_input );
1051             }
1052         }
1053     }
1054     else
1055     {
1056         /* remove previous stored p_input */
1057         if( p_input )
1058         {
1059             vlc_object_release( p_input );
1060             p_input = NULL;
1061         }
1062         /* we are working as a dialogs provider */
1063         p_input = playlist_CurrentInput( pl_Get(p_intf) );
1064         if( p_input )
1065         {
1066             emit inputChanged( p_input );
1067         }
1068     }
1069 }
1070
1071 /* Playlist Control functions */
1072 void MainInputManager::stop()
1073 {
1074    playlist_Stop( THEPL );
1075 }
1076
1077 void MainInputManager::next()
1078 {
1079    playlist_Next( THEPL );
1080 }
1081
1082 void MainInputManager::prev()
1083 {
1084    playlist_Prev( THEPL );
1085 }
1086
1087 void MainInputManager::togglePlayPause()
1088 {
1089     /* No input, play */
1090     if( !p_input )
1091         playlist_Play( THEPL );
1092     else
1093         getIM()->togglePlayPause();
1094 }
1095
1096 void MainInputManager::play()
1097 {
1098     /* No input, play */
1099     if( !p_input )
1100         playlist_Play( THEPL );
1101     else
1102     {
1103         if( PLAYING_S != var_GetInteger( p_input, "state" ) )
1104         {
1105             getIM()->togglePlayPause();
1106         }
1107     }
1108 }
1109
1110 void MainInputManager::pause()
1111 {
1112     if(p_input && PLAYING_S == var_GetInteger( p_input, "state" ) )
1113     {
1114         getIM()->togglePlayPause();
1115     }
1116 }
1117
1118 void MainInputManager::toggleRandom()
1119 {
1120     var_ToggleBool( THEPL, "random" );
1121 }
1122
1123 void MainInputManager::notifyRepeatLoop()
1124 {
1125     int i_value = var_GetBool( THEPL, "loop" ) * REPEAT_ALL
1126               + var_GetBool( THEPL, "repeat" ) * REPEAT_ONE;
1127
1128     emit repeatLoopChanged( i_value );
1129 }
1130
1131 void MainInputManager::loopRepeatLoopStatus()
1132 {
1133     /* Toggle Normal -> Loop -> Repeat -> Normal ... */
1134     if( var_GetBool( THEPL, "repeat" ) )
1135         var_SetBool( THEPL, "repeat", false );
1136     else if( var_GetBool( THEPL, "loop" ) )
1137     {
1138         var_SetBool( THEPL, "loop", false );
1139         var_SetBool( THEPL, "repeat", true );
1140     }
1141     else
1142         var_SetBool( THEPL, "loop", true );
1143 }
1144
1145 void MainInputManager::activatePlayQuit( bool b_exit )
1146 {
1147     var_SetBool( THEPL, "play-and-exit", b_exit );
1148 }
1149
1150
1151 /****************************
1152  * Static callbacks for MIM *
1153  ****************************/
1154 static int PLItemChanged( vlc_object_t *p_this, const char *psz_var,
1155                         vlc_value_t oldval, vlc_value_t, void *param )
1156 {
1157     MainInputManager *mim = (MainInputManager*)param;
1158
1159     IMEvent *event = new IMEvent( ItemChanged_Type );
1160     QApplication::postEvent( mim, event );
1161     return VLC_SUCCESS;
1162 }
1163
1164 static int LeafToParent( vlc_object_t *p_this, const char *psz_var,
1165                         vlc_value_t oldval, vlc_value_t newval, void *param )
1166 {
1167     MainInputManager *mim = (MainInputManager*)param;
1168
1169     IMEvent *event = new IMEvent( LeafToParent_Type,
1170                                   static_cast<input_item_t*>( newval.p_address ) );
1171     QApplication::postEvent( mim, event );
1172     return VLC_SUCCESS;
1173 }
1174
1175 static int VolumeChanged( vlc_object_t *p_this, const char *psz_var,
1176                         vlc_value_t oldval, vlc_value_t newval, void *param )
1177 {
1178     MainInputManager *mim = (MainInputManager*)param;
1179
1180     IMEvent *event = new IMEvent( VolumeChanged_Type );
1181     QApplication::postEvent( mim, event );
1182     return VLC_SUCCESS;
1183 }
1184
1185 static int SoundMuteChanged( vlc_object_t *p_this, const char *psz_var,
1186                         vlc_value_t oldval, vlc_value_t newval, void *param )
1187 {
1188     MainInputManager *mim = (MainInputManager*)param;
1189
1190     IMEvent *event = new IMEvent( SoundMuteChanged_Type );
1191     QApplication::postEvent( mim, event );
1192     return VLC_SUCCESS;
1193 }
1194
1195 static int PLItemAppended
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     playlist_add_t *p_add = static_cast<playlist_add_t*>( cur.p_address );
1200
1201     PLEvent *event = new PLEvent( PLItemAppended_Type, p_add->i_item, p_add->i_node  );
1202     QApplication::postEvent( mim, event );
1203     return VLC_SUCCESS;
1204 }
1205 static int PLItemRemoved
1206 ( vlc_object_t * obj, const char *var, vlc_value_t old, vlc_value_t cur, void *data )
1207 {
1208     MainInputManager *mim = static_cast<MainInputManager*>(data);
1209
1210     PLEvent *event = new PLEvent( PLItemRemoved_Type, cur.i_int, 0  );
1211     QApplication::postEvent( mim, event );
1212     return VLC_SUCCESS;
1213 }
1214
1215 static int RandomChanged
1216 ( vlc_object_t * obj, const char *var, vlc_value_t old, vlc_value_t cur, void *data )
1217 {
1218     MainInputManager *mim = static_cast<MainInputManager*>(data);
1219
1220     IMEvent *event = new IMEvent( RandomChanged_Type );
1221     QApplication::postEvent( mim, event );
1222     return VLC_SUCCESS;
1223 }
1224
1225 /* Probably could be merged with next callback */
1226 static int LoopChanged
1227 ( vlc_object_t * obj, const char *var, vlc_value_t old, vlc_value_t cur, void *data )
1228 {
1229     MainInputManager *mim = static_cast<MainInputManager*>(data);
1230
1231     IMEvent *event = new IMEvent( LoopChanged_Type );
1232     QApplication::postEvent( mim, event );
1233     return VLC_SUCCESS;
1234 }
1235
1236 static int RepeatChanged
1237 ( vlc_object_t * obj, const char *var, vlc_value_t old, vlc_value_t cur, void *data )
1238 {
1239     MainInputManager *mim = static_cast<MainInputManager*>(data);
1240
1241     IMEvent *event = new IMEvent( RepeatChanged_Type );
1242     QApplication::postEvent( mim, event );
1243     return VLC_SUCCESS;
1244 }