1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
|
/*****************************************************************************
* sout.hpp : Stream output dialog ( old-style, ala WX )
****************************************************************************
* Copyright ( C ) 2006 the VideoLAN team
* $Id: efbbe45e465268f408e53c27cba4c6bd25232d77 $
*
* Authors: Clément Stenac <zorglub@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 QVLC_SOUT_DIALOG_H_
#define QVLC_SOUT_DIALOG_H_ 1
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <vlc_common.h> /* Gettext functions */
#include "ui/sout.h"
#include "util/qvlcframe.hpp"
#include <QWizard>
class QPushButton;
class QToolButton;
class QCheckBox;
class QGridLayout;
class QTextEdit;
class SoutMrl
{
public:
SoutMrl( const QString& head = "")
{
mrl = head;
b_first = true;
b_has_bracket = false;
}
QString getMrl()
{
return mrl;
}
void begin( const QString& module )
{
if( !b_first )
mrl += ":";
b_first = false;
mrl += module;
b_has_bracket = false;
}
void end()
{
if( b_has_bracket )
mrl += "}";
}
void option( const QString& option, const QString& value = "" )
{
if( !b_has_bracket )
mrl += "{";
else
mrl += ",";
b_has_bracket = true;
mrl += option;
if( !value.isEmpty() )
{
char *psz = config_StringEscape( qtu(value) );
if( psz )
{
mrl += "=" + qfu( psz );
free( psz );
}
}
}
void option( const QString& name, const int i_value, const int i_precision = 10 )
{
option( name, QString::number( i_value, i_precision ) );
}
void option( const QString& name, const double f_value )
{
option( name, QString::number( f_value ) );
}
void option( const QString& name, const QString& base, const int i_value, const int i_precision = 10 )
{
option( name, base + ":" + QString::number( i_value, i_precision ) );
}
private:
QString mrl;
bool b_has_bracket;
bool b_first;
};
class SoutDialog : public QWizard
{
Q_OBJECT
public:
SoutDialog( QWidget* parent, intf_thread_t *, const QString& mrl = "");
virtual ~SoutDialog(){}
QString getMrl(){ return mrl; }
protected:
virtual void done( int );
private:
Ui::Sout ui;
QString mrl;
QPushButton *okButton;
intf_thread_t* p_intf;
public slots:
void updateMRL();
private slots:
void closeTab( int );
void addDest();
};
#endif
|