forked from videolan/vlc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinput_manager.hpp
323 lines (281 loc) · 8.74 KB
/
input_manager.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
/*****************************************************************************
* input_manager.hpp : Manage an input and interact with its GUI elements
****************************************************************************
* Copyright (C) 2006-2008 the VideoLAN team
* $Id$
*
* Authors: Clément Stenac <[email protected]>
* Jean-Baptiste <[email protected]>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#ifndef QVLC_INPUT_MANAGER_H_
#define QVLC_INPUT_MANAGER_H_
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <vlc_input.h>
#include "qt4.hpp"
#include "util/singleton.hpp"
#include "adapters/variables.hpp"
#include <QObject>
#include <QEvent>
class QSignalMapper;
enum { NORMAL, /* loop: 0, repeat: 0 */
REPEAT_ONE,/* loop: 0, repeat: 1 */
REPEAT_ALL,/* loop: 1, repeat: 0 */
};
class IMEvent : public QEvent
{
public:
enum event_types {
PositionUpdate = QEvent::User + IMEventTypeOffset + 1,
ItemChanged,
ItemStateChanged,
ItemTitleChanged,
ItemRateChanged,
ItemEsChanged,
ItemTeletextChanged,
InterfaceVoutUpdate,
StatisticsUpdate, /*10*/
InterfaceAoutUpdate,
MetaChanged,
NameChanged,
InfoChanged,
SynchroChanged,
CachingEvent,
BookmarksChanged,
RecordingEvent,
ProgramChanged,
RandomChanged,
LoopOrRepeatChanged,
EPGEvent,
/* SignalChanged, */
FullscreenControlToggle = QEvent::User + IMEventTypeOffset + 20,
FullscreenControlShow,
FullscreenControlHide,
FullscreenControlPlanHide,
};
IMEvent( event_types type, input_item_t *p_input = NULL )
: QEvent( (QEvent::Type)(type) )
{
if( (p_item = p_input) != NULL )
vlc_gc_incref( p_item );
}
virtual ~IMEvent()
{
if( p_item )
vlc_gc_decref( p_item );
}
input_item_t *item() const { return p_item; };
private:
input_item_t *p_item;
};
class PLEvent : public QEvent
{
public:
enum PLEventTypes
{
PLItemAppended = QEvent::User + PLEventTypeOffset + 1,
PLItemRemoved,
LeafToParent,
PLEmpty
};
PLEvent( PLEventTypes t, int i, int p = 0 )
: QEvent( (QEvent::Type)(t) ), i_item(i), i_parent(p) {}
int getItemId() const { return i_item; };
int getParentId() const { return i_parent; };
private:
/* Needed for "playlist-item*" and "leaf-to-parent" callbacks
* !! Can be a input_item_t->i_id or a playlist_item_t->i_id */
int i_item;
// Needed for "playlist-item-append" callback, notably
int i_parent;
};
class InputManager : public QObject
{
Q_OBJECT
friend class MainInputManager;
public:
InputManager( QObject *, intf_thread_t * );
virtual ~InputManager();
void delInput();
bool hasInput() const { return p_input != NULL; }
int playingStatus();
bool hasAudio();
bool hasVideo() { return hasInput() && b_video; }
bool hasVisualisation();
void requestArtUpdate( input_item_t *p_item, bool b_forced );
void setArt( input_item_t *p_item, QString fileUrl );
QString getName() { return oldName; }
static const QString decodeArtURL( input_item_t *p_item );
private:
intf_thread_t *p_intf;
input_thread_t *p_input;
vlc_object_t *p_input_vbi;
input_item_t *p_item;
int i_old_playing_status;
QString oldName;
QString lastURI;
QString artUrl;
float f_rate;
float f_cache;
bool b_video;
mtime_t timeA, timeB;
void customEvent( QEvent * );
void addCallbacks();
void delCallbacks();
void UpdateRate();
void UpdateName();
void UpdateStatus();
void UpdateNavigation();
void UpdatePosition();
void UpdateTeletext();
void UpdateArt();
void UpdateInfo();
void UpdateMeta();
void UpdateMeta(input_item_t *);
void UpdateVout();
void UpdateAout();
void UpdateStats();
void UpdateCaching();
void UpdateRecord();
void UpdateProgramEvent();
void UpdateEPG();
void setInput( input_thread_t * );
public slots:
void inputChangedHandler(); ///< Our controlled input changed
void sliderUpdate( float ); ///< User dragged the slider. We get new pos
/* SpeedRate Rate Management */
void reverse();
void slower();
void faster();
void littlefaster();
void littleslower();
void normalRate();
void setRate( int );
/* Jumping */
void jumpFwd();
void jumpBwd();
/* Menus */
void sectionNext();
void sectionPrev();
void sectionMenu();
/* Teletext */
void telexSetPage( int ); ///< Goto teletext page
void telexSetTransparency( bool ); ///< Transparency on teletext background
void activateTeletext( bool ); ///< Toggle buttons after click
/* A to B Loop */
void setAtoB();
private slots:
void AtoBLoop( float, int64_t, int );
signals:
/// Send new position, new time and new length
void positionUpdated( float , int64_t, int );
void seekRequested( float pos );
void rateChanged( float );
void nameChanged( const QString& );
/// Used to signal whether we should show navigation buttons
void titleChanged( bool );
void chapterChanged( bool );
void inputCanSeek( bool );
/// You can resume playback
void resumePlayback( int64_t );
/// Statistics are updated
void statisticsUpdated( input_item_t* );
void infoChanged( input_item_t* );
void currentMetaChanged( input_item_t* );
void metaChanged( input_item_t *);
void artChanged( QString ); /* current item art ( same as item == NULL ) */
void artChanged( input_item_t * );
/// Play/pause status
void playingStatusChanged( int );
void recordingStateChanged( bool );
/// Teletext
void teletextPossible( bool );
void teletextActivated( bool );
void teletextTransparencyActivated( bool );
void newTelexPageSet( int );
/// Advanced buttons
void AtoBchanged( bool, bool );
/// Vout
void voutChanged( bool );
void voutListChanged( vout_thread_t **pp_vout, int i_vout );
/// Other
void synchroChanged();
void bookmarksChanged();
void cachingChanged( float );
/// Program Event changes
void encryptionChanged( bool );
void epgChanged();
};
class MainInputManager : public QObject, public Singleton<MainInputManager>
{
Q_OBJECT
friend class Singleton<MainInputManager>;
friend class VLCMenuBar;
public:
input_thread_t *getInput() { return p_input; }
InputManager *getIM() { return im; }
inline input_item_t *currentInputItem()
{
return ( p_input ? input_GetItem( p_input ) : NULL );
}
vout_thread_t* getVout();
audio_output_t *getAout();
bool getPlayExitState();
bool hasEmptyPlaylist();
void requestVoutUpdate() { return im->UpdateVout(); }
protected:
QSignalMapper *menusAudioMapper;
private:
MainInputManager( intf_thread_t * );
virtual ~MainInputManager();
void customEvent( QEvent * );
InputManager *im;
input_thread_t *p_input;
intf_thread_t *p_intf;
QVLCBool random, repeat, loop;
QVLCFloat volume;
QVLCBool mute;
public slots:
void togglePlayPause();
void play();
void pause();
void toggleRandom();
void stop();
void next();
void prev();
void prevOrReset();
void activatePlayQuit( bool );
void loopRepeatLoopStatus();
private slots:
void notifyRandom( bool );
void notifyRepeatLoop( bool );
void notifyVolume( float );
void notifyMute( bool );
void menusUpdateAudio( const QString& );
signals:
void inputChanged( input_thread_t * );
void volumeChanged( float );
void soundMuteChanged( bool );
void playlistItemAppended( int itemId, int parentId );
void playlistItemRemoved( int itemId );
void playlistNotEmpty( bool );
void randomChanged( bool );
void repeatLoopChanged( int );
void leafBecameParent( int );
};
#endif