/*
 * DO NOT EDIT.  THIS FILE IS GENERATED FROM nsISecurityWarningDialogs.idl
 */

#ifndef __gen_nsISecurityWarningDialogs_h__
#define __gen_nsISecurityWarningDialogs_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 nsIInterfaceRequestor; /* forward declaration */


/* starting interface:    nsISecurityWarningDialogs */
#define NS_ISECURITYWARNINGDIALOGS_IID_STR "1c399d06-1dd2-11b2-bc58-c87cbcacdb78"

#define NS_ISECURITYWARNINGDIALOGS_IID \
  {0x1c399d06, 0x1dd2, 0x11b2, \
    { 0xbc, 0x58, 0xc8, 0x7c, 0xbc, 0xac, 0xdb, 0x78 }}

/**
 * nsISecurityWarningDialogs - functions that
 *   display warnings for transitions between secure
 *   and insecure pages, posts to insecure servers etc.
 */
class NS_NO_VTABLE nsISecurityWarningDialogs : public nsISupports {
 public: 

  NS_DEFINE_STATIC_IID_ACCESSOR(NS_ISECURITYWARNINGDIALOGS_IID)

  /**
   * alertEnteringSecure
   */
  /* void alertEnteringSecure (in nsIInterfaceRequestor ctx); */
  NS_IMETHOD AlertEnteringSecure(nsIInterfaceRequestor *ctx) = 0;

  /**
   * alertEnteringWeak
   */
  /* void alertEnteringWeak (in nsIInterfaceRequestor ctx); */
  NS_IMETHOD AlertEnteringWeak(nsIInterfaceRequestor *ctx) = 0;

  /**
   * alertLeavingSecure
   */
  /* void alertLeavingSecure (in nsIInterfaceRequestor ctx); */
  NS_IMETHOD AlertLeavingSecure(nsIInterfaceRequestor *ctx) = 0;

  /**
   * alertMixedMode
   */
  /* void alertMixedMode (in nsIInterfaceRequestor ctx); */
  NS_IMETHOD AlertMixedMode(nsIInterfaceRequestor *ctx) = 0;

  /**
   * confirmPostToInsecure
   */
  /* boolean confirmPostToInsecure (in nsIInterfaceRequestor ctx); */
  NS_IMETHOD ConfirmPostToInsecure(nsIInterfaceRequestor *ctx, PRBool *_retval) = 0;

  /**
   * confirmPostToInsecureFromSecure
   */
  /* boolean confirmPostToInsecureFromSecure (in nsIInterfaceRequestor ctx); */
  NS_IMETHOD ConfirmPostToInsecureFromSecure(nsIInterfaceRequestor *ctx, PRBool *_retval) = 0;

};

/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSISECURITYWARNINGDIALOGS \
  NS_IMETHOD AlertEnteringSecure(nsIInterfaceRequestor *ctx); \
  NS_IMETHOD AlertEnteringWeak(nsIInterfaceRequestor *ctx); \
  NS_IMETHOD AlertLeavingSecure(nsIInterfaceRequestor *ctx); \
  NS_IMETHOD AlertMixedMode(nsIInterfaceRequestor *ctx); \
  NS_IMETHOD ConfirmPostToInsecure(nsIInterfaceRequestor *ctx, PRBool *_retval); \
  NS_IMETHOD ConfirmPostToInsecureFromSecure(nsIInterfaceRequestor *ctx, PRBool *_retval); 

/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSISECURITYWARNINGDIALOGS(_to) \
  NS_IMETHOD AlertEnteringSecure(nsIInterfaceRequestor *ctx) { return _to AlertEnteringSecure(ctx); } \
  NS_IMETHOD AlertEnteringWeak(nsIInterfaceRequestor *ctx) { return _to AlertEnteringWeak(ctx); } \
  NS_IMETHOD AlertLeavingSecure(nsIInterfaceRequestor *ctx) { return _to AlertLeavingSecure(ctx); } \
  NS_IMETHOD AlertMixedMode(nsIInterfaceRequestor *ctx) { return _to AlertMixedMode(ctx); } \
  NS_IMETHOD ConfirmPostToInsecure(nsIInterfaceRequestor *ctx, PRBool *_retval) { return _to ConfirmPostToInsecure(ctx, _retval); } \
  NS_IMETHOD ConfirmPostToInsecureFromSecure(nsIInterfaceRequestor *ctx, PRBool *_retval) { return _to ConfirmPostToInsecureFromSecure(ctx, _retval); } 

/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSISECURITYWARNINGDIALOGS(_to) \
  NS_IMETHOD AlertEnteringSecure(nsIInterfaceRequestor *ctx) { return !_to ? NS_ERROR_NULL_POINTER : _to->AlertEnteringSecure(ctx); } \
  NS_IMETHOD AlertEnteringWeak(nsIInterfaceRequestor *ctx) { return !_to ? NS_ERROR_NULL_POINTER : _to->AlertEnteringWeak(ctx); } \
  NS_IMETHOD AlertLeavingSecure(nsIInterfaceRequestor *ctx) { return !_to ? NS_ERROR_NULL_POINTER : _to->AlertLeavingSecure(ctx); } \
  NS_IMETHOD AlertMixedMode(nsIInterfaceRequestor *ctx) { return !_to ? NS_ERROR_NULL_POINTER : _to->AlertMixedMode(ctx); } \
  NS_IMETHOD ConfirmPostToInsecure(nsIInterfaceRequestor *ctx, PRBool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->ConfirmPostToInsecure(ctx, _retval); } \
  NS_IMETHOD ConfirmPostToInsecureFromSecure(nsIInterfaceRequestor *ctx, PRBool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->ConfirmPostToInsecureFromSecure(ctx, _retval); } 

#if 0
/* Use the code below as a template for the implementation class for this interface. */

/* Header file */
class nsSecurityWarningDialogs : public nsISecurityWarningDialogs
{
public:
  NS_DECL_ISUPPORTS
  NS_DECL_NSISECURITYWARNINGDIALOGS

  nsSecurityWarningDialogs();
  virtual ~nsSecurityWarningDialogs();
  /* additional members */
};

/* Implementation file */
NS_IMPL_ISUPPORTS1(nsSecurityWarningDialogs, nsISecurityWarningDialogs)

nsSecurityWarningDialogs::nsSecurityWarningDialogs()
{
  NS_INIT_ISUPPORTS();
  /* member initializers and constructor code */
}

nsSecurityWarningDialogs::~nsSecurityWarningDialogs()
{
  /* destructor code */
}

/* void alertEnteringSecure (in nsIInterfaceRequestor ctx); */
NS_IMETHODIMP nsSecurityWarningDialogs::AlertEnteringSecure(nsIInterfaceRequestor *ctx)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void alertEnteringWeak (in nsIInterfaceRequestor ctx); */
NS_IMETHODIMP nsSecurityWarningDialogs::AlertEnteringWeak(nsIInterfaceRequestor *ctx)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void alertLeavingSecure (in nsIInterfaceRequestor ctx); */
NS_IMETHODIMP nsSecurityWarningDialogs::AlertLeavingSecure(nsIInterfaceRequestor *ctx)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void alertMixedMode (in nsIInterfaceRequestor ctx); */
NS_IMETHODIMP nsSecurityWarningDialogs::AlertMixedMode(nsIInterfaceRequestor *ctx)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* boolean confirmPostToInsecure (in nsIInterfaceRequestor ctx); */
NS_IMETHODIMP nsSecurityWarningDialogs::ConfirmPostToInsecure(nsIInterfaceRequestor *ctx, PRBool *_retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* boolean confirmPostToInsecureFromSecure (in nsIInterfaceRequestor ctx); */
NS_IMETHODIMP nsSecurityWarningDialogs::ConfirmPostToInsecureFromSecure(nsIInterfaceRequestor *ctx, PRBool *_retval)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* End of implementation class template. */
#endif


#endif /* __gen_nsISecurityWarningDialogs_h__ */
