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