Home · All Classes · All Functions ·

playercontrols.cpp Example File
player/playercontrols.cpp

    /****************************************************************************
    **
    ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
    ** All rights reserved.
    ** Contact: Nokia Corporation (qt-info@nokia.com)
    **
    ** This file is part of the Qt Mobility Components.
    **
    ** $QT_BEGIN_LICENSE:LGPL$
    ** No Commercial Usage
    ** This file contains pre-release code and may not be distributed.
    ** You may use this file in accordance with the terms and conditions
    ** contained in the Technology Preview License Agreement accompanying
    ** this package.
    **
    ** GNU Lesser General Public License Usage
    ** Alternatively, this file may be used under the terms of the GNU Lesser
    ** General Public License version 2.1 as published by the Free Software
    ** Foundation and appearing in the file LICENSE.LGPL included in the
    ** packaging of this file.  Please review the following information to
    ** ensure the GNU Lesser General Public License version 2.1 requirements
    ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
    **
    ** In addition, as a special exception, Nokia gives you certain additional
    ** rights.  These rights are described in the Nokia Qt LGPL Exception
    ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
    **
    ** If you have questions regarding the use of this file, please contact
    ** Nokia at qt-info@nokia.com.
    **
    **
    **
    **
    **
    **
    **
    **
    ** $QT_END_LICENSE$
    **
    ****************************************************************************/

    #include "playercontrols.h"

    #include <QtGui/qboxlayout.h>
    #include <QtGui/qslider.h>
    #include <QtGui/qstyle.h>
    #include <QtGui/qtoolbutton.h>
    #include <QtGui/qcombobox.h>

    PlayerControls::PlayerControls(QWidget *parent)
        : QWidget(parent)
        , playerState(QMediaPlayer::StoppedState)
        , playerMuted(false)
        , playButton(0)
        , stopButton(0)
        , nextButton(0)
        , previousButton(0)
        , muteButton(0)
    #ifdef Q_OS_SYMBIAN
        , openButton(0)
        , fullScreenButton(0)
        , playListButton(0)
    #else
        , volumeSlider(0)
        , rateBox(0)
    #endif
    {
        playButton = new QToolButton;
        playButton->setIcon(style()->standardIcon(QStyle::SP_MediaPlay));

        connect(playButton, SIGNAL(clicked()), this, SLOT(playClicked()));

        stopButton = new QToolButton;
        stopButton->setIcon(style()->standardIcon(QStyle::SP_MediaStop));
        stopButton->setEnabled(false);

        connect(stopButton, SIGNAL(clicked()), this, SIGNAL(stop()));

        nextButton = new QToolButton;
        nextButton->setIcon(style()->standardIcon(QStyle::SP_MediaSkipForward));

        connect(nextButton, SIGNAL(clicked()), this, SIGNAL(next()));

        previousButton = new QToolButton;
        previousButton->setIcon(style()->standardIcon(QStyle::SP_MediaSkipBackward));

        connect(previousButton, SIGNAL(clicked()), this, SIGNAL(previous()));

        muteButton = new QToolButton;
        muteButton->setIcon(style()->standardIcon(QStyle::SP_MediaVolume));

        connect(muteButton, SIGNAL(clicked()), this, SLOT(muteClicked()));

    #ifdef Q_OS_SYMBIAN
    #else
        volumeSlider = new QSlider(Qt::Horizontal);
        volumeSlider->setRange(0, 100);

        connect(volumeSlider, SIGNAL(sliderMoved(int)), this, SIGNAL(changeVolume(int)));

        rateBox = new QComboBox;
        rateBox->addItem("0.5x", QVariant(0.5));
        rateBox->addItem("1.0x", QVariant(1.0));
        rateBox->addItem("2.0x", QVariant(2.0));
        rateBox->setCurrentIndex(1);

        connect(rateBox, SIGNAL(activated(int)), SLOT(updateRate()));

    #endif
    #ifdef Q_OS_SYMBIAN
        playButton->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Maximum);
        playButton->setMinimumSize(1, 1);
        stopButton->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Maximum);
        stopButton->setMinimumSize(1, 1);
        nextButton->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Maximum);
        nextButton->setMinimumSize(1, 1);
        previousButton->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Maximum);
        previousButton->setMinimumSize(1, 1);
        muteButton->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Maximum);
        muteButton->setMinimumSize(1, 1);

        openButton = new QToolButton(this);
        openButton->setIcon(style()->standardIcon(QStyle::SP_DirOpenIcon));
        openButton->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Maximum);
        openButton->setMinimumSize(1, 1);
        connect(openButton, SIGNAL(clicked()), this, SIGNAL(open()));

        fullScreenButton = new QToolButton(this);
        fullScreenButton->setIcon(style()->standardIcon(QStyle::SP_DesktopIcon));
        fullScreenButton->setCheckable(true);
        fullScreenButton->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Maximum);
        fullScreenButton->setMinimumSize(1, 1);
        connect(fullScreenButton, SIGNAL(clicked(bool)), this, SIGNAL(fullScreen(bool)));

        playListButton = new QToolButton(this);
        playListButton->setIcon(style()->standardIcon(QStyle::SP_FileDialogDetailedView));
        playListButton->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Maximum);
        playListButton->setMinimumSize(1, 1);
        connect(playListButton, SIGNAL(clicked(bool)), this, SIGNAL(openPlayList()));

    #endif

        QBoxLayout *layout = new QHBoxLayout;
        layout->setMargin(0);
        layout->addWidget(stopButton);
        layout->addWidget(previousButton);
        layout->addWidget(playButton);
        layout->addWidget(nextButton);
        layout->addWidget(muteButton);
    #ifdef Q_OS_SYMBIAN
        layout->addWidget(openButton);
        layout->addWidget(playListButton);
        layout->addWidget(fullScreenButton);
    #else
        layout->addWidget(volumeSlider);
        layout->addWidget(rateBox);
    #endif
        setLayout(layout);
    }

    QMediaPlayer::State PlayerControls::state() const
    {
        return playerState;
    }

    void PlayerControls::setState(QMediaPlayer::State state)
    {
        if (state != playerState) {
            playerState = state;

            switch (state) {
            case QMediaPlayer::StoppedState:
                stopButton->setEnabled(false);
                playButton->setIcon(style()->standardIcon(QStyle::SP_MediaPlay));
                break;
            case QMediaPlayer::PlayingState:
                stopButton->setEnabled(true);
                playButton->setIcon(style()->standardIcon(QStyle::SP_MediaPause));
                break;
            case QMediaPlayer::PausedState:
                stopButton->setEnabled(true);
                playButton->setIcon(style()->standardIcon(QStyle::SP_MediaPlay));
                break;
            }
        }
    }

    int PlayerControls::volume() const
    {
    #ifdef Q_OS_SYMBIAN
        return 0;
    #else
        return volumeSlider->value();
    #endif
    }

    void PlayerControls::setVolume(int volume)
    {
    #ifdef Q_OS_SYMBIAN
    #else
        volumeSlider->setValue(volume);
    #endif
    }

    bool PlayerControls::isMuted() const
    {
        return playerMuted;
    }

    void PlayerControls::setMuted(bool muted)
    {
        if (muted != playerMuted) {
            playerMuted = muted;

            muteButton->setIcon(style()->standardIcon(muted
                    ? QStyle::SP_MediaVolumeMuted
                    : QStyle::SP_MediaVolume));
        }
    }

    void PlayerControls::playClicked()
    {
        switch (playerState) {
        case QMediaPlayer::StoppedState:
        case QMediaPlayer::PausedState:
            emit play();
            break;
        case QMediaPlayer::PlayingState:
            emit pause();
            break;
        }
    }

    void PlayerControls::muteClicked()
    {
        emit changeMuting(!playerMuted);
    }

    qreal PlayerControls::playbackRate() const
    {
    #ifdef Q_OS_SYMBIAN
        return 0;
    #else
        return rateBox->itemData(rateBox->currentIndex()).toDouble();
    #endif
    }

    void PlayerControls::setPlaybackRate(float rate)
    {
    #ifdef Q_OS_SYMBIAN
    #else
        for (int i=0; i<rateBox->count(); i++) {
            if (qFuzzyCompare(rate, float(rateBox->itemData(i).toDouble()))) {
                rateBox->setCurrentIndex(i);
                return;
            }
        }

        rateBox->addItem( QString("%1x").arg(rate), QVariant(rate));
        rateBox->setCurrentIndex(rateBox->count()-1);
    #endif
    }

    void PlayerControls::updateRate()
    {
    #ifdef Q_OS_SYMBIAN
    #else
        emit changeRate(playbackRate());
    #endif
    }


Copyright © 2009 Nokia Corporation and/or its subsidiary(-ies) Trademarks
Qt Mobility Project 1.0.0