]> git.sesse.net Git - vlc/blob - modules/gui/qt4/input_manager.hpp
InputManager: Rename the status property to playingStatus and add a getter.
[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  *          Jean-Baptiste <jb@videolan.org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 #ifndef QVLC_INPUT_MANAGER_H_
26 #define QVLC_INPUT_MANAGER_H_
27
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
31
32 #include <vlc_input.h>
33
34 #include "qt4.hpp"
35
36 #include <QObject>
37 #include <QEvent>
38
39
40 enum {
41     PositionUpdate_Type = QEvent::User + IMEventType + 1,
42     ItemChanged_Type,
43     ItemStateChanged_Type,
44     ItemTitleChanged_Type,
45     ItemRateChanged_Type,
46     VolumeChanged_Type,
47     SoundMuteChanged_Type,
48     ItemEsChanged_Type,
49     ItemTeletextChanged_Type,
50     InterfaceVoutUpdate_Type,
51     StatisticsUpdate_Type, /*10*/
52     InterfaceAoutUpdate_Type,
53     MetaChanged_Type,
54     NameChanged_Type,
55     InfoChanged_Type,
56     SynchroChanged_Type,
57     CachingEvent_Type,
58     BookmarksChanged_Type,
59     RecordingEvent_Type,
60     ProgramChanged_Type,
61     RandomChanged_Type,
62     LoopChanged_Type,
63     RepeatChanged_Type,
64     LeafToParent_Type,
65     EPGEvent_Type,
66 /*    SignalChanged_Type, */
67
68     FullscreenControlToggle_Type = QEvent::User + IMEventType + 20,
69     FullscreenControlShow_Type,
70     FullscreenControlHide_Type,
71     FullscreenControlPlanHide_Type,
72 };
73
74 enum { NORMAL,    /* loop: 0, repeat: 0 */
75        REPEAT_ONE,/* loop: 1, repeat: 0 */
76        REPEAT_ALL,/* loop: 0, repeat: 1 */
77 };
78
79 class IMEvent : public QEvent
80 {
81 friend class InputManager;
82 friend class MainInputManager;
83     public:
84     IMEvent( int type, input_item_t *p_input = NULL )
85         : QEvent( (QEvent::Type)(type) )
86     {
87         if( (p_item = p_input) != NULL )
88             vlc_gc_incref( p_item );
89     }
90     virtual ~IMEvent()
91     {
92         if( p_item )
93             vlc_gc_decref( p_item );
94     }
95
96 private:
97     input_item_t *p_item;
98 };
99
100 enum PLEventTypes
101 {
102     PLItemAppended_Type = QEvent::User + PLEventType + 1,
103     PLItemRemoved_Type
104 };
105
106 class PLEvent : public QEvent
107 {
108 public:
109     PLEvent( PLEventTypes t, int i, int p )
110         : QEvent( (QEvent::Type)t ), i_item(i), i_parent(p) {}
111     int i_item;
112     int i_parent;
113 };
114
115 class InputManager : public QObject
116 {
117     Q_OBJECT
118     friend class MainInputManager;
119
120 public:
121     InputManager( QObject *, intf_thread_t * );
122     virtual ~InputManager();
123
124     void delInput();
125     bool hasInput()
126     {
127         return p_input /* We have an input */
128             && !p_input->b_dead /* not dead yet, */
129             && !p_input->b_eof  /* not EOF either, */
130             && vlc_object_alive (p_input); /* and the VLC object is alive */
131     }
132
133     int playingStatus();
134     bool hasAudio();
135     bool hasVideo() { return hasInput() && b_video; }
136     void requestArtUpdate();
137
138     QString getName() { return oldName; }
139     static const QString decodeArtURL( input_item_t *p_item );
140
141 private:
142     intf_thread_t  *p_intf;
143     input_thread_t *p_input;
144     vlc_object_t   *p_input_vbi;
145     input_item_t   *p_item;
146     int             i_old_playing_status;
147     QString         oldName;
148     QString         artUrl;
149     float           f_rate;
150     float           f_cache;
151     bool            b_video;
152     mtime_t         timeA, timeB;
153
154     void customEvent( QEvent * );
155
156     void addCallbacks();
157     void delCallbacks();
158
159     void UpdateRate();
160     void UpdateName();
161     void UpdateStatus();
162     void UpdateNavigation();
163     void UpdatePosition();
164     void UpdateTeletext();
165     void UpdateArt();
166     void UpdateInfo();
167     void UpdateMeta();
168     void UpdateMeta(input_item_t *);
169     void UpdateVout();
170     void UpdateAout();
171     void UpdateStats();
172     void UpdateCaching();
173     void UpdateRecord();
174     void UpdateProgramEvent();
175     void UpdateEPG();
176
177 public slots:
178     void setInput( input_thread_t * ); ///< Our controlled input changed
179     void sliderUpdate( float ); ///< User dragged the slider. We get new pos
180     /* SpeedRate Rate Management */
181     void reverse();
182     void slower();
183     void faster();
184     void littlefaster();
185     void littleslower();
186     void normalRate();
187     void setRate( int );
188     /* Jumping */
189     void jumpFwd();
190     void jumpBwd();
191     /* Menus */
192     void sectionNext();
193     void sectionPrev();
194     void sectionMenu();
195     /* Teletext */
196     void telexSetPage( int );          ///< Goto teletext page
197     void telexSetTransparency( bool ); ///< Transparency on teletext background
198     void activateTeletext( bool );     ///< Toggle buttons after click
199     /* A to B Loop */
200     void setAtoB();
201
202 private slots:
203     void togglePlayPause();
204     void AtoBLoop( float, int64_t, int );
205
206 signals:
207     /// Send new position, new time and new length
208     void positionUpdated( float , int64_t, int );
209     void seekRequested( float pos );
210     void rateChanged( float );
211     void nameChanged( const QString& );
212     /// Used to signal whether we should show navigation buttons
213     void titleChanged( bool );
214     void chapterChanged( bool );
215     /// Statistics are updated
216     void statisticsUpdated( input_item_t* );
217     void infoChanged( input_item_t* );
218     void currentMetaChanged( input_item_t* );
219     void metaChanged( input_item_t *);
220     void artChanged( QString );
221     /// Play/pause status
222     void playingStatusChanged( int );
223     void recordingStateChanged( bool );
224     /// Teletext
225     void teletextPossible( bool );
226     void teletextActivated( bool );
227     void teletextTransparencyActivated( bool );
228     void newTelexPageSet( int );
229     /// Advanced buttons
230     void AtoBchanged( bool, bool );
231     /// Vout
232     void voutChanged( bool );
233     void voutListChanged( vout_thread_t **pp_vout, int i_vout );
234     /// Other
235     void synchroChanged();
236     void bookmarksChanged();
237     void cachingChanged( float );
238     /// Program Event changes
239     void encryptionChanged( bool );
240     void epgChanged();
241 };
242
243 class MainInputManager : public QObject
244 {
245     Q_OBJECT
246 public:
247     static MainInputManager *getInstance( intf_thread_t *_p_intf )
248     {
249         if( !instance )
250             instance = new MainInputManager( _p_intf );
251         return instance;
252     }
253     static void killInstance()
254     {
255         delete instance;
256         instance = NULL;
257     }
258
259     input_thread_t *getInput() { return p_input; }
260     InputManager *getIM() { return im; }
261     inline input_item_t *currentInputItem()
262     {
263         return ( p_input ? input_GetItem( p_input ) : NULL );
264     }
265
266     vout_thread_t* getVout();
267     aout_instance_t *getAout();
268
269     bool getPlayExitState();
270 private:
271     MainInputManager( intf_thread_t * );
272     virtual ~MainInputManager();
273
274     static MainInputManager *instance;
275
276     void customEvent( QEvent * );
277
278     InputManager            *im;
279     input_thread_t          *p_input;
280     intf_thread_t           *p_intf;
281
282     void notifyRepeatLoop();
283 public slots:
284     void togglePlayPause();
285     void play();
286     void pause();
287     void toggleRandom();
288     void stop();
289     void next();
290     void prev();
291     void activatePlayQuit( bool );
292
293     void loopRepeatLoopStatus();
294
295 signals:
296     void inputChanged( input_thread_t * );
297     void volumeChanged();
298     void soundMuteChanged();
299     void playlistItemAppended( int itemId, int parentId );
300     void playlistItemRemoved( int itemId );
301     void randomChanged( bool );
302     void repeatLoopChanged( int );
303     void leafBecameParent( input_item_t * );
304 };
305
306 #endif