/usr/include/thunderbird/nsIFocusManager.h is in thunderbird-dev 1:38.6.0+build1-0ubuntu1.
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 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIFocusManager.idl
*/
#ifndef __gen_nsIFocusManager_h__
#define __gen_nsIFocusManager_h__
#ifndef __gen_domstubs_h__
#include "domstubs.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
class nsIDocument; /* forward declaration */
class nsIContent; /* forward declaration */
/* starting interface: nsIFocusManager */
#define NS_IFOCUSMANAGER_IID_STR "c0716002-5602-4002-a0de-cc69b924b2c6"
#define NS_IFOCUSMANAGER_IID \
{0xc0716002, 0x5602, 0x4002, \
{ 0xa0, 0xde, 0xcc, 0x69, 0xb9, 0x24, 0xb2, 0xc6 }}
class NS_NO_VTABLE nsIFocusManager : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IFOCUSMANAGER_IID)
/* attribute nsIDOMWindow activeWindow; */
NS_IMETHOD GetActiveWindow(nsIDOMWindow * *aActiveWindow) = 0;
NS_IMETHOD SetActiveWindow(nsIDOMWindow *aActiveWindow) = 0;
/* attribute nsIDOMWindow focusedWindow; */
NS_IMETHOD GetFocusedWindow(nsIDOMWindow * *aFocusedWindow) = 0;
NS_IMETHOD SetFocusedWindow(nsIDOMWindow *aFocusedWindow) = 0;
/* readonly attribute nsIDOMElement focusedElement; */
NS_IMETHOD GetFocusedElement(nsIDOMElement * *aFocusedElement) = 0;
/* uint32_t getLastFocusMethod (in nsIDOMWindow window); */
NS_IMETHOD GetLastFocusMethod(nsIDOMWindow *window, uint32_t *_retval) = 0;
/* void setFocus (in nsIDOMElement aElement, in unsigned long aFlags); */
NS_IMETHOD SetFocus(nsIDOMElement *aElement, uint32_t aFlags) = 0;
/* nsIDOMElement moveFocus (in nsIDOMWindow aWindow, in nsIDOMElement aStartElement, in unsigned long aType, in unsigned long aFlags); */
NS_IMETHOD MoveFocus(nsIDOMWindow *aWindow, nsIDOMElement *aStartElement, uint32_t aType, uint32_t aFlags, nsIDOMElement * *_retval) = 0;
/* void clearFocus (in nsIDOMWindow aWindow); */
NS_IMETHOD ClearFocus(nsIDOMWindow *aWindow) = 0;
/* nsIDOMElement getFocusedElementForWindow (in nsIDOMWindow aWindow, in boolean aDeep, out nsIDOMWindow aFocusedWindow); */
NS_IMETHOD GetFocusedElementForWindow(nsIDOMWindow *aWindow, bool aDeep, nsIDOMWindow * *aFocusedWindow, nsIDOMElement * *_retval) = 0;
/* void moveCaretToFocus (in nsIDOMWindow aWindow); */
NS_IMETHOD MoveCaretToFocus(nsIDOMWindow *aWindow) = 0;
/* boolean elementIsFocusable (in nsIDOMElement aElement, in unsigned long aFlags); */
NS_IMETHOD ElementIsFocusable(nsIDOMElement *aElement, uint32_t aFlags, bool *_retval) = 0;
enum {
FLAG_RAISE = 1U,
FLAG_NOSCROLL = 2U,
FLAG_NOSWITCHFRAME = 4U,
FLAG_NOPARENTFRAME = 8U,
FLAG_BYMOUSE = 4096U,
FLAG_BYKEY = 8192U,
FLAG_BYMOVEFOCUS = 16384U,
FLAG_SHOWRING = 1048576U,
MOVEFOCUS_FORWARD = 1U,
MOVEFOCUS_BACKWARD = 2U,
MOVEFOCUS_FORWARDDOC = 3U,
MOVEFOCUS_BACKWARDDOC = 4U,
MOVEFOCUS_FIRST = 5U,
MOVEFOCUS_LAST = 6U,
MOVEFOCUS_ROOT = 7U,
MOVEFOCUS_CARET = 8U
};
/* [noscript] void windowRaised (in nsIDOMWindow aWindow); */
NS_IMETHOD WindowRaised(nsIDOMWindow *aWindow) = 0;
/* [noscript] void windowLowered (in nsIDOMWindow aWindow); */
NS_IMETHOD WindowLowered(nsIDOMWindow *aWindow) = 0;
/* [noscript] void windowShown (in nsIDOMWindow aWindow, in boolean aNeedsFocus); */
NS_IMETHOD WindowShown(nsIDOMWindow *aWindow, bool aNeedsFocus) = 0;
/* [noscript] void windowHidden (in nsIDOMWindow aWindow); */
NS_IMETHOD WindowHidden(nsIDOMWindow *aWindow) = 0;
/* [noscript] void fireDelayedEvents (in nsIDocument aDocument); */
NS_IMETHOD FireDelayedEvents(nsIDocument *aDocument) = 0;
/* [noscript] void focusPlugin (in nsIContent aPlugin); */
NS_IMETHOD FocusPlugin(nsIContent *aPlugin) = 0;
/* [noscript] void parentActivated (in nsIDOMWindow aWindow, in bool active); */
NS_IMETHOD ParentActivated(nsIDOMWindow *aWindow, bool active) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIFocusManager, NS_IFOCUSMANAGER_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIFOCUSMANAGER \
NS_IMETHOD GetActiveWindow(nsIDOMWindow * *aActiveWindow) override; \
NS_IMETHOD SetActiveWindow(nsIDOMWindow *aActiveWindow) override; \
NS_IMETHOD GetFocusedWindow(nsIDOMWindow * *aFocusedWindow) override; \
NS_IMETHOD SetFocusedWindow(nsIDOMWindow *aFocusedWindow) override; \
NS_IMETHOD GetFocusedElement(nsIDOMElement * *aFocusedElement) override; \
NS_IMETHOD GetLastFocusMethod(nsIDOMWindow *window, uint32_t *_retval) override; \
NS_IMETHOD SetFocus(nsIDOMElement *aElement, uint32_t aFlags) override; \
NS_IMETHOD MoveFocus(nsIDOMWindow *aWindow, nsIDOMElement *aStartElement, uint32_t aType, uint32_t aFlags, nsIDOMElement * *_retval) override; \
NS_IMETHOD ClearFocus(nsIDOMWindow *aWindow) override; \
NS_IMETHOD GetFocusedElementForWindow(nsIDOMWindow *aWindow, bool aDeep, nsIDOMWindow * *aFocusedWindow, nsIDOMElement * *_retval) override; \
NS_IMETHOD MoveCaretToFocus(nsIDOMWindow *aWindow) override; \
NS_IMETHOD ElementIsFocusable(nsIDOMElement *aElement, uint32_t aFlags, bool *_retval) override; \
NS_IMETHOD WindowRaised(nsIDOMWindow *aWindow) override; \
NS_IMETHOD WindowLowered(nsIDOMWindow *aWindow) override; \
NS_IMETHOD WindowShown(nsIDOMWindow *aWindow, bool aNeedsFocus) override; \
NS_IMETHOD WindowHidden(nsIDOMWindow *aWindow) override; \
NS_IMETHOD FireDelayedEvents(nsIDocument *aDocument) override; \
NS_IMETHOD FocusPlugin(nsIContent *aPlugin) override; \
NS_IMETHOD ParentActivated(nsIDOMWindow *aWindow, bool active) override;
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIFOCUSMANAGER(_to) \
NS_IMETHOD GetActiveWindow(nsIDOMWindow * *aActiveWindow) override { return _to GetActiveWindow(aActiveWindow); } \
NS_IMETHOD SetActiveWindow(nsIDOMWindow *aActiveWindow) override { return _to SetActiveWindow(aActiveWindow); } \
NS_IMETHOD GetFocusedWindow(nsIDOMWindow * *aFocusedWindow) override { return _to GetFocusedWindow(aFocusedWindow); } \
NS_IMETHOD SetFocusedWindow(nsIDOMWindow *aFocusedWindow) override { return _to SetFocusedWindow(aFocusedWindow); } \
NS_IMETHOD GetFocusedElement(nsIDOMElement * *aFocusedElement) override { return _to GetFocusedElement(aFocusedElement); } \
NS_IMETHOD GetLastFocusMethod(nsIDOMWindow *window, uint32_t *_retval) override { return _to GetLastFocusMethod(window, _retval); } \
NS_IMETHOD SetFocus(nsIDOMElement *aElement, uint32_t aFlags) override { return _to SetFocus(aElement, aFlags); } \
NS_IMETHOD MoveFocus(nsIDOMWindow *aWindow, nsIDOMElement *aStartElement, uint32_t aType, uint32_t aFlags, nsIDOMElement * *_retval) override { return _to MoveFocus(aWindow, aStartElement, aType, aFlags, _retval); } \
NS_IMETHOD ClearFocus(nsIDOMWindow *aWindow) override { return _to ClearFocus(aWindow); } \
NS_IMETHOD GetFocusedElementForWindow(nsIDOMWindow *aWindow, bool aDeep, nsIDOMWindow * *aFocusedWindow, nsIDOMElement * *_retval) override { return _to GetFocusedElementForWindow(aWindow, aDeep, aFocusedWindow, _retval); } \
NS_IMETHOD MoveCaretToFocus(nsIDOMWindow *aWindow) override { return _to MoveCaretToFocus(aWindow); } \
NS_IMETHOD ElementIsFocusable(nsIDOMElement *aElement, uint32_t aFlags, bool *_retval) override { return _to ElementIsFocusable(aElement, aFlags, _retval); } \
NS_IMETHOD WindowRaised(nsIDOMWindow *aWindow) override { return _to WindowRaised(aWindow); } \
NS_IMETHOD WindowLowered(nsIDOMWindow *aWindow) override { return _to WindowLowered(aWindow); } \
NS_IMETHOD WindowShown(nsIDOMWindow *aWindow, bool aNeedsFocus) override { return _to WindowShown(aWindow, aNeedsFocus); } \
NS_IMETHOD WindowHidden(nsIDOMWindow *aWindow) override { return _to WindowHidden(aWindow); } \
NS_IMETHOD FireDelayedEvents(nsIDocument *aDocument) override { return _to FireDelayedEvents(aDocument); } \
NS_IMETHOD FocusPlugin(nsIContent *aPlugin) override { return _to FocusPlugin(aPlugin); } \
NS_IMETHOD ParentActivated(nsIDOMWindow *aWindow, bool active) override { return _to ParentActivated(aWindow, active); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIFOCUSMANAGER(_to) \
NS_IMETHOD GetActiveWindow(nsIDOMWindow * *aActiveWindow) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetActiveWindow(aActiveWindow); } \
NS_IMETHOD SetActiveWindow(nsIDOMWindow *aActiveWindow) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetActiveWindow(aActiveWindow); } \
NS_IMETHOD GetFocusedWindow(nsIDOMWindow * *aFocusedWindow) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetFocusedWindow(aFocusedWindow); } \
NS_IMETHOD SetFocusedWindow(nsIDOMWindow *aFocusedWindow) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetFocusedWindow(aFocusedWindow); } \
NS_IMETHOD GetFocusedElement(nsIDOMElement * *aFocusedElement) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetFocusedElement(aFocusedElement); } \
NS_IMETHOD GetLastFocusMethod(nsIDOMWindow *window, uint32_t *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetLastFocusMethod(window, _retval); } \
NS_IMETHOD SetFocus(nsIDOMElement *aElement, uint32_t aFlags) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetFocus(aElement, aFlags); } \
NS_IMETHOD MoveFocus(nsIDOMWindow *aWindow, nsIDOMElement *aStartElement, uint32_t aType, uint32_t aFlags, nsIDOMElement * *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->MoveFocus(aWindow, aStartElement, aType, aFlags, _retval); } \
NS_IMETHOD ClearFocus(nsIDOMWindow *aWindow) override { return !_to ? NS_ERROR_NULL_POINTER : _to->ClearFocus(aWindow); } \
NS_IMETHOD GetFocusedElementForWindow(nsIDOMWindow *aWindow, bool aDeep, nsIDOMWindow * *aFocusedWindow, nsIDOMElement * *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetFocusedElementForWindow(aWindow, aDeep, aFocusedWindow, _retval); } \
NS_IMETHOD MoveCaretToFocus(nsIDOMWindow *aWindow) override { return !_to ? NS_ERROR_NULL_POINTER : _to->MoveCaretToFocus(aWindow); } \
NS_IMETHOD ElementIsFocusable(nsIDOMElement *aElement, uint32_t aFlags, bool *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->ElementIsFocusable(aElement, aFlags, _retval); } \
NS_IMETHOD WindowRaised(nsIDOMWindow *aWindow) override { return !_to ? NS_ERROR_NULL_POINTER : _to->WindowRaised(aWindow); } \
NS_IMETHOD WindowLowered(nsIDOMWindow *aWindow) override { return !_to ? NS_ERROR_NULL_POINTER : _to->WindowLowered(aWindow); } \
NS_IMETHOD WindowShown(nsIDOMWindow *aWindow, bool aNeedsFocus) override { return !_to ? NS_ERROR_NULL_POINTER : _to->WindowShown(aWindow, aNeedsFocus); } \
NS_IMETHOD WindowHidden(nsIDOMWindow *aWindow) override { return !_to ? NS_ERROR_NULL_POINTER : _to->WindowHidden(aWindow); } \
NS_IMETHOD FireDelayedEvents(nsIDocument *aDocument) override { return !_to ? NS_ERROR_NULL_POINTER : _to->FireDelayedEvents(aDocument); } \
NS_IMETHOD FocusPlugin(nsIContent *aPlugin) override { return !_to ? NS_ERROR_NULL_POINTER : _to->FocusPlugin(aPlugin); } \
NS_IMETHOD ParentActivated(nsIDOMWindow *aWindow, bool active) override { return !_to ? NS_ERROR_NULL_POINTER : _to->ParentActivated(aWindow, active); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsFocusManager : public nsIFocusManager
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIFOCUSMANAGER
nsFocusManager();
private:
~nsFocusManager();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsFocusManager, nsIFocusManager)
nsFocusManager::nsFocusManager()
{
/* member initializers and constructor code */
}
nsFocusManager::~nsFocusManager()
{
/* destructor code */
}
/* attribute nsIDOMWindow activeWindow; */
NS_IMETHODIMP nsFocusManager::GetActiveWindow(nsIDOMWindow * *aActiveWindow)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsFocusManager::SetActiveWindow(nsIDOMWindow *aActiveWindow)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute nsIDOMWindow focusedWindow; */
NS_IMETHODIMP nsFocusManager::GetFocusedWindow(nsIDOMWindow * *aFocusedWindow)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsFocusManager::SetFocusedWindow(nsIDOMWindow *aFocusedWindow)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIDOMElement focusedElement; */
NS_IMETHODIMP nsFocusManager::GetFocusedElement(nsIDOMElement * *aFocusedElement)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* uint32_t getLastFocusMethod (in nsIDOMWindow window); */
NS_IMETHODIMP nsFocusManager::GetLastFocusMethod(nsIDOMWindow *window, uint32_t *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void setFocus (in nsIDOMElement aElement, in unsigned long aFlags); */
NS_IMETHODIMP nsFocusManager::SetFocus(nsIDOMElement *aElement, uint32_t aFlags)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* nsIDOMElement moveFocus (in nsIDOMWindow aWindow, in nsIDOMElement aStartElement, in unsigned long aType, in unsigned long aFlags); */
NS_IMETHODIMP nsFocusManager::MoveFocus(nsIDOMWindow *aWindow, nsIDOMElement *aStartElement, uint32_t aType, uint32_t aFlags, nsIDOMElement * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void clearFocus (in nsIDOMWindow aWindow); */
NS_IMETHODIMP nsFocusManager::ClearFocus(nsIDOMWindow *aWindow)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* nsIDOMElement getFocusedElementForWindow (in nsIDOMWindow aWindow, in boolean aDeep, out nsIDOMWindow aFocusedWindow); */
NS_IMETHODIMP nsFocusManager::GetFocusedElementForWindow(nsIDOMWindow *aWindow, bool aDeep, nsIDOMWindow * *aFocusedWindow, nsIDOMElement * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void moveCaretToFocus (in nsIDOMWindow aWindow); */
NS_IMETHODIMP nsFocusManager::MoveCaretToFocus(nsIDOMWindow *aWindow)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* boolean elementIsFocusable (in nsIDOMElement aElement, in unsigned long aFlags); */
NS_IMETHODIMP nsFocusManager::ElementIsFocusable(nsIDOMElement *aElement, uint32_t aFlags, bool *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [noscript] void windowRaised (in nsIDOMWindow aWindow); */
NS_IMETHODIMP nsFocusManager::WindowRaised(nsIDOMWindow *aWindow)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [noscript] void windowLowered (in nsIDOMWindow aWindow); */
NS_IMETHODIMP nsFocusManager::WindowLowered(nsIDOMWindow *aWindow)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [noscript] void windowShown (in nsIDOMWindow aWindow, in boolean aNeedsFocus); */
NS_IMETHODIMP nsFocusManager::WindowShown(nsIDOMWindow *aWindow, bool aNeedsFocus)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [noscript] void windowHidden (in nsIDOMWindow aWindow); */
NS_IMETHODIMP nsFocusManager::WindowHidden(nsIDOMWindow *aWindow)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [noscript] void fireDelayedEvents (in nsIDocument aDocument); */
NS_IMETHODIMP nsFocusManager::FireDelayedEvents(nsIDocument *aDocument)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [noscript] void focusPlugin (in nsIContent aPlugin); */
NS_IMETHODIMP nsFocusManager::FocusPlugin(nsIContent *aPlugin)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [noscript] void parentActivated (in nsIDOMWindow aWindow, in bool active); */
NS_IMETHODIMP nsFocusManager::ParentActivated(nsIDOMWindow *aWindow, bool active)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIFocusManager_h__ */
|