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/. */
|
|
|
|
|
|
|
|
#ifndef nsDOMClipboardEvent_h_
|
|
|
|
#define nsDOMClipboardEvent_h_
|
|
|
|
|
|
|
|
#include "nsIDOMClipboardEvent.h"
|
|
|
|
#include "nsDOMEvent.h"
|
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"
|
2013-03-11 08:49:48 -07:00
|
|
|
|
|
|
|
class nsDOMClipboardEvent : public nsDOMEvent,
|
|
|
|
public nsIDOMClipboardEvent
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsDOMClipboardEvent(mozilla::dom::EventTarget* aOwner,
|
|
|
|
nsPresContext* aPresContext,
|
2013-09-26 23:20:55 -07:00
|
|
|
mozilla::InternalClipboardEvent* aEvent);
|
2013-03-11 08:49:48 -07:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
|
|
|
NS_DECL_NSIDOMCLIPBOARDEVENT
|
|
|
|
|
|
|
|
// Forward to base class
|
|
|
|
NS_FORWARD_TO_NSDOMEVENT
|
2013-03-11 08:49:56 -07:00
|
|
|
|
2013-04-25 09:29:54 -07:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aScope) MOZ_OVERRIDE
|
2013-03-28 07:11:21 -07:00
|
|
|
{
|
|
|
|
return mozilla::dom::ClipboardEventBinding::Wrap(aCx, aScope, this);
|
|
|
|
}
|
|
|
|
|
|
|
|
static already_AddRefed<nsDOMClipboardEvent>
|
|
|
|
Constructor(const mozilla::dom::GlobalObject& aGlobal,
|
|
|
|
const nsAString& aType,
|
|
|
|
const mozilla::dom::ClipboardEventInit& aParam,
|
|
|
|
mozilla::ErrorResult& aRv);
|
|
|
|
|
|
|
|
nsIDOMDataTransfer* GetClipboardData();
|
2013-03-11 08:49:48 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // nsDOMClipboardEvent_h_
|