2015-05-03 19:32:37 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2010-07-31 07:02:52 +00:00
|
|
|
|
2014-07-30 17:16:57 +00:00
|
|
|
#include "mozilla/ContentEvents.h"
|
2014-02-28 14:58:43 +00:00
|
|
|
#include "mozilla/dom/TimeEvent.h"
|
2014-01-10 02:03:47 +00:00
|
|
|
#include "nsIDocShell.h"
|
2014-02-28 14:58:43 +00:00
|
|
|
#include "nsIInterfaceRequestorUtils.h"
|
|
|
|
#include "nsPresContext.h"
|
2016-01-30 17:05:36 +00:00
|
|
|
#include "nsGlobalWindow.h"
|
2010-07-31 07:02:52 +00:00
|
|
|
|
2014-02-28 14:58:43 +00:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
2013-10-01 07:23:01 +00:00
|
|
|
|
2014-02-28 14:58:43 +00:00
|
|
|
TimeEvent::TimeEvent(EventTarget* aOwner,
|
|
|
|
nsPresContext* aPresContext,
|
2014-07-30 17:16:57 +00:00
|
|
|
InternalSMILTimeEvent* aEvent)
|
2014-03-05 00:37:43 +00:00
|
|
|
: Event(aOwner, aPresContext,
|
2015-08-28 23:58:26 +00:00
|
|
|
aEvent ? aEvent : new InternalSMILTimeEvent(false, eVoidEvent))
|
2016-03-26 07:22:27 +00:00
|
|
|
, mDetail(mEvent->AsSMILTimeEvent()->mDetail)
|
2010-07-31 07:02:52 +00:00
|
|
|
{
|
|
|
|
if (aEvent) {
|
2011-10-17 14:59:28 +00:00
|
|
|
mEventIsInternal = false;
|
2010-07-31 07:02:52 +00:00
|
|
|
} else {
|
2011-10-17 14:59:28 +00:00
|
|
|
mEventIsInternal = true;
|
2010-07-31 07:02:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (mPresContext) {
|
2014-01-10 02:03:47 +00:00
|
|
|
nsCOMPtr<nsIDocShell> docShell = mPresContext->GetDocShell();
|
|
|
|
if (docShell) {
|
|
|
|
mView = docShell->GetWindow();
|
2010-07-31 07:02:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-25 16:49:00 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_INHERITED(TimeEvent, Event,
|
|
|
|
mView)
|
2010-07-31 07:02:52 +00:00
|
|
|
|
2014-03-05 00:37:43 +00:00
|
|
|
NS_IMPL_ADDREF_INHERITED(TimeEvent, Event)
|
|
|
|
NS_IMPL_RELEASE_INHERITED(TimeEvent, Event)
|
2010-07-31 07:02:52 +00:00
|
|
|
|
2014-02-28 14:58:43 +00:00
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION_INHERITED(TimeEvent)
|
2010-07-31 07:02:52 +00:00
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIDOMTimeEvent)
|
2014-03-05 00:37:43 +00:00
|
|
|
NS_INTERFACE_MAP_END_INHERITING(Event)
|
2010-07-31 07:02:52 +00:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2014-02-28 14:58:43 +00:00
|
|
|
TimeEvent::GetDetail(int32_t* aDetail)
|
2010-07-31 07:02:52 +00:00
|
|
|
{
|
|
|
|
*aDetail = mDetail;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2016-01-30 17:05:36 +00:00
|
|
|
void
|
|
|
|
TimeEvent::InitTimeEvent(const nsAString& aType, nsGlobalWindow* aView,
|
|
|
|
int32_t aDetail)
|
2010-07-31 07:02:52 +00:00
|
|
|
{
|
2016-10-30 19:30:06 +00:00
|
|
|
NS_ENSURE_TRUE_VOID(!mEvent->mFlags.mIsBeingDispatched);
|
|
|
|
|
2016-01-30 17:05:36 +00:00
|
|
|
Event::InitEvent(aType, false /*doesn't bubble*/, false /*can't cancel*/);
|
|
|
|
mDetail = aDetail;
|
|
|
|
mView = aView ? aView->GetOuterWindow() : nullptr;
|
2010-07-31 07:02:52 +00:00
|
|
|
}
|
|
|
|
|
2014-02-28 14:58:43 +00:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
using namespace mozilla;
|
|
|
|
using namespace mozilla::dom;
|
|
|
|
|
2015-08-12 11:39:31 +00:00
|
|
|
already_AddRefed<TimeEvent>
|
|
|
|
NS_NewDOMTimeEvent(EventTarget* aOwner,
|
2014-02-28 14:58:43 +00:00
|
|
|
nsPresContext* aPresContext,
|
2014-07-30 17:16:57 +00:00
|
|
|
InternalSMILTimeEvent* aEvent)
|
2010-07-31 07:02:52 +00:00
|
|
|
{
|
2015-10-18 05:24:48 +00:00
|
|
|
RefPtr<TimeEvent> it = new TimeEvent(aOwner, aPresContext, aEvent);
|
2015-08-12 11:39:31 +00:00
|
|
|
return it.forget();
|
2010-07-31 07:02:52 +00:00
|
|
|
}
|