2013-03-11 08:49:48 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* 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/. */
|
|
|
|
|
2014-02-25 21:23:56 -08:00
|
|
|
#ifndef mozilla_dom_ClipboardEvent_h_
|
|
|
|
#define mozilla_dom_ClipboardEvent_h_
|
2013-03-11 08:49:48 -07:00
|
|
|
|
2013-09-25 04:21:20 -07:00
|
|
|
#include "mozilla/EventForwards.h"
|
2013-03-28 07:11:21 -07:00
|
|
|
#include "mozilla/dom/ClipboardEventBinding.h"
|
2014-03-04 16:37:43 -08:00
|
|
|
#include "mozilla/dom/Event.h"
|
|
|
|
#include "nsIDOMClipboardEvent.h"
|
2013-03-11 08:49:48 -07:00
|
|
|
|
2014-02-25 21:23:56 -08:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
2014-02-26 19:23:31 -08:00
|
|
|
class DataTransfer;
|
2014-02-25 21:23:56 -08:00
|
|
|
|
2014-03-04 16:37:43 -08:00
|
|
|
class ClipboardEvent : public Event,
|
2014-02-25 21:23:56 -08:00
|
|
|
public nsIDOMClipboardEvent
|
2013-03-11 08:49:48 -07:00
|
|
|
{
|
|
|
|
public:
|
2014-02-25 21:23:56 -08:00
|
|
|
ClipboardEvent(EventTarget* aOwner,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
InternalClipboardEvent* aEvent);
|
2013-03-11 08:49:48 -07:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
|
|
|
NS_DECL_NSIDOMCLIPBOARDEVENT
|
|
|
|
|
|
|
|
// Forward to base class
|
2014-03-04 16:37:43 -08:00
|
|
|
NS_FORWARD_TO_EVENT
|
2013-03-11 08:49:56 -07:00
|
|
|
|
2014-10-17 16:16:58 -07:00
|
|
|
virtual JSObject* WrapObjectInternal(JSContext* aCx) MOZ_OVERRIDE
|
2013-03-28 07:11:21 -07:00
|
|
|
{
|
Bug 991742 part 6. Remove the "aScope" argument of binding Wrap() methods. r=bholley
This patch was mostly generated with this command:
find . -name "*.h" -o -name "*.cpp" | xargs sed -e 's/Binding::Wrap(aCx, aScope, this/Binding::Wrap(aCx, this/' -e 's/Binding_workers::Wrap(aCx, aScope, this/Binding_workers::Wrap(aCx, this/' -e 's/Binding::Wrap(cx, scope, this/Binding::Wrap(cx, this/' -i ""
plus a few manual fixes to dom/bindings/Codegen.py, js/xpconnect/src/event_impl_gen.py, and a few C++ files that were not caught in the search-and-replace above.
2014-04-08 15:27:17 -07:00
|
|
|
return ClipboardEventBinding::Wrap(aCx, this);
|
2013-03-28 07:11:21 -07:00
|
|
|
}
|
|
|
|
|
2014-02-25 21:23:56 -08:00
|
|
|
static already_AddRefed<ClipboardEvent>
|
|
|
|
Constructor(const GlobalObject& aGlobal,
|
2013-03-28 07:11:21 -07:00
|
|
|
const nsAString& aType,
|
2014-02-25 21:23:56 -08:00
|
|
|
const ClipboardEventInit& aParam,
|
|
|
|
ErrorResult& aRv);
|
2013-03-28 07:11:21 -07:00
|
|
|
|
2014-02-26 19:23:31 -08:00
|
|
|
DataTransfer* GetClipboardData();
|
|
|
|
|
|
|
|
void InitClipboardEvent(const nsAString& aType, bool aCanBubble,
|
|
|
|
bool aCancelable,
|
|
|
|
DataTransfer* aClipboardData,
|
|
|
|
ErrorResult& aError);
|
2014-07-08 14:23:17 -07:00
|
|
|
|
|
|
|
protected:
|
|
|
|
~ClipboardEvent() {}
|
2013-03-11 08:49:48 -07:00
|
|
|
};
|
|
|
|
|
2014-02-25 21:23:56 -08:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_ClipboardEvent_h_
|