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