2008-07-09 01:22:20 -07:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
|
2009-05-10 18:32:09 -07:00
|
|
|
<!DOCTYPE bindings [
|
|
|
|
<!ENTITY % videocontrolsDTD SYSTEM "chrome://global/locale/videocontrols.dtd">
|
|
|
|
%videocontrolsDTD;
|
|
|
|
]>
|
|
|
|
|
2008-07-09 01:22:20 -07:00
|
|
|
<bindings id="videoContolBindings"
|
|
|
|
xmlns="http://www.mozilla.org/xbl"
|
|
|
|
xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
|
|
xmlns:xbl="http://www.mozilla.org/xbl"
|
|
|
|
xmlns:svg="http://www.w3.org/2000/svg">
|
|
|
|
|
2009-04-23 00:33:35 -07:00
|
|
|
<binding id="timeThumb"
|
|
|
|
extends="chrome://global/content/bindings/scale.xml#scalethumb">
|
|
|
|
<xbl:content xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
|
|
|
<xbl:children/>
|
|
|
|
<hbox class="timeThumb" xbl:inherits="showhours">
|
|
|
|
<label class="timeLabel"/>
|
|
|
|
</hbox>
|
|
|
|
</xbl:content>
|
|
|
|
<implementation>
|
|
|
|
|
|
|
|
<field name="timeLabel">null</field>
|
|
|
|
<constructor>
|
|
|
|
<![CDATA[
|
|
|
|
this.timeLabel = document.getAnonymousElementByAttribute(this, "class", "timeLabel");
|
|
|
|
this.timeLabel.setAttribute("value", "0:00");
|
|
|
|
]]>
|
|
|
|
</constructor>
|
|
|
|
|
|
|
|
<property name="showHours">
|
|
|
|
<getter>
|
|
|
|
<![CDATA[
|
|
|
|
return this.getAttribute("showhours") == "true";
|
|
|
|
]]>
|
|
|
|
</getter>
|
|
|
|
<setter>
|
|
|
|
<![CDATA[
|
|
|
|
this.setAttribute("showhours", val);
|
|
|
|
// If the duration becomes known while we're still showing the value
|
|
|
|
// for time=0, immediately update the value to show or hide the hours.
|
|
|
|
// It's less intrusive to do it now than when the user clicks play and
|
|
|
|
// is looking right next to the thumb.
|
|
|
|
var displayedTime = this.timeLabel.getAttribute("value");
|
|
|
|
if (val && displayedTime == "0:00")
|
|
|
|
this.timeLabel.setAttribute("value", "0:00:00");
|
|
|
|
else if (!val && displayedTime == "0:00:00")
|
|
|
|
this.timeLabel.setAttribute("value", "0:00");
|
|
|
|
]]>
|
|
|
|
</setter>
|
|
|
|
</property>
|
|
|
|
|
|
|
|
<method name="setTime">
|
|
|
|
<parameter name="time"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
var timeString;
|
|
|
|
var hours = Math.floor(time / 3600000);
|
|
|
|
var mins = Math.floor(time % 3600000 / 60000);
|
|
|
|
var secs = Math.floor(time % 60000 / 1000);
|
|
|
|
if (secs < 10)
|
|
|
|
secs = "0" + secs;
|
|
|
|
if (hours || this.showHours) {
|
|
|
|
if (mins < 10)
|
|
|
|
mins = "0" + mins;
|
|
|
|
timeString = hours + ":" + mins + ":" + secs;
|
|
|
|
} else {
|
|
|
|
timeString = mins + ":" + secs;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.timeLabel.setAttribute("value", timeString);
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
</implementation>
|
|
|
|
</binding>
|
|
|
|
|
2009-01-24 21:21:32 -08:00
|
|
|
<binding id="suppressChangeEvent"
|
|
|
|
extends="chrome://global/content/bindings/scale.xml#scale">
|
2009-05-13 22:29:33 -07:00
|
|
|
<implementation implements="nsIXBLAccessible">
|
|
|
|
<!-- nsIXBLAccessible -->
|
|
|
|
<property name="accessibleName" readonly="true">
|
|
|
|
<getter>
|
|
|
|
if (this.type != "scrubber")
|
|
|
|
return "";
|
|
|
|
|
|
|
|
var currTime = this.thumb.timeLabel.getAttribute("value");
|
|
|
|
var totalTime = this.durationValue;
|
|
|
|
|
|
|
|
return this.scrubberNameFormat.replace(/#1/, currTime).
|
|
|
|
replace(/#2/, totalTime);
|
|
|
|
</getter>
|
|
|
|
</property>
|
|
|
|
|
|
|
|
<!-- Public -->
|
|
|
|
<field name="scrubberNameFormat">"&scrubberScale.nameFormat;"</field>
|
|
|
|
<field name="durationValue">""</field>
|
2009-04-23 00:33:35 -07:00
|
|
|
|
|
|
|
<field name="thumb">null</field>
|
2009-05-20 22:27:01 -07:00
|
|
|
<field name="valueBar">null</field>
|
2009-05-20 22:27:01 -07:00
|
|
|
<field name="isDragging">false</field>
|
|
|
|
<field name="wasPausedBeforeDrag">true</field>
|
2009-04-23 00:33:35 -07:00
|
|
|
<field name="type">null</field>
|
|
|
|
<field name="Utils">null</field>
|
2009-04-23 00:33:35 -07:00
|
|
|
<constructor>
|
|
|
|
<![CDATA[
|
|
|
|
this.thumb = document.getAnonymousElementByAttribute(this, "class", "scale-thumb");
|
2009-04-23 00:33:35 -07:00
|
|
|
this.type = this.getAttribute("class");
|
|
|
|
this.Utils = document.getBindingParent(this.parentNode).Utils;
|
2009-05-20 22:27:01 -07:00
|
|
|
if (this.type == "scrubber")
|
|
|
|
this.valueBar = this.Utils.progressBar;
|
2009-04-23 00:33:35 -07:00
|
|
|
]]>
|
|
|
|
</constructor>
|
|
|
|
|
2009-01-24 21:21:32 -08:00
|
|
|
<method name="valueChanged">
|
|
|
|
<parameter name="which"/>
|
|
|
|
<parameter name="newValue"/>
|
|
|
|
<parameter name="userChanged"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
// This method is a copy of the base binding's valueChanged(), except that it does
|
|
|
|
// not dispatch a |change| event (to avoid exposing the event to web content), and
|
|
|
|
// just calls the videocontrol's seekToPosition() method directly.
|
|
|
|
switch (which) {
|
|
|
|
case "curpos":
|
2009-05-20 22:27:01 -07:00
|
|
|
if (this.type == "scrubber") {
|
|
|
|
// Update the time shown in the thumb.
|
2009-04-23 00:33:35 -07:00
|
|
|
this.thumb.setTime(newValue);
|
2009-05-20 22:27:01 -07:00
|
|
|
// Update the value bar to match the thumb position.
|
|
|
|
var percent = newValue / this.max;
|
|
|
|
this.valueBar.value = Math.round(percent * 10000); // has max=10000
|
|
|
|
}
|
2009-04-23 00:33:35 -07:00
|
|
|
|
2009-01-24 21:21:32 -08:00
|
|
|
// The value of userChanged is true when changing the position with the mouse,
|
|
|
|
// but not when pressing an arrow key. However, the base binding sets
|
|
|
|
// ._userChanged in its keypress handlers, so we just need to check both.
|
|
|
|
if (!userChanged && !this._userChanged)
|
|
|
|
return;
|
|
|
|
this.setAttribute("value", newValue);
|
2009-04-23 00:33:35 -07:00
|
|
|
|
|
|
|
if (this.type == "scrubber")
|
|
|
|
this.Utils.seekToPosition(newValue);
|
|
|
|
else if (this.type == "volumeControl")
|
|
|
|
this.Utils.setVolume(newValue / 100);
|
2009-01-24 21:21:32 -08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case "minpos":
|
|
|
|
this.setAttribute("min", newValue);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case "maxpos":
|
2009-05-20 22:27:01 -07:00
|
|
|
if (this.type == "scrubber") {
|
|
|
|
// Update the value bar to match the thumb position.
|
|
|
|
var percent = this.value / newValue;
|
|
|
|
this.valueBar.value = Math.round(percent * 10000); // has max=10000
|
|
|
|
}
|
2009-01-24 21:21:32 -08:00
|
|
|
this.setAttribute("max", newValue);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
2009-05-20 22:27:01 -07:00
|
|
|
|
|
|
|
<method name="dragStateChanged">
|
|
|
|
<parameter name="isDragging"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
if (this.type == "scrubber") {
|
|
|
|
this.Utils.log("--- dragStateChanged: " + isDragging + " ---");
|
|
|
|
this.isDragging = isDragging;
|
|
|
|
if (isDragging) {
|
|
|
|
this.wasPausedBeforeDrag = this.Utils.video.paused;
|
|
|
|
this.Utils.video.pause();
|
|
|
|
} else if (!this.wasPausedBeforeDrag) {
|
|
|
|
// After the drag ends, resume playing.
|
|
|
|
this.Utils.video.play();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
2009-01-24 21:21:32 -08:00
|
|
|
</implementation>
|
|
|
|
</binding>
|
|
|
|
|
2008-07-09 01:22:20 -07:00
|
|
|
<binding id="videoControls">
|
2008-10-01 01:00:22 -07:00
|
|
|
|
|
|
|
<resources>
|
2009-01-19 14:51:38 -08:00
|
|
|
<stylesheet src="chrome://global/content/bindings/videocontrols.css"/>
|
2008-10-01 01:00:22 -07:00
|
|
|
<stylesheet src="chrome://global/skin/media/videocontrols.css"/>
|
|
|
|
</resources>
|
|
|
|
|
2009-05-19 02:42:29 -07:00
|
|
|
<xbl:content xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
|
|
class="mediaControlsFrame">
|
2009-02-25 23:40:38 -08:00
|
|
|
<stack flex="1">
|
2009-03-29 15:29:21 -07:00
|
|
|
<vbox class="statusOverlay" hidden="true">
|
2009-03-23 16:40:39 -07:00
|
|
|
<box class="statusIcon" flex="1"/>
|
2009-02-25 23:40:38 -08:00
|
|
|
</vbox>
|
|
|
|
|
|
|
|
<vbox>
|
|
|
|
<spacer flex="1"/>
|
2009-03-29 15:29:21 -07:00
|
|
|
<hbox class="controlBar" hidden="true">
|
2009-05-10 18:32:09 -07:00
|
|
|
<button class="playButton"
|
|
|
|
playlabel="&playButton.playLabel;"
|
|
|
|
pauselabel="&playButton.pauseLabel;"/>
|
2009-02-25 23:40:38 -08:00
|
|
|
<stack class="scrubberStack" flex="1">
|
|
|
|
<box class="backgroundBar"/>
|
|
|
|
<progressmeter class="bufferBar"/>
|
|
|
|
<progressmeter class="progressBar" max="10000"/>
|
2009-03-31 11:11:35 -07:00
|
|
|
<scale class="scrubber" movetoclick="true"/>
|
2009-02-25 23:40:38 -08:00
|
|
|
</stack>
|
2009-04-23 00:33:35 -07:00
|
|
|
<vbox class="durationBox">
|
2009-05-13 22:29:33 -07:00
|
|
|
<label class="durationLabel" role="presentation"/>
|
2009-04-23 00:33:35 -07:00
|
|
|
</vbox>
|
2009-05-10 18:32:09 -07:00
|
|
|
<button class="muteButton"
|
|
|
|
mutelabel="&muteButton.muteLabel;"
|
|
|
|
unmutelabel="&muteButton.unmuteLabel;"/>
|
2009-04-23 00:33:35 -07:00
|
|
|
<stack class="volumeStack" hidden="true">
|
|
|
|
<box class="volumeBackgroundBar"/>
|
|
|
|
<scale class="volumeControl" orient="vertical" dir="reverse" movetoclick="true"/>
|
|
|
|
</stack>
|
2009-02-25 23:40:38 -08:00
|
|
|
</hbox>
|
|
|
|
</vbox>
|
|
|
|
</stack>
|
2008-10-01 01:00:22 -07:00
|
|
|
</xbl:content>
|
2008-07-09 01:22:20 -07:00
|
|
|
|
|
|
|
<implementation implements="nsISecurityCheckedComponent">
|
2008-10-01 01:00:22 -07:00
|
|
|
<!-- nsISecurityCheckedComponent -->
|
|
|
|
<method name="canCreateWrapper">
|
|
|
|
<parameter name="aIID"/>
|
|
|
|
<body>
|
|
|
|
return "AllAccess";
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<method name="canCallMethod">
|
|
|
|
<parameter name="aIID"/>
|
|
|
|
<parameter name="aMethodName"/>
|
|
|
|
<body>
|
|
|
|
return "AllAccess";
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<method name="canGetProperty">
|
|
|
|
<parameter name="aIID"/>
|
|
|
|
<parameter name="aPropertyName"/>
|
|
|
|
<body>
|
|
|
|
return "AllAccess";
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<method name="canSetProperty">
|
|
|
|
<parameter name="aIID"/>
|
|
|
|
<parameter name="aPropertyName"/>
|
|
|
|
<body>
|
|
|
|
return "AllAccess";
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<method name="QueryInterface">
|
|
|
|
<parameter name="aIID"/>
|
|
|
|
<body>
|
|
|
|
<![CDATA[
|
|
|
|
if (!iid.equals(Components.interfaces.nsISecurityCheckedComponent))
|
|
|
|
throw Components.results.NS_ERROR_NO_INTERFACE;
|
|
|
|
return this;
|
|
|
|
]]>
|
|
|
|
</body>
|
|
|
|
</method>
|
|
|
|
|
|
|
|
<constructor>
|
|
|
|
<![CDATA[
|
2009-05-06 12:55:26 -07:00
|
|
|
this.Utils.init(this);
|
2008-10-01 01:00:22 -07:00
|
|
|
]]>
|
|
|
|
</constructor>
|
|
|
|
|
2009-02-25 23:40:37 -08:00
|
|
|
<field name="randomID">0</field>
|
|
|
|
|
2008-10-01 01:00:22 -07:00
|
|
|
<field name="Utils">
|
|
|
|
<![CDATA[ ({
|
|
|
|
debug : false,
|
|
|
|
video : null,
|
2009-01-10 08:28:15 -08:00
|
|
|
videocontrols : null,
|
2008-10-01 01:00:22 -07:00
|
|
|
playButton : null,
|
|
|
|
muteButton : null,
|
2009-04-23 00:33:35 -07:00
|
|
|
volumeStack : null,
|
|
|
|
volumeControl : null,
|
2009-04-23 00:33:35 -07:00
|
|
|
durationLabel : null,
|
|
|
|
scrubberThumb : null,
|
2009-01-24 21:21:32 -08:00
|
|
|
scrubber : null,
|
|
|
|
progressBar : null,
|
|
|
|
bufferBar : null,
|
|
|
|
|
2009-02-25 23:40:37 -08:00
|
|
|
randomID : 0,
|
|
|
|
videoEvents : ["play", "pause", "ended", "volumechange", "loadeddata",
|
|
|
|
"loadstart", "durationchange", "timeupdate", "progress",
|
2009-05-20 19:53:07 -07:00
|
|
|
"playing", "waiting", "canplay", "canplaythrough",
|
|
|
|
"seeking", "seeked", "emptied", "loadedmetadata",
|
|
|
|
"error", "suspend"],
|
2009-02-25 23:40:38 -08:00
|
|
|
|
2009-03-23 16:40:39 -07:00
|
|
|
// controlFader holds the fade state for the control bar.
|
2009-02-25 23:40:38 -08:00
|
|
|
controlFader : {
|
2009-05-20 22:27:01 -07:00
|
|
|
name : "controls", // fader identifier
|
2009-02-25 23:40:38 -08:00
|
|
|
element : null, // the element to fade in/out
|
|
|
|
runtime : 0, // duration of active animation
|
|
|
|
fadingIn : false, // are we fading in, or fading out?
|
|
|
|
isVisible : false, // is it at all visible?
|
|
|
|
timer : null, // handle from setInterval()
|
|
|
|
delayTimer : null, // handle from setTimeout()
|
|
|
|
START_DELAY : 0, // ms, delay before fading in
|
|
|
|
RUNTIME_MAX : 200, // ms
|
|
|
|
RUNTIME_STEP : 30 // ms
|
|
|
|
},
|
|
|
|
|
2009-03-23 16:40:39 -07:00
|
|
|
// statusFader holds the fade state for the status overlay (inc. throbber)
|
|
|
|
statusFader : {
|
|
|
|
name : "status",
|
2009-02-25 23:40:38 -08:00
|
|
|
element : null,
|
|
|
|
runtime : 0,
|
|
|
|
fadingIn : false,
|
|
|
|
isVisible : false,
|
|
|
|
timer : null,
|
|
|
|
delayTimer : null,
|
|
|
|
START_DELAY : 750,
|
|
|
|
RUNTIME_MAX : 300,
|
|
|
|
RUNTIME_STEP : 20
|
|
|
|
},
|
2008-12-19 17:33:20 -08:00
|
|
|
|
2009-04-23 00:33:35 -07:00
|
|
|
// volumeFader holds the fade state for the volume <scale>.
|
|
|
|
volumeFader : {
|
|
|
|
name : "volume",
|
|
|
|
element : null,
|
|
|
|
maxSlide : null, // height when extended, set in init()
|
|
|
|
runtime : 0,
|
|
|
|
fadingIn : false,
|
|
|
|
isVisible : false,
|
|
|
|
timer : null,
|
|
|
|
delayTimer : null,
|
|
|
|
START_DELAY : 0,
|
|
|
|
RUNTIME_MAX : 200,
|
|
|
|
RUNTIME_STEP : 15
|
|
|
|
},
|
|
|
|
|
2009-01-19 14:51:38 -08:00
|
|
|
firstFrameShown : false,
|
2009-05-20 19:53:07 -07:00
|
|
|
timeUpdateCount : 0,
|
2009-01-24 21:21:32 -08:00
|
|
|
lastTimeUpdate : 0,
|
|
|
|
maxCurrentTimeSeen : 0,
|
2009-03-10 14:16:35 -07:00
|
|
|
isAudioOnly : false,
|
2009-01-19 14:51:38 -08:00
|
|
|
|
2009-05-20 19:53:07 -07:00
|
|
|
setupStatusFader : function(immediate) {
|
|
|
|
if (this.video.seeking || this.video.error ||
|
|
|
|
(this.video.paused || this.video.ended
|
|
|
|
? this.video.readyState < this.video.HAVE_CURRENT_DATA
|
|
|
|
: this.video.readyState < this.video.HAVE_FUTURE_DATA) ||
|
|
|
|
(this.timeUpdateCount <= 1 &&
|
|
|
|
this.video.readyState < this.video.HAVE_ENOUGH_DATA &&
|
|
|
|
this.video.networkState >= this.video.NETWORK_LOADING))
|
|
|
|
this.startFadeIn(this.statusFader, immediate);
|
|
|
|
else
|
|
|
|
this.startFadeOut(this.statusFader, immediate);
|
|
|
|
|
|
|
|
this.log("Status fader: seeking=" + this.video.seeking +
|
|
|
|
" error=" + this.video.error + " readyState=" + this.video.readyState +
|
|
|
|
" paused=" + this.video.paused + " ended=" + this.video.ended +
|
|
|
|
" networkState=" + this.video.networkState +
|
|
|
|
" timeUpdateCount=" + this.timeUpdateCount +
|
|
|
|
" --> " + (this.statusFader.fadingIn ? "SHOW" : "HIDE"));
|
|
|
|
},
|
|
|
|
|
2009-02-25 23:40:37 -08:00
|
|
|
/*
|
|
|
|
* Set the initial state of the controls. The binding is normally created along
|
|
|
|
* with video element, but could be attached at any point (eg, if the video is
|
|
|
|
* removed from the document and then reinserted). Thus, some one-time events may
|
|
|
|
* have already fired, and so we'll need to explicitly check the initial state.
|
|
|
|
*/
|
|
|
|
setupInitialState : function() {
|
|
|
|
this.randomID = Math.random();
|
|
|
|
this.videocontrols.randomID = this.randomID;
|
|
|
|
|
2009-05-10 18:32:09 -07:00
|
|
|
this.setPlayButtonState(this.video.paused);
|
|
|
|
this.setMuteButtonState(this.video.muted);
|
2009-02-25 23:40:37 -08:00
|
|
|
|
2009-04-23 00:33:35 -07:00
|
|
|
var volume = this.video.muted ? 0 : Math.round(this.video.volume * 100);
|
|
|
|
this.volumeControl.value = volume;
|
|
|
|
|
2009-02-25 23:40:37 -08:00
|
|
|
var duration = Math.round(this.video.duration * 1000); // in ms
|
|
|
|
var currentTime = Math.round(this.video.currentTime * 1000); // in ms
|
|
|
|
this.log("Initial playback position is at " + currentTime + " of " + duration);
|
|
|
|
// It would be nice to retain maxCurrentTimeSeen, but it would be difficult
|
|
|
|
// to determine if the media source changed while we were detached.
|
|
|
|
this.maxCurrentTimeSeen = currentTime;
|
|
|
|
this.durationChange(duration);
|
|
|
|
this.showPosition(currentTime, duration);
|
|
|
|
|
2009-03-10 14:16:35 -07:00
|
|
|
// If we have metadata, check if this is a <video> without video data.
|
2009-04-19 15:55:11 -07:00
|
|
|
if (this.video.readyState >= this.video.HAVE_METADATA) {
|
2009-03-10 14:16:35 -07:00
|
|
|
if (this.video instanceof HTMLVideoElement &&
|
|
|
|
(this.video.videoWidth == 0 || this.videoHeight == 0))
|
|
|
|
this.isAudioOnly = true;
|
|
|
|
}
|
|
|
|
|
2009-02-25 23:40:38 -08:00
|
|
|
// If the first frame hasn't loaded, kick off a throbber fade-in.
|
2009-02-25 23:40:37 -08:00
|
|
|
if (this.video.readyState >= this.video.HAVE_CURRENT_DATA)
|
|
|
|
this.firstFrameShown = true;
|
|
|
|
|
|
|
|
// We can't determine the exact buffering status, but do know if it's
|
|
|
|
// fully loaded. (If it's still loading, it will fire a progress event
|
|
|
|
// and we'll figure out the exact state then.)
|
|
|
|
this.bufferBar.setAttribute("max", 100);
|
|
|
|
if (this.video.networkState == this.video.NETWORK_LOADED)
|
|
|
|
this.bufferBar.setAttribute("value", 100);
|
|
|
|
else
|
|
|
|
this.bufferBar.setAttribute("value", 0);
|
2009-03-23 16:40:39 -07:00
|
|
|
|
2009-05-20 19:53:07 -07:00
|
|
|
// Set the current status icon.
|
2009-03-23 16:40:39 -07:00
|
|
|
if (this.video.error) {
|
|
|
|
this.statusIcon.setAttribute("type", "error");
|
2009-05-20 19:53:07 -07:00
|
|
|
this.setupStatusFader(true);
|
2009-03-23 16:40:39 -07:00
|
|
|
} else {
|
|
|
|
this.statusIcon.setAttribute("type", "throbber");
|
2009-05-20 19:53:07 -07:00
|
|
|
this.setupStatusFader();
|
2009-03-23 16:40:39 -07:00
|
|
|
}
|
2009-02-25 23:40:37 -08:00
|
|
|
},
|
|
|
|
|
2008-12-19 17:33:20 -08:00
|
|
|
get dynamicControls() {
|
|
|
|
// Don't fade controls for <audio> elements.
|
2009-03-10 14:16:35 -07:00
|
|
|
var enabled = !this.isAudioOnly;
|
2008-12-19 17:33:20 -08:00
|
|
|
|
|
|
|
// Allow tests to explicitly suppress the fading of controls.
|
|
|
|
if (this.video.hasAttribute("mozNoDynamicControls"))
|
|
|
|
enabled = false;
|
|
|
|
|
2009-03-23 16:40:39 -07:00
|
|
|
// If the video hits an error, suppress controls if it
|
|
|
|
// hasn't managed to do anything else yet.
|
|
|
|
if (!this.firstFrameShown && this.video.error)
|
|
|
|
enabled = false;
|
|
|
|
|
2008-12-19 17:33:20 -08:00
|
|
|
return enabled;
|
|
|
|
},
|
|
|
|
|
2008-10-29 00:35:49 -07:00
|
|
|
handleEvent : function (aEvent) {
|
2009-02-25 23:40:38 -08:00
|
|
|
this.log("Got media event ----> " + aEvent.type);
|
2009-02-25 23:40:37 -08:00
|
|
|
|
|
|
|
// If the binding is detached (or has been replaced by a
|
|
|
|
// newer instance of the binding), nuke our event-listeners.
|
|
|
|
if (this.videocontrols.randomID != this.randomID)
|
|
|
|
this.terminateEventListeners();
|
|
|
|
|
2008-10-01 01:00:22 -07:00
|
|
|
switch (aEvent.type) {
|
|
|
|
case "play":
|
2009-05-10 18:32:09 -07:00
|
|
|
this.setPlayButtonState(false);
|
2009-05-20 19:53:07 -07:00
|
|
|
this.setupStatusFader();
|
2008-10-01 01:00:22 -07:00
|
|
|
break;
|
|
|
|
case "pause":
|
2009-05-20 22:27:01 -07:00
|
|
|
// Little white lie: if we've internally paused the video
|
|
|
|
// while dragging the scrubber, don't change the button state.
|
|
|
|
if (!this.scrubber.isDragging)
|
|
|
|
this.setPlayButtonState(true);
|
2009-05-20 22:27:01 -07:00
|
|
|
this.setupStatusFader();
|
|
|
|
break;
|
2008-11-03 19:22:30 -08:00
|
|
|
case "ended":
|
2009-05-10 18:32:09 -07:00
|
|
|
this.setPlayButtonState(true);
|
2009-05-20 22:27:01 -07:00
|
|
|
// We throttle timechange events, so the thumb might not be
|
|
|
|
// exactly at the end when the video finishes.
|
|
|
|
this.showPosition(Math.round(this.video.currentTime * 1000),
|
|
|
|
Math.round(this.video.duration * 1000));
|
2009-05-20 19:53:07 -07:00
|
|
|
this.setupStatusFader();
|
2008-10-01 01:00:22 -07:00
|
|
|
break;
|
|
|
|
case "volumechange":
|
2009-04-23 00:33:35 -07:00
|
|
|
var volume = this.video.muted ? 0 : Math.round(this.video.volume * 100);
|
2009-05-10 18:32:09 -07:00
|
|
|
this.setMuteButtonState(this.video.muted);
|
2009-04-23 00:33:35 -07:00
|
|
|
this.volumeControl.value = volume;
|
2008-10-01 01:00:22 -07:00
|
|
|
break;
|
2009-03-10 14:16:35 -07:00
|
|
|
case "loadedmetadata":
|
|
|
|
// If a <video> doesn't have any video data, treat it as <audio>
|
|
|
|
// and show the controls (they won't fade back out)
|
|
|
|
if (this.video instanceof HTMLVideoElement &&
|
|
|
|
(this.video.videoWidth == 0 || this.video.videoHeight == 0)) {
|
|
|
|
this.isAudioOnly = true;
|
|
|
|
this.startFadeIn(this.controlFader);
|
|
|
|
}
|
|
|
|
break;
|
2009-01-19 14:51:38 -08:00
|
|
|
case "loadeddata":
|
|
|
|
this.firstFrameShown = true;
|
2009-05-20 19:53:07 -07:00
|
|
|
this.setupStatusFader();
|
2009-01-19 14:51:38 -08:00
|
|
|
break;
|
2009-01-24 21:21:32 -08:00
|
|
|
case "loadstart":
|
|
|
|
this.maxCurrentTimeSeen = 0;
|
2009-03-23 16:40:39 -07:00
|
|
|
this.statusIcon.setAttribute("type", "throbber");
|
2009-03-10 14:16:35 -07:00
|
|
|
this.isAudioOnly = (this.video instanceof HTMLAudioElement);
|
2009-01-24 21:21:32 -08:00
|
|
|
break;
|
|
|
|
case "durationchange":
|
|
|
|
var duration = Math.round(this.video.duration * 1000); // in ms
|
|
|
|
this.durationChange(duration);
|
|
|
|
break;
|
|
|
|
case "progress":
|
|
|
|
var loaded = aEvent.loaded;
|
|
|
|
var total = aEvent.total;
|
|
|
|
this.log("+++ load, " + loaded + " of " + total);
|
|
|
|
// When the source is streaming, the value of .total is -1. Set the
|
|
|
|
// progress bar to the maximum, since it's not useful.
|
|
|
|
if (total == -1)
|
|
|
|
total = loaded;
|
|
|
|
this.bufferBar.max = total;
|
|
|
|
this.bufferBar.value = loaded;
|
2009-05-20 19:53:07 -07:00
|
|
|
this.setupStatusFader();
|
|
|
|
break;
|
|
|
|
case "suspend":
|
|
|
|
this.setupStatusFader();
|
2009-01-24 21:21:32 -08:00
|
|
|
break;
|
|
|
|
case "timeupdate":
|
|
|
|
var currentTime = Math.round(this.video.currentTime * 1000); // in ms
|
|
|
|
var duration = Math.round(this.video.duration * 1000); // in ms
|
|
|
|
|
2009-06-04 14:34:21 -07:00
|
|
|
// If playing/seeking after the video ended, we won't get a "play"
|
|
|
|
// event, so update the button state here.
|
|
|
|
if (!this.video.paused)
|
|
|
|
this.setPlayButtonState(false);
|
|
|
|
|
2009-05-20 19:53:07 -07:00
|
|
|
this.timeUpdateCount++;
|
|
|
|
// Whether we show the statusFader sometimes depends
|
|
|
|
// on whether we've seen more than one timeupdate
|
|
|
|
// event (if we haven't, there hasn't been any
|
|
|
|
// "playback activity" and we may wish to show the
|
|
|
|
// statusFader while we wait for HAVE_ENOUGH_DATA).
|
|
|
|
// If we've seen more than 2 timeupdate events,
|
|
|
|
// the count is no longer relevant to setupStatusFader.
|
|
|
|
if (this.timeUpdateCount <= 2)
|
|
|
|
this.setupStatusFader();
|
|
|
|
|
2009-05-20 22:27:01 -07:00
|
|
|
// If the user is dragging the scrubber ignore the delayed seek
|
|
|
|
// responses (don't yank the thumb away from the user)
|
|
|
|
if (this.scrubber.isDragging)
|
|
|
|
return;
|
|
|
|
|
2009-01-24 21:21:32 -08:00
|
|
|
// Timeupdate events are dispatched *every frame*. Reduce workload by
|
|
|
|
// ignoring position changes that are within 333ms of the current position.
|
|
|
|
if (Math.abs(currentTime - this.lastTimeUpdate) < 333)
|
|
|
|
return;
|
|
|
|
this.lastTimeUpdate = currentTime;
|
|
|
|
this.showPosition(currentTime, duration);
|
|
|
|
break;
|
|
|
|
case "emptied":
|
|
|
|
this.bufferBar.value = 0;
|
|
|
|
break;
|
2009-02-25 23:40:38 -08:00
|
|
|
case "seeking":
|
|
|
|
case "waiting":
|
2009-03-23 16:40:39 -07:00
|
|
|
this.statusIcon.setAttribute("type", "throbber");
|
2009-05-20 19:53:07 -07:00
|
|
|
this.setupStatusFader();
|
2009-02-25 23:40:38 -08:00
|
|
|
break;
|
|
|
|
case "seeked":
|
|
|
|
case "playing":
|
2009-05-20 19:53:07 -07:00
|
|
|
case "canplay":
|
2009-02-25 23:40:38 -08:00
|
|
|
case "canplaythrough":
|
2009-05-20 19:53:07 -07:00
|
|
|
this.setupStatusFader();
|
2009-03-23 16:40:39 -07:00
|
|
|
break;
|
|
|
|
case "error":
|
|
|
|
this.statusIcon.setAttribute("type", "error");
|
2009-05-20 19:53:07 -07:00
|
|
|
this.setupStatusFader(true);
|
2009-03-23 16:40:39 -07:00
|
|
|
// If video hasn't shown anything yet, disable the controls.
|
|
|
|
if (!this.firstFrameShown)
|
|
|
|
this.startFadeOut(this.controlFader);
|
2009-02-25 23:40:38 -08:00
|
|
|
break;
|
2008-10-01 01:00:22 -07:00
|
|
|
default:
|
|
|
|
this.log("!!! event " + aEvent.type + " not handled!");
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2009-02-25 23:40:37 -08:00
|
|
|
terminateEventListeners : function () {
|
|
|
|
for each (var event in this.videoEvents)
|
|
|
|
this.video.removeEventListener(event, this, false);
|
|
|
|
|
2009-02-25 23:40:38 -08:00
|
|
|
if (this.controlFader.timer)
|
|
|
|
clearInterval(this.controlFader.timer);
|
|
|
|
if (this.controlFader.delayTimer)
|
|
|
|
clearInterval(this.controlFader.delayTimer);
|
2009-03-23 16:40:39 -07:00
|
|
|
if (this.statusFader.timer)
|
|
|
|
clearInterval(this.statusFader.timer);
|
|
|
|
if (this.statusFader.delayTimer)
|
|
|
|
clearTimeout(this.statusFader.delayTimer);
|
2009-02-25 23:40:37 -08:00
|
|
|
this.log("--- videocontrols terminated ---");
|
|
|
|
},
|
|
|
|
|
2009-01-24 21:21:32 -08:00
|
|
|
durationChange : function (duration) {
|
|
|
|
if (isNaN(duration))
|
|
|
|
duration = this.maxCurrentTimeSeen;
|
|
|
|
this.log("Duration is " + duration + "ms");
|
|
|
|
|
2009-04-23 00:33:35 -07:00
|
|
|
// Format the duration as "h:mm:ss" or "m:ss"
|
|
|
|
var hours = Math.floor(duration / 3600000);
|
|
|
|
var mins = Math.floor(duration % 3600000 / 60000);
|
|
|
|
var secs = Math.floor(duration % 60000 / 1000);
|
|
|
|
var timeString;
|
|
|
|
if (secs < 10)
|
|
|
|
secs = "0" + secs;
|
|
|
|
if (hours) {
|
|
|
|
if (mins < 10)
|
|
|
|
mins = "0" + mins;
|
|
|
|
timeString = hours + ":" + mins + ":" + secs;
|
|
|
|
} else {
|
|
|
|
timeString = mins + ":" + secs;
|
|
|
|
}
|
|
|
|
this.durationLabel.setAttribute("value", timeString);
|
|
|
|
|
2009-05-13 22:29:33 -07:00
|
|
|
// "durationValue" property is used by scale binding to
|
|
|
|
// generate accessible name.
|
|
|
|
this.scrubber.durationValue = timeString;
|
|
|
|
|
2009-04-23 00:33:35 -07:00
|
|
|
// If the duration is over an hour, thumb should show h:mm:ss instead of mm:ss
|
|
|
|
this.scrubberThumb.showHours = (duration >= 3600000);
|
|
|
|
|
2009-01-24 21:21:32 -08:00
|
|
|
this.scrubber.max = duration;
|
|
|
|
// XXX Can't set increment here, due to bug 473103. Also, doing so causes
|
|
|
|
// snapping when dragging with the mouse, so we can't just set a value for
|
|
|
|
// the arrow-keys.
|
|
|
|
//this.scrubber.increment = duration / 50;
|
2009-02-01 23:44:01 -08:00
|
|
|
this.scrubber.pageIncrement = Math.round(duration / 10);
|
2009-01-24 21:21:32 -08:00
|
|
|
},
|
|
|
|
|
2009-04-23 00:33:35 -07:00
|
|
|
seekToPosition : function(newPosition) {
|
2009-01-24 21:21:32 -08:00
|
|
|
newPosition /= 1000; // convert from ms
|
|
|
|
this.log("+++ seeking to " + newPosition);
|
|
|
|
this.video.currentTime = newPosition;
|
|
|
|
},
|
|
|
|
|
2009-04-23 00:33:35 -07:00
|
|
|
setVolume : function(newVolume) {
|
|
|
|
this.log("*** setting volume to " + newVolume);
|
|
|
|
this.video.volume = newVolume;
|
|
|
|
this.video.muted = false;
|
|
|
|
},
|
|
|
|
|
2009-01-24 21:21:32 -08:00
|
|
|
showPosition : function(currentTime, duration) {
|
|
|
|
// If the duration is unknown (because the server didn't provide
|
|
|
|
// it, or the video is a stream), then we want to fudge the duration
|
|
|
|
// by using the maximum playback position that's been seen.
|
|
|
|
if (currentTime > this.maxCurrentTimeSeen)
|
|
|
|
this.maxCurrentTimeSeen = currentTime;
|
|
|
|
if (isNaN(duration)) {
|
|
|
|
duration = this.maxCurrentTimeSeen;
|
|
|
|
this.durationChange(duration);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.log("time update @ " + currentTime + "ms of " + duration + "ms");
|
|
|
|
this.scrubber.value = currentTime;
|
|
|
|
},
|
|
|
|
|
2009-04-23 00:33:35 -07:00
|
|
|
onVolumeMouseInOut : function (event) {
|
|
|
|
// Ignore events caused by transitions between mute button and volumeStack,
|
|
|
|
// or between nodes inside these two elements.
|
|
|
|
if (this.isEventWithin(event, this.muteButton, this.volumeStack))
|
|
|
|
return;
|
|
|
|
var isMouseOver = (event.type == "mouseover");
|
|
|
|
this.startFade(this.volumeFader, isMouseOver);
|
|
|
|
},
|
|
|
|
|
2008-12-19 17:33:20 -08:00
|
|
|
onMouseInOut : function (event) {
|
2009-01-19 14:51:38 -08:00
|
|
|
// If the controls are static, don't change anything.
|
2008-12-19 17:33:20 -08:00
|
|
|
if (!this.dynamicControls)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Ignore events caused by transitions between child nodes.
|
2009-01-10 08:28:15 -08:00
|
|
|
// Note that the videocontrols element is the same
|
|
|
|
// size as the *content area* of the video element,
|
|
|
|
// but this is not the same as the video element's
|
|
|
|
// border area if the video has border or padding.
|
2009-04-23 00:33:35 -07:00
|
|
|
if (this.isEventWithin(event, this.videocontrols))
|
2008-12-19 17:33:20 -08:00
|
|
|
return;
|
|
|
|
|
2009-01-19 14:51:38 -08:00
|
|
|
var isMouseOver = (event.type == "mouseover");
|
|
|
|
|
|
|
|
// Suppress fading out the controls until the video has rendered
|
|
|
|
// its first frame. But since autoplay videos start off with no
|
|
|
|
// controls, let them fade-out so the controls don't get stuck on.
|
2009-02-19 20:05:07 -08:00
|
|
|
if (!this.firstFrameShown && !isMouseOver &&
|
|
|
|
!(this.video.autoplay && this.video.mozAutoplayEnabled))
|
2008-12-19 17:33:20 -08:00
|
|
|
return;
|
2008-12-10 23:30:54 -08:00
|
|
|
|
2009-02-25 23:40:38 -08:00
|
|
|
this.startFade(this.controlFader, isMouseOver);
|
|
|
|
},
|
|
|
|
|
2009-03-23 16:40:39 -07:00
|
|
|
startFadeIn : function (fader, immediate) {
|
|
|
|
this.startFade(fader, true, immediate);
|
2009-02-25 23:40:38 -08:00
|
|
|
},
|
|
|
|
|
2009-03-23 16:40:39 -07:00
|
|
|
startFadeOut : function (fader, immediate) {
|
|
|
|
this.startFade(fader, false, immediate);
|
2009-02-25 23:40:38 -08:00
|
|
|
},
|
|
|
|
|
|
|
|
startFade : function (fader, fadeIn, immediate) {
|
|
|
|
// If the fader specifies a start delay, don't immediately fade in...
|
|
|
|
// Unless there's already a fade underway, in which case we want to be
|
|
|
|
// able to immediately reverse it (eg, a seeking event right after seeked).
|
|
|
|
if (fadeIn && fader.START_DELAY && !immediate && !fader.timer) {
|
|
|
|
function delayedFadeStart(self, fader) {
|
|
|
|
self.log("Delated start timer fired.");
|
|
|
|
fader.delayTimer = null;
|
|
|
|
self.startFade(fader, true, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
// If there's already a timer running, let it handle things.
|
|
|
|
if (fader.delayTimer)
|
|
|
|
return;
|
|
|
|
|
|
|
|
this.log("Delaying " + fader.name + " fade-in...");
|
|
|
|
fader.delayTimer = setTimeout(delayedFadeStart, fader.START_DELAY, this, fader);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Cancel any delay timer (eg, if we start fading-out before it fires)
|
|
|
|
if (fader.delayTimer) {
|
|
|
|
this.log("Canceling " + fader.name + " fade-in delay...");
|
|
|
|
clearTimeout(fader.delayTimer);
|
|
|
|
fader.delayTimer = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-01-19 14:51:38 -08:00
|
|
|
// If we're already fading towards the desired state (or are
|
|
|
|
// already there), then we don't need to do anything more.
|
2009-02-25 23:40:38 -08:00
|
|
|
var directionChange = (fader.fadingIn != fadeIn);
|
2009-01-19 14:51:38 -08:00
|
|
|
if (!directionChange)
|
|
|
|
return;
|
2008-12-19 17:33:20 -08:00
|
|
|
|
2009-02-25 23:40:38 -08:00
|
|
|
fader.fadingIn = fadeIn;
|
|
|
|
this.log("Fading " + fader.name + (fader.fadingIn ? " in" : " out"));
|
2009-01-19 14:51:38 -08:00
|
|
|
|
|
|
|
// When switching direction mid-fade, we want the reversed fade
|
|
|
|
// to complete in the same amount of time as the current fade has
|
2009-02-25 23:40:38 -08:00
|
|
|
// been running. So we invert the runtime.
|
2009-01-19 14:51:38 -08:00
|
|
|
//
|
|
|
|
// For example, if we're 20ms into a 100ms fade-in, then we want to
|
2009-02-25 23:40:38 -08:00
|
|
|
// fade-out over 20ms. This is done by setting the .runtime to 80ms
|
|
|
|
// (100-20), so that doFade will only animate for 20ms more.
|
|
|
|
if (fader.runtime)
|
|
|
|
fader.runtime = fader.RUNTIME_MAX - fader.runtime;
|
|
|
|
|
|
|
|
if (!fader.timer) {
|
|
|
|
fader.timer = setInterval(this.doFade, fader.RUNTIME_STEP, this, fader);
|
|
|
|
// Perform the first fade step now, notably to make a fade-in
|
|
|
|
// immediately activate the controls.
|
|
|
|
this.doFade(this, fader, -(fader.RUNTIME_STEP - 1));
|
|
|
|
}
|
2008-12-19 17:33:20 -08:00
|
|
|
},
|
|
|
|
|
2009-02-25 23:40:38 -08:00
|
|
|
doFade : function (self, fader, lateness) {
|
2008-12-19 17:33:20 -08:00
|
|
|
// Update elapsed time, and compute position as a percent
|
|
|
|
// of total. Last frame could run over, so clamp to 1.
|
2009-02-25 23:40:38 -08:00
|
|
|
fader.runtime += fader.RUNTIME_STEP + lateness;
|
|
|
|
var pos = fader.runtime / fader.RUNTIME_MAX;
|
2008-12-19 17:33:20 -08:00
|
|
|
if (pos > 1)
|
|
|
|
pos = 1;
|
|
|
|
|
2009-05-20 22:27:01 -07:00
|
|
|
// Bug 493523, the scrubber doesn't call valueChanged while hidden,
|
|
|
|
// so our dependent state (eg, timestamp in the thumb) will be stale.
|
|
|
|
// As a workaround, update it manually when it first becomes unhidden.
|
|
|
|
if (fader.name == "controls" && fader.fadingIn && fader.element.hidden)
|
|
|
|
self.scrubber.valueChanged("curpos", self.video.currentTime * 1000, false);
|
|
|
|
|
2008-12-19 17:33:20 -08:00
|
|
|
// Calculate the opacity for our position in the animation.
|
|
|
|
var opacity;
|
2009-02-25 23:40:38 -08:00
|
|
|
if (fader.fadingIn)
|
2008-12-19 17:33:20 -08:00
|
|
|
opacity = Math.pow(pos, 0.5);
|
|
|
|
else
|
|
|
|
opacity = Math.pow(1 - pos, 0.5);
|
2009-02-25 23:40:38 -08:00
|
|
|
fader.isVisible = (opacity ? true : false);
|
|
|
|
fader.element.style.opacity = opacity;
|
2009-03-29 15:29:21 -07:00
|
|
|
// Hide the element to ignore mouse clicks and reduce throbber CPU usage.
|
|
|
|
fader.element.setAttribute("hidden", !fader.isVisible);
|
2008-12-19 17:33:20 -08:00
|
|
|
|
2009-04-23 00:33:35 -07:00
|
|
|
// If this fader also has a slide effect, change the CSS margin-top too.
|
|
|
|
if (fader.maxSlide) {
|
|
|
|
var marginTop;
|
|
|
|
if (fader.fadingIn)
|
|
|
|
marginTop = Math.round(fader.maxSlide * Math.pow(pos, 0.5));
|
|
|
|
else
|
|
|
|
marginTop = Math.round(fader.maxSlide * Math.pow(1 - pos, 0.5));
|
|
|
|
|
2009-06-02 01:55:29 -07:00
|
|
|
fader.element.style.marginTop = marginTop + "px";
|
2009-04-23 00:33:35 -07:00
|
|
|
}
|
|
|
|
|
2008-12-19 17:33:20 -08:00
|
|
|
// Is the animation done?
|
|
|
|
if (pos == 1) {
|
2009-02-25 23:40:38 -08:00
|
|
|
clearInterval(fader.timer);
|
|
|
|
fader.timer = null;
|
|
|
|
fader.runtime = 0;
|
2008-12-19 17:33:20 -08:00
|
|
|
}
|
2008-10-01 01:00:22 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
togglePause : function () {
|
2009-03-08 19:22:47 -07:00
|
|
|
if (this.video.paused || this.video.ended)
|
2008-10-01 01:00:22 -07:00
|
|
|
this.video.play();
|
|
|
|
else
|
|
|
|
this.video.pause();
|
|
|
|
|
|
|
|
// We'll handle style changes in the event listener for
|
|
|
|
// the "play" and "pause" events, same as if content
|
|
|
|
// script was controlling video playback.
|
|
|
|
},
|
|
|
|
|
|
|
|
toggleMute : function () {
|
|
|
|
this.video.muted = !this.video.muted;
|
|
|
|
|
|
|
|
// We'll handle style changes in the event listener for
|
|
|
|
// the "volumechange" event, same as if content script was
|
|
|
|
// controlling volume.
|
|
|
|
},
|
|
|
|
|
2009-05-22 16:03:47 -07:00
|
|
|
setPlayButtonState : function(aPaused) {
|
2009-05-10 18:32:09 -07:00
|
|
|
this.playButton.setAttribute("paused", aPaused);
|
|
|
|
|
|
|
|
var attrName = aPaused ? "playlabel" : "pauselabel";
|
|
|
|
var value = this.playButton.getAttribute(attrName);
|
|
|
|
this.playButton.setAttribute("aria-label", value);
|
|
|
|
},
|
|
|
|
|
2009-05-22 16:03:47 -07:00
|
|
|
setMuteButtonState : function(aMuted) {
|
2009-05-10 18:32:09 -07:00
|
|
|
this.muteButton.setAttribute("muted", aMuted);
|
|
|
|
|
|
|
|
var attrName = aMuted ? "unmutelabel" : "mutelabel";
|
|
|
|
var value = this.muteButton.getAttribute(attrName);
|
|
|
|
this.muteButton.setAttribute("aria-label", value);
|
|
|
|
},
|
|
|
|
|
2009-05-22 16:03:47 -07:00
|
|
|
keyHandler : function(event) {
|
|
|
|
// Ignore keys when content might be providing its own.
|
|
|
|
if (!this.video.hasAttribute("controls"))
|
|
|
|
return;
|
|
|
|
|
|
|
|
var keystroke = "";
|
|
|
|
if (event.altKey)
|
|
|
|
keystroke += "alt-";
|
|
|
|
if (event.shiftKey)
|
|
|
|
keystroke += "shift-";
|
|
|
|
#ifdef XP_MACOSX
|
|
|
|
if (event.metaKey)
|
|
|
|
keystroke += "accel-";
|
|
|
|
if (event.ctrlKey)
|
|
|
|
keystroke += "control-";
|
|
|
|
#else
|
|
|
|
if (event.metaKey)
|
|
|
|
keystroke += "meta-";
|
|
|
|
if (event.ctrlKey)
|
|
|
|
keystroke += "accel-";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
switch (event.keyCode) {
|
|
|
|
case KeyEvent.DOM_VK_UP:
|
|
|
|
keystroke += "upArrow";
|
|
|
|
break;
|
|
|
|
case KeyEvent.DOM_VK_DOWN:
|
|
|
|
keystroke += "downArrow";
|
|
|
|
break;
|
|
|
|
case KeyEvent.DOM_VK_LEFT:
|
|
|
|
keystroke += "leftArrow";
|
|
|
|
break;
|
|
|
|
case KeyEvent.DOM_VK_RIGHT:
|
|
|
|
keystroke += "rightArrow";
|
|
|
|
break;
|
|
|
|
case KeyEvent.DOM_VK_HOME:
|
|
|
|
keystroke += "home";
|
|
|
|
break;
|
|
|
|
case KeyEvent.DOM_VK_END:
|
|
|
|
keystroke += "end";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (String.fromCharCode(event.charCode) == ' ')
|
|
|
|
keystroke += "space";
|
|
|
|
|
|
|
|
this.log("Got keystroke: " + keystroke);
|
|
|
|
var oldval, newval;
|
|
|
|
|
|
|
|
try {
|
|
|
|
switch (keystroke) {
|
|
|
|
case "space": /* Play */
|
|
|
|
this.togglePause();
|
|
|
|
break;
|
|
|
|
case "downArrow": /* Volume decrease */
|
|
|
|
oldval = this.video.volume;
|
|
|
|
this.video.volume = (oldval < 0.1 ? 0 : oldval - 0.1);
|
|
|
|
this.video.muted = false;
|
|
|
|
break;
|
|
|
|
case "upArrow": /* Volume increase */
|
|
|
|
oldval = this.video.volume;
|
|
|
|
this.video.volume = (oldval > 0.9 ? 1 : oldval + 0.1);
|
|
|
|
this.video.muted = false;
|
|
|
|
break;
|
|
|
|
case "accel-downArrow": /* Mute */
|
|
|
|
this.video.muted = true;
|
|
|
|
break;
|
|
|
|
case "accel-upArrow": /* Unmute */
|
|
|
|
this.video.muted = false;
|
|
|
|
break;
|
|
|
|
case "leftArrow": /* Seek back 15 seconds */
|
|
|
|
case "accel-leftArrow": /* Seek back 10% */
|
|
|
|
oldval = this.video.currentTime;
|
|
|
|
if (keystroke == "leftArrow")
|
|
|
|
newval = oldval - 15;
|
|
|
|
else
|
|
|
|
newval = oldval - (this.video.duration || this.maxCurrentTimeSeen) / 10;
|
|
|
|
this.video.currentTime = (newval >= 0 ? newval : 0);
|
|
|
|
break;
|
|
|
|
case "rightArrow": /* Seek forward 15 seconds */
|
|
|
|
case "accel-rightArrow": /* Seek forward 10% */
|
|
|
|
oldval = this.video.currentTime;
|
|
|
|
var maxtime = (this.video.duration || this.maxCurrentTimeSeen);
|
|
|
|
if (keystroke == "rightArrow")
|
|
|
|
newval = oldval + 15;
|
|
|
|
else
|
|
|
|
newval = oldval + maxtime / 10;
|
|
|
|
this.video.currentTime = (newval <= maxtime ? newval : maxtime);
|
|
|
|
break;
|
|
|
|
case "home": /* Seek to beginning */
|
|
|
|
this.video.currentTime = 0;
|
|
|
|
break;
|
|
|
|
case "end": /* Seek to end */
|
|
|
|
this.video.currentTime = (this.video.duration || this.maxCurrentTimeSeen);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} catch(e) { /* ignore any exception from setting .currentTime */ }
|
|
|
|
|
|
|
|
event.preventDefault(); // Prevent page scrolling
|
|
|
|
},
|
|
|
|
|
2009-04-23 00:33:35 -07:00
|
|
|
isEventWithin : function (event, parent1, parent2) {
|
|
|
|
function isDescendant (node) {
|
|
|
|
while (node) {
|
|
|
|
if (node == parent1 || node == parent2)
|
|
|
|
return true;
|
|
|
|
node = node.parentNode;
|
|
|
|
}
|
|
|
|
return false;
|
2008-10-01 01:00:22 -07:00
|
|
|
}
|
2009-04-23 00:33:35 -07:00
|
|
|
return isDescendant(event.target) && isDescendant(event.relatedTarget);
|
2008-10-01 01:00:22 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
log : function (msg) {
|
|
|
|
if (this.debug)
|
|
|
|
dump("videoctl: " + msg + "\n");
|
2009-05-06 12:55:26 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
init : function (binding) {
|
|
|
|
this.video = binding.parentNode;
|
|
|
|
this.videocontrols = binding;
|
|
|
|
this.isAudioOnly = (this.video instanceof HTMLAudioElement);
|
|
|
|
|
|
|
|
this.controlFader.element = document.getAnonymousElementByAttribute(binding, "class", "controlBar");
|
|
|
|
this.statusFader.element = document.getAnonymousElementByAttribute(binding, "class", "statusOverlay");
|
|
|
|
this.volumeFader.element = document.getAnonymousElementByAttribute(binding, "class", "volumeStack");
|
|
|
|
|
|
|
|
this.statusIcon = document.getAnonymousElementByAttribute(binding, "class", "statusIcon");
|
|
|
|
this.playButton = document.getAnonymousElementByAttribute(binding, "class", "playButton");
|
|
|
|
this.muteButton = document.getAnonymousElementByAttribute(binding, "class", "muteButton");
|
|
|
|
this.volumeControl = document.getAnonymousElementByAttribute(binding, "class", "volumeControl");
|
|
|
|
this.volumeStack = document.getAnonymousElementByAttribute(binding, "class", "volumeStack");
|
|
|
|
this.progressBar = document.getAnonymousElementByAttribute(binding, "class", "progressBar");
|
|
|
|
this.bufferBar = document.getAnonymousElementByAttribute(binding, "class", "bufferBar");
|
|
|
|
this.scrubber = document.getAnonymousElementByAttribute(binding, "class", "scrubber");
|
|
|
|
this.scrubberThumb = document.getAnonymousElementByAttribute(this.scrubber, "class", "scale-thumb");
|
|
|
|
this.durationLabel = document.getAnonymousElementByAttribute(binding, "class", "durationLabel");
|
|
|
|
|
|
|
|
this.setupInitialState();
|
|
|
|
|
|
|
|
// videocontrols.css hides the control bar by default, because if script
|
|
|
|
// is disabled our binding's script is disabled too (bug 449358). Thus,
|
|
|
|
// the controls are broken and we don't want them shown. But if script is
|
|
|
|
// enabled, the code here will run and can explicitly unhide the controls.
|
|
|
|
//
|
|
|
|
// For videos with |autoplay| set, we'll leave the controls initially hidden,
|
|
|
|
// so that they don't get in the way of the playing video. Otherwise we'll
|
|
|
|
// go ahead and reveal the controls now, so they're an obvious user cue.
|
|
|
|
//
|
|
|
|
// (Note: the |controls| attribute is already handled via layout/style/html.css)
|
|
|
|
if (!(this.video.autoplay && this.video.mozAutoplayEnabled) || !this.dynamicControls) {
|
|
|
|
var fader = this.controlFader;
|
|
|
|
fader.element.setAttribute("hidden", "false");
|
|
|
|
fader.isVisible = true;
|
|
|
|
fader.fadingIn = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Use the handleEvent() callback for all media events.
|
|
|
|
for each (var event in this.videoEvents)
|
|
|
|
this.video.addEventListener(event, this, false);
|
|
|
|
|
|
|
|
// Determine the height of the volumeFader when extended (which is controlled by CSS).
|
|
|
|
// Its .clientHeight seems to be 0 here, so use the theme's initial value. (eg "-70px")
|
|
|
|
this.volumeFader.maxSlide = parseInt(window.getComputedStyle(this.volumeStack, null)
|
|
|
|
.getPropertyValue("margin-top"));
|
|
|
|
var self = this;
|
|
|
|
this.muteButton.addEventListener("command", function() { self.toggleMute(); }, false);
|
|
|
|
this.playButton.addEventListener("command", function() { self.togglePause(); }, false);
|
|
|
|
this.muteButton.addEventListener("mouseover", function(e) { self.onVolumeMouseInOut(e); }, false);
|
|
|
|
this.muteButton.addEventListener("mouseout", function(e) { self.onVolumeMouseInOut(e); }, false);
|
|
|
|
this.volumeStack.addEventListener("mouseover", function(e) { self.onVolumeMouseInOut(e); }, false);
|
|
|
|
this.volumeStack.addEventListener("mouseout", function(e) { self.onVolumeMouseInOut(e); }, false);
|
|
|
|
|
2009-05-22 16:03:47 -07:00
|
|
|
// Make the <video> element keyboard accessible.
|
|
|
|
this.video.setAttribute("tabindex", 0);
|
|
|
|
this.video.addEventListener("keypress", function (e) { self.keyHandler(e) }, false);
|
|
|
|
|
2009-05-06 12:55:26 -07:00
|
|
|
this.log("--- videocontrols initialized ---");
|
2008-10-01 01:00:22 -07:00
|
|
|
}
|
|
|
|
}) ]]>
|
|
|
|
</field>
|
|
|
|
|
2008-07-09 01:22:20 -07:00
|
|
|
|
|
|
|
</implementation>
|
2008-10-01 01:00:22 -07:00
|
|
|
|
|
|
|
<handlers>
|
|
|
|
<handler event="mouseover">
|
2008-12-19 17:33:20 -08:00
|
|
|
this.Utils.onMouseInOut(event);
|
2008-10-01 01:00:22 -07:00
|
|
|
</handler>
|
|
|
|
<handler event="mouseout">
|
2008-12-19 17:33:20 -08:00
|
|
|
this.Utils.onMouseInOut(event);
|
2008-10-01 01:00:22 -07:00
|
|
|
</handler>
|
|
|
|
</handlers>
|
2008-07-09 01:22:20 -07:00
|
|
|
</binding>
|
|
|
|
</bindings>
|