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.4 KiB
309 lines
9.4 KiB
/*****************************************************************************
|
|
* controller_widget.cpp : Controller Widget for the controllers
|
|
****************************************************************************
|
|
* Copyright (C) 2006-2008 the VideoLAN team
|
|
*
|
|
* 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.
|
|
*****************************************************************************/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
# include "config.h"
|
|
#endif
|
|
|
|
#include "controller_widget.hpp"
|
|
#include "controller.hpp"
|
|
|
|
#include "input_manager.hpp" /* Get notification of Volume Change */
|
|
#include "util/input_slider.hpp" /* SoundSlider */
|
|
#include "util/imagehelper.hpp"
|
|
|
|
#include <math.h>
|
|
|
|
#include <QLabel>
|
|
#include <QHBoxLayout>
|
|
#include <QMenu>
|
|
#include <QWidgetAction>
|
|
#include <QMouseEvent>
|
|
|
|
#define VOLUME_MAX 125
|
|
|
|
SoundWidget::SoundWidget( QWidget *_parent, intf_thread_t * _p_intf,
|
|
bool b_shiny, bool b_special )
|
|
: QWidget( _parent ), p_intf( _p_intf),
|
|
b_is_muted( false ), b_ignore_valuechanged( false )
|
|
{
|
|
/* We need a layout for this widget */
|
|
QHBoxLayout *layout = new QHBoxLayout( this );
|
|
layout->setSpacing( 0 ); layout->setMargin( 0 );
|
|
|
|
/* We need a Label for the pix */
|
|
volMuteLabel = new QLabel;
|
|
volMuteLabel->setPixmap( ImageHelper::loadSvgToPixmap( ":/toolbar/volume-medium.svg", 16, 16 ) );
|
|
|
|
/* We might need a subLayout too */
|
|
QVBoxLayout *subLayout;
|
|
|
|
volMuteLabel->installEventFilter( this );
|
|
|
|
/* Normal View, click on icon mutes */
|
|
if( !b_special )
|
|
{
|
|
volumeMenu = NULL; subLayout = NULL;
|
|
volumeControlWidget = NULL;
|
|
|
|
/* And add the label */
|
|
layout->addWidget( volMuteLabel, 0, b_shiny? Qt::AlignBottom : Qt::AlignCenter );
|
|
}
|
|
else
|
|
{
|
|
/* Special view, click on button shows the slider */
|
|
b_shiny = false;
|
|
|
|
volumeControlWidget = new QFrame( this );
|
|
subLayout = new QVBoxLayout( volumeControlWidget );
|
|
subLayout->setContentsMargins( 4, 4, 4, 4 );
|
|
volumeMenu = new QMenu( this );
|
|
|
|
QWidgetAction *widgetAction = new QWidgetAction( volumeControlWidget );
|
|
widgetAction->setDefaultWidget( volumeControlWidget );
|
|
volumeMenu->addAction( widgetAction );
|
|
|
|
/* And add the label */
|
|
layout->addWidget( volMuteLabel );
|
|
}
|
|
|
|
/* Slider creation: shiny or clean */
|
|
if( b_shiny )
|
|
{
|
|
volumeSlider = new SoundSlider( this,
|
|
config_GetFloat( "volume-step" ),
|
|
var_InheritString( p_intf, "qt-slider-colours" ),
|
|
var_InheritInteger( p_intf, "qt-max-volume") );
|
|
}
|
|
else
|
|
{
|
|
volumeSlider = new QSlider( NULL );
|
|
volumeSlider->setAttribute( Qt::WA_MacSmallSize);
|
|
volumeSlider->setOrientation( b_special ? Qt::Vertical
|
|
: Qt::Horizontal );
|
|
volumeSlider->setMaximum( 200 );
|
|
}
|
|
|
|
volumeSlider->setFocusPolicy( Qt::NoFocus );
|
|
if( b_special )
|
|
subLayout->addWidget( volumeSlider );
|
|
else
|
|
layout->addWidget( volumeSlider, 0, b_shiny? Qt::AlignBottom : Qt::AlignCenter );
|
|
|
|
/* Set the volume from the config */
|
|
float volume = playlist_VolumeGet( THEPL );
|
|
libUpdateVolume( (volume >= 0.f) ? volume : 1.f );
|
|
/* Sync mute status */
|
|
if( playlist_MuteGet( THEPL ) > 0 )
|
|
updateMuteStatus( true );
|
|
|
|
/* Volume control connection */
|
|
volumeSlider->setTracking( true );
|
|
CONNECT( volumeSlider, valueChanged( int ), this, valueChangedFilter( int ) );
|
|
CONNECT( this, valueReallyChanged( int ), this, userUpdateVolume( int ) );
|
|
CONNECT( THEMIM, volumeChanged( float ), this, libUpdateVolume( float ) );
|
|
CONNECT( THEMIM, soundMuteChanged( bool ), this, updateMuteStatus( bool ) );
|
|
|
|
setAccessibleName( qtr( "Volume slider" ) );
|
|
}
|
|
|
|
void SoundWidget::refreshLabels()
|
|
{
|
|
int i_sliderVolume = volumeSlider->value();
|
|
const char *psz_icon = ":/toolbar/volume-muted.svg";
|
|
|
|
if( b_is_muted )
|
|
{
|
|
volMuteLabel->setPixmap( ImageHelper::loadSvgToPixmap( psz_icon, 16, 16 ) );
|
|
volMuteLabel->setToolTip(qfu(vlc_pgettext("Tooltip|Unmute", "Unmute")));
|
|
return;
|
|
}
|
|
|
|
if( i_sliderVolume < VOLUME_MAX / 3 )
|
|
psz_icon = ":/toolbar/volume-low.svg";
|
|
else if( i_sliderVolume > (VOLUME_MAX * 2 / 3 ) )
|
|
psz_icon = ":/toolbar/volume-high.svg";
|
|
else
|
|
psz_icon = ":/toolbar/volume-medium.svg";
|
|
|
|
volMuteLabel->setPixmap( ImageHelper::loadSvgToPixmap( psz_icon, 16, 16 ) );
|
|
volMuteLabel->setToolTip( qfu(vlc_pgettext("Tooltip|Mute", "Mute")) );
|
|
}
|
|
|
|
/* volumeSlider changed value event slot */
|
|
void SoundWidget::userUpdateVolume( int i_sliderVolume )
|
|
{
|
|
/* Only if volume is set by user action on slider */
|
|
setMuted( false );
|
|
playlist_VolumeSet( THEPL, i_sliderVolume / 100.f );
|
|
refreshLabels();
|
|
}
|
|
|
|
/* libvlc changed value event slot */
|
|
void SoundWidget::libUpdateVolume( float volume )
|
|
{
|
|
long i_volume = lroundf(volume * 100.f);
|
|
if( i_volume != volumeSlider->value() )
|
|
{
|
|
b_ignore_valuechanged = true;
|
|
volumeSlider->setValue( i_volume );
|
|
b_ignore_valuechanged = false;
|
|
}
|
|
refreshLabels();
|
|
}
|
|
|
|
void SoundWidget::valueChangedFilter( int i_val )
|
|
{
|
|
/* valueChanged is also emitted when the lib setValue() */
|
|
if ( !b_ignore_valuechanged ) emit valueReallyChanged( i_val );
|
|
}
|
|
|
|
/* libvlc mute/unmute event slot */
|
|
void SoundWidget::updateMuteStatus( bool mute )
|
|
{
|
|
b_is_muted = mute;
|
|
|
|
SoundSlider *soundSlider = qobject_cast<SoundSlider *>(volumeSlider);
|
|
if( soundSlider )
|
|
soundSlider->setMuted( mute );
|
|
refreshLabels();
|
|
}
|
|
|
|
void SoundWidget::showVolumeMenu( QPoint pos )
|
|
{
|
|
volumeMenu->setFixedHeight( volumeMenu->sizeHint().height() );
|
|
volumeMenu->exec( QCursor::pos() - pos - QPoint( 0, volumeMenu->height()/2 )
|
|
+ QPoint( width(), height() /2) );
|
|
}
|
|
|
|
void SoundWidget::setMuted( bool mute )
|
|
{
|
|
b_is_muted = mute;
|
|
playlist_t *p_playlist = THEPL;
|
|
playlist_MuteSet( p_playlist, mute );
|
|
}
|
|
|
|
bool SoundWidget::eventFilter( QObject *obj, QEvent *e )
|
|
{
|
|
VLC_UNUSED( obj );
|
|
if( e->type() == QEvent::MouseButtonPress )
|
|
{
|
|
QMouseEvent *event = static_cast<QMouseEvent*>(e);
|
|
if( event->button() == Qt::LeftButton )
|
|
{
|
|
if( volumeSlider->orientation() == Qt::Vertical )
|
|
{
|
|
showVolumeMenu( event->pos() );
|
|
}
|
|
else
|
|
{
|
|
setMuted( !b_is_muted );
|
|
}
|
|
e->accept();
|
|
return true;
|
|
}
|
|
}
|
|
e->ignore();
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Play Button
|
|
**/
|
|
void PlayButton::updateButtonIcons( bool b_playing )
|
|
{
|
|
setIcon( b_playing ? QIcon( ":/toolbar/pause_b.svg" ) : QIcon( ":/toolbar/play_b.svg" ) );
|
|
setToolTip( b_playing ? qtr( "Pause the playback" )
|
|
: qtr( I_PLAY_TOOLTIP ) );
|
|
}
|
|
|
|
void AtoB_Button::updateButtonIcons( bool timeA, bool timeB )
|
|
{
|
|
if( !timeA && !timeB)
|
|
{
|
|
setIcon( QIcon( ":/toolbar/atob_nob.svg" ) );
|
|
setToolTip( qtr( "Loop from point A to point B continuously\n"
|
|
"Click to set point A" ) );
|
|
}
|
|
else if( timeA && !timeB )
|
|
{
|
|
setIcon( QIcon( ":/toolbar/atob_noa.svg" ) );
|
|
setToolTip( qtr( "Click to set point B" ) );
|
|
}
|
|
else if( timeA && timeB )
|
|
{
|
|
setIcon( QIcon( ":/toolbar/atob.svg" ) );
|
|
setToolTip( qtr( "Stop the A to B loop" ) );
|
|
}
|
|
}
|
|
|
|
void LoopButton::updateButtonIcons( int value )
|
|
{
|
|
setChecked( value != NORMAL );
|
|
setIcon( ( value == REPEAT_ONE ) ? QIcon( ":/buttons/playlist/repeat_one.svg" )
|
|
: QIcon( ":/buttons/playlist/repeat_all.svg" ) );
|
|
}
|
|
|
|
void AspectRatioComboBox::updateRatios()
|
|
{
|
|
/* Clear the list before updating */
|
|
clear();
|
|
vlc_value_t *val_list;
|
|
char **text_list;
|
|
size_t count;
|
|
|
|
vout_thread_t* p_vout = THEMIM->getVout();
|
|
|
|
/* Disable if there is no vout */
|
|
if( p_vout == NULL )
|
|
{
|
|
addItem( qtr("Aspect Ratio") );
|
|
setDisabled( true );
|
|
return;
|
|
}
|
|
|
|
var_Change( p_vout, "aspect-ratio", VLC_VAR_GETCHOICES,
|
|
&count, &val_list, &text_list );
|
|
for( size_t i = 0; i < count; i++ )
|
|
{
|
|
addItem( qfu( text_list[i] ),
|
|
QString( val_list[i].psz_string ) );
|
|
free(text_list[i]);
|
|
free(val_list[i].psz_string);
|
|
}
|
|
setEnabled( true );
|
|
free(text_list);
|
|
free(val_list);
|
|
vlc_object_release( p_vout );
|
|
}
|
|
|
|
void AspectRatioComboBox::updateAspectRatio( int x )
|
|
{
|
|
vout_thread_t* p_vout = THEMIM->getVout();
|
|
if( p_vout && x >= 0 )
|
|
{
|
|
var_SetString( p_vout, "aspect-ratio", qtu( itemData(x).toString() ) );
|
|
}
|
|
if( p_vout )
|
|
vlc_object_release( p_vout );
|
|
}
|
|
|
|
|