2007-12-11 00:18:04 -08:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07: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/. */
|
2007-12-11 00:18:04 -08:00
|
|
|
|
2014-02-25 21:23:57 -08:00
|
|
|
#ifndef mozilla_dom_DataContainerEvent_h_
|
|
|
|
#define mozilla_dom_DataContainerEvent_h_
|
2007-12-11 00:18:04 -08:00
|
|
|
|
|
|
|
#include "nsIDOMDataContainerEvent.h"
|
|
|
|
#include "nsDOMEvent.h"
|
2009-02-19 11:03:28 -08:00
|
|
|
#include "nsInterfaceHashtable.h"
|
2013-05-16 07:10:30 -07:00
|
|
|
#include "mozilla/dom/DataContainerEventBinding.h"
|
2007-12-11 00:18:04 -08:00
|
|
|
|
2014-02-25 21:23:57 -08:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
class DataContainerEvent : public nsDOMEvent,
|
|
|
|
public nsIDOMDataContainerEvent
|
2007-12-11 00:18:04 -08:00
|
|
|
{
|
|
|
|
public:
|
2014-02-25 21:23:57 -08:00
|
|
|
DataContainerEvent(EventTarget* aOwner,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
WidgetEvent* aEvent);
|
2007-12-11 00:18:04 -08:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
2014-02-25 21:23:57 -08:00
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(DataContainerEvent, nsDOMEvent)
|
2007-12-11 00:18:04 -08:00
|
|
|
|
|
|
|
NS_FORWARD_TO_NSDOMEVENT
|
|
|
|
|
|
|
|
NS_DECL_NSIDOMDATACONTAINEREVENT
|
|
|
|
|
2013-05-16 07:10:30 -07:00
|
|
|
virtual JSObject*
|
|
|
|
WrapObject(JSContext* aCx, JS::Handle<JSObject*> aScope) MOZ_OVERRIDE
|
|
|
|
{
|
2014-02-25 21:23:57 -08:00
|
|
|
return DataContainerEventBinding::Wrap(aCx, aScope, this);
|
2013-05-16 07:10:30 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<nsIVariant> GetData(const nsAString& aKey)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIVariant> val;
|
|
|
|
GetData(aKey, getter_AddRefs(val));
|
|
|
|
return val.forget();
|
|
|
|
}
|
|
|
|
|
2013-05-30 14:46:48 -07:00
|
|
|
void SetData(JSContext* aCx, const nsAString& aKey,
|
2014-02-25 21:23:57 -08:00
|
|
|
JS::Handle<JS::Value> aVal, ErrorResult& aRv);
|
2013-05-16 07:10:30 -07:00
|
|
|
|
2007-12-11 00:18:04 -08:00
|
|
|
private:
|
2008-10-10 08:04:34 -07:00
|
|
|
static PLDHashOperator
|
2014-02-25 21:23:57 -08:00
|
|
|
TraverseEntry(const nsAString& aKey, nsIVariant* aDataItem, void* aUserArg);
|
2007-12-11 00:18:04 -08:00
|
|
|
|
|
|
|
nsInterfaceHashtable<nsStringHashKey, nsIVariant> mData;
|
|
|
|
};
|
|
|
|
|
2014-02-25 21:23:57 -08:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
2007-12-11 00:18:04 -08:00
|
|
|
|
2014-02-25 21:23:57 -08:00
|
|
|
#endif // mozilla_dom_DataContainerEvent_h_
|