⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mediaplayerprivatephonon.h

📁 linux下开源浏览器WebKit的源码,市面上的很多商用浏览器都是移植自WebKit
💻 H
字号:
/*    Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)    Copyright (C) 2009 Apple Inc. All rights reserved.    This library is free software; you can redistribute it and/or    modify it under the terms of the GNU Library General Public    License as published by the Free Software Foundation; either    version 2 of the License, or (at your option) any later version.    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 MediaPlayerPrivatePhonon_h#define MediaPlayerPrivatePhonon_h#include "MediaPlayerPrivate.h"#include <QObject>#include <phononnamespace.h>QT_BEGIN_NAMESPACEclass QWidget;class QUrl;namespace Phonon {    class MediaObject;    class VideoWidget;    class AudioOutput;    class MediaSource;}QT_END_NAMESPACEnamespace WebCore {    class MediaPlayerPrivate : public QObject, public MediaPlayerPrivateInterface {        Q_OBJECT    public:        static void registerMediaEngine(MediaEngineRegistrar);        ~MediaPlayerPrivate();        // These enums are used for debugging        Q_ENUMS(ReadyState NetworkState PhononState)        enum ReadyState {            DataUnavailable,            CanShowCurrentFrame,            CanPlay,            CanPlayThrough        };        enum NetworkState {            Empty,            LoadFailed,            Loading,            LoadedMetaData,            LoadedFirstFrame,            Loaded        };        enum PhononState {            LoadingState,            StoppedState,            PlayingState,            BufferingState,            PausedState,            ErrorState        };        IntSize naturalSize() const;        bool hasVideo() const;        void load(const String &url);        void cancelLoad();        void play();        void pause();        bool paused() const;        bool seeking() const;        float duration() const;        float currentTime() const;        void seek(float);        void setEndTime(float);        void setRate(float);        void setVolume(float);        void setMuted(bool);        int dataRate() const;        MediaPlayer::NetworkState networkState() const;        MediaPlayer::ReadyState readyState() const;        float maxTimeBuffered() const;        float maxTimeSeekable() const;        unsigned bytesLoaded() const;        bool totalBytesKnown() const;        unsigned totalBytes() const;        void setVisible(bool);        void setSize(const IntSize&);        void paint(GraphicsContext*, const IntRect&);    protected:        bool eventFilter(QObject*, QEvent*);    private slots:        void stateChanged(Phonon::State, Phonon::State);        void metaDataChanged();        void seekableChanged(bool);        void hasVideoChanged(bool);        void bufferStatus(int);        void finished();        void currentSourceChanged(const Phonon::MediaSource&);        void aboutToFinish();        void totalTimeChanged(qint64);    private:        MediaPlayerPrivate(MediaPlayer*);        static MediaPlayerPrivateInterface* create(MediaPlayer* player);        static void getSupportedTypes(HashSet<String>&);        static MediaPlayer::SupportsType supportsType(const String& type, const String& codecs);        static bool isAvailable() { return true; }        void updateStates();        MediaPlayer* m_player;        MediaPlayer::NetworkState m_networkState;        MediaPlayer::ReadyState m_readyState;        Phonon::MediaObject* m_mediaObject;        Phonon::VideoWidget* m_videoWidget;        Phonon::AudioOutput* m_audioOutput;        bool m_isVisible;    };}#endif // MediaPlayerPrivatePhonon_h

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -