summaryrefslogtreecommitdiff
path: root/packages/cocoaint/src/pdfkit/PDFAnnotationChoiceWidget.inc
blob: d7636d8d4d04542b859927705054b772398776eb (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
{ Parsed from PDFKit.framework PDFAnnotationChoiceWidget.h }


{$ifdef TYPES}
type
  PDFAnnotationChoiceWidgetPtr = ^PDFAnnotationChoiceWidget;
{$endif}

{$if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5)}
{$ifdef CLASSES}

type
  PDFAnnotationChoiceWidget = objcclass external (PDFAnnotation, NSCopyingProtocol)
  private
    _pdfPriv2: PDFAnnotationChoiceWidgetPrivateVars;
  public
    function stringValue: NSString; message 'stringValue';
    procedure setStringValue (value: NSString); message 'setStringValue:';
    function backgroundColor: NSColor; message 'backgroundColor';
    procedure setBackgroundColor (color_: NSColor); message 'setBackgroundColor:';
    function font: NSFont; message 'font';
    procedure setFont (font_: NSFont); message 'setFont:';
    function fontColor: NSColor; message 'fontColor';
    procedure setFontColor (color_: NSColor); message 'setFontColor:';
    function fieldName: NSString; message 'fieldName';
    procedure setFieldName (name: NSString); message 'setFieldName:';
    function isListChoice: ObjCBOOL; message 'isListChoice';
    procedure setIsListChoice (isList: ObjCBOOL); message 'setIsListChoice:';
    function choices: NSArray; message 'choices';
    procedure setChoices (options: NSArray); message 'setChoices:';
  end;
{$endif}

{$endif}