summaryrefslogtreecommitdiff
path: root/fpcsrc/packages/cocoaint/src/webkit/DOMText.inc
blob: f7660121ea5d89c4334d8b6f27c49f4b5ae773f1 (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 DOMText.h }

{$ifdef TYPES}
{$ifndef DOMTEXT_PAS_T}
{$define DOMTEXT_PAS_T}

{$endif}
{$endif}

{$ifdef RECORDS}
{$ifndef DOMTEXT_PAS_R}
{$define DOMTEXT_PAS_R}

{$endif}
{$endif}

{$ifdef FUNCTIONS}
{$ifndef DOMTEXT_PAS_F}
{$define DOMTEXT_PAS_F}

{$endif}
{$endif}

{$ifdef EXTERNAL_SYMBOLS}
{$ifndef DOMTEXT_PAS_S}
{$define DOMTEXT_PAS_S}

{$endif}
{$endif}

{$ifdef FORWARD}
  DOMText = objcclass;
  DOMTextPointer = ^DOMText;
  DOMTextPtr = DOMTextPointer;

{$endif}

{$ifdef CLASSES}
{$ifndef DOMTEXT_PAS_C}
{$define DOMTEXT_PAS_C}

{ DOMText }
  DOMText = objcclass external (DOMCharacterData)
    
  public
    function wholeText: NSString; message 'wholeText';
    function splitText(offset: cuint): DOMText; message 'splitText:';
    function replaceWholeText(content: NSString): DOMText; message 'replaceWholeText:';
  end;

{$endif}
{$endif}