/* * Copyright (C) 2008, 2009, 2010, 2011 Apple Inc. All rights reserved. * Copyright (C) 2012 Google Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of Apple Inc. ("Apple") nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #pragma once #if ENABLE(VIDEO) #include "MediaControlElementTypes.h" #include "TextTrackRepresentation.h" namespace WebCore { // ---------------------------- class MediaControlPanelElement final : public MediaControlDivElement { public: static Ref create(Document&); void setCanBeDragged(bool); void setIsDisplayed(bool); void resetPosition(); void makeOpaque(); void makeTransparent(); #if !PLATFORM(IOS) bool willRespondToMouseMoveEvents() override { return true; } bool willRespondToMouseClickEvents() override { return true; } #endif private: explicit MediaControlPanelElement(Document&); void defaultEventHandler(Event&) override; void startDrag(const LayoutPoint& eventLocation); void continueDrag(const LayoutPoint& eventLocation); void endDrag(); void startTimer(); void stopTimer(); void transitionTimerFired(); void setPosition(const LayoutPoint&); bool m_canBeDragged; bool m_isBeingDragged; bool m_isDisplayed; bool m_opaque; LayoutPoint m_lastDragEventLocation; LayoutPoint m_cumulativeDragOffset; Timer m_transitionTimer; }; // ---------------------------- class MediaControlPanelEnclosureElement final : public MediaControlDivElement { public: static Ref create(Document&); private: explicit MediaControlPanelEnclosureElement(Document&); }; // ---------------------------- class MediaControlOverlayEnclosureElement final : public MediaControlDivElement { public: static Ref create(Document&); private: explicit MediaControlOverlayEnclosureElement(Document&); }; // ---------------------------- class MediaControlTimelineContainerElement final : public MediaControlDivElement { public: static Ref create(Document&); void setTimeDisplaysHidden(bool); private: explicit MediaControlTimelineContainerElement(Document&); RenderPtr createElementRenderer(RenderStyle&&, const RenderTreePosition&) override; }; // ---------------------------- class MediaControlVolumeSliderContainerElement final : public MediaControlDivElement { public: static Ref create(Document&); #if !PLATFORM(IOS) bool willRespondToMouseMoveEvents() override { return true; } #endif private: explicit MediaControlVolumeSliderContainerElement(Document&); void defaultEventHandler(Event&) override; RenderPtr createElementRenderer(RenderStyle&&, const RenderTreePosition&) override; }; // ---------------------------- class MediaControlStatusDisplayElement final : public MediaControlDivElement { public: static Ref create(Document&); void update(); private: explicit MediaControlStatusDisplayElement(Document&); enum StateBeingDisplayed { Nothing, Loading, LiveBroadcast }; StateBeingDisplayed m_stateBeingDisplayed; }; // ---------------------------- class MediaControlPanelMuteButtonElement final : public MediaControlMuteButtonElement { public: static Ref create(Document&, MediaControls*); #if !PLATFORM(IOS) bool willRespondToMouseMoveEvents() override { return true; } #endif private: explicit MediaControlPanelMuteButtonElement(Document&, MediaControls*); void defaultEventHandler(Event&) override; MediaControls* m_controls; }; // ---------------------------- class MediaControlVolumeSliderMuteButtonElement final : public MediaControlMuteButtonElement { public: static Ref create(Document&); private: explicit MediaControlVolumeSliderMuteButtonElement(Document&); }; // ---------------------------- class MediaControlPlayButtonElement final : public MediaControlInputElement { public: static Ref create(Document&); #if !PLATFORM(IOS) bool willRespondToMouseClickEvents() override { return true; } #endif void updateDisplayType() override; private: explicit MediaControlPlayButtonElement(Document&); void defaultEventHandler(Event&) override; }; // ---------------------------- class MediaControlOverlayPlayButtonElement final : public MediaControlInputElement { public: static Ref create(Document&); void updateDisplayType() override; private: explicit MediaControlOverlayPlayButtonElement(Document&); void defaultEventHandler(Event&) override; }; // ---------------------------- class MediaControlSeekForwardButtonElement final : public MediaControlSeekButtonElement { public: static Ref create(Document&); private: explicit MediaControlSeekForwardButtonElement(Document&); bool isForwardButton() const override { return true; } }; // ---------------------------- class MediaControlSeekBackButtonElement final : public MediaControlSeekButtonElement { public: static Ref create(Document&); private: explicit MediaControlSeekBackButtonElement(Document&); bool isForwardButton() const override { return false; } }; // ---------------------------- class MediaControlRewindButtonElement final : public MediaControlInputElement { public: static Ref create(Document&); #if !PLATFORM(IOS) bool willRespondToMouseClickEvents() override { return true; } #endif private: explicit MediaControlRewindButtonElement(Document&); void defaultEventHandler(Event&) override; }; // ---------------------------- class MediaControlReturnToRealtimeButtonElement final : public MediaControlInputElement { public: static Ref create(Document&); #if !PLATFORM(IOS) bool willRespondToMouseClickEvents() override { return true; } #endif private: explicit MediaControlReturnToRealtimeButtonElement(Document&); void defaultEventHandler(Event&) override; }; // ---------------------------- class MediaControlToggleClosedCaptionsButtonElement final : public MediaControlInputElement { public: static Ref create(Document&, MediaControls*); #if !PLATFORM(IOS) bool willRespondToMouseClickEvents() override { return true; } #endif void updateDisplayType() override; private: explicit MediaControlToggleClosedCaptionsButtonElement(Document&, MediaControls*); void defaultEventHandler(Event&) override; #if PLATFORM(COCOA) || PLATFORM(WIN) || PLATFORM(GTK) MediaControls* m_controls; #endif }; // ---------------------------- class MediaControlClosedCaptionsContainerElement final : public MediaControlDivElement { public: static Ref create(Document&); #if !PLATFORM(IOS) bool willRespondToMouseClickEvents() override { return true; } #endif private: MediaControlClosedCaptionsContainerElement(Document&); }; // ---------------------------- class MediaControlClosedCaptionsTrackListElement final : public MediaControlDivElement { public: static Ref create(Document&, MediaControls*); #if !PLATFORM(IOS) bool willRespondToMouseClickEvents() override { return true; } #endif void updateDisplay(); private: MediaControlClosedCaptionsTrackListElement(Document&, MediaControls*); void rebuildTrackListMenu(); void defaultEventHandler(Event&) override; typedef Vector> TrackMenuItems; TrackMenuItems m_menuItems; #if ENABLE(VIDEO_TRACK) typedef HashMap, RefPtr> MenuItemToTrackMap; MenuItemToTrackMap m_menuToTrackMap; #endif MediaControls* m_controls; }; // ---------------------------- class MediaControlTimelineElement final : public MediaControlInputElement { public: static Ref create(Document&, MediaControls*); #if !PLATFORM(IOS) bool willRespondToMouseClickEvents() override; #endif void setPosition(double); void setDuration(double); private: explicit MediaControlTimelineElement(Document&, MediaControls*); void defaultEventHandler(Event&) override; MediaControls* m_controls; }; // ---------------------------- class MediaControlFullscreenButtonElement final : public MediaControlInputElement { public: static Ref create(Document&); #if !PLATFORM(IOS) bool willRespondToMouseClickEvents() override { return true; } #endif void setIsFullscreen(bool); private: explicit MediaControlFullscreenButtonElement(Document&); void defaultEventHandler(Event&) override; }; // ---------------------------- class MediaControlPanelVolumeSliderElement final : public MediaControlVolumeSliderElement { public: static Ref create(Document&); private: explicit MediaControlPanelVolumeSliderElement(Document&); }; // ---------------------------- class MediaControlFullscreenVolumeSliderElement final : public MediaControlVolumeSliderElement { public: static Ref create(Document&); private: explicit MediaControlFullscreenVolumeSliderElement(Document&); }; // ---------------------------- class MediaControlFullscreenVolumeMinButtonElement final : public MediaControlInputElement { public: static Ref create(Document&); #if !PLATFORM(IOS) bool willRespondToMouseClickEvents() override { return true; } #endif private: explicit MediaControlFullscreenVolumeMinButtonElement(Document&); void defaultEventHandler(Event&) override; }; // ---------------------------- class MediaControlFullscreenVolumeMaxButtonElement final : public MediaControlInputElement { public: static Ref create(Document&); #if !PLATFORM(IOS) bool willRespondToMouseClickEvents() override { return true; } #endif private: explicit MediaControlFullscreenVolumeMaxButtonElement(Document&); void defaultEventHandler(Event&) override; }; // ---------------------------- class MediaControlTimeRemainingDisplayElement final : public MediaControlTimeDisplayElement { public: static Ref create(Document&); private: explicit MediaControlTimeRemainingDisplayElement(Document&); }; // ---------------------------- class MediaControlCurrentTimeDisplayElement final : public MediaControlTimeDisplayElement { public: static Ref create(Document&); private: explicit MediaControlCurrentTimeDisplayElement(Document&); }; // ---------------------------- #if ENABLE(VIDEO_TRACK) class MediaControlTextTrackContainerElement final : public MediaControlDivElement, public TextTrackRepresentationClient { public: static Ref create(Document&); void updateDisplay(); void updateSizes(bool forceUpdate = false); void enteredFullscreen(); void exitedFullscreen(); private: void updateTimerFired(); void updateActiveCuesFontSize(); explicit MediaControlTextTrackContainerElement(Document&); RenderPtr createElementRenderer(RenderStyle&&, const RenderTreePosition&) override; RefPtr createTextTrackRepresentationImage() override; void textTrackRepresentationBoundsChanged(const IntRect&) override; void updateTextTrackRepresentation(); void clearTextTrackRepresentation(); void updateStyleForTextTrackRepresentation(); std::unique_ptr m_textTrackRepresentation; Timer m_updateTimer; IntRect m_videoDisplaySize; int m_fontSize; bool m_fontSizeIsImportant; bool m_updateTextTrackRepresentationStyle; }; #endif } // namespace WebCore #endif // ENABLE(VIDEO)