summaryrefslogtreecommitdiff
path: root/fpcsrc/packages/cocoaint/src/webkit/DOMMediaList.inc
blob: 11dcdaceca026a6a4b46498dff6caaf343f25dc3 (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
53
54
55
{ Parsed from Webkit.framework DOMMediaList.h }

{$ifdef TYPES}
{$ifndef DOMMEDIALIST_PAS_T}
{$define DOMMEDIALIST_PAS_T}

{$endif}
{$endif}

{$ifdef RECORDS}
{$ifndef DOMMEDIALIST_PAS_R}
{$define DOMMEDIALIST_PAS_R}

{$endif}
{$endif}

{$ifdef FUNCTIONS}
{$ifndef DOMMEDIALIST_PAS_F}
{$define DOMMEDIALIST_PAS_F}

{$endif}
{$endif}

{$ifdef EXTERNAL_SYMBOLS}
{$ifndef DOMMEDIALIST_PAS_S}
{$define DOMMEDIALIST_PAS_S}

{$endif}
{$endif}

{$ifdef FORWARD}
  DOMMediaList = objcclass;
  DOMMediaListPointer = ^DOMMediaList;
  DOMMediaListPtr = DOMMediaListPointer;

{$endif}

{$ifdef CLASSES}
{$ifndef DOMMEDIALIST_PAS_C}
{$define DOMMEDIALIST_PAS_C}

{ DOMMediaList }
  DOMMediaList = objcclass external (DOMObject)
    
  public
    procedure setMediaText (newValue: NSString); message 'setMediaText:';
    function mediaText: NSString; message 'mediaText';
    function length: cuint; message 'length';
    function item(index: cuint): NSString; message 'item:';
    procedure deleteMedium(oldMedium: NSString); message 'deleteMedium:';
    procedure appendMedium(newMedium: NSString); message 'appendMedium:';
  end;

{$endif}
{$endif}