]> git.sesse.net Git - vlc/blob - modules/gui/qt4/input_manager.hpp
Qt4 - UpdateArt separation from other functions in the IM.
[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/vlc.h>
32 #include <vlc_input.h>
33
34 #include <QObject>
35 #include <QEvent>
36
37 static int const PositionUpdate_Type = QEvent::User + 6;
38 static int const ItemChanged_Type = QEvent::User + 7;
39 static int const ItemRateChanged_Type = QEvent::User + 8;
40 static int const ItemTitleChanged_Type = QEvent::User + 9;
41 static int const ItemStateChanged_Type = QEvent::User + 10;
42 static int const VolumeChanged_Type = QEvent::User + 11;
43
44 class IMEvent : public QEvent
45 {
46 public:
47     IMEvent( int type, int id ) : QEvent( (QEvent::Type)(type) )
48     { i_id = id ; } ;
49     virtual ~IMEvent() {};
50
51     int i_id;
52 };
53
54 class InputManager : public QObject
55 {
56     Q_OBJECT;
57 public:
58     InputManager( QObject *, intf_thread_t * );
59     virtual ~InputManager();
60
61     void delInput();
62     bool hasInput() { return p_input && !p_input->b_dead && !p_input->b_die; }
63     bool hasAudio() { return b_has_audio; }
64     bool hasVideo() { return b_has_video; }
65     bool b_has_audio, b_has_video, b_had_audio, b_had_video;
66 private:
67     void customEvent( QEvent * );
68     void addCallbacks();
69     void delCallbacks();
70     void UpdateRate();
71     void UpdateMeta();
72     void UpdateStatus();
73     void UpdateTitle();
74     void UpdatePosition();
75     void UpdateArt();
76     intf_thread_t  *p_intf;
77     input_thread_t *p_input;
78     int             i_old_playing_status;
79     QString         old_name;
80     QString         artUrl;
81     int             i_rate;
82 public slots:
83     void togglePlayPause();
84     void setInput( input_thread_t * ); ///< Our controlled input changed
85     void sliderUpdate( float ); ///< User dragged the slider. We get new pos
86     void slower();
87     void faster();
88     void normalRate();
89     void setRate( int );
90     void sectionNext();
91     void sectionPrev();
92     void sectionMenu();
93 #ifdef ZVBI_COMPILED
94     void telexGotoPage( int );
95     void telexToggle( bool );
96     void telexSetTransparency( bool );
97 #endif
98 signals:
99     /// Send new position, new time and new length
100     void positionUpdated( float , int, int );
101     void rateChanged( int );
102     void nameChanged( QString );
103     /// Used to signal whether we should show navigation buttons
104     void navigationChanged( int );
105 #ifdef ZVBI_COMPILED
106     void teletextEnabled( bool );
107 #endif
108     /// Play/pause status
109     void statusChanged( int );
110     void artChanged( QString );
111 };
112
113 class MainInputManager : public QObject
114 {
115     Q_OBJECT;
116 public:
117     static MainInputManager *getInstance( intf_thread_t *_p_intf )
118     {
119         if( !instance )
120             instance = new MainInputManager( _p_intf );
121         return instance;
122     }
123     static void killInstance()
124     {
125         if( instance ) delete instance;
126     }
127     virtual ~MainInputManager();
128     input_thread_t *getInput() { return p_input; };
129     InputManager *getIM() { return im; };
130
131 private:
132     void customEvent( QEvent * );
133     MainInputManager( intf_thread_t * );
134
135     InputManager            *im;
136     intf_thread_t           *p_intf;
137     input_thread_t          *p_input;
138     static MainInputManager *instance;
139 public slots:
140     void togglePlayPause();
141     void stop();
142     void next();
143     void prev();
144 private slots:
145     //void updateInput();
146 signals:
147     void inputChanged( input_thread_t * );
148     void volumeChanged();
149 };
150
151 #endif