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
|
|
|
|
|
|
|
#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
|
|
|
|
2014-02-25 21:23:56 -08:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
class ClipboardEvent : public nsDOMEvent,
|
|
|
|
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
|
|
|
|
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
|
|
|
{
|
2014-02-25 21:23:56 -08:00
|
|
|
return ClipboardEventBinding::Wrap(aCx, aScope, 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
|
|
|
|
|
|
|
nsIDOMDataTransfer* GetClipboardData();
|
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_
|