sout_widgets.hpp
资源名称:vlc-1.0.5.zip [点击查看]
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:3k
源码类别:
midi
开发平台:
Unix_Linux
- /*****************************************************************************
- * profile_selector.hpp : A small profile selector and editor
- ****************************************************************************
- * Copyright (C) 2009 the VideoLAN team
- * $Id: ff2038f2b20fe53fae0678b1ca963ce3f35b8fee $
- *
- * Authors: Jean-Baptiste Kempf <jb@videolan.org>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
- *****************************************************************************/
- #ifndef SOUT_WIDGETS_H
- #define SOUT_WIDGETS_H
- #include "qt4.hpp"
- #include <QGroupBox>
- class QLineEdit;
- class QLabel;
- class QSpinBox;
- class SoutInputBox : public QGroupBox
- {
- public:
- SoutInputBox( QWidget *_parent = NULL, const QString& mrl = "" );
- void setMRL( const QString& );
- private:
- QLineEdit *sourceLine;
- QLabel *sourceValueLabel;
- };
- class VirtualDestBox : public QWidget
- {
- Q_OBJECT;
- public:
- VirtualDestBox( QWidget *_parent = NULL ) : QWidget( _parent ){}
- virtual QString getMRL( const QString& ) = 0;
- protected:
- QString mrl;
- signals:
- void mrlUpdated();
- };
- class FileDestBox: public VirtualDestBox
- {
- Q_OBJECT;
- public:
- FileDestBox( QWidget *_parent = NULL );
- virtual QString getMRL( const QString& );
- private:
- QLineEdit *fileEdit;
- private slots:
- void fileBrowse();
- };
- class HTTPDestBox: public VirtualDestBox
- {
- Q_OBJECT;
- public:
- HTTPDestBox( QWidget *_parent = NULL );
- virtual QString getMRL( const QString& );
- private:
- QLineEdit *HTTPEdit;
- QSpinBox *HTTPPort;
- };
- class MMSHDestBox: public VirtualDestBox
- {
- Q_OBJECT;
- public:
- MMSHDestBox( QWidget *_parent = NULL );
- virtual QString getMRL( const QString& );
- private:
- QLineEdit *MMSHEdit;
- QSpinBox *MMSHPort;
- };
- class UDPDestBox: public VirtualDestBox
- {
- Q_OBJECT;
- public:
- UDPDestBox( QWidget *_parent = NULL );
- virtual QString getMRL( const QString& );
- private:
- QLineEdit *UDPEdit;
- QSpinBox *UDPPort;
- };
- class RTPDestBox: public VirtualDestBox
- {
- Q_OBJECT;
- public:
- RTPDestBox( QWidget *_parent = NULL );
- virtual QString getMRL( const QString& );
- private:
- QLineEdit *RTPEdit;
- QSpinBox *RTPPort;
- QSpinBox *RTPPortVideo;
- QSpinBox *RTPPortAudio;
- };
- class ICEDestBox: public VirtualDestBox
- {
- Q_OBJECT;
- public:
- ICEDestBox( QWidget *_parent = NULL );
- virtual QString getMRL( const QString& );
- private:
- QLineEdit *ICEEdit;
- QLineEdit *ICEMountEdit;
- QLineEdit *ICEPassEdit;
- QSpinBox *ICEPort;
- };
- #endif