aroben | fee2e82 | 2007-06-12 21:50:34 +0000 | [diff] [blame] | 1 | /* |
sfalken@apple.com | cd922019 | 2008-02-13 00:16:05 +0000 | [diff] [blame] | 2 | * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. |
aroben | fee2e82 | 2007-06-12 21:50:34 +0000 | [diff] [blame] | 3 | * |
| 4 | * Redistribution and use in source and binary forms, with or without |
| 5 | * modification, are permitted provided that the following conditions |
| 6 | * are met: |
| 7 | * 1. Redistributions of source code must retain the above copyright |
| 8 | * notice, this list of conditions and the following disclaimer. |
| 9 | * 2. Redistributions in binary form must reproduce the above copyright |
| 10 | * notice, this list of conditions and the following disclaimer in the |
| 11 | * documentation and/or other materials provided with the distribution. |
| 12 | * |
mjs@apple.com | 9204733 | 2014-03-15 04:08:27 +0000 | [diff] [blame] | 13 | * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY |
aroben | fee2e82 | 2007-06-12 21:50:34 +0000 | [diff] [blame] | 14 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 15 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
mjs@apple.com | 9204733 | 2014-03-15 04:08:27 +0000 | [diff] [blame] | 16 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR |
aroben | fee2e82 | 2007-06-12 21:50:34 +0000 | [diff] [blame] | 17 | * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
| 18 | * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 19 | * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 20 | * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
| 21 | * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 22 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 23 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 24 | */ |
| 25 | |
sfalken@apple.com | cd922019 | 2008-02-13 00:16:05 +0000 | [diff] [blame] | 26 | #ifndef DO_NO_IMPORTS |
aroben | fee2e82 | 2007-06-12 21:50:34 +0000 | [diff] [blame] | 27 | import "oaidl.idl"; |
| 28 | import "ocidl.idl"; |
| 29 | import "DOMCore.idl"; |
| 30 | import "IWebScriptObject.idl"; |
sfalken@apple.com | cd922019 | 2008-02-13 00:16:05 +0000 | [diff] [blame] | 31 | #endif |
aroben | fee2e82 | 2007-06-12 21:50:34 +0000 | [diff] [blame] | 32 | |
weinig | ca890e4 | 2007-08-25 04:12:18 +0000 | [diff] [blame] | 33 | interface IDOMObject; |
| 34 | interface IDOMCSSValue; |
| 35 | interface IDOMCSSStyleDeclaration; |
| 36 | interface IDOMCSSStyleSheet; |
| 37 | interface IDOMCSSRule; |
| 38 | interface IDOMElement; |
aroben | fee2e82 | 2007-06-12 21:50:34 +0000 | [diff] [blame] | 39 | |
| 40 | /* |
| 41 | @interface DOMDocument (DOMViewCSS) |
| 42 | */ |
| 43 | [ |
| 44 | object, |
| 45 | oleautomation, |
| 46 | uuid(43EFE238-A4DF-400a-983D-FCE0C0F56BCD), |
| 47 | pointer_default(unique) |
| 48 | ] |
weinig | ca890e4 | 2007-08-25 04:12:18 +0000 | [diff] [blame] | 49 | interface IDOMViewCSS : IUnknown |
aroben | fee2e82 | 2007-06-12 21:50:34 +0000 | [diff] [blame] | 50 | { |
| 51 | /* |
| 52 | - (DOMCSSStyleDeclaration *)getComputedStyle:(DOMElement *)elt :(NSString *)pseudoElt; |
| 53 | */ |
weinig | ca890e4 | 2007-08-25 04:12:18 +0000 | [diff] [blame] | 54 | HRESULT getComputedStyle([in] IDOMElement* elt, [in] BSTR pseudoElt, [out, retval] IDOMCSSStyleDeclaration** result); |
aroben | fee2e82 | 2007-06-12 21:50:34 +0000 | [diff] [blame] | 55 | } |
| 56 | |
| 57 | /* |
| 58 | @interface DOMCSSRuleList : DOMObject |
| 59 | */ |
| 60 | [ |
| 61 | object, |
| 62 | oleautomation, |
| 63 | uuid(D45DA43D-5EDB-4315-A097-3ED3FA089193), |
| 64 | pointer_default(unique) |
| 65 | ] |
weinig | ca890e4 | 2007-08-25 04:12:18 +0000 | [diff] [blame] | 66 | interface IDOMCSSRuleList : IDOMObject |
aroben | fee2e82 | 2007-06-12 21:50:34 +0000 | [diff] [blame] | 67 | { |
| 68 | /* |
| 69 | - (unsigned)length; |
| 70 | */ |
| 71 | HRESULT length([out, retval] UINT* result); |
| 72 | |
| 73 | /* |
| 74 | - (DOMCSSRule *)item:(unsigned)index; |
| 75 | */ |
weinig | ca890e4 | 2007-08-25 04:12:18 +0000 | [diff] [blame] | 76 | HRESULT item([in] UINT index, [out, retval] IDOMCSSRule** result); |
aroben | fee2e82 | 2007-06-12 21:50:34 +0000 | [diff] [blame] | 77 | } |
| 78 | |
| 79 | /* |
| 80 | @interface DOMCSSRule : DOMObject |
| 81 | */ |
| 82 | [ |
| 83 | object, |
| 84 | oleautomation, |
| 85 | uuid(05947A31-9E1C-4c98-8608-6688959D6542), |
| 86 | pointer_default(unique) |
| 87 | ] |
weinig | ca890e4 | 2007-08-25 04:12:18 +0000 | [diff] [blame] | 88 | interface IDOMCSSRule : IDOMObject |
aroben | fee2e82 | 2007-06-12 21:50:34 +0000 | [diff] [blame] | 89 | { |
| 90 | /* |
| 91 | - (unsigned short)type; |
| 92 | */ |
| 93 | HRESULT type([out, retval] unsigned short* result); |
| 94 | |
| 95 | /* |
| 96 | - (NSString *)cssText; |
| 97 | */ |
| 98 | HRESULT cssText([out, retval] BSTR* text); |
| 99 | |
| 100 | /* |
| 101 | - (void)setCssText:(NSString *)cssText; |
| 102 | */ |
| 103 | HRESULT setCssText([in] BSTR cssText); |
| 104 | |
| 105 | /* |
| 106 | - (DOMCSSStyleSheet *)parentStyleSheet; |
| 107 | */ |
weinig | ca890e4 | 2007-08-25 04:12:18 +0000 | [diff] [blame] | 108 | HRESULT parentStyleSheet([out, retval] IDOMCSSStyleSheet** sheet); |
aroben | fee2e82 | 2007-06-12 21:50:34 +0000 | [diff] [blame] | 109 | |
| 110 | /* |
| 111 | - (DOMCSSRule *)parentRule; |
| 112 | */ |
weinig | ca890e4 | 2007-08-25 04:12:18 +0000 | [diff] [blame] | 113 | HRESULT parentRule([out, retval] IDOMCSSRule** rule); |
aroben | fee2e82 | 2007-06-12 21:50:34 +0000 | [diff] [blame] | 114 | } |
| 115 | |
| 116 | /* |
| 117 | @interface DOMCSSStyleDeclaration : DOMObject |
| 118 | */ |
| 119 | [ |
| 120 | object, |
| 121 | oleautomation, |
| 122 | uuid(DBBE9A6B-D505-4647-B4AB-40A7CF3EE63E), |
| 123 | pointer_default(unique) |
| 124 | ] |
weinig | ca890e4 | 2007-08-25 04:12:18 +0000 | [diff] [blame] | 125 | interface IDOMCSSStyleDeclaration : IDOMObject |
aroben | fee2e82 | 2007-06-12 21:50:34 +0000 | [diff] [blame] | 126 | { |
| 127 | /* |
| 128 | - (NSString *)cssText; |
| 129 | */ |
| 130 | HRESULT cssText([out, retval] BSTR* result); |
| 131 | |
| 132 | /* |
| 133 | - (void)setCssText:(NSString *)cssText; |
| 134 | */ |
| 135 | HRESULT setCssText([in] BSTR cssText); |
| 136 | |
| 137 | /* |
| 138 | - (NSString *)getPropertyValue:(NSString *)propertyName; |
| 139 | */ |
| 140 | HRESULT getPropertyValue([in] BSTR propertyName, [out, retval] BSTR* result); |
| 141 | |
| 142 | /* |
| 143 | - (DOMCSSValue *)getPropertyCSSValue:(NSString *)propertyName; |
| 144 | */ |
weinig | ca890e4 | 2007-08-25 04:12:18 +0000 | [diff] [blame] | 145 | HRESULT getPropertyCSSValue([in] BSTR propertyName, [out, retval] IDOMCSSValue** result); |
aroben | fee2e82 | 2007-06-12 21:50:34 +0000 | [diff] [blame] | 146 | |
| 147 | /* |
| 148 | - (NSString *)removeProperty:(NSString *)propertyName; |
| 149 | */ |
| 150 | HRESULT removeProperty([in] BSTR propertyName, [out, retval] BSTR* result); |
| 151 | |
| 152 | /* |
| 153 | - (NSString *)getPropertyPriority:(NSString *)propertyName; |
| 154 | */ |
| 155 | HRESULT getPropertyPriority([in] BSTR propertyName, [out, retval] BSTR* result); |
| 156 | |
| 157 | /* |
| 158 | - (void)setProperty:(NSString *)propertyName :(NSString *)value :(NSString *)priority; |
| 159 | */ |
| 160 | HRESULT setProperty([in] BSTR propertyName, [in] BSTR value, [in] BSTR priority); |
| 161 | |
| 162 | /* |
| 163 | - (unsigned)length; |
| 164 | */ |
| 165 | HRESULT length([out, retval] UINT* result); |
| 166 | |
| 167 | /* |
| 168 | - (NSString *)item:(unsigned)index; |
| 169 | */ |
| 170 | HRESULT item([in] UINT index, [out, retval] BSTR* result); |
| 171 | |
| 172 | /* |
| 173 | - (DOMCSSRule *)parentRule; |
| 174 | */ |
weinig | ca890e4 | 2007-08-25 04:12:18 +0000 | [diff] [blame] | 175 | HRESULT parentRule([out, retval] IDOMCSSRule** result); |
aroben | fee2e82 | 2007-06-12 21:50:34 +0000 | [diff] [blame] | 176 | } |
| 177 | |
| 178 | /* |
| 179 | @interface DOMCSSValue : DOMObject |
| 180 | */ |
| 181 | [ |
| 182 | object, |
| 183 | oleautomation, |
| 184 | uuid(51D29553-2AF7-4f52-AFE6-3C59196A8BAA), |
| 185 | pointer_default(unique) |
| 186 | ] |
weinig | ca890e4 | 2007-08-25 04:12:18 +0000 | [diff] [blame] | 187 | interface IDOMCSSValue : IDOMObject |
aroben | fee2e82 | 2007-06-12 21:50:34 +0000 | [diff] [blame] | 188 | { |
| 189 | /* |
| 190 | - (NSString *)cssText; |
| 191 | */ |
| 192 | HRESULT cssText([out, retval] BSTR* text); |
| 193 | |
| 194 | /* |
| 195 | - (void)setCssText:(NSString *)cssText; |
| 196 | */ |
| 197 | HRESULT setCssText([in] BSTR text); |
| 198 | |
| 199 | /* |
| 200 | - (unsigned short)cssValueType; |
| 201 | */ |
| 202 | HRESULT cssValueType([out, retval] unsigned short *valueType); |
| 203 | } |
| 204 | |
| 205 | /* |
| 206 | @interface DOMCSSStyleSheet : DOMStyleSheet |
| 207 | */ |
| 208 | [ |
| 209 | object, |
| 210 | oleautomation, |
| 211 | uuid(14B1C213-1458-48a1-AD8F-54BFE64F9ECF), |
| 212 | pointer_default(unique) |
| 213 | ] |
weinig | ca890e4 | 2007-08-25 04:12:18 +0000 | [diff] [blame] | 214 | interface IDOMCSSStyleSheet : IDOMObject |
aroben | fee2e82 | 2007-06-12 21:50:34 +0000 | [diff] [blame] | 215 | { |
| 216 | /* |
| 217 | - (DOMCSSRule *)ownerRule; |
| 218 | */ |
weinig | ca890e4 | 2007-08-25 04:12:18 +0000 | [diff] [blame] | 219 | HRESULT ownerRule([out, retval] IDOMCSSRule** rule); |
aroben | fee2e82 | 2007-06-12 21:50:34 +0000 | [diff] [blame] | 220 | |
| 221 | /* |
| 222 | - (DOMCSSRuleList *)cssRules; |
| 223 | */ |
weinig | ca890e4 | 2007-08-25 04:12:18 +0000 | [diff] [blame] | 224 | HRESULT cssRules([out, retval] IDOMCSSRuleList** ruleList); |
aroben | fee2e82 | 2007-06-12 21:50:34 +0000 | [diff] [blame] | 225 | |
| 226 | /* |
| 227 | - (unsigned)insertRule:(NSString *)rule :(unsigned)index; |
| 228 | */ |
| 229 | HRESULT insertRule([in] BSTR rule, [in] UINT index, [out, retval] UINT* result); |
| 230 | |
| 231 | /* |
| 232 | - (void)deleteRule:(unsigned)index; |
| 233 | */ |
| 234 | HRESULT deleteRule([in] UINT index); |
| 235 | } |
| 236 | |
| 237 | /* |
| 238 | @interface DOMElement (DOMElementCSSInlineStyle) |
| 239 | */ |
| 240 | [ |
| 241 | object, |
| 242 | oleautomation, |
| 243 | uuid(585127E2-D698-44c4-83EC-4D1E6E07E90D), |
| 244 | pointer_default(unique) |
| 245 | ] |
weinig | ca890e4 | 2007-08-25 04:12:18 +0000 | [diff] [blame] | 246 | interface IDOMElementCSSInlineStyle : IUnknown |
aroben | fee2e82 | 2007-06-12 21:50:34 +0000 | [diff] [blame] | 247 | { |
| 248 | /* |
| 249 | - (DOMCSSStyleDeclaration *)style; |
| 250 | */ |
weinig | ca890e4 | 2007-08-25 04:12:18 +0000 | [diff] [blame] | 251 | HRESULT style([out, retval] IDOMCSSStyleDeclaration** result); |
aroben | fee2e82 | 2007-06-12 21:50:34 +0000 | [diff] [blame] | 252 | } |