blob: 3f63823a48dc9c51b1f3fab2f106a478903e0c6e (
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 PDFKit.framework PDFAnnotationTextWidget.h }
{ Types from PDFAnnotationTextWidget }
{$ifdef TYPES}
{$endif}
{$ifdef TYPES}
type
PDFAnnotationTextWidgetPtr = ^PDFAnnotationTextWidget;
{$endif}
{$ifdef CLASSES}
type
PDFAnnotationTextWidget = objcclass external (PDFAnnotation, NSCopyingProtocol)
private
_pdfPriv2: PDFAnnotationTextWidgetPrivateVars;
public
function stringValue: NSString; message 'stringValue';
procedure setStringValue (value: NSString); message 'setStringValue:';
function attributedStringValue: NSAttributedString; message 'attributedStringValue';
procedure setAttributedStringValue (value: NSAttributedString); message 'setAttributedStringValue:';
{$if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5)}
function backgroundColor: NSColor; message 'backgroundColor';
procedure setBackgroundColor (color_: NSColor); message 'setBackgroundColor:';
function rotation: cint; message 'rotation';
procedure setRotation (rotation_: cint); message 'setRotation:';
{$endif}
function font: NSFont; message 'font';
procedure setFont (font_: NSFont); message 'setFont:';
{$if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5)}
function fontColor: NSColor; message 'fontColor';
procedure setFontColor (color_: NSColor); message 'setFontColor:';
{$endif}
function alignment: NSTextAlignment; message 'alignment';
procedure setAlignment (alignment_: NSTextAlignment); message 'setAlignment:';
{$if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5)}
function maximumLength: NSUInteger; message 'maximumLength';
procedure setMaximumLength (maxLen: NSUInteger); message 'setMaximumLength:';
function fieldName: NSString; message 'fieldName';
procedure setFieldName (name: NSString); message 'setFieldName:';
{$endif}
{$if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_9)}
function isMultiline: ObjCBOOL; message 'isMultiline';
procedure setIsMultiline (multiline: ObjCBOOL); message 'setIsMultiline:';
{$endif}
end;
{$endif}
|