mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 14:30:27 +00:00
e283739a59
- Bug 895274 part.2 Define event messages as anonymous enum with EventMessageList.h r=smaug (44a28d5da) - Bug 895274 part.1 Rename WidgetEvent::message to WidgetEvent::mMessage r=smaug (1a1651a54) - Bug 895274 part.170 Rename NS_ANIMATION_EVENT_START to eAnimationEventFirst r=smaug (e3bedfd02) - some cleanup (c496de395) - Bug 1186582 - AskPermission should check for prompt exceptions; r=fabrice (e7fc39d0a) - Bug 1170314 - Make console.timeStamp to add also Gecko profiler markers if Gecko profiler is active, r=baku,benwa (7e78b02c1) - Bug 1178172 - Fix all compile errors in dom/base on non-unified build. r=baku (ffc87d5ae) - namespace (93bb2e778) - Bug 1001158 - Handle an invalid distribution.ini gracefully, r=gijs (260ab12f2) - Bug 1157760: Remove incorrect MOZ_ASSERT in nsMessageManagerSH<Super>::Enumerate. r=bz (e1d86db8a) - Bug 1148694 patch 1 - Stop creating a CharsetRule object when parsing @charset rules. r=dbaron (5d3b4a237) - Bug 1148694 patch 2 - Remove interface and implementation of CSSCharsetRule. r=dbaron (e687d6a51) - Bug 1148694 patch 3 - remove tests affected by removal of CSSCharsetRule. r=dbaron, r=khuey (84e04ec3c) - Bug 958778 - De-holder nsIXPConnect::GetWrappedNativePrototype(). r=gabor (e862b0197) - non-EME part of Bug 1160445 - Add detailed logging for EME promise failures (90c5ae1a1) - Bug 1191305 - Alphabetize some includes; r=froydnj (6bc41455c) - Bug 1188640 - Add ChromeOnly MutationObserver.mergeAttributeRecords to speed up devtools, r=bz,bgrins (5f07c777f) - namespace (0e90aac16)
135 lines
4.1 KiB
C++
135 lines
4.1 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
/* 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/. */
|
|
|
|
#include "mozilla/dom/ClipboardEvent.h"
|
|
#include "mozilla/ContentEvents.h"
|
|
#include "mozilla/dom/DataTransfer.h"
|
|
#include "nsIClipboard.h"
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
|
|
ClipboardEvent::ClipboardEvent(EventTarget* aOwner,
|
|
nsPresContext* aPresContext,
|
|
InternalClipboardEvent* aEvent)
|
|
: Event(aOwner, aPresContext,
|
|
aEvent ? aEvent : new InternalClipboardEvent(false, 0))
|
|
{
|
|
if (aEvent) {
|
|
mEventIsInternal = false;
|
|
} else {
|
|
mEventIsInternal = true;
|
|
mEvent->time = PR_Now();
|
|
}
|
|
}
|
|
|
|
NS_INTERFACE_MAP_BEGIN(ClipboardEvent)
|
|
NS_INTERFACE_MAP_ENTRY(nsIDOMClipboardEvent)
|
|
NS_INTERFACE_MAP_END_INHERITING(Event)
|
|
|
|
NS_IMPL_ADDREF_INHERITED(ClipboardEvent, Event)
|
|
NS_IMPL_RELEASE_INHERITED(ClipboardEvent, Event)
|
|
|
|
nsresult
|
|
ClipboardEvent::InitClipboardEvent(const nsAString& aType,
|
|
bool aCanBubble,
|
|
bool aCancelable,
|
|
nsIDOMDataTransfer* aClipboardData)
|
|
{
|
|
nsCOMPtr<DataTransfer> clipboardData = do_QueryInterface(aClipboardData);
|
|
// Null clipboardData is OK
|
|
|
|
ErrorResult rv;
|
|
InitClipboardEvent(aType, aCanBubble, aCancelable, clipboardData, rv);
|
|
|
|
return rv.StealNSResult();
|
|
}
|
|
|
|
void
|
|
ClipboardEvent::InitClipboardEvent(const nsAString& aType, bool aCanBubble,
|
|
bool aCancelable,
|
|
DataTransfer* aClipboardData,
|
|
ErrorResult& aError)
|
|
{
|
|
aError = Event::InitEvent(aType, aCanBubble, aCancelable);
|
|
if (aError.Failed()) {
|
|
return;
|
|
}
|
|
|
|
mEvent->AsClipboardEvent()->clipboardData = aClipboardData;
|
|
}
|
|
|
|
already_AddRefed<ClipboardEvent>
|
|
ClipboardEvent::Constructor(const GlobalObject& aGlobal,
|
|
const nsAString& aType,
|
|
const ClipboardEventInit& aParam,
|
|
ErrorResult& aRv)
|
|
{
|
|
nsCOMPtr<EventTarget> t = do_QueryInterface(aGlobal.GetAsSupports());
|
|
nsRefPtr<ClipboardEvent> e = new ClipboardEvent(t, nullptr, nullptr);
|
|
bool trusted = e->Init(t);
|
|
|
|
nsRefPtr<DataTransfer> clipboardData;
|
|
if (e->mEventIsInternal) {
|
|
InternalClipboardEvent* event = e->mEvent->AsClipboardEvent();
|
|
if (event) {
|
|
// Always create a clipboardData for the copy event. If this is changed to
|
|
// support other types of events, make sure that read/write privileges are
|
|
// checked properly within DataTransfer.
|
|
clipboardData = new DataTransfer(ToSupports(e), NS_COPY, false, -1);
|
|
clipboardData->SetData(aParam.mDataType, aParam.mData);
|
|
}
|
|
}
|
|
|
|
e->InitClipboardEvent(aType, aParam.mBubbles, aParam.mCancelable,
|
|
clipboardData, aRv);
|
|
e->SetTrusted(trusted);
|
|
return e.forget();
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
ClipboardEvent::GetClipboardData(nsIDOMDataTransfer** aClipboardData)
|
|
{
|
|
NS_IF_ADDREF(*aClipboardData = GetClipboardData());
|
|
return NS_OK;
|
|
}
|
|
|
|
DataTransfer*
|
|
ClipboardEvent::GetClipboardData()
|
|
{
|
|
InternalClipboardEvent* event = mEvent->AsClipboardEvent();
|
|
|
|
if (!event->clipboardData) {
|
|
if (mEventIsInternal) {
|
|
event->clipboardData =
|
|
new DataTransfer(ToSupports(this), NS_COPY, false, -1);
|
|
} else {
|
|
event->clipboardData =
|
|
new DataTransfer(ToSupports(this), event->mMessage,
|
|
event->mMessage == NS_PASTE,
|
|
nsIClipboard::kGlobalClipboard);
|
|
}
|
|
}
|
|
|
|
return event->clipboardData;
|
|
}
|
|
|
|
} // namespace dom
|
|
} // namespace mozilla
|
|
|
|
using namespace mozilla;
|
|
using namespace mozilla::dom;
|
|
|
|
already_AddRefed<ClipboardEvent>
|
|
NS_NewDOMClipboardEvent(EventTarget* aOwner,
|
|
nsPresContext* aPresContext,
|
|
InternalClipboardEvent* aEvent)
|
|
{
|
|
nsRefPtr<ClipboardEvent> it =
|
|
new ClipboardEvent(aOwner, aPresContext, aEvent);
|
|
return it.forget();
|
|
}
|