|
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/21572/root/usr/include/xulrunner-17.0.10/ |
Upload File : |
/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM /builddir/build/BUILD/xulrunner-17.0.10/mozilla-esr17/content/html/content/public/nsIFormSubmitObserver.idl
*/
#ifndef __gen_nsIFormSubmitObserver_h__
#define __gen_nsIFormSubmitObserver_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
class nsIDOMHTMLFormElement; /* forward declaration */
class nsIDOMWindow; /* forward declaration */
class nsIURI; /* forward declaration */
class nsIArray; /* forward declaration */
/* starting interface: nsIFormSubmitObserver */
#define NS_IFORMSUBMITOBSERVER_IID_STR "534ab795-6a99-4195-bfab-cfdd7836657d"
#define NS_IFORMSUBMITOBSERVER_IID \
{0x534ab795, 0x6a99, 0x4195, \
{ 0xbf, 0xab, 0xcf, 0xdd, 0x78, 0x36, 0x65, 0x7d }}
class NS_NO_VTABLE nsIFormSubmitObserver : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IFORMSUBMITOBSERVER_IID)
/* void notify (in nsIDOMHTMLFormElement formNode, in nsIDOMWindow window, in nsIURI actionURL, out boolean cancelSubmit); */
NS_IMETHOD Notify(nsIDOMHTMLFormElement *formNode, nsIDOMWindow *window, nsIURI *actionURL, bool *cancelSubmit) = 0;
/* void notifyInvalidSubmit (in nsIDOMHTMLFormElement formNode, in nsIArray invalidElements); */
NS_IMETHOD NotifyInvalidSubmit(nsIDOMHTMLFormElement *formNode, nsIArray *invalidElements) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIFormSubmitObserver, NS_IFORMSUBMITOBSERVER_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIFORMSUBMITOBSERVER \
NS_IMETHOD Notify(nsIDOMHTMLFormElement *formNode, nsIDOMWindow *window, nsIURI *actionURL, bool *cancelSubmit); \
NS_IMETHOD NotifyInvalidSubmit(nsIDOMHTMLFormElement *formNode, nsIArray *invalidElements);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIFORMSUBMITOBSERVER(_to) \
NS_IMETHOD Notify(nsIDOMHTMLFormElement *formNode, nsIDOMWindow *window, nsIURI *actionURL, bool *cancelSubmit) { return _to Notify(formNode, window, actionURL, cancelSubmit); } \
NS_IMETHOD NotifyInvalidSubmit(nsIDOMHTMLFormElement *formNode, nsIArray *invalidElements) { return _to NotifyInvalidSubmit(formNode, invalidElements); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIFORMSUBMITOBSERVER(_to) \
NS_IMETHOD Notify(nsIDOMHTMLFormElement *formNode, nsIDOMWindow *window, nsIURI *actionURL, bool *cancelSubmit) { return !_to ? NS_ERROR_NULL_POINTER : _to->Notify(formNode, window, actionURL, cancelSubmit); } \
NS_IMETHOD NotifyInvalidSubmit(nsIDOMHTMLFormElement *formNode, nsIArray *invalidElements) { return !_to ? NS_ERROR_NULL_POINTER : _to->NotifyInvalidSubmit(formNode, invalidElements); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsFormSubmitObserver : public nsIFormSubmitObserver
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIFORMSUBMITOBSERVER
nsFormSubmitObserver();
private:
~nsFormSubmitObserver();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsFormSubmitObserver, nsIFormSubmitObserver)
nsFormSubmitObserver::nsFormSubmitObserver()
{
/* member initializers and constructor code */
}
nsFormSubmitObserver::~nsFormSubmitObserver()
{
/* destructor code */
}
/* void notify (in nsIDOMHTMLFormElement formNode, in nsIDOMWindow window, in nsIURI actionURL, out boolean cancelSubmit); */
NS_IMETHODIMP nsFormSubmitObserver::Notify(nsIDOMHTMLFormElement *formNode, nsIDOMWindow *window, nsIURI *actionURL, bool *cancelSubmit)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void notifyInvalidSubmit (in nsIDOMHTMLFormElement formNode, in nsIArray invalidElements); */
NS_IMETHODIMP nsFormSubmitObserver::NotifyInvalidSubmit(nsIDOMHTMLFormElement *formNode, nsIArray *invalidElements)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#define NS_FORMSUBMIT_SUBJECT "formsubmit"
#define NS_EARLYFORMSUBMIT_SUBJECT "earlyformsubmit"
#define NS_FIRST_FORMSUBMIT_CATEGORY "firstformsubmit"
#define NS_PASSWORDMANAGER_CATEGORY "passwordmanager"
#define NS_INVALIDFORMSUBMIT_SUBJECT "invalidformsubmit"
#endif /* __gen_nsIFormSubmitObserver_h__ */