blob: 806814bf477d522f3e7485e13ceecbabc10a9292 (
plain)
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
|
{ Parsed from Webkit.framework DOMCSSStyleRule.h }
{$ifdef TYPES}
{$ifndef DOMCSSSTYLERULE_PAS_T}
{$define DOMCSSSTYLERULE_PAS_T}
{$endif}
{$endif}
{$ifdef RECORDS}
{$ifndef DOMCSSSTYLERULE_PAS_R}
{$define DOMCSSSTYLERULE_PAS_R}
{$endif}
{$endif}
{$ifdef FUNCTIONS}
{$ifndef DOMCSSSTYLERULE_PAS_F}
{$define DOMCSSSTYLERULE_PAS_F}
{$endif}
{$endif}
{$ifdef EXTERNAL_SYMBOLS}
{$ifndef DOMCSSSTYLERULE_PAS_S}
{$define DOMCSSSTYLERULE_PAS_S}
{$endif}
{$endif}
{$ifdef FORWARD}
DOMCSSStyleRule = objcclass;
DOMCSSStyleRulePointer = ^DOMCSSStyleRule;
DOMCSSStyleRulePtr = DOMCSSStyleRulePointer;
{$endif}
{$ifdef CLASSES}
{$ifndef DOMCSSSTYLERULE_PAS_C}
{$define DOMCSSSTYLERULE_PAS_C}
{ DOMCSSStyleRule }
DOMCSSStyleRule = objcclass external (DOMCSSRule)
public
procedure setSelectorText (newValue: NSString); message 'setSelectorText:';
function selectorText: NSString; message 'selectorText';
function style: DOMCSSStyleDeclaration; message 'style';
end;
{$endif}
{$endif}
|