]> git.sesse.net Git - vlc/blob - modules/gui/qt4/input_manager.cpp
Merge branch '1.0-bugfix'
[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
33 #include <QApplication>
34
35 #include <assert.h>
36
37 static int ItemChanged( vlc_object_t *, const char *,
38                         vlc_value_t, vlc_value_t, void * );
39 static int PLItemChanged( vlc_object_t *, const char *,
40                         vlc_value_t, vlc_value_t, void * );
41 static int VolumeChanged( vlc_object_t *, const char *,
42                         vlc_value_t, vlc_value_t, void * );
43
44 static int InputEvent( vlc_object_t *, const char *,
45                        vlc_value_t, vlc_value_t, void * );
46 static int VbiEvent( vlc_object_t *, const char *,
47                      vlc_value_t, vlc_value_t, void * );
48
49
50 /**********************************************************************
51  * InputManager implementation
52  **********************************************************************
53  * The Input Manager can be the main one around the playlist
54  * But can also be used for VLM dialog or similar
55  **********************************************************************/
56
57 InputManager::InputManager( QObject *parent, intf_thread_t *_p_intf) :
58                            QObject( parent ), p_intf( _p_intf )
59 {
60     i_old_playing_status = END_S;
61     oldName      = "";
62     artUrl       = "";
63     p_input      = NULL;
64     i_rate       = 0;
65     p_item       = NULL;
66     b_video      = false;
67     timeA        = 0;
68     timeB        = 0;
69     f_cache      = -1.; /* impossible initial value, different from all */
70 }
71
72 InputManager::~InputManager()
73 {
74     delInput();
75 }
76
77 /* Define the Input used.
78    Add the callbacks on input
79    p_input is held once here */
80 void InputManager::setInput( input_thread_t *_p_input )
81 {
82     delInput();
83     p_input = _p_input;
84     if( p_input && !( p_input->b_dead || !vlc_object_alive (p_input) ) )
85     {
86         msg_Dbg( p_intf, "IM: Setting an input" );
87         vlc_object_hold( p_input );
88         emit statusChanged( PLAYING_S );
89         UpdateName();
90         UpdateArt();
91         UpdateTeletext();
92         UpdateNavigation();
93         UpdateVout();
94         addCallbacks();
95         p_item = input_GetItem( p_input );
96     }
97     else
98     {
99         p_input = NULL;
100         p_item = NULL;
101         emit rateChanged( INPUT_RATE_DEFAULT );
102     }
103 }
104
105 /* delete Input if it ever existed.
106    Delete the callbacls on input
107    p_input is released once here */
108 void InputManager::delInput()
109 {
110     if( !p_input ) return;
111     msg_Dbg( p_intf, "IM: Deleting the input" );
112
113     delCallbacks();
114     i_old_playing_status = END_S;
115     p_item               = NULL;
116     oldName              = "";
117     artUrl               = "";
118     b_video              = false;
119     timeA                = 0;
120     timeB                = 0;
121
122     vlc_object_release( p_input );
123     p_input = NULL;
124
125     emit positionUpdated( -1.0, 0 ,0 );
126     emit rateChanged( INPUT_RATE_DEFAULT ); /* TODO: Do we want this ? */
127     emit nameChanged( "" );
128     emit chapterChanged( 0 );
129     emit titleChanged( 0 );
130     emit statusChanged( END_S );
131
132     emit teletextPossible( false );
133     emit AtoBchanged( false, false );
134     emit voutChanged( false );
135     emit voutListChanged( NULL, 0 );
136
137     /* Reset all InfoPanels but stats */
138     emit artChanged( NULL );
139     emit infoChanged( NULL );
140     emit currentMetaChanged( (input_item_t *)NULL );
141
142     emit encryptionChanged( false );
143     emit recordingStateChanged( false );
144 }
145
146 /* Convert the event from the callbacks in actions */
147 void InputManager::customEvent( QEvent *event )
148 {
149     int i_type = event->type();
150     IMEvent *ple = static_cast<IMEvent *>(event);
151
152     if( !hasInput() )
153         return;
154
155 #ifndef NDEBUG
156     if( i_type != PositionUpdate_Type &&
157         i_type != StatisticsUpdate_Type &&
158         i_type != ItemChanged_Type )
159         msg_Dbg( p_intf, "New Event: type %i", i_type );
160 #endif
161
162     /* Actions */
163     switch( i_type )
164     {
165     case PositionUpdate_Type:
166         UpdatePosition();
167         break;
168     case StatisticsUpdate_Type:
169         UpdateStats();
170         break;
171     case ItemChanged_Type:
172         /* Ignore ItemChanged_Type event that does not apply to our input */
173         if( p_item == ple->p_item )
174         {
175             UpdateStatus();
176             // UpdateName();
177             UpdateArt();
178             /* Update duration of file */
179         }
180         UpdateMeta( ple->p_item->i_id );
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 = var_GetInteger( 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         url = qfu( psz_art );
594         free( psz_art );
595
596         url = url.replace( "file://", "" );
597         /* Taglib seems to define a attachment://, It won't work yet */
598         url = url.replace( "attachment://", "" );
599     }
600
601     /* Update Art meta */
602     emit artChanged( url );
603 }
604
605 inline void InputManager::UpdateStats()
606 {
607     emit statisticsUpdated( input_GetItem( p_input ) );
608 }
609
610 inline void InputManager::UpdateMeta( int id )
611 {
612     emit metaChanged( id );
613 }
614
615 inline void InputManager::UpdateMeta()
616 {
617     emit currentMetaChanged( input_GetItem( p_input ) );
618 }
619
620 inline void InputManager::UpdateInfo()
621 {
622     emit infoChanged( input_GetItem( p_input ) );
623 }
624
625 void InputManager::UpdateRecord()
626 {
627     if( hasInput() )
628     {
629         emit recordingStateChanged( var_GetBool( p_input, "record" ) );
630     }
631 }
632
633 void InputManager::UpdateProgramEvent()
634 {
635     if( hasInput() )
636     {
637         bool b_scrambled = var_GetBool( p_input, "program-scrambled" );
638         emit encryptionChanged( b_scrambled );
639     }
640 }
641
642 /* User update of the slider */
643 void InputManager::sliderUpdate( float new_pos )
644 {
645     if( hasInput() )
646         var_SetFloat( p_input, "position", new_pos );
647 }
648
649 /* User togglePlayPause */
650 void InputManager::togglePlayPause()
651 {
652     if( hasInput() )
653     {
654         int state = var_GetInteger( p_input, "state" );
655         state = ( state != PLAYING_S ) ? PLAYING_S : PAUSE_S;
656         var_SetInteger( p_input, "state", state );
657         emit statusChanged( state );
658     }
659 }
660
661 void InputManager::sectionPrev()
662 {
663     if( hasInput() )
664     {
665         int i_type = var_Type( p_input, "next-chapter" );
666         var_SetVoid( p_input, (i_type & VLC_VAR_TYPE) != 0 ?
667                             "prev-chapter":"prev-title" );
668     }
669 }
670
671 void InputManager::sectionNext()
672 {
673     if( hasInput() )
674     {
675         int i_type = var_Type( p_input, "next-chapter" );
676         var_SetVoid( p_input, (i_type & VLC_VAR_TYPE) != 0 ?
677                             "next-chapter":"next-title" );
678     }
679 }
680
681 void InputManager::sectionMenu()
682 {
683     if( hasInput() )
684     {
685         vlc_value_t val, text;
686
687         if( var_Change( p_input, "title  0", VLC_VAR_GETLIST, &val, &text ) < 0 )
688             return;
689
690         /* XXX is it "Root" or "Title" we want here ?" (set 0 by default) */
691         int root = 0;
692         for( int i = 0; i < val.p_list->i_count; i++ )
693         {
694             if( !strcmp( text.p_list->p_values[i].psz_string, "Title" ) )
695                 root = i;
696         }
697         var_FreeList( &val, &text );
698
699         var_SetInteger( p_input, "title  0", root );
700     }
701 }
702
703 /*
704  *  Teletext Functions
705  */
706
707 /* Set a new Teletext Page */
708 void InputManager::telexSetPage( int page )
709 {
710     if( hasInput() )
711     {
712         const int i_teletext_es = var_GetInteger( p_input, "teletext-es" );
713
714         if( i_teletext_es >= 0 )
715         {
716             vlc_object_t *p_vbi = (vlc_object_t *) vlc_object_find_name( p_input,
717                         "zvbi", FIND_CHILD );
718             if( p_vbi )
719             {
720                 var_SetInteger( p_vbi, "vbi-page", page );
721                 vlc_object_release( p_vbi );
722                 emit newTelexPageSet( page );
723             }
724         }
725     }
726 }
727
728 /* Set the transparency on teletext */
729 void InputManager::telexSetTransparency( bool b_transparentTelextext )
730 {
731     if( hasInput() )
732     {
733         vlc_object_t *p_vbi = (vlc_object_t *) vlc_object_find_name( p_input,
734                     "zvbi", FIND_CHILD );
735         if( p_vbi )
736         {
737             var_SetBool( p_vbi, "vbi-opaque", !b_transparentTelextext );
738             vlc_object_release( p_vbi );
739             emit teletextTransparencyActivated( b_transparentTelextext );
740         }
741     }
742 }
743
744 void InputManager::activateTeletext( bool b_enable )
745 {
746     vlc_value_t list;
747     vlc_value_t text;
748     if( hasInput() && !var_Change( p_input, "teletext-es", VLC_VAR_GETLIST, &list, &text ) )
749     {
750         if( list.p_list->i_count > 0 )
751         {
752             /* Prefer the page 100 if it is present */
753             int i;
754             for( i = 0; i < text.p_list->i_count; i++ )
755             {
756                 /* The description is the page number as a string */
757                 const char *psz_page = text.p_list->p_values[i].psz_string;
758                 if( psz_page && !strcmp( psz_page, "100" ) )
759                     break;
760             }
761             if( i >= list.p_list->i_count )
762                 i = 0;
763             var_SetInteger( p_input, "spu-es", b_enable ? list.p_list->p_values[i].i_int : -1 );
764         }
765         var_FreeList( &list, &text );
766     }
767 }
768
769 void InputManager::reverse()
770 {
771     if( hasInput() )
772     {
773         int i_rate = var_GetInteger( p_input, "rate" );
774         var_SetInteger( p_input, "rate", -i_rate );
775     }
776 }
777
778 void InputManager::slower()
779 {
780     if( hasInput() )
781         var_SetVoid( p_input, "rate-slower" );
782 }
783
784 void InputManager::faster()
785 {
786     if( hasInput() )
787         var_SetVoid( p_input, "rate-faster" );
788 }
789
790 void InputManager::littlefaster()
791 {
792     var_SetInteger( p_intf->p_libvlc, "key-action", ACTIONID_RATE_FASTER_FINE );
793 }
794
795 void InputManager::littleslower()
796 {
797     var_SetInteger( p_intf->p_libvlc, "key-action", ACTIONID_RATE_SLOWER_FINE );
798 }
799
800 void InputManager::normalRate()
801 {
802     if( hasInput() )
803         var_SetInteger( p_input, "rate", INPUT_RATE_DEFAULT );
804 }
805
806 void InputManager::setRate( int new_rate )
807 {
808     if( hasInput() )
809         var_SetInteger( p_input, "rate", new_rate );
810 }
811
812 void InputManager::jumpFwd()
813 {
814     int i_interval = config_GetInt( p_input, "short-jump-size" );
815     if( i_interval > 0 )
816     {
817         mtime_t val = (mtime_t)(i_interval) * 1000000L;
818         var_SetTime( p_input, "time-offset", val );
819     }
820 }
821
822 void InputManager::jumpBwd()
823 {
824     int i_interval = config_GetInt( p_input, "short-jump-size" );
825     if( i_interval > 0 )
826     {
827         mtime_t val = -1 *(mtime_t)(i_interval) * 1000000L;
828         var_SetTime( p_input, "time-offset", val );
829     }
830 }
831
832 void InputManager::setAtoB()
833 {
834     if( !timeA )
835     {
836         timeA = var_GetTime( THEMIM->getInput(), "time"  );
837     }
838     else if( !timeB )
839     {
840         timeB = var_GetTime( THEMIM->getInput(), "time"  );
841         var_SetTime( THEMIM->getInput(), "time" , timeA );
842         CONNECT( this, positionUpdated( float, int, int ),
843                  this, AtoBLoop( float, int, int ) );
844     }
845     else
846     {
847         timeA = 0;
848         timeB = 0;
849         disconnect( this, SIGNAL( positionUpdated( float, int, int ) ),
850                     this, SLOT( AtoBLoop( float, int, int ) ) );
851     }
852     emit AtoBchanged( (timeA != 0 ), (timeB != 0 ) );
853 }
854
855 /* Function called regularly when in an AtoB loop */
856 void InputManager::AtoBLoop( float, int i_time, int )
857 {
858     if( timeB )
859     {
860         if( ( i_time >= (int)( timeB/1000000 ) )
861             || ( i_time < (int)( timeA/1000000 ) ) )
862             var_SetTime( THEMIM->getInput(), "time" , timeA );
863     }
864 }
865
866 /**********************************************************************
867  * MainInputManager implementation. Wrap an input manager and
868  * take care of updating the main playlist input.
869  * Used in the main playlist Dialog
870  **********************************************************************/
871 MainInputManager * MainInputManager::instance = NULL;
872
873 MainInputManager::MainInputManager( intf_thread_t *_p_intf )
874                  : QObject(NULL), p_intf( _p_intf )
875 {
876     p_input = NULL;
877     im = new InputManager( this, p_intf );
878
879     var_AddCallback( THEPL, "item-change", ItemChanged, im );
880     var_AddCallback( THEPL, "item-current", PLItemChanged, this );
881     var_AddCallback( THEPL, "activity", PLItemChanged, this );
882
883     var_AddCallback( p_intf->p_libvlc, "volume-change", VolumeChanged, this );
884
885     /* Warn our embedded IM about input changes */
886     CONNECT( this, inputChanged( input_thread_t * ),
887              im, setInput( input_thread_t * ) );
888
889     /* emit check if playlist has already started playing */
890     input_thread_t *p_input = playlist_CurrentInput( THEPL );
891     if( p_input )
892     {
893         input_item_t *p_item = input_GetItem( p_input );
894         if( p_item )
895         {
896             IMEvent *event = new IMEvent( ItemChanged_Type, p_item );
897             customEvent( event );
898             delete event;
899         }
900         vlc_object_release( p_input );
901     }
902 }
903
904 MainInputManager::~MainInputManager()
905 {
906     if( p_input )
907     {
908        emit inputChanged( NULL );
909        var_DelCallback( p_input, "state", PLItemChanged, this );
910        vlc_object_release( p_input );
911     }
912
913     var_DelCallback( p_intf->p_libvlc, "volume-change", VolumeChanged, this );
914
915     var_DelCallback( THEPL, "activity", PLItemChanged, this );
916     var_DelCallback( THEPL, "item-change", ItemChanged, im );
917
918     var_DelCallback( THEPL, "item-current", PLItemChanged, this );
919 }
920
921 vout_thread_t* MainInputManager::getVout()
922 {
923     return p_input ? input_GetVout( p_input ) : NULL;
924 }
925
926 aout_instance_t * MainInputManager::getAout()
927 {
928     return p_input ? input_GetAout( p_input ) : NULL;
929 }
930
931 void MainInputManager::customEvent( QEvent *event )
932 {
933     int type = event->type();
934     if ( type != ItemChanged_Type && type != VolumeChanged_Type )
935         return;
936
937     // msg_Dbg( p_intf, "New MainIM Event of type: %i", type );
938     if( type == VolumeChanged_Type )
939     {
940         emit volumeChanged();
941         return;
942     }
943
944     /* Should be PLItemChanged Event */
945     if( !p_intf->p_sys->b_isDialogProvider )
946     {
947         if( p_input && ( p_input->b_dead || !vlc_object_alive (p_input) ) )
948         {
949             emit inputChanged( p_input );
950             var_DelCallback( p_input, "state", PLItemChanged, this );
951             vlc_object_release( p_input );
952             p_input = NULL;
953             return;
954         }
955
956         if( !p_input )
957         {
958             p_input = playlist_CurrentInput(THEPL);
959             if( p_input )
960             {
961                 var_AddCallback( p_input, "state", PLItemChanged, this );
962                 emit inputChanged( p_input );
963             }
964         }
965     }
966     else
967     {
968         /* remove previous stored p_input */
969         if( p_input )
970         {
971             vlc_object_release( p_input );
972             p_input = NULL;
973         }
974         /* we are working as a dialogs provider */
975         playlist_t *p_playlist = pl_Hold( p_intf );
976         p_input = playlist_CurrentInput( p_playlist );
977         if( p_input )
978         {
979             emit inputChanged( p_input );
980         }
981         pl_Release( p_intf );
982     }
983 }
984
985 /* Playlist Control functions */
986 void MainInputManager::stop()
987 {
988    playlist_Stop( THEPL );
989 }
990
991 void MainInputManager::next()
992 {
993    playlist_Next( THEPL );
994 }
995
996 void MainInputManager::prev()
997 {
998    playlist_Prev( THEPL );
999 }
1000
1001 void MainInputManager::togglePlayPause()
1002 {
1003     /* No input, play */
1004     if( !p_input )
1005         playlist_Play( THEPL );
1006     else
1007         getIM()->togglePlayPause();
1008 }
1009
1010 void MainInputManager::activatePlayQuit( bool b_exit )
1011 {
1012     var_SetBool( THEPL, "play-and-exit", b_exit );
1013 }
1014
1015 /* Static callbacks for MIM */
1016 static int PLItemChanged( vlc_object_t *p_this, const char *psz_var,
1017                         vlc_value_t oldval, vlc_value_t, void *param )
1018 {
1019     MainInputManager *mim = (MainInputManager*)param;
1020
1021     IMEvent *event = new IMEvent( ItemChanged_Type );
1022     QApplication::postEvent( mim, event );
1023     return VLC_SUCCESS;
1024 }
1025
1026 static int VolumeChanged( vlc_object_t *p_this, const char *psz_var,
1027                         vlc_value_t oldval, vlc_value_t newval, void *param )
1028 {
1029     MainInputManager *mim = (MainInputManager*)param;
1030
1031     IMEvent *event = new IMEvent( VolumeChanged_Type );
1032     QApplication::postEvent( mim, event );
1033     return VLC_SUCCESS;
1034 }
1035