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