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
|
/*****************************************************************************
* controller_widget.hpp : Controller Widget for the controllers
****************************************************************************
* Copyright (C) 2006-2008 the VideoLAN team
* $Id: 832017516e0c5feaf24c3a32f02b6fcc75c8001d $
*
* 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 _CONTROLLER_WIDGET_H_
#define _CONTROLLER_WIDGET_H_
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "qt4.hpp"
#include "input_manager.hpp"
#include <vlc_vout.h> /* vout_thread_t for aspect ratio combobox */
#include <QWidget>
#include <QToolButton>
#include <QComboBox>
class QLabel;
class QFrame;
class QSpinBox;
class QAbstractSlider;
/**
* SPECIAL Widgets that are a bit more than just a ToolButton
* and have an icon/behaviour that changes depending on the context:
* - playButton
* - A->B Button
* - Teletext group buttons
* - Sound Widget group
**/
class PlayButton : public QToolButton
{
Q_OBJECT
public slots:
void updateButtonIcons( bool );
};
class LoopButton : public QToolButton
{
Q_OBJECT
public slots:
void updateButtonIcons( int );
};
class AtoB_Button : public QToolButton
{
Q_OBJECT
private slots:
void updateButtonIcons( bool, bool );
};
class AspectRatioComboBox : public QComboBox
{
Q_OBJECT
public:
AspectRatioComboBox( intf_thread_t* _p_intf ) : p_intf( _p_intf )
{
CONNECT( THEMIM->getIM(), voutChanged( bool ),
this, updateRatios() );
CONNECT( this, currentIndexChanged( int ),
this, updateAspectRatio( int ) );
updateRatios();
}
public slots:
void updateRatios();
void updateAspectRatio( int );
private:
intf_thread_t* p_intf;
};
#define VOLUME_MAX 200
class SoundWidget : public QWidget
{
Q_OBJECT
public:
SoundWidget( QWidget *parent, intf_thread_t *_p_i, bool,
bool b_special = false );
void setMuted( bool );
protected:
virtual bool eventFilter( QObject *obj, QEvent *e );
private:
intf_thread_t *p_intf;
QLabel *volMuteLabel;
QAbstractSlider *volumeSlider;
QFrame *volumeControlWidget;
QMenu *volumeMenu;
bool b_is_muted;
bool b_ignore_valuechanged;
protected slots:
void userUpdateVolume( int );
void libUpdateVolume( float );
void updateMuteStatus( bool );
void refreshLabels( void );
void showVolumeMenu( QPoint pos );
void valueChangedFilter( int );
signals:
void valueReallyChanged( int );
};
#endif
|