|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /proc/21585/root/usr/lib/xulrunner-devel-17.0.10/include/ |
Upload File : |
/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM /builddir/build/BUILD/xulrunner-17.0.10/mozilla-esr17/dom/interfaces/events/nsIDOMHashChangeEvent.idl
*/
#ifndef __gen_nsIDOMHashChangeEvent_h__
#define __gen_nsIDOMHashChangeEvent_h__
#ifndef __gen_nsIDOMEvent_h__
#include "nsIDOMEvent.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
/* starting interface: nsIDOMHashChangeEvent */
#define NS_IDOMHASHCHANGEEVENT_IID_STR "bf5ce408-971a-4e74-bc57-178f0f8781f3"
#define NS_IDOMHASHCHANGEEVENT_IID \
{0xbf5ce408, 0x971a, 0x4e74, \
{ 0xbc, 0x57, 0x17, 0x8f, 0x0f, 0x87, 0x81, 0xf3 }}
class NS_NO_VTABLE nsIDOMHashChangeEvent : public nsIDOMEvent {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMHASHCHANGEEVENT_IID)
/* readonly attribute DOMString oldURL; */
NS_IMETHOD GetOldURL(nsAString & aOldURL) = 0;
/* readonly attribute DOMString newURL; */
NS_IMETHOD GetNewURL(nsAString & aNewURL) = 0;
/* void initHashChangeEvent (in DOMString typeArg, in boolean canBubbleArg, in boolean cancelableArg, in DOMString oldURLArg, in DOMString newURLArg); */
NS_IMETHOD InitHashChangeEvent(const nsAString & typeArg, bool canBubbleArg, bool cancelableArg, const nsAString & oldURLArg, const nsAString & newURLArg) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMHashChangeEvent, NS_IDOMHASHCHANGEEVENT_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDOMHASHCHANGEEVENT \
NS_IMETHOD GetOldURL(nsAString & aOldURL); \
NS_IMETHOD GetNewURL(nsAString & aNewURL); \
NS_IMETHOD InitHashChangeEvent(const nsAString & typeArg, bool canBubbleArg, bool cancelableArg, const nsAString & oldURLArg, const nsAString & newURLArg);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDOMHASHCHANGEEVENT(_to) \
NS_IMETHOD GetOldURL(nsAString & aOldURL) { return _to GetOldURL(aOldURL); } \
NS_IMETHOD GetNewURL(nsAString & aNewURL) { return _to GetNewURL(aNewURL); } \
NS_IMETHOD InitHashChangeEvent(const nsAString & typeArg, bool canBubbleArg, bool cancelableArg, const nsAString & oldURLArg, const nsAString & newURLArg) { return _to InitHashChangeEvent(typeArg, canBubbleArg, cancelableArg, oldURLArg, newURLArg); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIDOMHASHCHANGEEVENT(_to) \
NS_IMETHOD GetOldURL(nsAString & aOldURL) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetOldURL(aOldURL); } \
NS_IMETHOD GetNewURL(nsAString & aNewURL) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetNewURL(aNewURL); } \
NS_IMETHOD InitHashChangeEvent(const nsAString & typeArg, bool canBubbleArg, bool cancelableArg, const nsAString & oldURLArg, const nsAString & newURLArg) { return !_to ? NS_ERROR_NULL_POINTER : _to->InitHashChangeEvent(typeArg, canBubbleArg, cancelableArg, oldURLArg, newURLArg); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsDOMHashChangeEvent : public nsIDOMHashChangeEvent
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDOMHASHCHANGEEVENT
nsDOMHashChangeEvent();
private:
~nsDOMHashChangeEvent();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsDOMHashChangeEvent, nsIDOMHashChangeEvent)
nsDOMHashChangeEvent::nsDOMHashChangeEvent()
{
/* member initializers and constructor code */
}
nsDOMHashChangeEvent::~nsDOMHashChangeEvent()
{
/* destructor code */
}
/* readonly attribute DOMString oldURL; */
NS_IMETHODIMP nsDOMHashChangeEvent::GetOldURL(nsAString & aOldURL)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute DOMString newURL; */
NS_IMETHODIMP nsDOMHashChangeEvent::GetNewURL(nsAString & aNewURL)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void initHashChangeEvent (in DOMString typeArg, in boolean canBubbleArg, in boolean cancelableArg, in DOMString oldURLArg, in DOMString newURLArg); */
NS_IMETHODIMP nsDOMHashChangeEvent::InitHashChangeEvent(const nsAString & typeArg, bool canBubbleArg, bool cancelableArg, const nsAString & oldURLArg, const nsAString & newURLArg)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIDOMHashChangeEvent_h__ */