/
BirdLeon
/
ROBLOX2016
Обзор
Документация
Войти
/
BirdLeon
/
ROBLOX2016
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
Library/xulrunner/include/commandhandler/nsIControllerContext.h
125 строк
4 KB
PatoFlamejanteTV
full source code
19 дек 2024, 19:11
19 дек 2024, 19:11
05db15d
Код
Авторство
О чём код?
/* * DO NOT EDIT. THIS FILE IS GENERATED FROM e:/xr19rel/WINNT_5.2_Depend/mozilla/embedding/components/commandhandler/public/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__ */