You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
309 lines
9.1 KiB
309 lines
9.1 KiB
/*****************************************************************************
|
|
* main_inteface.cpp : Main interface
|
|
****************************************************************************
|
|
* Copyright (C) 2006 the VideoLAN team
|
|
* $Id$
|
|
*
|
|
* 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. *****************************************************************************/
|
|
|
|
#include <QEvent>
|
|
#include <QApplication>
|
|
#include <QSignalMapper>
|
|
#include <QFileDialog>
|
|
|
|
#include "qt4.hpp"
|
|
#include "dialogs_provider.hpp"
|
|
#include "menus.hpp"
|
|
#include <vlc_intf_strings.h>
|
|
|
|
/* The dialogs */
|
|
#include "dialogs/playlist.hpp"
|
|
#include "dialogs/prefs_dialog.hpp"
|
|
#include "dialogs/streaminfo.hpp"
|
|
#include "dialogs/messages.hpp"
|
|
#include "dialogs/extended.hpp"
|
|
|
|
DialogsProvider* DialogsProvider::instance = NULL;
|
|
|
|
DialogsProvider::DialogsProvider( intf_thread_t *_p_intf ) :
|
|
QObject( NULL ), p_intf( _p_intf )
|
|
{
|
|
fixed_timer = new QTimer( this );
|
|
fixed_timer->start( 150 /* milliseconds */ );
|
|
|
|
menusMapper = new QSignalMapper();
|
|
CONNECT( menusMapper, mapped(QObject *), this, menuAction( QObject *) );
|
|
|
|
menusUpdateMapper = new QSignalMapper();
|
|
CONNECT( menusUpdateMapper, mapped(QObject *),
|
|
this, menuUpdateAction( QObject *) );
|
|
|
|
SDMapper = new QSignalMapper();
|
|
CONNECT( SDMapper, mapped (QString), this, SDMenuAction( QString ) );
|
|
}
|
|
|
|
DialogsProvider::~DialogsProvider()
|
|
{
|
|
PlaylistDialog::killInstance();
|
|
StreamInfoDialog::killInstance();
|
|
}
|
|
|
|
void DialogsProvider::customEvent( QEvent *event )
|
|
{
|
|
if( event->type() == DialogEvent_Type )
|
|
{
|
|
DialogEvent *de = static_cast<DialogEvent*>(event);
|
|
switch( de->i_dialog )
|
|
{
|
|
case INTF_DIALOG_FILE:
|
|
case INTF_DIALOG_DISC:
|
|
case INTF_DIALOG_NET:
|
|
case INTF_DIALOG_CAPTURE:
|
|
openDialog( de->i_dialog ); break;
|
|
case INTF_DIALOG_PLAYLIST:
|
|
playlistDialog(); break;
|
|
case INTF_DIALOG_MESSAGES:
|
|
messagesDialog(); break;
|
|
case INTF_DIALOG_PREFS:
|
|
prefsDialog(); break;
|
|
case INTF_DIALOG_POPUPMENU:
|
|
case INTF_DIALOG_AUDIOPOPUPMENU:
|
|
case INTF_DIALOG_VIDEOPOPUPMENU:
|
|
case INTF_DIALOG_MISCPOPUPMENU:
|
|
popupMenu( de->i_dialog ); break;
|
|
case INTF_DIALOG_FILEINFO:
|
|
streaminfoDialog(); break;
|
|
case INTF_DIALOG_INTERACTION:
|
|
doInteraction( de->p_arg ); break;
|
|
case INTF_DIALOG_VLM:
|
|
case INTF_DIALOG_BOOKMARKS:
|
|
bookmarksDialog(); break;
|
|
case INTF_DIALOG_WIZARD:
|
|
default:
|
|
msg_Warn( p_intf, "unimplemented dialog\n" );
|
|
}
|
|
}
|
|
}
|
|
|
|
void DialogsProvider::playlistDialog()
|
|
{
|
|
PlaylistDialog::getInstance( p_intf )->toggleVisible();
|
|
}
|
|
|
|
void DialogsProvider::openDialog()
|
|
{
|
|
openDialog( 0 );
|
|
}
|
|
void DialogsProvider::PLAppendDialog()
|
|
{
|
|
}
|
|
void DialogsProvider::MLAppendDialog()
|
|
{
|
|
}
|
|
void DialogsProvider::openDialog( int i_dialog )
|
|
{
|
|
}
|
|
|
|
void DialogsProvider::doInteraction( intf_dialog_args_t *p_arg )
|
|
{
|
|
InteractionDialog *qdialog;
|
|
interaction_dialog_t *p_dialog = p_arg->p_dialog;
|
|
switch( p_dialog->i_action )
|
|
{
|
|
case INTERACT_NEW:
|
|
qdialog = new InteractionDialog( p_intf, p_dialog );
|
|
p_dialog->p_private = (void*)qdialog;
|
|
if( !(p_dialog->i_status == ANSWERED_DIALOG) )
|
|
qdialog->show();
|
|
break;
|
|
case INTERACT_UPDATE:
|
|
qdialog = (InteractionDialog*)(p_dialog->p_private);
|
|
if( qdialog)
|
|
qdialog->update();
|
|
break;
|
|
case INTERACT_HIDE:
|
|
qdialog = (InteractionDialog*)(p_dialog->p_private);
|
|
if( qdialog )
|
|
qdialog->hide();
|
|
p_dialog->i_status = HIDDEN_DIALOG;
|
|
break;
|
|
case INTERACT_DESTROY:
|
|
qdialog = (InteractionDialog*)(p_dialog->p_private);
|
|
if( !p_dialog->i_flags & DIALOG_NONBLOCKING_ERROR )
|
|
delete qdialog;
|
|
p_dialog->i_status = DESTROYED_DIALOG;
|
|
break;
|
|
}
|
|
}
|
|
|
|
void DialogsProvider::quit()
|
|
{
|
|
p_intf->b_die = VLC_TRUE;
|
|
QApplication::quit();
|
|
}
|
|
|
|
void DialogsProvider::streaminfoDialog()
|
|
{
|
|
StreamInfoDialog::getInstance( p_intf )->toggleVisible();
|
|
}
|
|
|
|
void DialogsProvider::streamingDialog()
|
|
{
|
|
}
|
|
|
|
void DialogsProvider::prefsDialog()
|
|
{
|
|
PrefsDialog::getInstance( p_intf )->toggleVisible();
|
|
}
|
|
void DialogsProvider::extendedDialog()
|
|
{
|
|
ExtendedDialog::getInstance( p_intf )->toggleVisible();
|
|
}
|
|
|
|
void DialogsProvider::messagesDialog()
|
|
{
|
|
MessagesDialog::getInstance( p_intf )->toggleVisible();
|
|
}
|
|
|
|
void DialogsProvider::menuAction( QObject *data )
|
|
{
|
|
QVLCMenu::DoAction( p_intf, data );
|
|
}
|
|
|
|
void DialogsProvider::menuUpdateAction( QObject *data )
|
|
{
|
|
MenuFunc * f = qobject_cast<MenuFunc *>(data);
|
|
f->doFunc( p_intf );
|
|
}
|
|
|
|
void DialogsProvider::SDMenuAction( QString data )
|
|
{
|
|
char *psz_sd = data.toUtf8().data();
|
|
if( !playlist_IsServicesDiscoveryLoaded( THEPL, psz_sd ) )
|
|
playlist_ServicesDiscoveryAdd( THEPL, psz_sd );
|
|
else
|
|
playlist_ServicesDiscoveryRemove( THEPL, psz_sd );
|
|
}
|
|
|
|
|
|
void DialogsProvider::simplePLAppendDialog()
|
|
{
|
|
QStringList files = showSimpleOpen();
|
|
QString file;
|
|
foreach( file, files )
|
|
{
|
|
const char * psz_utf8 = qtu( file );
|
|
playlist_PlaylistAdd( THEPL, psz_utf8, psz_utf8,
|
|
PLAYLIST_APPEND | PLAYLIST_PREPARSE, PLAYLIST_END );
|
|
}
|
|
}
|
|
|
|
void DialogsProvider::simpleMLAppendDialog()
|
|
{
|
|
QStringList files = showSimpleOpen();
|
|
QString file;
|
|
foreach( file, files )
|
|
{
|
|
const char * psz_utf8 = qtu( file );
|
|
playlist_MLAdd( THEPL, psz_utf8, psz_utf8,
|
|
PLAYLIST_APPEND | PLAYLIST_PREPARSE, PLAYLIST_END );
|
|
}
|
|
}
|
|
|
|
void DialogsProvider::simpleOpenDialog()
|
|
{
|
|
QStringList files = showSimpleOpen();
|
|
QString file;
|
|
for( size_t i = 0 ; i< files.size(); i++ )
|
|
{
|
|
const char * psz_utf8 = qtu( files[i] );
|
|
/* Play the first one, parse and enqueue the other ones */
|
|
playlist_PlaylistAdd( THEPL, psz_utf8, psz_utf8,
|
|
PLAYLIST_APPEND | (i ? 0 : PLAYLIST_GO) |
|
|
( i ? PLAYLIST_PREPARSE : 0 ),
|
|
PLAYLIST_END );
|
|
}
|
|
}
|
|
|
|
void DialogsProvider::openPlaylist()
|
|
{
|
|
QStringList files = showSimpleOpen();
|
|
QString file;
|
|
for( size_t i = 0 ; i< files.size(); i++ )
|
|
{
|
|
const char * psz_utf8 = qtu( files[i] );
|
|
/* Play the first one, parse and enqueue the other ones */
|
|
playlist_Import( THEPL, psz_utf8, THEPL->p_root_category, VLC_FALSE );
|
|
}
|
|
}
|
|
|
|
void DialogsProvider::openDirectory()
|
|
{
|
|
QString dir = QFileDialog::getExistingDirectory ( 0,
|
|
_("Open directory") );
|
|
const char *psz_utf8 = qtu( dir );
|
|
input_item_t *p_input = input_ItemNewExt( THEPL, psz_utf8, psz_utf8,
|
|
0, NULL, -1 );
|
|
playlist_PlaylistAddInput( THEPL, p_input,
|
|
PLAYLIST_APPEND, PLAYLIST_END );
|
|
input_Read( THEPL, p_input, VLC_FALSE );
|
|
}
|
|
void DialogsProvider::openMLDirectory()
|
|
{
|
|
QString dir = QFileDialog::getExistingDirectory ( 0,
|
|
_("Open directory") );
|
|
const char *psz_utf8 = qtu( dir );
|
|
input_item_t *p_input = input_ItemNewExt( THEPL, psz_utf8, psz_utf8,
|
|
0, NULL, -1 );
|
|
playlist_MLAddInput( THEPL, p_input, PLAYLIST_APPEND, PLAYLIST_END );
|
|
input_Read( THEPL, p_input, VLC_FALSE );
|
|
}
|
|
|
|
QStringList DialogsProvider::showSimpleOpen()
|
|
{
|
|
QString FileTypes;
|
|
FileTypes = _("Media Files");
|
|
FileTypes += " ( ";
|
|
FileTypes += EXTENSIONS_MEDIA;
|
|
FileTypes += ");;";
|
|
FileTypes += _("Video Files");
|
|
FileTypes += " ( ";
|
|
FileTypes += EXTENSIONS_VIDEO;
|
|
FileTypes += ");;";
|
|
FileTypes += _("Sound Files");
|
|
FileTypes += " ( ";
|
|
FileTypes += EXTENSIONS_AUDIO;
|
|
FileTypes += ");;";
|
|
FileTypes += _("PlayList Files");
|
|
FileTypes += " ( ";
|
|
FileTypes += EXTENSIONS_PLAYLIST;
|
|
FileTypes += ");;";
|
|
FileTypes += _("All Files");
|
|
FileTypes += " (*.*)";
|
|
FileTypes.replace(QString(";*"), QString(" *"));
|
|
return QFileDialog::getOpenFileNames( NULL, qfu(I_POP_SEL_FILES ),
|
|
p_intf->p_libvlc->psz_homedir, FileTypes );
|
|
}
|
|
|
|
void DialogsProvider::bookmarksDialog()
|
|
{
|
|
}
|
|
|
|
void DialogsProvider::popupMenu( int i_dialog )
|
|
{
|
|
|
|
}
|
|
|