2 * Copyright (C) 2007, 2008, 2009, 2010 Apple Inc. All rights reserved.
3 * Copyright (C) 2011 Google Inc. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
15 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
18 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
19 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
20 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
21 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
22 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 #ifndef MediaControlRootElementChromium_h
28 #define MediaControlRootElementChromium_h
32 #include "MediaControls.h"
33 #include <wtf/RefPtr.h>
38 class HTMLInputElement;
40 class MediaControlPanelMuteButtonElement;
41 class MediaControlPlayButtonElement;
42 class MediaControlCurrentTimeDisplayElement;
43 class MediaControlTimelineElement;
44 class MediaControlVolumeSliderElement;
45 class MediaControlFullscreenButtonElement;
46 class MediaControlTimeDisplayElement;
47 class MediaControlTimelineContainerElement;
48 class MediaControlMuteButtonElement;
49 class MediaControlVolumeSliderElement;
50 class MediaControlVolumeSliderContainerElement;
51 class MediaControlPanelElement;
52 class MediaControlChromiumEnclosureElement;
53 class MediaControllerInterface;
59 #if ENABLE(VIDEO_TRACK)
60 class MediaControlTextTrackContainerElement;
61 class MediaControlTextTrackDisplayElement;
64 class MediaControlChromiumEnclosureElement : public HTMLDivElement {
66 static PassRefPtr<MediaControlChromiumEnclosureElement> create(Document*);
68 virtual const AtomicString& shadowPseudoId() const;
70 void setMediaController(MediaControllerInterface* controller) { m_mediaController = controller; }
71 MediaControllerInterface* mediaController() const { return m_mediaController; }
74 MediaControlChromiumEnclosureElement(Document*);
77 virtual bool isMediaControlElement() const { return true; }
79 MediaControllerInterface* m_mediaController;
82 class MediaControlRootElementChromium : public MediaControls {
84 static PassRefPtr<MediaControlRootElementChromium> create(Document*);
86 // MediaControls implementation.
87 void setMediaController(MediaControllerInterface*);
92 void makeTransparent();
96 void playbackProgressed();
97 void playbackStarted();
98 void playbackStopped();
101 void changedVolume();
103 void enteredFullscreen();
104 void exitedFullscreen();
106 void reportedError();
107 void loadedMetadata();
108 void changedClosedCaptionsVisibility();
110 void showVolumeSlider();
111 void updateTimeDisplay();
112 void updateStatusDisplay();
114 #if ENABLE(VIDEO_TRACK)
115 void createTextTrackDisplay();
116 void showTextTrackDisplay();
117 void hideTextTrackDisplay();
118 void updateTextTrackDisplay();
121 void bufferingProgressed();
123 virtual bool shouldHideControls();
126 MediaControlRootElementChromium(Document*);
128 virtual void defaultEventHandler(Event*);
130 virtual const AtomicString& shadowPseudoId() const;
132 bool containsRelatedTarget(Event*);
134 MediaControllerInterface* m_mediaController;
136 MediaControlPlayButtonElement* m_playButton;
137 MediaControlCurrentTimeDisplayElement* m_currentTimeDisplay;
138 MediaControlTimelineElement* m_timeline;
139 MediaControlTimelineContainerElement* m_timelineContainer;
140 MediaControlPanelMuteButtonElement* m_panelMuteButton;
141 MediaControlVolumeSliderElement* m_volumeSlider;
142 MediaControlVolumeSliderContainerElement* m_volumeSliderContainer;
143 #if ENABLE(FULLSCREEN_MEDIA_CONTROLS)
144 MediaControlFullscreenButtonElement* m_fullscreenButton;
146 MediaControlPanelElement* m_panel;
147 MediaControlChromiumEnclosureElement* m_enclosure;
148 #if ENABLE(VIDEO_TRACK)
149 MediaControlTextTrackContainerElement* m_textDisplayContainer;
153 bool m_isMouseOverControls;