1 /*****************************************************************************
2 * input_manager.hpp : Manage an input and interact with its GUI elements
3 ****************************************************************************
4 * Copyright (C) 2006-2008 the VideoLAN team
7 * Authors: Clément Stenac <zorglub@videolan.org>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 *****************************************************************************/
24 #ifndef _INPUT_MANAGER_H_
25 #define _INPUT_MANAGER_H_
31 #include <vlc_common.h>
32 #include <vlc_input.h>
39 static int const PositionUpdate_Type = QEvent::User + IMEventType + 1;
40 static int const ItemChanged_Type = QEvent::User + IMEventType + 2;
41 static int const ItemStateChanged_Type = QEvent::User + IMEventType + 3;
42 static int const ItemTitleChanged_Type = QEvent::User + IMEventType + 4;
43 static int const ItemRateChanged_Type = QEvent::User + IMEventType + 5;
44 static int const VolumeChanged_Type = QEvent::User + IMEventType + 6;
45 static int const ItemSpuChanged_Type = QEvent::User + IMEventType + 7;
46 static int const ItemTeletextChanged_Type= QEvent::User + IMEventType + 8;
48 static int const FullscreenControlShow_Type = QEvent::User + IMEventType + 10;
49 static int const FullscreenControlHide_Type = QEvent::User + IMEventType + 11;
50 static int const FullscreenControlPlanHide_Type = QEvent::User + IMEventType + 12;
52 class IMEvent : public QEvent
55 IMEvent( int type, int id ) : QEvent( (QEvent::Type)(type) )
57 virtual ~IMEvent() {};
62 class InputManager : public QObject
66 InputManager( QObject *, intf_thread_t * );
67 virtual ~InputManager();
70 bool hasInput() { return p_input && !p_input->b_dead && vlc_object_alive (p_input); }
75 intf_thread_t *p_intf;
76 input_thread_t *p_input;
78 int i_old_playing_status;
82 bool b_transparentTelextext;
84 void customEvent( QEvent * );
90 void UpdateNavigation();
91 void UpdatePosition();
93 void UpdateTeletext();
97 void setInput( input_thread_t * ); ///< Our controlled input changed
98 void sliderUpdate( float ); ///< User dragged the slider. We get new pos
99 void togglePlayPause();
107 void telexGotoPage( int ); ///< Goto teletext page
108 void telexToggle( bool ); ///< Enable disable teletext buttons
109 void telexToggleButtons(); ///< Toggle buttons after click
110 void telexSetTransparency(); ///< Set transparency on teletext background
113 /// Send new position, new time and new length
114 void positionUpdated( float , int, int );
115 void rateChanged( int );
116 void nameChanged( QString );
117 /// Used to signal whether we should show navigation buttons
118 void navigationChanged( int );
119 /// Play/pause status
120 void statusChanged( int );
121 void artChanged( QString );
123 void teletextEnabled( bool );
124 void toggleTelexButtons();
125 void toggleTelexTransparency();
126 void setNewTelexPage( int );
129 class MainInputManager : public QObject
133 static MainInputManager *getInstance( intf_thread_t *_p_intf )
136 instance = new MainInputManager( _p_intf );
139 static void killInstance()
141 if( instance ) delete instance;
143 virtual ~MainInputManager();
145 input_thread_t *getInput() { return p_input; };
146 InputManager *getIM() { return im; };
149 MainInputManager( intf_thread_t * );
150 void customEvent( QEvent * );
153 input_thread_t *p_input;
155 intf_thread_t *p_intf;
156 static MainInputManager *instance;
158 bool teletextState();
159 void togglePlayPause();
164 void inputChanged( input_thread_t * );
165 void volumeChanged();