2009-01-14 20:38:07 -08:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is the Mozilla SMIL module.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Brian Birtles.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2005
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Brian Birtles <birtles@gmail.com>
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
#include "nsSMILTimeValueSpec.h"
|
2010-01-12 12:00:49 -08:00
|
|
|
#include "nsSMILInterval.h"
|
|
|
|
#include "nsSMILTimeContainer.h"
|
2009-01-14 20:38:07 -08:00
|
|
|
#include "nsSMILTimeValue.h"
|
|
|
|
#include "nsSMILTimedElement.h"
|
|
|
|
#include "nsSMILInstanceTime.h"
|
|
|
|
#include "nsSMILParserUtils.h"
|
2010-01-12 12:00:49 -08:00
|
|
|
#include "nsISMILAnimationElement.h"
|
|
|
|
#include "nsContentUtils.h"
|
2010-08-18 03:20:24 -07:00
|
|
|
#include "nsIEventListenerManager.h"
|
|
|
|
#include "nsIDOMEventGroup.h"
|
|
|
|
#include "nsGUIEvent.h"
|
2010-08-18 03:20:24 -07:00
|
|
|
#include "nsIDOMTimeEvent.h"
|
2009-01-14 20:38:07 -08:00
|
|
|
#include "nsString.h"
|
|
|
|
|
2010-08-18 03:20:24 -07:00
|
|
|
using namespace mozilla::dom;
|
|
|
|
|
2010-08-18 03:20:24 -07:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// Nested class: EventListener
|
|
|
|
|
|
|
|
NS_IMPL_ISUPPORTS1(nsSMILTimeValueSpec::EventListener, nsIDOMEventListener)
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsSMILTimeValueSpec::EventListener::HandleEvent(nsIDOMEvent* aEvent)
|
|
|
|
{
|
|
|
|
if (mSpec) {
|
|
|
|
mSpec->HandleEvent(aEvent);
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-01-12 12:00:49 -08:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// Implementation
|
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
// Disable "warning C4355: 'this' : used in base member initializer list".
|
2010-08-18 03:20:24 -07:00
|
|
|
// We can ignore that warning because we know that mReferencedElement's
|
|
|
|
// constructor doesn't dereference the pointer passed to it.
|
2010-01-12 12:00:49 -08:00
|
|
|
#pragma warning(push)
|
|
|
|
#pragma warning(disable:4355)
|
|
|
|
#endif
|
|
|
|
nsSMILTimeValueSpec::nsSMILTimeValueSpec(nsSMILTimedElement& aOwner,
|
2009-01-14 20:38:07 -08:00
|
|
|
PRBool aIsBegin)
|
2010-01-12 12:00:49 -08:00
|
|
|
: mOwner(&aOwner),
|
2009-01-14 20:38:07 -08:00
|
|
|
mIsBegin(aIsBegin),
|
2010-08-18 03:20:24 -07:00
|
|
|
mReferencedElement(this)
|
2010-01-12 12:00:49 -08:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(pop)
|
|
|
|
#endif
|
2009-01-14 20:38:07 -08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-01-12 12:00:49 -08:00
|
|
|
nsSMILTimeValueSpec::~nsSMILTimeValueSpec()
|
|
|
|
{
|
2010-08-18 03:20:24 -07:00
|
|
|
UnregisterFromReferencedElement(mReferencedElement.get());
|
|
|
|
if (mEventListener) {
|
|
|
|
mEventListener->Disconnect();
|
|
|
|
mEventListener = nsnull;
|
|
|
|
}
|
2010-01-12 12:00:49 -08:00
|
|
|
}
|
2009-01-14 20:38:07 -08:00
|
|
|
|
|
|
|
nsresult
|
2010-01-12 12:00:49 -08:00
|
|
|
nsSMILTimeValueSpec::SetSpec(const nsAString& aStringSpec,
|
2010-08-18 03:20:24 -07:00
|
|
|
Element* aContextNode)
|
2009-01-14 20:38:07 -08:00
|
|
|
{
|
2010-01-12 12:00:49 -08:00
|
|
|
nsSMILTimeValueSpecParams params;
|
|
|
|
nsresult rv =
|
|
|
|
nsSMILParserUtils::ParseTimeValueSpecParams(aStringSpec, params);
|
|
|
|
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
2009-01-14 20:38:07 -08:00
|
|
|
|
2010-01-12 12:00:49 -08:00
|
|
|
mParams = params;
|
2009-07-15 11:33:31 -07:00
|
|
|
|
2010-01-12 12:00:49 -08:00
|
|
|
// According to SMIL 3.0:
|
|
|
|
// The special value "indefinite" does not yield an instance time in the
|
|
|
|
// begin list. It will, however yield a single instance with the value
|
|
|
|
// "indefinite" in an end list. This value is not removed by a reset.
|
|
|
|
if (mParams.mType == nsSMILTimeValueSpecParams::OFFSET ||
|
|
|
|
(!mIsBegin && mParams.mType == nsSMILTimeValueSpecParams::INDEFINITE)) {
|
2010-08-18 03:20:24 -07:00
|
|
|
mOwner->AddInstanceTime(new nsSMILInstanceTime(mParams.mOffset), mIsBegin);
|
2009-01-14 20:38:07 -08:00
|
|
|
}
|
|
|
|
|
2010-08-18 03:20:24 -07:00
|
|
|
// Fill in the event symbol to simplify handling later
|
|
|
|
if (mParams.mType == nsSMILTimeValueSpecParams::REPEAT) {
|
|
|
|
mParams.mEventSymbol = nsGkAtoms::repeatEvent;
|
|
|
|
}
|
|
|
|
|
2010-01-12 12:00:49 -08:00
|
|
|
ResolveReferences(aContextNode);
|
|
|
|
|
2009-01-14 20:38:07 -08:00
|
|
|
return rv;
|
|
|
|
}
|
2010-01-12 12:00:49 -08:00
|
|
|
|
|
|
|
void
|
|
|
|
nsSMILTimeValueSpec::ResolveReferences(nsIContent* aContextNode)
|
|
|
|
{
|
2010-08-18 03:20:24 -07:00
|
|
|
if (mParams.mType != nsSMILTimeValueSpecParams::SYNCBASE &&
|
2010-08-18 03:20:24 -07:00
|
|
|
mParams.mType != nsSMILTimeValueSpecParams::EVENT &&
|
|
|
|
mParams.mType != nsSMILTimeValueSpecParams::REPEAT)
|
2010-01-12 12:00:49 -08:00
|
|
|
return;
|
|
|
|
|
|
|
|
NS_ABORT_IF_FALSE(aContextNode,
|
|
|
|
"null context node for resolving timing references against");
|
|
|
|
|
|
|
|
// If we're not bound to the document yet, don't worry, we'll get called again
|
|
|
|
// when that happens
|
|
|
|
if (!aContextNode->IsInDoc())
|
|
|
|
return;
|
|
|
|
|
2010-08-18 03:20:24 -07:00
|
|
|
// Hold ref to the old element so that it isn't destroyed in between resetting
|
2010-08-18 03:20:24 -07:00
|
|
|
// the referenced element and using the pointer to update the referenced
|
|
|
|
// element.
|
2010-08-18 03:20:24 -07:00
|
|
|
nsRefPtr<Element> oldReferencedElement = mReferencedElement.get();
|
2010-01-12 12:00:49 -08:00
|
|
|
|
2010-08-18 03:20:24 -07:00
|
|
|
if (mParams.mDependentElemID) {
|
|
|
|
mReferencedElement.ResetWithID(aContextNode,
|
|
|
|
nsDependentAtomString(mParams.mDependentElemID));
|
2010-08-18 03:20:24 -07:00
|
|
|
} else if (mParams.mType == nsSMILTimeValueSpecParams::EVENT) {
|
2010-08-18 03:20:24 -07:00
|
|
|
Element* target = mOwner->GetTargetElement();
|
|
|
|
mReferencedElement.ResetWithElement(target);
|
|
|
|
} else {
|
2010-08-18 03:20:24 -07:00
|
|
|
NS_ABORT_IF_FALSE(PR_FALSE, "Syncbase or repeat spec without ID");
|
2010-08-18 03:20:24 -07:00
|
|
|
}
|
2010-08-18 03:20:24 -07:00
|
|
|
UpdateReferencedElement(oldReferencedElement, mReferencedElement.get());
|
2010-08-18 03:20:24 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
PRBool
|
|
|
|
nsSMILTimeValueSpec::IsEventBased() const
|
|
|
|
{
|
|
|
|
return mParams.mType == nsSMILTimeValueSpecParams::EVENT ||
|
|
|
|
mParams.mType == nsSMILTimeValueSpecParams::REPEAT ||
|
|
|
|
mParams.mType == nsSMILTimeValueSpecParams::ACCESSKEY;
|
2010-01-12 12:00:49 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-03-01 11:31:50 -08:00
|
|
|
nsSMILTimeValueSpec::HandleNewInterval(nsSMILInterval& aInterval,
|
2010-01-12 12:00:49 -08:00
|
|
|
const nsSMILTimeContainer* aSrcContainer)
|
|
|
|
{
|
|
|
|
const nsSMILInstanceTime& baseInstance = mParams.mSyncBegin
|
|
|
|
? *aInterval.Begin() : *aInterval.End();
|
|
|
|
nsSMILTimeValue newTime =
|
|
|
|
ConvertBetweenTimeContainers(baseInstance.Time(), aSrcContainer);
|
|
|
|
|
|
|
|
// Apply offset
|
|
|
|
if (newTime.IsResolved()) {
|
|
|
|
newTime.SetMillis(newTime.GetMillis() + mParams.mOffset.GetMillis());
|
|
|
|
}
|
|
|
|
|
2010-03-01 11:31:50 -08:00
|
|
|
// Create the instance time and register it with the interval
|
2010-01-12 12:00:49 -08:00
|
|
|
nsRefPtr<nsSMILInstanceTime> newInstance =
|
2010-03-01 11:31:50 -08:00
|
|
|
new nsSMILInstanceTime(newTime, nsSMILInstanceTime::SOURCE_SYNCBASE, this,
|
|
|
|
&aInterval);
|
2010-01-12 12:00:49 -08:00
|
|
|
mOwner->AddInstanceTime(newInstance, mIsBegin);
|
|
|
|
}
|
|
|
|
|
2010-08-18 03:20:24 -07:00
|
|
|
void
|
|
|
|
nsSMILTimeValueSpec::HandleTargetElementChange(Element* aNewTarget)
|
|
|
|
{
|
|
|
|
if (!IsEventBased() || mParams.mDependentElemID)
|
|
|
|
return;
|
|
|
|
|
|
|
|
mReferencedElement.ResetWithElement(aNewTarget);
|
|
|
|
}
|
|
|
|
|
2010-01-12 12:00:49 -08:00
|
|
|
void
|
2010-03-01 11:31:50 -08:00
|
|
|
nsSMILTimeValueSpec::HandleChangedInstanceTime(
|
|
|
|
const nsSMILInstanceTime& aBaseTime,
|
|
|
|
const nsSMILTimeContainer* aSrcContainer,
|
|
|
|
nsSMILInstanceTime& aInstanceTimeToUpdate,
|
|
|
|
PRBool aObjectChanged)
|
2010-01-12 12:00:49 -08:00
|
|
|
{
|
2010-03-01 11:31:50 -08:00
|
|
|
// If the instance time is fixed (e.g. because it's being used as the begin
|
2010-07-02 22:52:50 -07:00
|
|
|
// time of an active or postactive interval) we just ignore the change.
|
|
|
|
if (aInstanceTimeToUpdate.IsFixedTime())
|
2010-01-12 12:00:49 -08:00
|
|
|
return;
|
|
|
|
|
|
|
|
nsSMILTimeValue updatedTime =
|
2010-03-01 11:31:50 -08:00
|
|
|
ConvertBetweenTimeContainers(aBaseTime.Time(), aSrcContainer);
|
2010-01-12 12:00:49 -08:00
|
|
|
|
|
|
|
// Apply offset
|
|
|
|
if (updatedTime.IsResolved()) {
|
|
|
|
updatedTime.SetMillis(updatedTime.GetMillis() +
|
|
|
|
mParams.mOffset.GetMillis());
|
|
|
|
}
|
|
|
|
|
|
|
|
// The timed element that owns the instance time does the updating so it can
|
|
|
|
// re-sort its array of instance times more efficiently
|
2010-03-01 11:31:50 -08:00
|
|
|
if (aInstanceTimeToUpdate.Time() != updatedTime || aObjectChanged) {
|
|
|
|
mOwner->UpdateInstanceTime(&aInstanceTimeToUpdate, updatedTime, mIsBegin);
|
2010-01-12 12:00:49 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-03-01 11:31:50 -08:00
|
|
|
nsSMILTimeValueSpec::HandleDeletedInstanceTime(
|
|
|
|
nsSMILInstanceTime &aInstanceTime)
|
2010-01-12 12:00:49 -08:00
|
|
|
{
|
2010-03-01 11:31:50 -08:00
|
|
|
mOwner->RemoveInstanceTime(&aInstanceTime, mIsBegin);
|
|
|
|
}
|
2010-01-12 12:00:49 -08:00
|
|
|
|
2010-03-01 11:31:50 -08:00
|
|
|
PRBool
|
|
|
|
nsSMILTimeValueSpec::DependsOnBegin() const
|
|
|
|
{
|
|
|
|
return mParams.mSyncBegin;
|
2010-01-12 12:00:49 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsSMILTimeValueSpec::Traverse(nsCycleCollectionTraversalCallback* aCallback)
|
|
|
|
{
|
2010-08-18 03:20:24 -07:00
|
|
|
mReferencedElement.Traverse(aCallback);
|
2010-01-12 12:00:49 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsSMILTimeValueSpec::Unlink()
|
|
|
|
{
|
2010-08-18 03:20:24 -07:00
|
|
|
UnregisterFromReferencedElement(mReferencedElement.get());
|
|
|
|
mReferencedElement.Unlink();
|
2010-01-12 12:00:49 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// Implementation helpers
|
|
|
|
|
|
|
|
void
|
2010-08-18 03:20:24 -07:00
|
|
|
nsSMILTimeValueSpec::UpdateReferencedElement(Element* aFrom, Element* aTo)
|
2010-01-12 12:00:49 -08:00
|
|
|
{
|
|
|
|
if (aFrom == aTo)
|
|
|
|
return;
|
|
|
|
|
2010-08-18 03:20:24 -07:00
|
|
|
UnregisterFromReferencedElement(aFrom);
|
2010-01-12 12:00:49 -08:00
|
|
|
|
2010-08-18 03:20:24 -07:00
|
|
|
switch (mParams.mType)
|
|
|
|
{
|
|
|
|
case nsSMILTimeValueSpecParams::SYNCBASE:
|
|
|
|
{
|
|
|
|
nsSMILTimedElement* to = GetTimedElement(aTo);
|
|
|
|
if (to) {
|
|
|
|
to->AddDependent(*this);
|
|
|
|
}
|
2010-08-18 03:20:24 -07:00
|
|
|
}
|
2010-08-18 03:20:24 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
case nsSMILTimeValueSpecParams::EVENT:
|
|
|
|
case nsSMILTimeValueSpecParams::REPEAT:
|
2010-08-18 03:20:24 -07:00
|
|
|
RegisterEventListener(aTo);
|
2010-08-18 03:20:24 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
// not a referencing-type or not yet supported
|
|
|
|
break;
|
2010-01-12 12:00:49 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-08-18 03:20:24 -07:00
|
|
|
nsSMILTimeValueSpec::UnregisterFromReferencedElement(Element* aElement)
|
2010-01-12 12:00:49 -08:00
|
|
|
{
|
2010-08-18 03:20:24 -07:00
|
|
|
if (!aElement)
|
2010-01-12 12:00:49 -08:00
|
|
|
return;
|
|
|
|
|
2010-08-18 03:20:24 -07:00
|
|
|
if (mParams.mType == nsSMILTimeValueSpecParams::SYNCBASE) {
|
2010-08-18 03:20:24 -07:00
|
|
|
nsSMILTimedElement* timedElement = GetTimedElement(aElement);
|
2010-08-18 03:20:24 -07:00
|
|
|
if (timedElement) {
|
|
|
|
timedElement->RemoveDependent(*this);
|
|
|
|
}
|
|
|
|
mOwner->RemoveInstanceTimesForCreator(this, mIsBegin);
|
2010-08-18 03:20:24 -07:00
|
|
|
} else if (IsEventBased()) {
|
2010-08-18 03:20:24 -07:00
|
|
|
UnregisterEventListener(aElement);
|
2010-08-18 03:20:24 -07:00
|
|
|
}
|
2010-01-12 12:00:49 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
nsSMILTimedElement*
|
2010-08-18 03:20:24 -07:00
|
|
|
nsSMILTimeValueSpec::GetTimedElement(Element* aElement)
|
2010-01-12 12:00:49 -08:00
|
|
|
{
|
2010-08-18 03:20:24 -07:00
|
|
|
if (!aElement)
|
2010-01-12 12:00:49 -08:00
|
|
|
return nsnull;
|
|
|
|
|
2010-08-18 03:20:24 -07:00
|
|
|
nsCOMPtr<nsISMILAnimationElement> animElement = do_QueryInterface(aElement);
|
2010-01-12 12:00:49 -08:00
|
|
|
if (!animElement)
|
|
|
|
return nsnull;
|
|
|
|
|
|
|
|
return &animElement->TimedElement();
|
|
|
|
}
|
|
|
|
|
2010-08-18 03:20:24 -07:00
|
|
|
void
|
2010-08-18 03:20:24 -07:00
|
|
|
nsSMILTimeValueSpec::RegisterEventListener(Element* aTarget)
|
2010-01-12 12:00:49 -08:00
|
|
|
{
|
2010-08-18 03:20:24 -07:00
|
|
|
NS_ABORT_IF_FALSE(mParams.mType == nsSMILTimeValueSpecParams::EVENT ||
|
|
|
|
mParams.mType == nsSMILTimeValueSpecParams::REPEAT,
|
|
|
|
"Attempting to register event-listener for unexpected nsSMILTimeValueSpec"
|
|
|
|
" type");
|
2010-08-18 03:20:24 -07:00
|
|
|
NS_ABORT_IF_FALSE(mParams.mEventSymbol,
|
|
|
|
"Attempting to register event-listener but there is no event name");
|
|
|
|
|
|
|
|
if (!aTarget)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!mEventListener) {
|
|
|
|
mEventListener = new EventListener(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMEventGroup> sysGroup;
|
|
|
|
nsIEventListenerManager* elm =
|
|
|
|
GetEventListenerManager(aTarget, getter_AddRefs(sysGroup));
|
|
|
|
if (!elm)
|
|
|
|
return;
|
|
|
|
|
|
|
|
elm->AddEventListenerByType(mEventListener,
|
|
|
|
nsDependentAtomString(mParams.mEventSymbol),
|
|
|
|
NS_EVENT_FLAG_BUBBLE |
|
|
|
|
NS_PRIV_EVENT_UNTRUSTED_PERMITTED,
|
|
|
|
sysGroup);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-08-18 03:20:24 -07:00
|
|
|
nsSMILTimeValueSpec::UnregisterEventListener(Element* aTarget)
|
2010-08-18 03:20:24 -07:00
|
|
|
{
|
|
|
|
if (!aTarget || !mEventListener)
|
|
|
|
return;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMEventGroup> sysGroup;
|
|
|
|
nsIEventListenerManager* elm =
|
|
|
|
GetEventListenerManager(aTarget, getter_AddRefs(sysGroup));
|
|
|
|
if (!elm)
|
|
|
|
return;
|
|
|
|
|
|
|
|
elm->RemoveEventListenerByType(mEventListener,
|
|
|
|
nsDependentAtomString(mParams.mEventSymbol),
|
|
|
|
NS_EVENT_FLAG_BUBBLE |
|
|
|
|
NS_PRIV_EVENT_UNTRUSTED_PERMITTED,
|
|
|
|
sysGroup);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIEventListenerManager*
|
2010-08-18 03:20:24 -07:00
|
|
|
nsSMILTimeValueSpec::GetEventListenerManager(Element* aTarget,
|
2010-08-18 03:20:24 -07:00
|
|
|
nsIDOMEventGroup** aSystemGroup)
|
|
|
|
{
|
|
|
|
NS_ABORT_IF_FALSE(aTarget, "null target; can't get EventListenerManager");
|
|
|
|
NS_ABORT_IF_FALSE(aSystemGroup && !*aSystemGroup,
|
|
|
|
"Bad out param for system group");
|
|
|
|
|
|
|
|
nsIEventListenerManager* elm = aTarget->GetListenerManager(PR_TRUE);
|
|
|
|
if (!elm)
|
|
|
|
return nsnull;
|
|
|
|
|
|
|
|
aTarget->GetSystemEventGroup(aSystemGroup);
|
|
|
|
if (!*aSystemGroup)
|
|
|
|
return nsnull;
|
|
|
|
|
|
|
|
return elm;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsSMILTimeValueSpec::HandleEvent(nsIDOMEvent* aEvent)
|
|
|
|
{
|
|
|
|
NS_ABORT_IF_FALSE(mEventListener, "Got event without an event listener");
|
2010-08-18 03:20:24 -07:00
|
|
|
NS_ABORT_IF_FALSE(IsEventBased(),
|
|
|
|
"Got event for non-event nsSMILTimeValueSpec");
|
|
|
|
NS_ABORT_IF_FALSE(aEvent, "No event supplied");
|
2010-08-18 03:20:24 -07:00
|
|
|
|
|
|
|
// XXX In the long run we should get the time from the event itself which will
|
|
|
|
// store the time in global document time which we'll need to convert to our
|
|
|
|
// time container
|
|
|
|
nsSMILTimeContainer* container = mOwner->GetTimeContainer();
|
|
|
|
if (!container)
|
|
|
|
return;
|
|
|
|
|
2010-08-18 03:20:24 -07:00
|
|
|
if (!CheckEventDetail(aEvent))
|
|
|
|
return;
|
|
|
|
|
2010-08-18 03:20:24 -07:00
|
|
|
nsSMILTime currentTime = container->GetCurrentTime();
|
|
|
|
nsSMILTimeValue newTime(currentTime + mParams.mOffset.GetMillis());
|
|
|
|
|
|
|
|
nsRefPtr<nsSMILInstanceTime> newInstance =
|
|
|
|
new nsSMILInstanceTime(newTime, nsSMILInstanceTime::SOURCE_EVENT);
|
|
|
|
mOwner->AddInstanceTime(newInstance, mIsBegin);
|
2010-01-12 12:00:49 -08:00
|
|
|
}
|
|
|
|
|
2010-08-18 03:20:24 -07:00
|
|
|
PRBool
|
|
|
|
nsSMILTimeValueSpec::CheckEventDetail(nsIDOMEvent *aEvent)
|
|
|
|
{
|
|
|
|
if (mParams.mType != nsSMILTimeValueSpecParams::REPEAT)
|
|
|
|
return PR_TRUE;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMTimeEvent> timeEvent = do_QueryInterface(aEvent);
|
|
|
|
if (!timeEvent) {
|
|
|
|
NS_WARNING("Received a repeat event that was not a DOMTimeEvent");
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRInt32 detail;
|
|
|
|
timeEvent->GetDetail(&detail);
|
|
|
|
return detail == mParams.mRepeatIterationOrAccessKey;
|
|
|
|
}
|
|
|
|
|
2010-01-12 12:00:49 -08:00
|
|
|
nsSMILTimeValue
|
|
|
|
nsSMILTimeValueSpec::ConvertBetweenTimeContainers(
|
|
|
|
const nsSMILTimeValue& aSrcTime,
|
|
|
|
const nsSMILTimeContainer* aSrcContainer)
|
|
|
|
{
|
|
|
|
// If the source time is either indefinite or unresolved the result is going
|
|
|
|
// to be the same
|
|
|
|
if (!aSrcTime.IsResolved())
|
|
|
|
return aSrcTime;
|
|
|
|
|
|
|
|
// Convert from source time container to our parent time container
|
|
|
|
const nsSMILTimeContainer* dstContainer = mOwner->GetTimeContainer();
|
|
|
|
if (dstContainer == aSrcContainer)
|
|
|
|
return aSrcTime;
|
|
|
|
|
|
|
|
// If one of the elements is not attached to a time container then we can't do
|
|
|
|
// any meaningful conversion
|
|
|
|
if (!aSrcContainer || !dstContainer)
|
|
|
|
return nsSMILTimeValue(); // unresolved
|
|
|
|
|
|
|
|
nsSMILTimeValue docTime =
|
|
|
|
aSrcContainer->ContainerToParentTime(aSrcTime.GetMillis());
|
|
|
|
|
|
|
|
if (docTime.IsIndefinite())
|
|
|
|
// This will happen if the source container is paused and we have a future
|
|
|
|
// time. Just return the indefinite time.
|
|
|
|
return docTime;
|
|
|
|
|
|
|
|
NS_ABORT_IF_FALSE(docTime.IsResolved(),
|
|
|
|
"ContainerToParentTime gave us an unresolved time");
|
|
|
|
|
|
|
|
return dstContainer->ParentToContainerTime(docTime.GetMillis());
|
|
|
|
}
|