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

#ifndef __gen_nsIMsgPrintEngine_h__
#define __gen_nsIMsgPrintEngine_h__


#ifndef __gen_nsrootidl_h__
#include "nsrootidl.h"
#endif

#ifndef __gen_nsIMsgStatusFeedback_h__
#include "nsIMsgStatusFeedback.h"
#endif

/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
class nsIDOMWindowInternal; /* forward declaration */

class nsIPrintSettings; /* forward declaration */


/* starting interface:    nsIMsgPrintEngine */
#define NS_IMSGPRINTENGINE_IID_STR "91fd6b10-e0bc-11d3-8f97-000064657374"

#define NS_IMSGPRINTENGINE_IID \
  {0x91fd6b10, 0xe0bc, 0x11d3, \
    { 0x8f, 0x97, 0x00, 0x00, 0x64, 0x65, 0x73, 0x74 }}

class NS_NO_VTABLE nsIMsgPrintEngine : public nsISupports {
 public: 

  NS_DEFINE_STATIC_IID_ACCESSOR(NS_IMSGPRINTENGINE_IID)

  /* void setWindow (in nsIDOMWindowInternal ptr); */
  NS_IMETHOD SetWindow(nsIDOMWindowInternal *ptr) = 0;

  /* void showWindow (in boolean aShow); */
  NS_IMETHOD ShowWindow(PRBool aShow) = 0;

  /* void setStatusFeedback (in nsIMsgStatusFeedback feedback); */
  NS_IMETHOD SetStatusFeedback(nsIMsgStatusFeedback *feedback) = 0;

  /* void setPrintURICount (in PRInt32 aCount); */
  NS_IMETHOD SetPrintURICount(PRInt32 aCount) = 0;

  /* void addPrintURI (in wstring aURI); */
  NS_IMETHOD AddPrintURI(const PRUnichar *aURI) = 0;

  /* void startPrintOperation (in nsIPrintSettings aPS); */
  NS_IMETHOD StartPrintOperation(nsIPrintSettings *aPS) = 0;

};

/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIMSGPRINTENGINE \
  NS_IMETHOD SetWindow(nsIDOMWindowInternal *ptr); \
  NS_IMETHOD ShowWindow(PRBool aShow); \
  NS_IMETHOD SetStatusFeedback(nsIMsgStatusFeedback *feedback); \
  NS_IMETHOD SetPrintURICount(PRInt32 aCount); \
  NS_IMETHOD AddPrintURI(const PRUnichar *aURI); \
  NS_IMETHOD StartPrintOperation(nsIPrintSettings *aPS); 

/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIMSGPRINTENGINE(_to) \
  NS_IMETHOD SetWindow(nsIDOMWindowInternal *ptr) { return _to SetWindow(ptr); } \
  NS_IMETHOD ShowWindow(PRBool aShow) { return _to ShowWindow(aShow); } \
  NS_IMETHOD SetStatusFeedback(nsIMsgStatusFeedback *feedback) { return _to SetStatusFeedback(feedback); } \
  NS_IMETHOD SetPrintURICount(PRInt32 aCount) { return _to SetPrintURICount(aCount); } \
  NS_IMETHOD AddPrintURI(const PRUnichar *aURI) { return _to AddPrintURI(aURI); } \
  NS_IMETHOD StartPrintOperation(nsIPrintSettings *aPS) { return _to StartPrintOperation(aPS); } 

/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIMSGPRINTENGINE(_to) \
  NS_IMETHOD SetWindow(nsIDOMWindowInternal *ptr) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetWindow(ptr); } \
  NS_IMETHOD ShowWindow(PRBool aShow) { return !_to ? NS_ERROR_NULL_POINTER : _to->ShowWindow(aShow); } \
  NS_IMETHOD SetStatusFeedback(nsIMsgStatusFeedback *feedback) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetStatusFeedback(feedback); } \
  NS_IMETHOD SetPrintURICount(PRInt32 aCount) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetPrintURICount(aCount); } \
  NS_IMETHOD AddPrintURI(const PRUnichar *aURI) { return !_to ? NS_ERROR_NULL_POINTER : _to->AddPrintURI(aURI); } \
  NS_IMETHOD StartPrintOperation(nsIPrintSettings *aPS) { return !_to ? NS_ERROR_NULL_POINTER : _to->StartPrintOperation(aPS); } 

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

/* Header file */
class nsMsgPrintEngine : public nsIMsgPrintEngine
{
public:
  NS_DECL_ISUPPORTS
  NS_DECL_NSIMSGPRINTENGINE

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

/* Implementation file */
NS_IMPL_ISUPPORTS1(nsMsgPrintEngine, nsIMsgPrintEngine)

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

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

/* void setWindow (in nsIDOMWindowInternal ptr); */
NS_IMETHODIMP nsMsgPrintEngine::SetWindow(nsIDOMWindowInternal *ptr)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void showWindow (in boolean aShow); */
NS_IMETHODIMP nsMsgPrintEngine::ShowWindow(PRBool aShow)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void setStatusFeedback (in nsIMsgStatusFeedback feedback); */
NS_IMETHODIMP nsMsgPrintEngine::SetStatusFeedback(nsIMsgStatusFeedback *feedback)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void setPrintURICount (in PRInt32 aCount); */
NS_IMETHODIMP nsMsgPrintEngine::SetPrintURICount(PRInt32 aCount)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void addPrintURI (in wstring aURI); */
NS_IMETHODIMP nsMsgPrintEngine::AddPrintURI(const PRUnichar *aURI)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

/* void startPrintOperation (in nsIPrintSettings aPS); */
NS_IMETHODIMP nsMsgPrintEngine::StartPrintOperation(nsIPrintSettings *aPS)
{
    return NS_ERROR_NOT_IMPLEMENTED;
}

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


#endif /* __gen_nsIMsgPrintEngine_h__ */
