1 : /*
2 : * DO NOT EDIT. THIS FILE IS GENERATED FROM /builds/slave/m-beta-lnx-codecoverage/build/editor/idl/nsIHTMLInlineTableEditor.idl
3 : */
4 :
5 : #ifndef __gen_nsIHTMLInlineTableEditor_h__
6 : #define __gen_nsIHTMLInlineTableEditor_h__
7 :
8 :
9 : #ifndef __gen_nsISupports_h__
10 : #include "nsISupports.h"
11 : #endif
12 :
13 : #ifndef __gen_domstubs_h__
14 : #include "domstubs.h"
15 : #endif
16 :
17 : /* For IDL files that don't want to include root IDL files. */
18 : #ifndef NS_NO_VTABLE
19 : #define NS_NO_VTABLE
20 : #endif
21 :
22 : /* starting interface: nsIHTMLInlineTableEditor */
23 : #define NS_IHTMLINLINETABLEEDITOR_IID_STR "eda2e65c-a758-451f-9b05-77cb8de74ed2"
24 :
25 : #define NS_IHTMLINLINETABLEEDITOR_IID \
26 : {0xeda2e65c, 0xa758, 0x451f, \
27 : { 0x9b, 0x05, 0x77, 0xcb, 0x8d, 0xe7, 0x4e, 0xd2 }}
28 :
29 0 : class NS_NO_VTABLE NS_SCRIPTABLE nsIHTMLInlineTableEditor : public nsISupports {
30 : public:
31 :
32 : NS_DECLARE_STATIC_IID_ACCESSOR(NS_IHTMLINLINETABLEEDITOR_IID)
33 :
34 : /* attribute boolean inlineTableEditingEnabled; */
35 : NS_SCRIPTABLE NS_IMETHOD GetInlineTableEditingEnabled(bool *aInlineTableEditingEnabled) = 0;
36 : NS_SCRIPTABLE NS_IMETHOD SetInlineTableEditingEnabled(bool aInlineTableEditingEnabled) = 0;
37 :
38 : /* void showInlineTableEditingUI (in nsIDOMElement aCell); */
39 : NS_SCRIPTABLE NS_IMETHOD ShowInlineTableEditingUI(nsIDOMElement *aCell) = 0;
40 :
41 : /* void hideInlineTableEditingUI (); */
42 : NS_SCRIPTABLE NS_IMETHOD HideInlineTableEditingUI(void) = 0;
43 :
44 : /* void doInlineTableEditingAction (in nsIDOMElement aUIAnonymousElement); */
45 : NS_SCRIPTABLE NS_IMETHOD DoInlineTableEditingAction(nsIDOMElement *aUIAnonymousElement) = 0;
46 :
47 : /* void refreshInlineTableEditingUI (); */
48 : NS_SCRIPTABLE NS_IMETHOD RefreshInlineTableEditingUI(void) = 0;
49 :
50 : };
51 :
52 : NS_DEFINE_STATIC_IID_ACCESSOR(nsIHTMLInlineTableEditor, NS_IHTMLINLINETABLEEDITOR_IID)
53 :
54 : /* Use this macro when declaring classes that implement this interface. */
55 : #define NS_DECL_NSIHTMLINLINETABLEEDITOR \
56 : NS_SCRIPTABLE NS_IMETHOD GetInlineTableEditingEnabled(bool *aInlineTableEditingEnabled); \
57 : NS_SCRIPTABLE NS_IMETHOD SetInlineTableEditingEnabled(bool aInlineTableEditingEnabled); \
58 : NS_SCRIPTABLE NS_IMETHOD ShowInlineTableEditingUI(nsIDOMElement *aCell); \
59 : NS_SCRIPTABLE NS_IMETHOD HideInlineTableEditingUI(void); \
60 : NS_SCRIPTABLE NS_IMETHOD DoInlineTableEditingAction(nsIDOMElement *aUIAnonymousElement); \
61 : NS_SCRIPTABLE NS_IMETHOD RefreshInlineTableEditingUI(void);
62 :
63 : /* Use this macro to declare functions that forward the behavior of this interface to another object. */
64 : #define NS_FORWARD_NSIHTMLINLINETABLEEDITOR(_to) \
65 : NS_SCRIPTABLE NS_IMETHOD GetInlineTableEditingEnabled(bool *aInlineTableEditingEnabled) { return _to GetInlineTableEditingEnabled(aInlineTableEditingEnabled); } \
66 : NS_SCRIPTABLE NS_IMETHOD SetInlineTableEditingEnabled(bool aInlineTableEditingEnabled) { return _to SetInlineTableEditingEnabled(aInlineTableEditingEnabled); } \
67 : NS_SCRIPTABLE NS_IMETHOD ShowInlineTableEditingUI(nsIDOMElement *aCell) { return _to ShowInlineTableEditingUI(aCell); } \
68 : NS_SCRIPTABLE NS_IMETHOD HideInlineTableEditingUI(void) { return _to HideInlineTableEditingUI(); } \
69 : NS_SCRIPTABLE NS_IMETHOD DoInlineTableEditingAction(nsIDOMElement *aUIAnonymousElement) { return _to DoInlineTableEditingAction(aUIAnonymousElement); } \
70 : NS_SCRIPTABLE NS_IMETHOD RefreshInlineTableEditingUI(void) { return _to RefreshInlineTableEditingUI(); }
71 :
72 : /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
73 : #define NS_FORWARD_SAFE_NSIHTMLINLINETABLEEDITOR(_to) \
74 : NS_SCRIPTABLE NS_IMETHOD GetInlineTableEditingEnabled(bool *aInlineTableEditingEnabled) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetInlineTableEditingEnabled(aInlineTableEditingEnabled); } \
75 : NS_SCRIPTABLE NS_IMETHOD SetInlineTableEditingEnabled(bool aInlineTableEditingEnabled) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetInlineTableEditingEnabled(aInlineTableEditingEnabled); } \
76 : NS_SCRIPTABLE NS_IMETHOD ShowInlineTableEditingUI(nsIDOMElement *aCell) { return !_to ? NS_ERROR_NULL_POINTER : _to->ShowInlineTableEditingUI(aCell); } \
77 : NS_SCRIPTABLE NS_IMETHOD HideInlineTableEditingUI(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->HideInlineTableEditingUI(); } \
78 : NS_SCRIPTABLE NS_IMETHOD DoInlineTableEditingAction(nsIDOMElement *aUIAnonymousElement) { return !_to ? NS_ERROR_NULL_POINTER : _to->DoInlineTableEditingAction(aUIAnonymousElement); } \
79 : NS_SCRIPTABLE NS_IMETHOD RefreshInlineTableEditingUI(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->RefreshInlineTableEditingUI(); }
80 :
81 : #if 0
82 : /* Use the code below as a template for the implementation class for this interface. */
83 :
84 : /* Header file */
85 : class nsHTMLInlineTableEditor : public nsIHTMLInlineTableEditor
86 : {
87 : public:
88 : NS_DECL_ISUPPORTS
89 : NS_DECL_NSIHTMLINLINETABLEEDITOR
90 :
91 : nsHTMLInlineTableEditor();
92 :
93 : private:
94 : ~nsHTMLInlineTableEditor();
95 :
96 : protected:
97 : /* additional members */
98 : };
99 :
100 : /* Implementation file */
101 : NS_IMPL_ISUPPORTS1(nsHTMLInlineTableEditor, nsIHTMLInlineTableEditor)
102 :
103 : nsHTMLInlineTableEditor::nsHTMLInlineTableEditor()
104 : {
105 : /* member initializers and constructor code */
106 : }
107 :
108 : nsHTMLInlineTableEditor::~nsHTMLInlineTableEditor()
109 : {
110 : /* destructor code */
111 : }
112 :
113 : /* attribute boolean inlineTableEditingEnabled; */
114 : NS_IMETHODIMP nsHTMLInlineTableEditor::GetInlineTableEditingEnabled(bool *aInlineTableEditingEnabled)
115 : {
116 : return NS_ERROR_NOT_IMPLEMENTED;
117 : }
118 : NS_IMETHODIMP nsHTMLInlineTableEditor::SetInlineTableEditingEnabled(bool aInlineTableEditingEnabled)
119 : {
120 : return NS_ERROR_NOT_IMPLEMENTED;
121 : }
122 :
123 : /* void showInlineTableEditingUI (in nsIDOMElement aCell); */
124 : NS_IMETHODIMP nsHTMLInlineTableEditor::ShowInlineTableEditingUI(nsIDOMElement *aCell)
125 : {
126 : return NS_ERROR_NOT_IMPLEMENTED;
127 : }
128 :
129 : /* void hideInlineTableEditingUI (); */
130 : NS_IMETHODIMP nsHTMLInlineTableEditor::HideInlineTableEditingUI()
131 : {
132 : return NS_ERROR_NOT_IMPLEMENTED;
133 : }
134 :
135 : /* void doInlineTableEditingAction (in nsIDOMElement aUIAnonymousElement); */
136 : NS_IMETHODIMP nsHTMLInlineTableEditor::DoInlineTableEditingAction(nsIDOMElement *aUIAnonymousElement)
137 : {
138 : return NS_ERROR_NOT_IMPLEMENTED;
139 : }
140 :
141 : /* void refreshInlineTableEditingUI (); */
142 : NS_IMETHODIMP nsHTMLInlineTableEditor::RefreshInlineTableEditingUI()
143 : {
144 : return NS_ERROR_NOT_IMPLEMENTED;
145 : }
146 :
147 : /* End of implementation class template. */
148 : #endif
149 :
150 :
151 : #endif /* __gen_nsIHTMLInlineTableEditor_h__ */
|