]> git.sesse.net Git - vlc/blobdiff - modules/gui/qt4/dialogs/vlm.cpp
QT4_vlm: really fix #3938.
[vlc] / modules / gui / qt4 / dialogs / vlm.cpp
index 1b392504604b1b8113685eb11f25f73dced2da8e..9ee946751184aa61612b31416054a7b01e2c82b0 100644 (file)
@@ -1,12 +1,12 @@
 /*****************************************************************************
- * sout.cpp : stream output dialog ( old-style )
+ * vlm.cpp : VLM Management
  ****************************************************************************
- * Copyright ( C ) 2006 the VideoLAN team
- * $Id: sout.cpp 21875 2007-09-08 16:01:33Z jb $
+ * Copyright © 2008 the VideoLAN team
+ * $Id$
  *
- * Authors: Clément Stenac <zorglub@videolan.org>
- *          Jean-Baptiste Kempf <jb@videolan.org>
+ * Authors: Jean-Baptiste Kempf <jb@videolan.org>
  *          Jean-François Massol <jf.massol -at- gmail.com>
+ *          Clément Sténac <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
  * Foundation, Inc., 51 Franklin street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "dialogs/vlm.hpp"
-#include <vlc_streaming.h>
 
-#include <iostream>
+#ifdef ENABLE_VLM
+#include "dialogs/open.hpp"
+#include "dialogs/sout.hpp"
+#include "util/qt_dirs.hpp"
+
 #include <QString>
-#include <QFileDialog>
 #include <QComboBox>
 #include <QVBoxLayout>
 #include <QStackedWidget>
 #include <QGroupBox>
 #include <QPushButton>
 #include <QHBoxLayout>
-#include <QTimeEdit>
-#include <QDateEdit>
+#include <QDateTimeEdit>
+#include <QDateTime>
 #include <QSpinBox>
-
-VLMDialog *VLMDialog::instance = NULL;
+#include <QHeaderView>
+#include <QScrollArea>
+#include <QFileDialog>
 
 
-VLMDialog::VLMDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf )
+VLMDialog::VLMDialog( intf_thread_t *_p_intf ) : QVLCDialog( (QWidget*)_p_intf->p_sys->p_mi, _p_intf )
 {
+    p_vlm = vlm_New( p_intf );
+
+    if( !p_vlm )
+    {
+        msg_Warn( p_intf, "Couldn't build VLM object ");
+        return;
+    }
+    vlmWrapper = new VLMWrapper( p_vlm );
+
     // UI stuff
     ui.setupUi( this );
+    ui.saveButton->hide();
+
+#define ADDMEDIATYPES( str, type ) ui.mediaType->addItem( qtr( str ), QVariant( type ) );
+    ADDMEDIATYPES( N_("Broadcast"), QVLM_Broadcast );
+    ADDMEDIATYPES( N_("Schedule"), QVLM_Schedule );
+    ADDMEDIATYPES( N_("Video On Demand ( VOD )"), QVLM_VOD );
+#undef ADDMEDIATYPES
+
+    /* Schedule Stuffs */
+    QGridLayout *schetimelayout = new QGridLayout( ui.schedBox );
+    QLabel *schetimelabel = new QLabel( qtr( "Hours / Minutes / Seconds:" ) );
+    schetimelayout->addWidget( schetimelabel, 0, 0 );
+    QLabel *schedatelabel = new QLabel( qtr( "Day / Month / Year:" ) );
+    schetimelayout->addWidget( schedatelabel, 1, 0 );
+    QLabel *scherepeatLabel = new QLabel( qtr( "Repeat:" ) );
+    schetimelayout->addWidget( scherepeatLabel, 2, 0 );
+    QLabel *scherepeatTimeLabel = new QLabel( qtr( "Repeat delay:" ) );
+    schetimelayout->addWidget( scherepeatTimeLabel, 3, 0 );
 
-    /* Layout in the main groupBox */
-    layout = new QVBoxLayout( ui.groupBox );
+    time = new QDateTimeEdit( QTime::currentTime() );
+    time->setAlignment( Qt::AlignRight );
+    time->setDisplayFormat( "hh:mm:ss" );
+    schetimelayout->addWidget( time, 0, 1, 1, 3 );
 
-    mediatype = new QComboBox( ui.groupBox );
-    layout->addWidget( mediatype );
+    date = new QDateTimeEdit( QDate::currentDate() );
+    date->setAlignment( Qt::AlignRight );
+    date->setCalendarPopup( true );
+#ifdef WIN32
+    date->setDisplayFormat( "dd MM yyyy" );
+#else
+    date->setDisplayFormat( "dd MMMM yyyy" );
+#endif
+    schetimelayout->addWidget( date, 1, 1, 1, 3 );
 
-#define ADDMEDIATYPES( type ) mediatype->addItem( qtr( type ) );
+    scherepeatnumber = new QSpinBox;
+    scherepeatnumber->setAlignment( Qt::AlignRight );
+    schetimelayout->addWidget( scherepeatnumber, 2, 1, 1, 3 );
 
-    ADDMEDIATYPES( "Broadcast" );
-    ADDMEDIATYPES( "Video On Demand ( VOD )" );
-    ADDMEDIATYPES( "Schedule" );
+    repeatDays = new QSpinBox;
+    repeatDays->setAlignment( Qt::AlignRight );
+    schetimelayout->addWidget( repeatDays, 3, 1, 1, 1 );
+    repeatDays->setSuffix( qtr(" days") );
 
-    makeBcastPage();
-    makeVODPage();
-    makeSchedulePage();
+    repeatTime = new QDateTimeEdit;
+    repeatTime->setAlignment( Qt::AlignRight );
+    schetimelayout->addWidget( repeatTime, 3, 2, 1, 2 );
+    repeatTime->setDisplayFormat( "hh:mm:ss" );
 
-    /* Create a Stacked Widget to old the different phases */
-    slayout = new QStackedWidget( ui.groupBox );
-    slayout->addWidget( pBcast );
-    slayout->addWidget( pVod );
-    slayout->addWidget( pSchedule );
+    /* scrollArea */
+    ui.vlmItemScroll->setFrameStyle( QFrame::NoFrame );
+    ui.vlmItemScroll->setWidgetResizable( true );
+    vlmItemWidget = new QWidget;
+    vlmItemLayout = new QVBoxLayout( vlmItemWidget );
+    vlmItemWidget->setLayout( vlmItemLayout );
+    ui.vlmItemScroll->setWidget( vlmItemWidget );
 
-    layout->addWidget( slayout );
+    QSpacerItem *spacer =
+        new QSpacerItem( 10, 10, QSizePolicy::Minimum, QSizePolicy::Expanding);
+    vlmItemLayout->addItem( spacer );
 
-    QPushButton *closeButton = new QPushButton( qtr("Close") );
-    QPushButton *cancelButton = new QPushButton( qtr("Cancel") );
+    QPushButton *importButton = new QPushButton( qtr( "I&mport" ) );
+    ui.buttonBox->addButton( importButton, QDialogButtonBox::ActionRole );
+
+    QPushButton *exportButton = new QPushButton( qtr( "E&xport" ) );
+    ui.buttonBox->addButton( exportButton, QDialogButtonBox::ActionRole );
+
+    QPushButton *closeButton = new QPushButton( qtr( "&Close" ) );
     ui.buttonBox->addButton( closeButton, QDialogButtonBox::AcceptRole );
-    ui.buttonBox->addButton( cancelButton, QDialogButtonBox::RejectRole );
-
-    CONNECT( mediatype, currentIndexChanged( int ), slayout,
-            setCurrentIndex( int ) );
-    CONNECT( closeButton, clicked(), this, hide() );
-
-}
-
-VLMDialog::~VLMDialog(){}
-
-void VLMDialog::makeBcastPage()
-{
-    pBcast = new QWidget( ui.groupBox );
-    bcastlayout = new QGridLayout( pBcast );
-    bcastname = new QLabel( qtr( "Name :" ),pBcast );
-    bcastnameledit = new QLineEdit( pBcast );
-    bcastenable = new QCheckBox( qtr( "Enable" ),pBcast );
-    bcastinput = new QLabel( qtr( "Input :" ),pBcast );
-    bcastinputledit = new QLineEdit( pBcast );
-    bcastinputtbutton = new QToolButton( pBcast );
-    bcastoutput = new QLabel( qtr( "Output :" ),pBcast );
-    bcastoutputledit = new QLineEdit( pBcast );
-    bcastoutputtbutton = new QToolButton( pBcast );
-    bcastcontrol = new QGroupBox( qtr( "Controls" ),pBcast );
-    bcastgbox = new QHBoxLayout( bcastcontrol );
-    bcastplay = new QPushButton( qtr( "Play" ),bcastcontrol );
-    bcastpause = new QPushButton( qtr( "Pause" ),bcastcontrol );
-    bcaststop = new QPushButton( qtr( "Stop" ),bcastcontrol );
-    bcastadd = new QPushButton( qtr( "Add" ),pBcast );
-    bcastremove = new QPushButton( qtr( "Remove" ),pBcast );
-
-// Adding all widgets in the QGridLayout
-    bcastgbox->addWidget( bcastplay );
-    bcastgbox->addWidget( bcastpause );
-    bcastgbox->addWidget( bcaststop );
-    bcastlayout->addWidget( bcastname,0,0 );
-    bcastlayout->addWidget( bcastnameledit,0,1 );
-    bcastlayout->addWidget( bcastenable,0,2 );
-    bcastlayout->addWidget( bcastinput,1,0 );
-    bcastlayout->addWidget( bcastinputledit,1,1 );
-    bcastlayout->addWidget( bcastinputtbutton,1,2 );
-    bcastlayout->addWidget( bcastoutput,2,0 );
-    bcastlayout->addWidget( bcastoutputledit,2,1 );
-    bcastlayout->addWidget( bcastoutputtbutton,2,2 );
-    bcastlayout->addWidget( bcastcontrol,3,0,1,3 );
-    bcastlayout->addWidget( bcastadd,4,1 );
-    bcastlayout->addWidget( bcastremove,4,2 );
-}
-
-void VLMDialog::makeVODPage()
-{
-    pVod = new QWidget( ui.groupBox );
-    vodlayout = new QGridLayout( pVod );
-    vodname = new QLabel( qtr( "Name :" ),pVod );
-    vodnameledit = new QLineEdit( pVod );
-    vodenable = new QCheckBox( qtr( "Enable" ),pVod );
-    vodinput = new QLabel( qtr( "Input :" ),pVod );
-    vodinputledit = new QLineEdit( pVod );
-    vodinputtbutton = new QToolButton( pVod );
-    vodoutput = new QLabel( qtr( "Output :" ),pVod );
-    vodoutputledit = new QLineEdit( pVod );
-    vodoutputtbutton = new QToolButton( pVod );
-    vodadd = new QPushButton( qtr( "Add" ),pVod );
-    vodremove = new QPushButton( qtr( "Remove" ),pVod );
-
-// Adding all widgets in the QGridLayout
-    vodlayout->addWidget( vodname,0,0 );
-    vodlayout->addWidget( vodnameledit,0,1 );
-    vodlayout->addWidget( vodenable,0,2 );
-    vodlayout->addWidget( vodinput,1,0 );
-    vodlayout->addWidget( vodinputledit,1,1 );
-    vodlayout->addWidget( vodinputtbutton,1,2 );
-    vodlayout->addWidget( vodoutput,2,0 );
-    vodlayout->addWidget( vodoutputledit,2,1 );
-    vodlayout->addWidget( vodoutputtbutton,2,2 );
-    vodlayout->addWidget( vodadd,3,1 );
-    vodlayout->addWidget( vodremove,3,2 );
-}
-
-void VLMDialog::makeSchedulePage()
-{
-    pSchedule = new QWidget( ui.groupBox );
-    schelayout = new QGridLayout( pSchedule );
-    schename = new QLabel( qtr( "Name :" ),pSchedule );
-    schenameledit = new QLineEdit( pSchedule );
-    scheenable = new QCheckBox( qtr( "Enable" ),pSchedule );
-    scheinput = new QLabel( qtr( "Input :" ),pSchedule );
-    scheinputledit = new QLineEdit( pSchedule );
-    scheinputtbutton = new QToolButton( pSchedule );
-    scheoutput = new QLabel( qtr( "Output :" ),pSchedule );
-    scheoutputledit = new QLineEdit( pSchedule );
-    scheoutputtbutton = new QToolButton( pSchedule );
-    schecontrol = new QGroupBox( qtr( "Time Control" ),pSchedule );
-    scheadd = new QPushButton( qtr( "Add" ),pSchedule );
-    scheremove = new QPushButton( qtr( "Remove" ),pSchedule );
-    schetimelayout = new QGridLayout( schecontrol );
-    schetimelabel = new QLabel( qtr( "Hours/Minutes/Seconds :" ), schecontrol );
-    schedatelabel = new QLabel( qtr( "Day/Month/Year :" ), schecontrol );
-    schetimerepeat = new QLabel( qtr( "Repeat :" ), schecontrol );
-    time = new QTimeEdit( schecontrol );
-    date = new QDateEdit( schecontrol );
-    scherepeatnumber = new QSpinBox( schecontrol );
-
-    //scheadd->setMaximumWidth( 30 );
-
-// Adding all widgets in the QGridLayout
-    schetimelayout->addWidget( schetimelabel,0,0 );
-    schetimelayout->addWidget( time,0,1 );
-    schetimelayout->addWidget( schedatelabel,1,0 );
-    schetimelayout->addWidget( date,1,1 );
-    schetimelayout->addWidget( schetimerepeat,2,0 );
-    schetimelayout->addWidget( scherepeatnumber,2,1 );
-    schelayout->addWidget( schename,0,0 );
-    schelayout->addWidget( schenameledit,0,1 );
-    schelayout->addWidget( scheenable,0,2 );
-    schelayout->addWidget( scheinput,1,0 );
-    schelayout->addWidget( scheinputledit,1,1 );
-    schelayout->addWidget( scheinputtbutton,1,2 );
-    schelayout->addWidget( scheoutput,2,0 );
-    schelayout->addWidget( scheoutputledit,2,1 );
-    schelayout->addWidget( scheoutputtbutton,2,2 );
-    schelayout->addWidget( schecontrol,3,0,1,3 );
-    schelayout->addWidget( scheadd,4,1 );
-    schelayout->addWidget( scheremove,4,2 );
+
+
+    showScheduleWidget( QVLM_Broadcast );
+
+    /* Connect the comboBox to show the right Widgets */
+    CONNECT( ui.mediaType, currentIndexChanged( int ),
+             this, showScheduleWidget( int ) );
+
+    /* Connect the leftList to show the good VLMItem */
+    CONNECT( ui.vlmListItem, currentRowChanged( int ),
+             this, selectVLMItem( int ) );
+
+    BUTTONACT( closeButton, close() );
+    BUTTONACT( exportButton, exportVLMConf() );
+    BUTTONACT( importButton, importVLMConf() );
+    BUTTONACT( ui.addButton, addVLMItem() );
+    BUTTONACT( ui.clearButton, clearWidgets() );
+    BUTTONACT( ui.saveButton, saveModifications() );
+    BUTTONACT( ui.inputButton, selectInput() );
+    BUTTONACT( ui.outputButton, selectOutput() );
+    //readSettings( "VLM", QSize( 700, 500 ) );
+}
+
+VLMDialog::~VLMDialog()
+{
+    delete vlmWrapper;
+
+    //writeSettings( "VLM" );
+   /* TODO :you have to destroy vlm here to close
+    * but we shouldn't destroy vlm here in case somebody else wants it */
+    if( p_vlm )
+    {
+        vlm_Delete( p_vlm );
+    }
+}
+
+void VLMDialog::showScheduleWidget( int i )
+{
+    ui.schedBox->setVisible( ( i == QVLM_Schedule ) );
+    ui.loopBCast->setVisible( ( i == QVLM_Broadcast ) );
+    ui.vodBox->setVisible( ( i == QVLM_VOD ) );
+}
+
+void VLMDialog::selectVLMItem( int i )
+{
+    if( i >= 0 )
+        ui.vlmItemScroll->ensureWidgetVisible( vlmItems.at( i ) );
+}
+
+bool VLMDialog::isNameGenuine( const QString& name )
+{
+    for( int i = 0; i < vlmItems.size(); i++ )
+    {
+        if( vlmItems.at( i )->name == name )
+            return false;
+    }
+    return true;
+}
+
+void VLMDialog::addVLMItem()
+{
+    int vlmItemCount = vlmItems.size();
+
+    /* Take the name and Check it */
+    QString name = ui.nameLedit->text();
+    if( name.isEmpty() || !isNameGenuine( name ) )
+    {
+        msg_Err( p_intf, "VLM Name is empty or already exists, I can't do it" );
+        return;
+    }
+
+    int type = ui.mediaType->itemData( ui.mediaType->currentIndex() ).toInt();
+
+    QString typeShortName;
+    QString inputText = ui.inputLedit->text();
+    QString outputText = ui.outputLedit->text();
+    bool b_checked = ui.enableCheck->isChecked();
+    bool b_looped = ui.loopBCast->isChecked();
+    QDateTime schetime = time->dateTime();
+    QDateTime schedate = date->dateTime();
+    int repeatnum = scherepeatnumber->value();
+    int repeatdays = repeatDays->value();
+    VLMAWidget * vlmAwidget;
+    outputText.remove( ":sout=" );
+
+    switch( type )
+    {
+    case QVLM_Broadcast:
+        typeShortName = "Bcast";
+        vlmAwidget = new VLMBroadcast( name, inputText, inputOptions, outputText,
+                                       b_checked, b_looped, this );
+        VLMWrapper::AddBroadcast( name, inputText, inputOptions, outputText, b_checked,
+                                  b_looped );
+    break;
+    case QVLM_VOD:
+        typeShortName = "VOD";
+        vlmAwidget = new VLMVod( name, inputText, inputOptions, outputText,
+                                 b_checked, ui.muxLedit->text(), this );
+        VLMWrapper::AddVod( name, inputText, inputOptions, outputText, b_checked );
+        break;
+    case QVLM_Schedule:
+        typeShortName = "Sched";
+        vlmAwidget = new VLMSchedule( name, inputText, inputOptions, outputText,
+                                      schetime, schedate, repeatnum,
+                                      repeatdays, b_checked, this );
+        VLMWrapper::AddSchedule( name, inputText, inputOptions, outputText, schetime,
+                                 schedate, repeatnum, repeatdays, b_checked);
+        break;
+    default:
+        msg_Warn( p_intf, "Something bad happened" );
+        return;
+    }
+
+    /* Add an Item of the Side List */
+    ui.vlmListItem->addItem( typeShortName + " : " + name );
+    ui.vlmListItem->setCurrentRow( vlmItemCount - 1 );
+
+    /* Add a new VLMAWidget on the main List */
+
+    vlmItemLayout->insertWidget( vlmItemCount, vlmAwidget );
+    vlmItems.append( vlmAwidget );
+    clearWidgets();
+}
+
+/* TODO : VOD are not exported to the file */
+bool VLMDialog::exportVLMConf()
+{
+    QString saveVLMConfFileName = QFileDialog::getSaveFileName( this,
+                                        qtr( "Save VLM configuration as..." ),
+                                        QVLCUserDir( VLC_DOCUMENTS_DIR ),
+                                        qtr( "VLM conf (*.vlm);;All (*)" ) );
+
+    if( !saveVLMConfFileName.isEmpty() )
+    {
+        vlm_message_t *message;
+        QString command = "save \"" + saveVLMConfFileName + "\"";
+        vlm_ExecuteCommand( p_vlm , qtu( command ) , &message );
+        vlm_MessageDelete( message );
+        return true;
+    }
+
+    return false;
+}
+
+void VLMDialog::mediasPopulator()
+{
+    if( p_vlm )
+    {
+        int i_nMedias;
+        QString typeShortName;
+        int vlmItemCount;
+        vlm_media_t ***ppp_dsc = (vlm_media_t ***)malloc( sizeof( vlm_media_t ) );
+
+        /* Get medias informations and numbers */
+        vlm_Control( p_vlm, VLM_GET_MEDIAS, ppp_dsc, &i_nMedias );
+
+        /* Loop on all of them */
+        for( int i = 0; i < i_nMedias; i++ )
+        {
+            VLMAWidget * vlmAwidget;
+            vlmItemCount = vlmItems.size();
+
+            QString mediaName = qfu( (*ppp_dsc)[i]->psz_name );
+            /* It may have several inputs, we take the first one by default
+                 - an evolution will be to manage these inputs in the gui */
+            QString inputText = qfu( (*ppp_dsc)[i]->ppsz_input[0] );
+
+            QString outputText = qfu( (*ppp_dsc)[i]->psz_output );
+
+            /* Schedule media is a quite especial, maybe there is another way to grab informations */
+            if( (*ppp_dsc)[i]->b_vod )
+            {
+                typeShortName = "VOD";
+                QString mux = qfu( (*ppp_dsc)[i]->vod.psz_mux );
+                vlmAwidget = new VLMVod( mediaName, inputText, inputOptions,
+                                         outputText, (*ppp_dsc)[i]->b_enabled,
+                                         mux, this );
+            }
+            else
+            {
+                typeShortName = "Bcast";
+                vlmAwidget = new VLMBroadcast( mediaName, inputText, inputOptions,
+                                               outputText, (*ppp_dsc)[i]->b_enabled,
+                                               (*ppp_dsc)[i]->broadcast.b_loop, this );
+            }
+            /* Add an Item of the Side List */
+            ui.vlmListItem->addItem( typeShortName + " : " + mediaName );
+            ui.vlmListItem->setCurrentRow( vlmItemCount - 1 );
+
+            /* Add a new VLMAWidget on the main List */
+            vlmItemLayout->insertWidget( vlmItemCount, vlmAwidget );
+            vlmItems.append( vlmAwidget );
+            clearWidgets();
+        }
+        free( ppp_dsc );
+    }
+}
+
+bool VLMDialog::importVLMConf()
+{
+    QString openVLMConfFileName = toNativeSeparators(
+            QFileDialog::getOpenFileName(
+            this, qtr( "Open VLM configuration..." ),
+            QVLCUserDir( VLC_DOCUMENTS_DIR ),
+            qtr( "VLM conf (*.vlm);;All (*)" ) ) );
+
+    if( !openVLMConfFileName.isEmpty() )
+    {
+        vlm_message_t *message;
+        int status;
+        QString command = "load \"" + openVLMConfFileName + "\"";
+        status = vlm_ExecuteCommand( p_vlm, qtu( command ) , &message );
+        vlm_MessageDelete( message );
+        if( status == 0 )
+        {
+            mediasPopulator();
+        }
+        else
+        {
+            msg_Warn( p_intf, "Failed to import vlm configuration file : %s", qtu( command ) );
+            return false;
+        }
+        return true;
+    }
+    return false;
+}
+
+void VLMDialog::clearWidgets()
+{
+    ui.nameLedit->clear();
+    ui.inputLedit->clear();
+    inputOptions.clear();
+    ui.outputLedit->clear();
+    time->setTime( QTime::currentTime() );
+    date->setDate( QDate::currentDate() );
+    ui.enableCheck->setChecked( true );
+    ui.nameLedit->setReadOnly( false );
+    ui.loopBCast->setChecked( false );
+    ui.muxLedit->clear();
+    ui.saveButton->hide();
+    ui.addButton->show();
+}
+
+void VLMDialog::selectInput()
+{
+    OpenDialog *o = OpenDialog::getInstance( this, p_intf, false, SELECT, true );
+    o->exec();
+    ui.inputLedit->setText( o->getMRL( false ) );
+    inputOptions = o->getOptions();
+}
+
+void VLMDialog::selectOutput()
+{
+    SoutDialog *s = new SoutDialog( this, p_intf );
+    if( s->exec() == QDialog::Accepted )
+        ui.outputLedit->setText( s->getMrl() );
+}
+
+/* Object Modification */
+void VLMDialog::removeVLMItem( VLMAWidget *vlmObj )
+{
+    int index = vlmItems.indexOf( vlmObj );
+    if( index < 0 ) return;
+    delete ui.vlmListItem->takeItem( index );
+    vlmItems.removeAt( index );
+    delete vlmObj;
+
+    /* HERE BE DRAGONS VLM REQUEST */
+}
+
+void VLMDialog::startModifyVLMItem( VLMAWidget *vlmObj )
+{
+    currentIndex = vlmItems.indexOf( vlmObj );
+    if( currentIndex < 0 ) return;
+
+    ui.vlmListItem->setCurrentRow( currentIndex );
+    ui.nameLedit->setText( vlmObj->name );
+    ui.inputLedit->setText( vlmObj->input );
+    ui.outputLedit->setText( vlmObj->output );
+    ui.enableCheck->setChecked( vlmObj->b_enabled );
+
+    switch( vlmObj->type )
+    {
+    case QVLM_Broadcast:
+        ui.loopBCast->setChecked( (qobject_cast<VLMBroadcast *>(vlmObj))->b_looped );
+        break;
+    case QVLM_VOD:
+        ui.muxLedit->setText( (qobject_cast<VLMVod *>(vlmObj))->mux );
+        break;
+    case QVLM_Schedule:
+        time->setDateTime( ( qobject_cast<VLMSchedule *>(vlmObj))->schetime );
+        date->setDateTime( ( qobject_cast<VLMSchedule *>(vlmObj))->schedate );
+        break;
+    }
+
+    ui.nameLedit->setReadOnly( true );
+    ui.addButton->hide();
+    ui.saveButton->show();
+}
+
+void VLMDialog::saveModifications()
+{
+    VLMAWidget *vlmObj = vlmItems.at( currentIndex );
+    if( vlmObj )
+    {
+        vlmObj->input = ui.inputLedit->text();
+        vlmObj->output = ui.outputLedit->text().remove( ":sout=" );
+        vlmObj->setChecked( ui.enableCheck->isChecked() );
+        vlmObj->b_enabled = ui.enableCheck->isChecked();
+        switch( vlmObj->type )
+        {
+        case QVLM_Broadcast:
+            (qobject_cast<VLMBroadcast *>(vlmObj))->b_looped = ui.loopBCast->isChecked();
+            break;
+        case QVLM_VOD:
+            (qobject_cast<VLMVod *>(vlmObj))->mux = ui.muxLedit->text();
+            break;
+        case QVLM_Schedule:
+            (qobject_cast<VLMSchedule *>(vlmObj))->schetime = time->dateTime();
+            (qobject_cast<VLMSchedule *>(vlmObj))->schedate = date->dateTime();
+            (qobject_cast<VLMSchedule *>(vlmObj))->rNumber = scherepeatnumber->value();
+            (qobject_cast<VLMSchedule *>(vlmObj))->rDays = repeatDays->value();
+            break;
+           //           vlmObj->
+        }
+        vlmObj->update();
+    }
+    clearWidgets();
+}
+
+/*********************************
+ * VLMAWidget - Abstract class
+ ********************************/
+
+VLMAWidget::VLMAWidget( const QString& _name, const QString& _input,
+                        const QString& _inputOptions, const QString& _output,
+                        bool _enabled, VLMDialog *_parent, int _type )
+                      : QGroupBox( _name, _parent )
+{
+    parent = _parent;
+    name = _name;
+    input = _input;
+    inputOptions = _inputOptions;
+    output = _output;
+    b_enabled = _enabled;
+    type = _type;
+
+    setCheckable( true );
+    setChecked( b_enabled );
+
+    objLayout = new QGridLayout( this );
+    setSizePolicy( QSizePolicy::Preferred, QSizePolicy::Maximum );
+
+    nameLabel = new QLabel;
+    objLayout->addWidget( nameLabel, 0, 0, 1, 4 );
+
+    /*QLabel *time = new QLabel( "--:--/--:--" );
+    objLayout->addWidget( time, 1, 3, 1, 2 );*/
+
+    QToolButton *modifyButton = new QToolButton;
+    modifyButton->setIcon( QIcon( ":/menu/settings" ) );
+    objLayout->addWidget( modifyButton, 0, 5 );
+
+    QToolButton *deleteButton = new QToolButton;
+    deleteButton->setIcon( QIcon( ":/menu/quit" ) );
+    objLayout->addWidget( deleteButton, 0, 6 );
+
+    BUTTONACT( modifyButton, modify() );
+    BUTTONACT( deleteButton, del() );
+    CONNECT( this, clicked( bool ), this, toggleEnabled( bool ) );
+}
+
+void VLMAWidget::modify()
+{
+    parent->startModifyVLMItem( this );
 }
 
+void VLMAWidget::del()
+{
+    parent->removeVLMItem( this );
+}
+
+void VLMAWidget::toggleEnabled( bool b_enable )
+{
+    VLMWrapper::EnableItem( name, b_enable );
+}
+
+/****************
+ * VLMBroadcast
+ ****************/
+VLMBroadcast::VLMBroadcast( const QString& _name, const QString& _input,
+                            const QString& _inputOptions,
+                            const QString& _output, bool _enabled,
+                            bool _looped, VLMDialog *_parent )
+                          : VLMAWidget( _name, _input, _inputOptions, _output,
+                                        _enabled, _parent, QVLM_Broadcast )
+{
+    nameLabel->setText( qtr("Broadcast: ") + name );
+    type = QVLM_Broadcast;
+    b_looped = _looped;
+
+    playButton = new QToolButton;
+    playButton->setIcon( QIcon( ":/menu/play" ) );
+    objLayout->addWidget( playButton, 1, 0 );
+    b_playing = true;
+
+    QToolButton *stopButton = new QToolButton;
+    stopButton->setIcon( QIcon( ":/toolbar/stop_b" ) );
+    objLayout->addWidget( stopButton, 1, 1 );
+
+    loopButton = new QToolButton;
+    objLayout->addWidget( loopButton, 1, 2 );
+
+    BUTTONACT( playButton, togglePlayPause() );
+    BUTTONACT( stopButton, stop() );
+    BUTTONACT( loopButton, toggleLoop() );
+
+    update();
+}
+
+void VLMBroadcast::update()
+{
+    VLMWrapper::EditBroadcast( name, input, inputOptions, output, b_enabled, b_looped );
+    if( b_looped )
+        loopButton->setIcon( QIcon( ":/buttons/playlist/repeat_all" ) );
+    else
+        loopButton->setIcon( QIcon( ":/buttons/playlist/repeat_off" ) );
+}
+
+void VLMBroadcast::togglePlayPause()
+{
+    if( b_playing )
+    {
+        VLMWrapper::ControlBroadcast( name, ControlBroadcastPause );
+        playButton->setIcon( QIcon( ":/menu/pause" ) );
+    }
+    else
+    {
+        VLMWrapper::ControlBroadcast( name, ControlBroadcastPlay );
+        playButton->setIcon( QIcon( ":/menu/play" ) );
+    }
+    b_playing = !b_playing;
+}
+
+void VLMBroadcast::toggleLoop()
+{
+    b_enabled = !b_enabled;
+    update();
+}
+
+void VLMBroadcast::stop()
+{
+    VLMWrapper::ControlBroadcast( name, ControlBroadcastStop );
+    playButton->setIcon( QIcon( ":/menu/play" ) );
+}
+
+/****************
+ * VLMSchedule
+ ****************/
+VLMSchedule::VLMSchedule( const QString& name, const QString& input,
+                          const QString& inputOptions,
+                          const QString& output, QDateTime _schetime,
+                          QDateTime _schedate, int _scherepeatnumber,
+                          int _repeatDays, bool enabled, VLMDialog *parent )
+            : VLMAWidget( name, input, inputOptions, output, enabled, parent,
+                          QVLM_Schedule )
+{
+    nameLabel->setText( qtr("Schedule: ") + name );
+    schetime = _schetime;
+    schedate = _schedate;
+    rNumber = _scherepeatnumber;
+    rDays = _repeatDays;
+    type = QVLM_Schedule;
+    update();
+}
+
+void VLMSchedule::update()
+{
+   VLMWrapper::EditSchedule( name, input, inputOptions, output, schetime, schedate,
+                             rNumber, rDays, b_enabled);
+}
+
+/****************
+ * VLMVOD
+ ****************/
+VLMVod::VLMVod( const QString& name, const QString& input,
+                const QString& inputOptions, const QString& output,
+                bool enabled, const QString& _mux, VLMDialog *parent)
+       : VLMAWidget( name, input, inputOptions, output, enabled, parent,
+                     QVLM_VOD )
+{
+    nameLabel->setText( qtr("VOD: ") + name );
+
+    mux = _mux;
+    muxLabel = new QLabel;
+    objLayout->addWidget( muxLabel, 1, 0 );
+
+    update();
+}
+
+void VLMVod::update()
+{
+    muxLabel->setText( mux );
+    VLMWrapper::EditVod( name, input, inputOptions, output, b_enabled, mux );
+}
+
+
+/*******************
+ * VLMWrapper
+ *******************/
+vlm_t * VLMWrapper::p_vlm = NULL;
+
+VLMWrapper::VLMWrapper( vlm_t *_p_vlm )
+{
+    p_vlm = _p_vlm;
+}
+
+VLMWrapper::~VLMWrapper()
+{
+    p_vlm = NULL;
+}
+
+void VLMWrapper::AddBroadcast( const QString& name, const QString& input,
+                               const QString& inputOptions, const QString& output,
+                               bool b_enabled, bool b_loop  )
+{
+    vlm_message_t *message;
+    QString command = "new \"" + name + "\" broadcast";
+    vlm_ExecuteCommand( p_vlm, qtu( command ), &message );
+    vlm_MessageDelete( message );
+    EditBroadcast( name, input, inputOptions, output, b_enabled, b_loop );
+}
+
+void VLMWrapper::EditBroadcast( const QString& name, const QString& input,
+                                const QString& inputOptions, const QString& output,
+                                bool b_enabled, bool b_loop  )
+{
+    vlm_message_t *message;
+    QString command;
+
+    command = "setup \"" + name + "\" inputdel all";
+    vlm_ExecuteCommand( p_vlm, qtu( command ), &message );
+    vlm_MessageDelete( message );
+
+    if( !input.isEmpty() )
+    {
+        command = "setup \"" + name + "\" input \"" + input + "\"";
+        vlm_ExecuteCommand( p_vlm, qtu( command ), &message );
+        vlm_MessageDelete( message );
+
+        QStringList options = inputOptions.split( " :", QString::SkipEmptyParts );
+        for( int i = 0; i < options.size(); i++ )
+        {
+            command = "setup \"" + name + "\" option \"" + options[i].trimmed() + "\"";
+            vlm_ExecuteCommand( p_vlm, qtu( command ), &message );
+            vlm_MessageDelete( message );
+        }
+    }
+
+    if( !output.isEmpty() )
+    {
+        command = "setup \"" + name + "\" output \"" + output + "\"";
+        vlm_ExecuteCommand( p_vlm, qtu( command ), &message );
+        vlm_MessageDelete( message );
+    }
+    if( b_enabled )
+    {
+        command = "setup \"" + name + "\" enabled";
+        vlm_ExecuteCommand( p_vlm, qtu( command ), &message );
+        vlm_MessageDelete( message );
+    }
+    if( b_loop )
+    {
+        command = "setup \"" + name + "\" loop";
+        vlm_ExecuteCommand( p_vlm, qtu( command ), &message );
+        vlm_MessageDelete( message );
+    }
+}
+
+void VLMWrapper::EnableItem( const QString& name, bool b_enable )
+{
+    vlm_message_t *message;
+    QString command = "setup \"" + name + ( b_enable ? " enable" : " disable" );
+    vlm_ExecuteCommand( p_vlm, qtu( command ), &message );
+    vlm_MessageDelete( message );
+}
+
+void VLMWrapper::ControlBroadcast( const QString& name, int BroadcastStatus,
+                                   unsigned int seek )
+{
+    vlm_message_t *message;
+
+    QString command = "control \"" + name + "\"";
+    switch( BroadcastStatus )
+    {
+    case ControlBroadcastPlay:
+        command += " play";
+        break;
+    case ControlBroadcastPause:
+        command += " pause";
+        break;
+    case ControlBroadcastStop:
+        command += " stop";
+        break;
+    case ControlBroadcastSeek:
+        command += " seek" + seek;
+        break;
+    }
+    vlm_ExecuteCommand( p_vlm, qtu( command ), &message );
+    vlm_MessageDelete( message );
+}
+
+void VLMWrapper::AddVod( const QString& name, const QString& input,
+                         const QString& inputOptions, const QString& output,
+                         bool b_enabled, const QString& mux )
+{
+    vlm_message_t *message;
+    QString command = "new \"" + name + "\" vod";
+    vlm_ExecuteCommand( p_vlm, qtu( command ), &message );
+    vlm_MessageDelete( message );
+    EditVod(  name, input, inputOptions, output, b_enabled, mux );
+}
+
+void VLMWrapper::EditVod( const QString& name, const QString& input,
+                          const QString& inputOptions, const QString& output,
+                          bool b_enabled,
+                          const QString& mux )
+{
+    vlm_message_t *message;
+    QString command;
+
+    if( !input.isEmpty() )
+    {
+        command = "setup \"" + name + "\" input \"" + input + "\"";
+        vlm_ExecuteCommand( p_vlm, qtu( command ), &message );
+        vlm_MessageDelete( message );
+
+        QStringList options = inputOptions.split( " :", QString::SkipEmptyParts );
+        for( int i = 0; i < options.size(); i++ )
+        {
+            command = "setup \"" + name + "\" option \"" + options[i].trimmed() + "\"";
+            vlm_ExecuteCommand( p_vlm, qtu( command ), &message );
+            vlm_MessageDelete( message );
+        }
+    }
+
+    if( !output.isEmpty() )
+    {
+        command = "setup \"" + name + "\" output \"" + output + "\"";
+        vlm_ExecuteCommand( p_vlm, qtu( command ), &message );
+        vlm_MessageDelete( message );
+    }
+
+    if( b_enabled )
+    {
+        command = "setup \"" + name + "\" enabled";
+        vlm_ExecuteCommand( p_vlm, qtu( command ), &message );
+        vlm_MessageDelete( message );
+    }
+    if( !mux.isEmpty() )
+    {
+        command = "setup \"" + name + "\" mux \"" + mux + "\"";
+        vlm_ExecuteCommand( p_vlm, qtu( command ), &message );
+        vlm_MessageDelete( message );
+    }
+}
+
+void VLMWrapper::AddSchedule( const QString& name, const QString& input,
+                              const QString& inputOptions, const QString& output,
+                              QDateTime _schetime, QDateTime _schedate,
+                              int _scherepeatnumber, int _repeatDays,
+                              bool b_enabled, const QString& mux )
+{
+    vlm_message_t *message;
+    QString command = "new \"" + name + "\" schedule";
+    vlm_ExecuteCommand( p_vlm, qtu( command ), &message );
+    vlm_MessageDelete( message );
+    EditSchedule(  name, input, inputOptions, output, _schetime, _schedate,
+            _scherepeatnumber, _repeatDays, b_enabled, mux );
+}
+
+void VLMWrapper::EditSchedule( const QString& name, const QString& input,
+                               const QString& inputOptions, const QString& output,
+                               QDateTime _schetime, QDateTime _schedate,
+                               int _scherepeatnumber, int _repeatDays,
+                               bool b_enabled, const QString& mux )
+{
+    vlm_message_t *message;
+    QString command;
+
+    if( !input.isEmpty() )
+    {
+        command = "setup \"" + name + "\" input \"" + input + "\"";
+        vlm_ExecuteCommand( p_vlm, qtu( command ), &message );
+        vlm_MessageDelete( message );
+
+        QStringList options = inputOptions.split( " :", QString::SkipEmptyParts );
+        for( int i = 0; i < options.size(); i++ )
+        {
+            command = "setup \"" + name + "\" option \"" + options[i].trimmed() + "\"";
+            vlm_ExecuteCommand( p_vlm, qtu( command ), &message );
+            vlm_MessageDelete( message );
+        }
+    }
+
+    if( !output.isEmpty() )
+    {
+        command = "setup \"" + name + "\" output \"" + output + "\"";
+        vlm_ExecuteCommand( p_vlm, qtu( command ), &message );
+        vlm_MessageDelete( message );
+    }
+
+    if( b_enabled )
+    {
+        command = "setup \"" + name + "\" enabled";
+        vlm_ExecuteCommand( p_vlm, qtu( command ), &message );
+        vlm_MessageDelete( message );
+    }
+
+    if( !mux.isEmpty() )
+    {
+        command = "setup \"" + name + "\" mux \"" + mux + "\"";
+        vlm_ExecuteCommand( p_vlm, qtu( command ), &message );
+        vlm_MessageDelete( message );
+    }
+
+    command = "setup \"" + name + "\" date \"" +
+        _schedate.toString( "yyyy/MM/dd" )+ "-" +
+        _schetime.toString( "hh:mm:ss" ) + "\"";
+    vlm_ExecuteCommand( p_vlm, qtu( command ), &message );
+    vlm_MessageDelete( message );
+
+    if( _scherepeatnumber > 0 )
+    {
+       command = "setup \"" + name + "\" repeat \"" + _scherepeatnumber + "\"";
+       vlm_ExecuteCommand( p_vlm, qtu( command ), &message );
+       vlm_MessageDelete( message );
+    }
+
+    if( _repeatDays > 0 )
+    {
+       command = "setup \"" + name + "\" period \"" + _repeatDays + "\"";
+       vlm_ExecuteCommand( p_vlm, qtu( command ), &message );
+       vlm_MessageDelete( message );
+    }
+}
+
+void VLMDialog::toggleVisible()
+{
+    QList<VLMAWidget *>::iterator it;
+    for( it = vlmItems.begin(); it != vlmItems.end(); it++ )
+    {
+        VLMAWidget *item =  *it;
+        delete item;
+        item = NULL;
+    }
+    vlmItems.clear();
+    ui.vlmListItem->clear();
+    mediasPopulator();
+    QVLCDialog::toggleVisible();
+}
+
+
+#endif