/usr/include/thunderbird-11.0.1/nsIController.h is in thunderbird-dev 11.0.1+build1-0ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM /build/buildd/thunderbird-11.0.1+build1/build-tree/mozilla/mozilla/content/xul/document/public/nsIController.idl
*/
#ifndef __gen_nsIController_h__
#define __gen_nsIController_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
/* starting interface: nsIController */
#define NS_ICONTROLLER_IID_STR "d5b61b82-1da4-11d3-bf87-00105a1b0627"
#define NS_ICONTROLLER_IID \
{0xd5b61b82, 0x1da4, 0x11d3, \
{ 0xbf, 0x87, 0x00, 0x10, 0x5a, 0x1b, 0x06, 0x27 }}
class NS_NO_VTABLE NS_SCRIPTABLE nsIController : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_ICONTROLLER_IID)
/* boolean isCommandEnabled (in string command); */
NS_SCRIPTABLE NS_IMETHOD IsCommandEnabled(const char * command, bool *_retval NS_OUTPARAM) = 0;
/* boolean supportsCommand (in string command); */
NS_SCRIPTABLE NS_IMETHOD SupportsCommand(const char * command, bool *_retval NS_OUTPARAM) = 0;
/* void doCommand (in string command); */
NS_SCRIPTABLE NS_IMETHOD DoCommand(const char * command) = 0;
/* void onEvent (in string eventName); */
NS_SCRIPTABLE NS_IMETHOD OnEvent(const char * eventName) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIController, NS_ICONTROLLER_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSICONTROLLER \
NS_SCRIPTABLE NS_IMETHOD IsCommandEnabled(const char * command, bool *_retval NS_OUTPARAM); \
NS_SCRIPTABLE NS_IMETHOD SupportsCommand(const char * command, bool *_retval NS_OUTPARAM); \
NS_SCRIPTABLE NS_IMETHOD DoCommand(const char * command); \
NS_SCRIPTABLE NS_IMETHOD OnEvent(const char * eventName);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSICONTROLLER(_to) \
NS_SCRIPTABLE NS_IMETHOD IsCommandEnabled(const char * command, bool *_retval NS_OUTPARAM) { return _to IsCommandEnabled(command, _retval); } \
NS_SCRIPTABLE NS_IMETHOD SupportsCommand(const char * command, bool *_retval NS_OUTPARAM) { return _to SupportsCommand(command, _retval); } \
NS_SCRIPTABLE NS_IMETHOD DoCommand(const char * command) { return _to DoCommand(command); } \
NS_SCRIPTABLE NS_IMETHOD OnEvent(const char * eventName) { return _to OnEvent(eventName); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSICONTROLLER(_to) \
NS_SCRIPTABLE NS_IMETHOD IsCommandEnabled(const char * command, bool *_retval NS_OUTPARAM) { return !_to ? NS_ERROR_NULL_POINTER : _to->IsCommandEnabled(command, _retval); } \
NS_SCRIPTABLE NS_IMETHOD SupportsCommand(const char * command, bool *_retval NS_OUTPARAM) { return !_to ? NS_ERROR_NULL_POINTER : _to->SupportsCommand(command, _retval); } \
NS_SCRIPTABLE NS_IMETHOD DoCommand(const char * command) { return !_to ? NS_ERROR_NULL_POINTER : _to->DoCommand(command); } \
NS_SCRIPTABLE NS_IMETHOD OnEvent(const char * eventName) { return !_to ? NS_ERROR_NULL_POINTER : _to->OnEvent(eventName); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsController : public nsIController
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSICONTROLLER
nsController();
private:
~nsController();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsController, nsIController)
nsController::nsController()
{
/* member initializers and constructor code */
}
nsController::~nsController()
{
/* destructor code */
}
/* boolean isCommandEnabled (in string command); */
NS_IMETHODIMP nsController::IsCommandEnabled(const char * command, bool *_retval NS_OUTPARAM)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* boolean supportsCommand (in string command); */
NS_IMETHODIMP nsController::SupportsCommand(const char * command, bool *_retval NS_OUTPARAM)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void doCommand (in string command); */
NS_IMETHODIMP nsController::DoCommand(const char * command)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void onEvent (in string eventName); */
NS_IMETHODIMP nsController::OnEvent(const char * eventName)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
class nsICommandParams; /* forward declaration */
/* starting interface: nsICommandController */
#define NS_ICOMMANDCONTROLLER_IID_STR "ebe55080-c8a9-11d5-a73c-dd620d6e04bc"
#define NS_ICOMMANDCONTROLLER_IID \
{0xebe55080, 0xc8a9, 0x11d5, \
{ 0xa7, 0x3c, 0xdd, 0x62, 0x0d, 0x6e, 0x04, 0xbc }}
class NS_NO_VTABLE NS_SCRIPTABLE nsICommandController : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_ICOMMANDCONTROLLER_IID)
/* void getCommandStateWithParams (in string command, in nsICommandParams aCommandParams); */
NS_SCRIPTABLE NS_IMETHOD GetCommandStateWithParams(const char * command, nsICommandParams *aCommandParams) = 0;
/* void doCommandWithParams (in string command, in nsICommandParams aCommandParams); */
NS_SCRIPTABLE NS_IMETHOD DoCommandWithParams(const char * command, nsICommandParams *aCommandParams) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsICommandController, NS_ICOMMANDCONTROLLER_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSICOMMANDCONTROLLER \
NS_SCRIPTABLE NS_IMETHOD GetCommandStateWithParams(const char * command, nsICommandParams *aCommandParams); \
NS_SCRIPTABLE NS_IMETHOD DoCommandWithParams(const char * command, nsICommandParams *aCommandParams);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSICOMMANDCONTROLLER(_to) \
NS_SCRIPTABLE NS_IMETHOD GetCommandStateWithParams(const char * command, nsICommandParams *aCommandParams) { return _to GetCommandStateWithParams(command, aCommandParams); } \
NS_SCRIPTABLE NS_IMETHOD DoCommandWithParams(const char * command, nsICommandParams *aCommandParams) { return _to DoCommandWithParams(command, aCommandParams); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSICOMMANDCONTROLLER(_to) \
NS_SCRIPTABLE NS_IMETHOD GetCommandStateWithParams(const char * command, nsICommandParams *aCommandParams) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCommandStateWithParams(command, aCommandParams); } \
NS_SCRIPTABLE NS_IMETHOD DoCommandWithParams(const char * command, nsICommandParams *aCommandParams) { return !_to ? NS_ERROR_NULL_POINTER : _to->DoCommandWithParams(command, aCommandParams); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsCommandController : public nsICommandController
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSICOMMANDCONTROLLER
nsCommandController();
private:
~nsCommandController();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsCommandController, nsICommandController)
nsCommandController::nsCommandController()
{
/* member initializers and constructor code */
}
nsCommandController::~nsCommandController()
{
/* destructor code */
}
/* void getCommandStateWithParams (in string command, in nsICommandParams aCommandParams); */
NS_IMETHODIMP nsCommandController::GetCommandStateWithParams(const char * command, nsICommandParams *aCommandParams)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void doCommandWithParams (in string command, in nsICommandParams aCommandParams); */
NS_IMETHODIMP nsCommandController::DoCommandWithParams(const char * command, nsICommandParams *aCommandParams)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
class nsISimpleEnumerator; /* forward declaration */
/* starting interface: nsIControllerCommandGroup */
#define NS_ICONTROLLERCOMMANDGROUP_IID_STR "9f82c404-1c7b-11d5-a73c-eca43ca836fc"
#define NS_ICONTROLLERCOMMANDGROUP_IID \
{0x9f82c404, 0x1c7b, 0x11d5, \
{ 0xa7, 0x3c, 0xec, 0xa4, 0x3c, 0xa8, 0x36, 0xfc }}
class NS_NO_VTABLE NS_SCRIPTABLE nsIControllerCommandGroup : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_ICONTROLLERCOMMANDGROUP_IID)
/* void addCommandToGroup (in string aCommand, in string aGroup); */
NS_SCRIPTABLE NS_IMETHOD AddCommandToGroup(const char * aCommand, const char * aGroup) = 0;
/* void removeCommandFromGroup (in string aCommand, in string aGroup); */
NS_SCRIPTABLE NS_IMETHOD RemoveCommandFromGroup(const char * aCommand, const char * aGroup) = 0;
/* boolean isCommandInGroup (in string aCommand, in string aGroup); */
NS_SCRIPTABLE NS_IMETHOD IsCommandInGroup(const char * aCommand, const char * aGroup, bool *_retval NS_OUTPARAM) = 0;
/* nsISimpleEnumerator getGroupsEnumerator (); */
NS_SCRIPTABLE NS_IMETHOD GetGroupsEnumerator(nsISimpleEnumerator * *_retval NS_OUTPARAM) = 0;
/* nsISimpleEnumerator getEnumeratorForGroup (in string aGroup); */
NS_SCRIPTABLE NS_IMETHOD GetEnumeratorForGroup(const char * aGroup, nsISimpleEnumerator * *_retval NS_OUTPARAM) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIControllerCommandGroup, NS_ICONTROLLERCOMMANDGROUP_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSICONTROLLERCOMMANDGROUP \
NS_SCRIPTABLE NS_IMETHOD AddCommandToGroup(const char * aCommand, const char * aGroup); \
NS_SCRIPTABLE NS_IMETHOD RemoveCommandFromGroup(const char * aCommand, const char * aGroup); \
NS_SCRIPTABLE NS_IMETHOD IsCommandInGroup(const char * aCommand, const char * aGroup, bool *_retval NS_OUTPARAM); \
NS_SCRIPTABLE NS_IMETHOD GetGroupsEnumerator(nsISimpleEnumerator * *_retval NS_OUTPARAM); \
NS_SCRIPTABLE NS_IMETHOD GetEnumeratorForGroup(const char * aGroup, nsISimpleEnumerator * *_retval NS_OUTPARAM);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSICONTROLLERCOMMANDGROUP(_to) \
NS_SCRIPTABLE NS_IMETHOD AddCommandToGroup(const char * aCommand, const char * aGroup) { return _to AddCommandToGroup(aCommand, aGroup); } \
NS_SCRIPTABLE NS_IMETHOD RemoveCommandFromGroup(const char * aCommand, const char * aGroup) { return _to RemoveCommandFromGroup(aCommand, aGroup); } \
NS_SCRIPTABLE NS_IMETHOD IsCommandInGroup(const char * aCommand, const char * aGroup, bool *_retval NS_OUTPARAM) { return _to IsCommandInGroup(aCommand, aGroup, _retval); } \
NS_SCRIPTABLE NS_IMETHOD GetGroupsEnumerator(nsISimpleEnumerator * *_retval NS_OUTPARAM) { return _to GetGroupsEnumerator(_retval); } \
NS_SCRIPTABLE NS_IMETHOD GetEnumeratorForGroup(const char * aGroup, nsISimpleEnumerator * *_retval NS_OUTPARAM) { return _to GetEnumeratorForGroup(aGroup, _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_NSICONTROLLERCOMMANDGROUP(_to) \
NS_SCRIPTABLE NS_IMETHOD AddCommandToGroup(const char * aCommand, const char * aGroup) { return !_to ? NS_ERROR_NULL_POINTER : _to->AddCommandToGroup(aCommand, aGroup); } \
NS_SCRIPTABLE NS_IMETHOD RemoveCommandFromGroup(const char * aCommand, const char * aGroup) { return !_to ? NS_ERROR_NULL_POINTER : _to->RemoveCommandFromGroup(aCommand, aGroup); } \
NS_SCRIPTABLE NS_IMETHOD IsCommandInGroup(const char * aCommand, const char * aGroup, bool *_retval NS_OUTPARAM) { return !_to ? NS_ERROR_NULL_POINTER : _to->IsCommandInGroup(aCommand, aGroup, _retval); } \
NS_SCRIPTABLE NS_IMETHOD GetGroupsEnumerator(nsISimpleEnumerator * *_retval NS_OUTPARAM) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetGroupsEnumerator(_retval); } \
NS_SCRIPTABLE NS_IMETHOD GetEnumeratorForGroup(const char * aGroup, nsISimpleEnumerator * *_retval NS_OUTPARAM) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetEnumeratorForGroup(aGroup, _retval); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsControllerCommandGroup : public nsIControllerCommandGroup
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSICONTROLLERCOMMANDGROUP
nsControllerCommandGroup();
private:
~nsControllerCommandGroup();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsControllerCommandGroup, nsIControllerCommandGroup)
nsControllerCommandGroup::nsControllerCommandGroup()
{
/* member initializers and constructor code */
}
nsControllerCommandGroup::~nsControllerCommandGroup()
{
/* destructor code */
}
/* void addCommandToGroup (in string aCommand, in string aGroup); */
NS_IMETHODIMP nsControllerCommandGroup::AddCommandToGroup(const char * aCommand, const char * aGroup)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void removeCommandFromGroup (in string aCommand, in string aGroup); */
NS_IMETHODIMP nsControllerCommandGroup::RemoveCommandFromGroup(const char * aCommand, const char * aGroup)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* boolean isCommandInGroup (in string aCommand, in string aGroup); */
NS_IMETHODIMP nsControllerCommandGroup::IsCommandInGroup(const char * aCommand, const char * aGroup, bool *_retval NS_OUTPARAM)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* nsISimpleEnumerator getGroupsEnumerator (); */
NS_IMETHODIMP nsControllerCommandGroup::GetGroupsEnumerator(nsISimpleEnumerator * *_retval NS_OUTPARAM)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* nsISimpleEnumerator getEnumeratorForGroup (in string aGroup); */
NS_IMETHODIMP nsControllerCommandGroup::GetEnumeratorForGroup(const char * aGroup, nsISimpleEnumerator * *_retval NS_OUTPARAM)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIController_h__ */
|