| Server IP : 182.53.201.61 / Your IP : 216.73.217.175 Web Server : Apache/2.2.15 (Fedora) System : Linux km10.dyndns.org 2.6.31.5-127.fc12.i686.PAE #1 SMP Sat Nov 7 21:25:57 EST 2009 i686 User : apache ( 48) PHP Version : 5.3.3 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/26998/root/usr/include/xulrunner-sdk-1.9.1/commandhandler/ |
Upload File : |
/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM nsIControllerContext.idl
*/
#ifndef __gen_nsIControllerContext_h__
#define __gen_nsIControllerContext_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
#ifndef __gen_nsIControllerCommandTable_h__
#include "nsIControllerCommandTable.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: nsIControllerContext */
#define NS_ICONTROLLERCONTEXT_IID_STR "47b82b60-a36f-4167-8072-6f421151ed50"
#define NS_ICONTROLLERCONTEXT_IID \
{0x47b82b60, 0xa36f, 0x4167, \
{ 0x80, 0x72, 0x6f, 0x42, 0x11, 0x51, 0xed, 0x50 }}
class NS_NO_VTABLE NS_SCRIPTABLE nsIControllerContext : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_ICONTROLLERCONTEXT_IID)
/**
* Init the controller, optionally passing a controller
* command table.
*
* @param aCommandTable a command table, used internally
* by this controller. May be null, in
* which case the controller will create
* a new, empty table.
*/
/* void init (in nsIControllerCommandTable aCommandTable); */
NS_SCRIPTABLE NS_IMETHOD Init(nsIControllerCommandTable *aCommandTable) = 0;
/**
* Set a context on this controller, which is passed
* to commands to give them some context when they execute.
*
* @param aCommandContext the context passed to commands.
* Note that this is *not* addreffed by the
* controller, and so needs to outlive it,
* or be nulled out.
*/
/* void setCommandContext (in nsISupports aCommandContext); */
NS_SCRIPTABLE NS_IMETHOD SetCommandContext(nsISupports *aCommandContext) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIControllerContext, NS_ICONTROLLERCONTEXT_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSICONTROLLERCONTEXT \
NS_SCRIPTABLE NS_IMETHOD Init(nsIControllerCommandTable *aCommandTable); \
NS_SCRIPTABLE NS_IMETHOD SetCommandContext(nsISupports *aCommandContext);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSICONTROLLERCONTEXT(_to) \
NS_SCRIPTABLE NS_IMETHOD Init(nsIControllerCommandTable *aCommandTable) { return _to Init(aCommandTable); } \
NS_SCRIPTABLE NS_IMETHOD SetCommandContext(nsISupports *aCommandContext) { return _to SetCommandContext(aCommandContext); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSICONTROLLERCONTEXT(_to) \
NS_SCRIPTABLE NS_IMETHOD Init(nsIControllerCommandTable *aCommandTable) { return !_to ? NS_ERROR_NULL_POINTER : _to->Init(aCommandTable); } \
NS_SCRIPTABLE NS_IMETHOD SetCommandContext(nsISupports *aCommandContext) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetCommandContext(aCommandContext); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsControllerContext : public nsIControllerContext
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSICONTROLLERCONTEXT
nsControllerContext();
private:
~nsControllerContext();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsControllerContext, nsIControllerContext)
nsControllerContext::nsControllerContext()
{
/* member initializers and constructor code */
}
nsControllerContext::~nsControllerContext()
{
/* destructor code */
}
/* void init (in nsIControllerCommandTable aCommandTable); */
NS_IMETHODIMP nsControllerContext::Init(nsIControllerCommandTable *aCommandTable)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void setCommandContext (in nsISupports aCommandContext); */
NS_IMETHODIMP nsControllerContext::SetCommandContext(nsISupports *aCommandContext)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIControllerContext_h__ */