]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/vlm.hpp
Qt Imageset update.
[vlc] / modules / gui / qt4 / dialogs / vlm.hpp
1 /*****************************************************************************
2  * vlm.hpp : VLM Management
3  ****************************************************************************
4  * Copyright ( C ) 2006 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Jean-François Massol <jf.massol@gmail.com>
8  *          Jean-Baptiste Kempf <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 _VLM_DIALOG_H_
26 #define _VLM_DIALOG_H_
27
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
31
32 #include <vlc_common.h>
33
34 #ifdef ENABLE_VLM
35
36 #include <vlc_vlm.h>
37
38 #include "ui/vlm.h"
39 #include "util/qvlcframe.hpp"
40 #include <QDateTime>
41
42 enum{
43     QVLM_Broadcast,
44     QVLM_Schedule,
45     QVLM_VOD
46 };
47
48 enum{
49     ControlBroadcastPlay,
50     ControlBroadcastPause,
51     ControlBroadcastStop,
52     ControlBroadcastSeek
53 };
54
55 class QComboBox;
56 class QVBoxLayout;
57 class QStackedWidget;
58 class QLabel;
59 class QGridLayout;
60 class QLineEdit;
61 class QCheckBox;
62 class QToolButton;
63 class QGroupBox;
64 class QPushButton;
65 class QHBoxLayout;
66 class QDateTimeEdit;
67 class QSpinBox;
68 class VLMAWidget;
69 class VLMWrapper;
70
71
72 class VLMDialog : public QVLCDialog
73 {
74     Q_OBJECT;
75 public:
76     static VLMDialog * getInstance( intf_thread_t *p_intf )
77     {
78         if( !instance)
79              instance = new VLMDialog( (QWidget *)p_intf->p_sys->p_mi, p_intf );
80         return instance;
81     };
82     virtual ~VLMDialog();
83
84     VLMWrapper *vlmWrapper;
85     vlm_t *p_vlm;
86 private:
87     VLMDialog( QWidget *, intf_thread_t * );
88     static VLMDialog *instance;
89     Ui::Vlm ui;
90
91     QList<VLMAWidget *> vlmItems;
92     int currentIndex;
93
94     QVBoxLayout *vlmItemLayout;
95     QWidget *vlmItemWidget;
96
97     QComboBox *mediatype;
98     QDateTimeEdit *time, *date, *repeatTime;
99     QSpinBox *scherepeatnumber, *repeatDays;
100     bool isNameGenuine( QString );
101     void mediasPopulator();
102 public slots:
103     void removeVLMItem( VLMAWidget * );
104     void startModifyVLMItem( VLMAWidget * );
105 private slots:
106     void addVLMItem();
107     void clearWidgets();
108     void saveModifications();
109     void showScheduleWidget( int );
110     void selectVLMItem( int );
111     void selectInput();
112     void selectOutput();
113     bool exportVLMConf();
114     bool importVLMConf();
115 };
116
117 class VLMWrapper
118 {
119 public:
120     VLMWrapper( vlm_t * );
121     virtual ~VLMWrapper();
122
123     static void AddBroadcast( const QString, const QString, const QString,
124                        bool b_enabled = true,
125                        bool b_loop = false );
126     static void EditBroadcast( const QString, const QString, const QString,
127                        bool b_enabled = true,
128                        bool b_loop = false );
129     static void EditSchedule( const QString, const QString, const QString,
130                        QDateTime _schetime, QDateTime _schedate,
131                        int _scherepeatnumber, int _repeatDays,
132                        bool b_enabled = true, QString mux = "" );
133     static void AddVod( const QString, const QString, const QString,
134                        bool b_enabled = true, QString mux = "" );
135     static void EditVod( const QString, const QString, const QString,
136                        bool b_enabled = true, QString mux = "" );
137     static void AddSchedule( const QString, const QString, const QString,
138                        QDateTime _schetime, QDateTime _schedate,
139                        int _scherepeatnumber, int _repeatDays,
140                        bool b_enabled = true, QString mux = "" );
141
142     static void ControlBroadcast( const QString, int, unsigned int seek = 0 );
143     static void EnableItem( const QString, bool );
144
145     /* We don't have yet the accessors in the core, so the following is commented */
146     //unsigned int NbMedia() { if( p_vlm ) return p_vlm->i_media; return 0; }
147    /* vlm_media_t *GetMedia( int i )
148     { if( p_vlm ) return p_vlm->media[i]; return NULL; }*/
149
150 private:
151     static vlm_t *p_vlm;
152 };
153
154 class VLMAWidget : public QGroupBox
155 {
156     Q_OBJECT
157     friend class VLMDialog;
158 public:
159     VLMAWidget( QString name, QString input, QString output,
160             bool _enable, VLMDialog *parent, int _type = QVLM_Broadcast );
161     virtual void update() = 0;
162 protected:
163     QLabel *nameLabel;
164     QString name;
165     QString input;
166     QString output;
167     bool b_enabled;
168     int type;
169     VLMDialog *parent;
170     QGridLayout *objLayout;
171 private slots:
172     virtual void modify();
173     virtual void del();
174     virtual void toggleEnabled( bool );
175 };
176
177 class VLMBroadcast : public VLMAWidget
178 {
179     Q_OBJECT
180     friend class VLMDialog;
181 public:
182     VLMBroadcast( QString name, QString input, QString output,
183             bool _enable, bool _loop, VLMDialog *parent );
184     void update();
185 private:
186     bool b_looped;
187     bool b_playing;
188     QToolButton *loopButton, *playButton;
189 private slots:
190     void stop();
191     void togglePlayPause();
192     void toggleLoop();
193 };
194
195 class VLMVod : public VLMAWidget
196 {
197     Q_OBJECT
198     friend class VLMDialog;
199 public:
200     VLMVod( QString name, QString input, QString output,
201             bool _enable, QString _mux, VLMDialog *parent );
202     void update();
203 private:
204     QString mux;
205     QLabel *muxLabel;
206 };
207
208 class VLMSchedule : public VLMAWidget
209 {
210     Q_OBJECT
211     friend class VLMDialog;
212 public:
213     VLMSchedule( QString name, QString input, QString output,
214             QDateTime schetime, QDateTime schedate, int repeatnumber,
215             int repeatdays, bool enabled, VLMDialog *parent );
216     void update();
217 private:
218     QDateTime schetime;
219     QDateTime schedate;
220     int rNumber;
221     int rDays;
222 };
223
224 #endif
225
226 #endif
227