]> git.sesse.net Git - vlc/blob - modules/gui/qt4/input_manager.hpp
295fdbded41cfe10b004405cd46c1fb3233317b7
[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-2007 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 #include <vlc/vlc.h>
28 #include <vlc_input.h>
29
30 #include <QObject>
31
32 class InputManager : public QObject
33 {
34     Q_OBJECT;
35 public:
36     InputManager( QObject *, intf_thread_t *);
37     virtual ~InputManager();
38
39     void delInput();
40     bool hasInput() { return p_input && !p_input->b_dead && !p_input->b_die; }
41     bool hasAudio() { return b_has_audio; }
42     bool hasVideo() { return b_has_video; }
43     bool b_has_audio, b_has_video, b_had_audio, b_had_video;
44 private:
45     intf_thread_t *p_intf;
46     input_thread_t *p_input;
47     int i_old_playing_status;
48     QString old_name;
49     int i_rate;
50 public slots:
51     void togglePlayPause();
52     void update(); ///< Periodic updates
53     void setInput( input_thread_t * ); ///< Our controlled input changed
54     void sliderUpdate( float ); ///< User dragged the slider. We get new pos
55     void slower();
56     void faster();
57     void normalRate();
58     void sectionNext();
59     void sectionPrev();
60     void sectionMenu();
61 signals:
62     /// Send new position, new time and new length
63     void positionUpdated( float , int, int );
64     void rateChanged( int );
65     void nameChanged( QString );
66     /// Used to signal whether we should show navigation buttons
67     void navigationChanged( int );
68     /// Play/pause status
69     void statusChanged( int );
70 };
71
72 class MainInputManager : public QObject
73 {
74     Q_OBJECT;
75 public:
76     static MainInputManager *getInstance( intf_thread_t *_p_intf )
77     {
78         if( !instance )
79             instance = new MainInputManager( _p_intf );
80         return instance;
81     }
82     static void killInstance()
83     {
84         if( instance ) delete instance;
85     }
86     virtual ~MainInputManager();
87     input_thread_t *getInput() { return p_input; };
88     InputManager *getIM() { return im; };
89
90 private:
91     InputManager *im;
92     intf_thread_t *p_intf;
93     input_thread_t *p_input;
94     static MainInputManager *instance;
95     MainInputManager( intf_thread_t *);
96 public slots:
97     void togglePlayPause();
98     void stop();
99     void next();
100     void prev();
101 private slots:
102     void updateInput();
103 signals:
104     void inputChanged( input_thread_t *);
105 };
106
107
108 #endif