/* This file is part of the KDE libraries Copyright (C) 2016 Ivailo Monev This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License version 2, as published by the Free Software Foundation. This library 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 Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef KMEDIAWIDGET_H #define KMEDIAWIDGET_H #include #include #include #include #include class KMediaWidgetPrivate; /*! The @p KMediaWidget class provides an embedable widget that can be used to playback from various media sources including Hard-Drives, Internet streams, CD, DVD, Blue-Ray, file-descriptor, raw data, you name it. Unlike @p KMediaPlayer it provides interactive media controls to play/pause, seek to position and set volume. It is ment to be a simple player but supports drag-n-drop actions, fullscreen support and can automatically hide the media controls optionally. For a simpler version of this class check out @p KMediaPlayer. @code QMainWindow window ; window.show(); KMediaWidget player(window); window.setCentralWidget(player); player.open("http://dl5.webmfiles.org/big-buck-bunny_trailer.webm"); @endcode @note You should construct it with parent widget, preferably a QMainWindow, so that it can be layered on top of it. Otherwise when a video is played the widget will be floating. Ensuring that the widget has parent is a key to the fullscreen support as it will ask the parent to maximize itself when that needs to happen to ensure that the media controls are visible. @see KMediaPlayer @todo keyboard shortcuts */ class KMEDIAPLAYER_EXPORT KMediaWidget: public QWidget { Q_OBJECT public: enum KMediaOption { //! @brief No options at all NoOptions = 0x0, //! @brief When URL is dragged to the widget it will be opened DragDrop = 0x1, //! @brief Provide fullscreen option, it is such because it will ask the parent to do it FullscreenVideo = 0x2, //! @brief Whenever path is loaded the volume is slowly increased SmoothVolume = 0x4, //! @brief All available options AllOptions = DragDrop | FullscreenVideo | SmoothVolume, //! @brief Default options DefaultOptions = NoOptions }; Q_DECLARE_FLAGS(KMediaOptions, KMediaOption); KMediaWidget(QWidget *parent, KMediaOptions options = DefaultOptions); ~KMediaWidget(); /*! @return The player instance */ KMediaPlayer* player() const; /*! @brief Open a path @note Aside from loading @p path it will also setup the play/pause button state and enable the position seeking slider if the path supports seeking. It is recommended to use this method when a path must be loaded. @param path a path to load @see KMediaPlayer::load */ void open(const QString &path); //! @brief Reimplementation to provide reasonable size hint virtual QSize sizeHint() const; //! @brief Reimplementation to provide reasonable minimum size hint virtual QSize minimumSizeHint() const; protected: //! @brief Reimplementation to support fullscreen virtual void mouseDoubleClickEvent(QMouseEvent *event); //! @brief Reimplementation to support Drag-n-Drop virtual void dragEnterEvent(QDragEnterEvent *event); //! @brief Reimplementation to support Drag-n-Drop virtual void dropEvent(QDropEvent *event); //! @brief Reimplementation to show play button text conditionally virtual void resizeEvent(QResizeEvent *event); public Q_SLOTS: /*! @brief Set the state to play (unpaused) or paused @param value A tristate value for the play state, if "-1" the state will be automatically decided for you. If "1" it will set the state to play (unpaused) and if "0" it will set it to pause (paused). Whenever called it updates the play/pause button state. @see KMediaPlayer::play, KMediaPlayer::pause */ void setPlay(const int value = -1); /*! @brief Set the position of the playback @param value A value in seconds @note The value is integer because the slider itself uses integer @see KMediaPlayer::currentTime, KMediaPlayer::remainingTime, KMediaPlayer::totalTime */ void setPosition(const int value); /*! @brief Set the volume of the playback @param value A value between 0-100 usually @note The value is integer because the dial itself uses integer @see KMediaPlayer::setVolume */ void setVolume(const int value); /*! @brief Set the fullscreen state @param value A tristate value for the fullscreen state, if "-1" the state will be automatically decided for you. If "1 it will set the state to fullscreen and if "0" it will set it non-fullscreen. @see KMediaPlayer::isFullscreen, KMediaPlayer::setFullscreen */ void setFullscreen(const int value = -1); private Q_SLOTS: void _updatePlay(const bool paused); void _setPosition(); void _updateSeekable(const bool seekable); void _updatePosition(const double seconds); void _updateLoaded(); void _updateFinished(); void _updateError(const QString &error); void _updateVolume(const int volume); private: friend KMediaWidgetPrivate; KMediaWidgetPrivate *d; }; Q_DECLARE_OPERATORS_FOR_FLAGS(KMediaWidget::KMediaOptions); #endif // KMEDIAWIDGET_H