/usr/include/thunderbird/nsIHTMLInlineTableEditor.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 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIHTMLInlineTableEditor.idl
*/
#ifndef __gen_nsIHTMLInlineTableEditor_h__
#define __gen_nsIHTMLInlineTableEditor_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
#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
/* starting interface: nsIHTMLInlineTableEditor */
#define NS_IHTMLINLINETABLEEDITOR_IID_STR "eda2e65c-a758-451f-9b05-77cb8de74ed2"
#define NS_IHTMLINLINETABLEEDITOR_IID \
{0xeda2e65c, 0xa758, 0x451f, \
{ 0x9b, 0x05, 0x77, 0xcb, 0x8d, 0xe7, 0x4e, 0xd2 }}
class NS_NO_VTABLE nsIHTMLInlineTableEditor : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IHTMLINLINETABLEEDITOR_IID)
/* attribute boolean inlineTableEditingEnabled; */
NS_IMETHOD GetInlineTableEditingEnabled(bool *aInlineTableEditingEnabled) = 0;
NS_IMETHOD SetInlineTableEditingEnabled(bool aInlineTableEditingEnabled) = 0;
/* void showInlineTableEditingUI (in nsIDOMElement aCell); */
NS_IMETHOD ShowInlineTableEditingUI(nsIDOMElement *aCell) = 0;
/* void hideInlineTableEditingUI (); */
NS_IMETHOD HideInlineTableEditingUI(void) = 0;
/* void doInlineTableEditingAction (in nsIDOMElement aUIAnonymousElement); */
NS_IMETHOD DoInlineTableEditingAction(nsIDOMElement *aUIAnonymousElement) = 0;
/* void refreshInlineTableEditingUI (); */
NS_IMETHOD RefreshInlineTableEditingUI(void) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIHTMLInlineTableEditor, NS_IHTMLINLINETABLEEDITOR_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIHTMLINLINETABLEEDITOR \
NS_IMETHOD GetInlineTableEditingEnabled(bool *aInlineTableEditingEnabled) override; \
NS_IMETHOD SetInlineTableEditingEnabled(bool aInlineTableEditingEnabled) override; \
NS_IMETHOD ShowInlineTableEditingUI(nsIDOMElement *aCell) override; \
NS_IMETHOD HideInlineTableEditingUI(void) override; \
NS_IMETHOD DoInlineTableEditingAction(nsIDOMElement *aUIAnonymousElement) override; \
NS_IMETHOD RefreshInlineTableEditingUI(void) override;
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIHTMLINLINETABLEEDITOR(_to) \
NS_IMETHOD GetInlineTableEditingEnabled(bool *aInlineTableEditingEnabled) override { return _to GetInlineTableEditingEnabled(aInlineTableEditingEnabled); } \
NS_IMETHOD SetInlineTableEditingEnabled(bool aInlineTableEditingEnabled) override { return _to SetInlineTableEditingEnabled(aInlineTableEditingEnabled); } \
NS_IMETHOD ShowInlineTableEditingUI(nsIDOMElement *aCell) override { return _to ShowInlineTableEditingUI(aCell); } \
NS_IMETHOD HideInlineTableEditingUI(void) override { return _to HideInlineTableEditingUI(); } \
NS_IMETHOD DoInlineTableEditingAction(nsIDOMElement *aUIAnonymousElement) override { return _to DoInlineTableEditingAction(aUIAnonymousElement); } \
NS_IMETHOD RefreshInlineTableEditingUI(void) override { return _to RefreshInlineTableEditingUI(); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIHTMLINLINETABLEEDITOR(_to) \
NS_IMETHOD GetInlineTableEditingEnabled(bool *aInlineTableEditingEnabled) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetInlineTableEditingEnabled(aInlineTableEditingEnabled); } \
NS_IMETHOD SetInlineTableEditingEnabled(bool aInlineTableEditingEnabled) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetInlineTableEditingEnabled(aInlineTableEditingEnabled); } \
NS_IMETHOD ShowInlineTableEditingUI(nsIDOMElement *aCell) override { return !_to ? NS_ERROR_NULL_POINTER : _to->ShowInlineTableEditingUI(aCell); } \
NS_IMETHOD HideInlineTableEditingUI(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->HideInlineTableEditingUI(); } \
NS_IMETHOD DoInlineTableEditingAction(nsIDOMElement *aUIAnonymousElement) override { return !_to ? NS_ERROR_NULL_POINTER : _to->DoInlineTableEditingAction(aUIAnonymousElement); } \
NS_IMETHOD RefreshInlineTableEditingUI(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->RefreshInlineTableEditingUI(); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsHTMLInlineTableEditor : public nsIHTMLInlineTableEditor
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIHTMLINLINETABLEEDITOR
nsHTMLInlineTableEditor();
private:
~nsHTMLInlineTableEditor();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsHTMLInlineTableEditor, nsIHTMLInlineTableEditor)
nsHTMLInlineTableEditor::nsHTMLInlineTableEditor()
{
/* member initializers and constructor code */
}
nsHTMLInlineTableEditor::~nsHTMLInlineTableEditor()
{
/* destructor code */
}
/* attribute boolean inlineTableEditingEnabled; */
NS_IMETHODIMP nsHTMLInlineTableEditor::GetInlineTableEditingEnabled(bool *aInlineTableEditingEnabled)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsHTMLInlineTableEditor::SetInlineTableEditingEnabled(bool aInlineTableEditingEnabled)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void showInlineTableEditingUI (in nsIDOMElement aCell); */
NS_IMETHODIMP nsHTMLInlineTableEditor::ShowInlineTableEditingUI(nsIDOMElement *aCell)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void hideInlineTableEditingUI (); */
NS_IMETHODIMP nsHTMLInlineTableEditor::HideInlineTableEditingUI()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void doInlineTableEditingAction (in nsIDOMElement aUIAnonymousElement); */
NS_IMETHODIMP nsHTMLInlineTableEditor::DoInlineTableEditingAction(nsIDOMElement *aUIAnonymousElement)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void refreshInlineTableEditingUI (); */
NS_IMETHODIMP nsHTMLInlineTableEditor::RefreshInlineTableEditingUI()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIHTMLInlineTableEditor_h__ */
|