]> git.sesse.net Git - vlc/blob - modules/gui/qt4/input_manager.cpp
Qt4: use var_Inherit
[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;
377     int64_t i_time;
378     float f_pos;
379     i_length = var_GetTime(  p_input , "length" ) / 1000000;
380     i_time = var_GetTime(  p_input , "time");
381     f_pos = var_GetFloat(  p_input , "position" );
382     emit positionUpdated( f_pos, i_time, i_length );
383 }
384
385 void InputManager::UpdateNavigation()
386 {
387     /* Update navigation status */
388     vlc_value_t val; val.i_int = 0;
389
390     if( hasInput() )
391         var_Change( p_input, "title", VLC_VAR_CHOICESCOUNT, &val, NULL );
392
393     if( val.i_int > 0 )
394     {
395         emit titleChanged( true );
396         msg_Dbg( p_intf, "Title %i", val.i_int );
397         /* p_input != NULL since val.i_int != 0 */
398         val.i_int = 0;
399         var_Change( p_input, "chapter", VLC_VAR_CHOICESCOUNT, &val, NULL );
400         emit chapterChanged( (val.i_int > 0) );
401         msg_Dbg( p_intf, "Chapter: %i", val.i_int );
402     }
403     else
404         emit titleChanged( false );
405 }
406
407 void InputManager::UpdateStatus()
408 {
409     /* Update playing status */
410     int state = var_GetInteger( p_input, "state" );
411     if( i_old_playing_status != state )
412     {
413         i_old_playing_status = state;
414         emit statusChanged( state );
415     }
416 }
417
418 void InputManager::UpdateRate()
419 {
420     /* Update Rate */
421     int i_new_rate = INPUT_RATE_DEFAULT / var_GetFloat( p_input, "rate" );
422     if( i_new_rate != i_rate )
423     {
424         i_rate = i_new_rate;
425         /* Update rate */
426         emit rateChanged( i_rate );
427     }
428 }
429
430 void InputManager::UpdateName()
431 {
432     /* Update text, name and nowplaying */
433     QString text;
434
435     /* Try to get the Title, then the Name */
436     char *psz_name = input_item_GetTitleFbName( input_GetItem( p_input ) );
437
438     /* Try to get the nowplaying */
439     char *psz_nowplaying =
440         input_item_GetNowPlaying( input_GetItem( p_input ) );
441     if( !EMPTY_STR( psz_nowplaying ) )
442     {
443         text.sprintf( "%s - %s", psz_nowplaying, psz_name );
444     }
445     else  /* Do it ourself */
446     {
447         char *psz_artist = input_item_GetArtist( input_GetItem( p_input ) );
448
449         if( !EMPTY_STR( psz_artist ) )
450             text.sprintf( "%s - %s", psz_artist, psz_name );
451         else
452             text.sprintf( "%s", psz_name );
453
454         free( psz_artist );
455     }
456     /* Free everything */
457     free( psz_name );
458     free( psz_nowplaying );
459
460     /* If we have Nothing */
461     if( text.isEmpty() )
462     {
463         psz_name = input_item_GetURI( input_GetItem( p_input ) );
464         text.sprintf( "%s", psz_name );
465         text = text.remove( 0, text.lastIndexOf( DIR_SEP ) + 1 );
466         free( psz_name );
467     }
468
469     if( oldName != text )
470     {
471         emit nameChanged( text );
472         oldName = text;
473     }
474 }
475
476 bool InputManager::hasAudio()
477 {
478     if( hasInput() )
479     {
480         vlc_value_t val;
481         var_Change( p_input, "audio-es", VLC_VAR_CHOICESCOUNT, &val, NULL );
482         return val.i_int > 0;
483     }
484     return false;
485 }
486
487 void InputManager::UpdateTeletext()
488 {
489     if( hasInput() )
490     {
491         const bool b_enabled = var_CountChoices( p_input, "teletext-es" ) > 0;
492         const int i_teletext_es = var_GetInteger( p_input, "teletext-es" );
493
494         /* Teletext is possible. Show the buttons */
495         emit teletextPossible( b_enabled );
496
497         /* If Teletext is selected */
498         if( b_enabled && i_teletext_es >= 0 )
499         {
500             /* Then, find the current page */
501             int i_page = 100;
502             bool b_transparent = false;
503
504             vlc_object_t *p_vbi = (vlc_object_t *)
505                 vlc_object_find_name( p_input, "zvbi", FIND_CHILD );
506
507             if( p_vbi )
508             {
509                 /* We deleted it (if not here, it does not harm), because
510                  * var_AddCallback will silently add a duplicated one */
511                 var_DelCallback( p_vbi, "vbi-page", VbiEvent, this );
512                 /* This callback is not remove explicitly, but interfaces
513                  * are guaranted to outlive input */
514                 var_AddCallback( p_vbi, "vbi-page", VbiEvent, this );
515
516                 i_page = var_GetInteger( p_vbi, "vbi-page" );
517                 b_transparent = !var_GetBool( p_vbi, "vbi-opaque" );
518                 vlc_object_release( p_vbi );
519             }
520             emit newTelexPageSet( i_page );
521             emit teletextTransparencyActivated( b_transparent );
522
523         }
524         emit teletextActivated( b_enabled && i_teletext_es >= 0 );
525     }
526     else
527     {
528         emit teletextActivated( false );
529         emit teletextPossible( false );
530     }
531 }
532
533 void InputManager::UpdateVout()
534 {
535     if( hasInput() )
536     {
537         /* Get current vout lists from input */
538         int i_vout;
539         vout_thread_t **pp_vout;
540         if( input_Control( p_input, INPUT_GET_VOUTS, &pp_vout, &i_vout ) )
541         {
542             i_vout = 0;
543             pp_vout = NULL;
544         }
545
546         /* */
547         emit voutListChanged( pp_vout, i_vout );
548
549         /* */
550         bool b_old_video = b_video;
551         b_video = i_vout > 0;
552         if( !!b_old_video != !!b_video )
553             emit voutChanged( b_video );
554
555         /* Release the vout list */
556         for( int i = 0; i < i_vout; i++ )
557             vlc_object_release( (vlc_object_t*)pp_vout[i] );
558         free( pp_vout );
559     }
560 }
561 void InputManager::UpdateAout()
562 {
563     if( hasInput() )
564     {
565         /* TODO */
566     }
567 }
568 void InputManager::UpdateCaching()
569 {
570     if(!hasInput()) return;
571
572     float f_newCache = var_GetFloat ( p_input, "cache" );
573     if( f_newCache != f_cache )
574     {
575         f_cache = f_newCache;
576         /* Update rate */
577         emit cachingChanged( f_cache );
578     }
579 }
580
581 void InputManager::requestArtUpdate()
582 {
583     if( hasInput() )
584     {
585         playlist_t *p_playlist = pl_Hold( p_intf );
586         playlist_AskForArtEnqueue( p_playlist, input_GetItem( p_input ), pl_Unlocked );
587         pl_Release( p_intf );
588     }
589     else
590     {
591         /* No input will signal the cover art to update,
592          * let's do it ourself */
593         UpdateArt();
594     }
595 }
596
597 void InputManager::UpdateArt()
598 {
599     QString url;
600
601     if( hasInput() )
602     {
603         char *psz_art = input_item_GetArtURL( input_GetItem( p_input ) );
604         if( psz_art && !strncmp( psz_art, "file://", 7 ) &&
605                 decode_URI( psz_art + 7 ) )
606 #ifdef WIN32
607             url = qfu( psz_art + 8 ); // Remove extra / starting on Win32.
608 #else
609             url = qfu( psz_art + 7 );
610 #endif
611         free( psz_art );
612
613         url = url.replace( "file://", "" );
614         /* Taglib seems to define a attachment://, It won't work yet */
615         url = url.replace( "attachment://", "" );
616     }
617
618     /* the art hasn't changed, no need to update */
619     if(artUrl == url)
620         return;
621
622     /* Update Art meta */
623     artUrl = url;
624     emit artChanged( artUrl );
625 }
626
627 inline void InputManager::UpdateStats()
628 {
629     emit statisticsUpdated( input_GetItem( p_input ) );
630 }
631
632 inline void InputManager::UpdateMeta( input_item_t *p_item )
633 {
634     emit metaChanged( p_item );
635 }
636
637 inline void InputManager::UpdateMeta()
638 {
639     emit currentMetaChanged( input_GetItem( p_input ) );
640 }
641
642 inline void InputManager::UpdateInfo()
643 {
644     emit infoChanged( input_GetItem( p_input ) );
645 }
646
647 void InputManager::UpdateRecord()
648 {
649     if( hasInput() )
650     {
651         emit recordingStateChanged( var_GetBool( p_input, "record" ) );
652     }
653 }
654
655 void InputManager::UpdateProgramEvent()
656 {
657     if( hasInput() )
658     {
659         bool b_scrambled = var_GetBool( p_input, "program-scrambled" );
660         emit encryptionChanged( b_scrambled );
661     }
662 }
663
664 /* User update of the slider */
665 void InputManager::sliderUpdate( float new_pos )
666 {
667     if( hasInput() )
668         var_SetFloat( p_input, "position", new_pos );
669 }
670
671 /* User togglePlayPause */
672 void InputManager::togglePlayPause()
673 {
674     if( hasInput() )
675     {
676         int state = var_GetInteger( p_input, "state" );
677         state = ( state != PLAYING_S ) ? PLAYING_S : PAUSE_S;
678         var_SetInteger( p_input, "state", state );
679         emit statusChanged( state );
680     }
681 }
682
683 void InputManager::sectionPrev()
684 {
685     if( hasInput() )
686     {
687         int i_type = var_Type( p_input, "next-chapter" );
688         var_TriggerCallback( p_input, (i_type & VLC_VAR_TYPE) != 0 ?
689                              "prev-chapter":"prev-title" );
690     }
691 }
692
693 void InputManager::sectionNext()
694 {
695     if( hasInput() )
696     {
697         int i_type = var_Type( p_input, "next-chapter" );
698         var_TriggerCallback( p_input, (i_type & VLC_VAR_TYPE) != 0 ?
699                              "next-chapter":"next-title" );
700     }
701 }
702
703 void InputManager::sectionMenu()
704 {
705     if( hasInput() )
706     {
707         vlc_value_t val, text;
708
709         if( var_Change( p_input, "title  0", VLC_VAR_GETLIST, &val, &text ) < 0 )
710             return;
711
712         /* XXX is it "Root" or "Title" we want here ?" (set 0 by default) */
713         int root = 0;
714         for( int i = 0; i < val.p_list->i_count; i++ )
715         {
716             if( !strcmp( text.p_list->p_values[i].psz_string, "Title" ) )
717                 root = i;
718         }
719         var_FreeList( &val, &text );
720
721         var_SetInteger( p_input, "title  0", root );
722     }
723 }
724
725 /*
726  *  Teletext Functions
727  */
728
729 /* Set a new Teletext Page */
730 void InputManager::telexSetPage( int page )
731 {
732     if( hasInput() )
733     {
734         const int i_teletext_es = var_GetInteger( p_input, "teletext-es" );
735
736         if( i_teletext_es >= 0 )
737         {
738             vlc_object_t *p_vbi = (vlc_object_t *) vlc_object_find_name( p_input,
739                         "zvbi", FIND_CHILD );
740             if( p_vbi )
741             {
742                 var_SetInteger( p_vbi, "vbi-page", page );
743                 vlc_object_release( p_vbi );
744                 emit newTelexPageSet( page );
745             }
746         }
747     }
748 }
749
750 /* Set the transparency on teletext */
751 void InputManager::telexSetTransparency( bool b_transparentTelextext )
752 {
753     if( hasInput() )
754     {
755         vlc_object_t *p_vbi = (vlc_object_t *) vlc_object_find_name( p_input,
756                     "zvbi", FIND_CHILD );
757         if( p_vbi )
758         {
759             var_SetBool( p_vbi, "vbi-opaque", !b_transparentTelextext );
760             vlc_object_release( p_vbi );
761             emit teletextTransparencyActivated( b_transparentTelextext );
762         }
763     }
764 }
765
766 void InputManager::activateTeletext( bool b_enable )
767 {
768     vlc_value_t list;
769     vlc_value_t text;
770     if( hasInput() && !var_Change( p_input, "teletext-es", VLC_VAR_GETLIST, &list, &text ) )
771     {
772         if( list.p_list->i_count > 0 )
773         {
774             /* Prefer the page 100 if it is present */
775             int i;
776             for( i = 0; i < text.p_list->i_count; i++ )
777             {
778                 /* The description is the page number as a string */
779                 const char *psz_page = text.p_list->p_values[i].psz_string;
780                 if( psz_page && !strcmp( psz_page, "100" ) )
781                     break;
782             }
783             if( i >= list.p_list->i_count )
784                 i = 0;
785             var_SetInteger( p_input, "spu-es", b_enable ? list.p_list->p_values[i].i_int : -1 );
786         }
787         var_FreeList( &list, &text );
788     }
789 }
790
791 void InputManager::reverse()
792 {
793     if( hasInput() )
794     {
795         float f_rate = var_GetFloat( p_input, "rate" );
796         var_SetFloat( p_input, "rate", -f_rate );
797     }
798 }
799
800 void InputManager::slower()
801 {
802     if( hasInput() )
803         var_TriggerCallback( p_input, "rate-slower" );
804 }
805
806 void InputManager::faster()
807 {
808     if( hasInput() )
809         var_TriggerCallback( p_input, "rate-faster" );
810 }
811
812 void InputManager::littlefaster()
813 {
814     var_SetInteger( p_intf->p_libvlc, "key-action", ACTIONID_RATE_FASTER_FINE );
815 }
816
817 void InputManager::littleslower()
818 {
819     var_SetInteger( p_intf->p_libvlc, "key-action", ACTIONID_RATE_SLOWER_FINE );
820 }
821
822 void InputManager::normalRate()
823 {
824     if( hasInput() )
825         var_SetFloat( p_input, "rate", 1. );
826 }
827
828 void InputManager::setRate( int new_rate )
829 {
830     if( hasInput() )
831         var_SetFloat( p_input, "rate",
832                       (float)INPUT_RATE_DEFAULT / (float)new_rate );
833 }
834
835 void InputManager::jumpFwd()
836 {
837     int i_interval = var_InheritInteger( p_input, "short-jump-size" );
838     if( i_interval > 0 )
839     {
840         mtime_t val = (mtime_t)(i_interval) * 1000000L;
841         var_SetTime( p_input, "time-offset", val );
842     }
843 }
844
845 void InputManager::jumpBwd()
846 {
847     int i_interval = var_InheritInteger( p_input, "short-jump-size" );
848     if( i_interval > 0 )
849     {
850         mtime_t val = -1 *(mtime_t)(i_interval) * 1000000L;
851         var_SetTime( p_input, "time-offset", val );
852     }
853 }
854
855 void InputManager::setAtoB()
856 {
857     if( !timeA )
858     {
859         timeA = var_GetTime( THEMIM->getInput(), "time"  );
860     }
861     else if( !timeB )
862     {
863         timeB = var_GetTime( THEMIM->getInput(), "time"  );
864         var_SetTime( THEMIM->getInput(), "time" , timeA );
865         CONNECT( this, positionUpdated( float, int64_t, int ),
866                  this, AtoBLoop( float, int64_t, int ) );
867     }
868     else
869     {
870         timeA = 0;
871         timeB = 0;
872         disconnect( this, SIGNAL( positionUpdated( float, int64_t, int ) ),
873                     this, SLOT( AtoBLoop( float, int64_t, int ) ) );
874     }
875     emit AtoBchanged( (timeA != 0 ), (timeB != 0 ) );
876 }
877
878 /* Function called regularly when in an AtoB loop */
879 void InputManager::AtoBLoop( float, int64_t i_time, int )
880 {
881     if( timeB )
882     {
883         if( i_time >= timeB || i_time < timeA )
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 }