vlm.hpp
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:6k
源码类别:

midi

开发平台:

Unix_Linux

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