]> git.sesse.net Git - vlc/blob - modules/gui/qt4/input_manager.hpp
Disable crashy FS controller by default
[vlc] / modules / gui / qt4 / input_manager.hpp
1 /*****************************************************************************
2  * input_manager.hpp : 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  *
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.
13  *
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.
18  *
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  *****************************************************************************/
23
24 #ifndef _INPUT_MANAGER_H_
25 #define _INPUT_MANAGER_H_
26
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include <vlc_common.h>
32 #include <vlc_input.h>
33
34 #include "qt4.hpp"
35
36 #include <QObject>
37 #include <QEvent>
38
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;
47
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;
51
52 class IMEvent : public QEvent
53 {
54 public:
55     IMEvent( int type, int id ) : QEvent( (QEvent::Type)(type) )
56     { i_id = id ; } ;
57     virtual ~IMEvent() {};
58
59     int i_id;
60 };
61
62 class InputManager : public QObject
63 {
64     Q_OBJECT;
65 public:
66     InputManager( QObject *, intf_thread_t * );
67     virtual ~InputManager();
68
69     void delInput();
70     bool hasInput() { return p_input && !p_input->b_dead && vlc_object_alive (p_input); }
71     bool hasAudio();
72     bool hasVideo();
73
74 private:
75     intf_thread_t  *p_intf;
76     input_thread_t *p_input;
77     int             i_input_id;
78     int             i_old_playing_status;
79     QString         old_name;
80     QString         artUrl;
81     int             i_rate;
82     bool            b_transparentTelextext;
83
84     void customEvent( QEvent * );
85     void addCallbacks();
86     void delCallbacks();
87     void UpdateRate();
88     void UpdateMeta();
89     void UpdateStatus();
90     void UpdateNavigation();
91     void UpdatePosition();
92     void UpdateSPU();
93     void UpdateTeletext();
94     void UpdateArt();
95
96 public slots:
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();
100     void slower();
101     void faster();
102     void normalRate();
103     void setRate( int );
104     void sectionNext();
105     void sectionPrev();
106     void sectionMenu();
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
111
112 signals:
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 );
122     /// Teletext
123     void teletextEnabled( bool );
124     void toggleTelexButtons();
125     void toggleTelexTransparency();
126     void setNewTelexPage( int );
127 };
128
129 class MainInputManager : public QObject
130 {
131     Q_OBJECT;
132 public:
133     static MainInputManager *getInstance( intf_thread_t *_p_intf )
134     {
135         if( !instance )
136             instance = new MainInputManager( _p_intf );
137         return instance;
138     }
139     static void killInstance()
140     {
141         if( instance ) delete instance;
142     }
143     virtual ~MainInputManager();
144
145     input_thread_t *getInput() { return p_input; };
146     InputManager *getIM() { return im; };
147
148 private:
149     MainInputManager( intf_thread_t * );
150     void customEvent( QEvent * );
151
152     InputManager            *im;
153     input_thread_t          *p_input;
154
155     intf_thread_t           *p_intf;
156     static MainInputManager *instance;
157 public slots:
158     bool teletextState();
159     void togglePlayPause();
160     void stop();
161     void next();
162     void prev();
163 signals:
164     void inputChanged( input_thread_t * );
165     void volumeChanged();
166 };
167
168 #endif