forked from progrium/darwinkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposite_operation_protocol.gen.go
82 lines (66 loc) · 2.54 KB
/
composite_operation_protocol.gen.go
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
// Code generated by DarwinKit. DO NOT EDIT.
package coreimage
import (
"github.com/progrium/macdriver/objc"
)
// The properties you use to configure a composite operation filter. [Full Topic]
//
// [Full Topic]: https://developer.apple.com/documentation/coreimage/cicompositeoperation?language=objc
type PCompositeOperation interface {
// optional
SetInputImage(value Image)
HasSetInputImage() bool
// optional
InputImage() Image
HasInputImage() bool
// optional
SetBackgroundImage(value Image)
HasSetBackgroundImage() bool
// optional
BackgroundImage() Image
HasBackgroundImage() bool
}
// ensure impl type implements protocol interface
var _ PCompositeOperation = (*CompositeOperationObject)(nil)
// A concrete type for the [PCompositeOperation] protocol.
type CompositeOperationObject struct {
objc.Object
}
func (c_ CompositeOperationObject) HasSetInputImage() bool {
return c_.RespondsToSelector(objc.Sel("setInputImage:"))
}
// The image to use as a foreground image. [Full Topic]
//
// [Full Topic]: https://developer.apple.com/documentation/coreimage/cicompositeoperation/3228183-inputimage?language=objc
func (c_ CompositeOperationObject) SetInputImage(value Image) {
objc.Call[objc.Void](c_, objc.Sel("setInputImage:"), objc.Ptr(value))
}
func (c_ CompositeOperationObject) HasInputImage() bool {
return c_.RespondsToSelector(objc.Sel("inputImage"))
}
// The image to use as a foreground image. [Full Topic]
//
// [Full Topic]: https://developer.apple.com/documentation/coreimage/cicompositeoperation/3228183-inputimage?language=objc
func (c_ CompositeOperationObject) InputImage() Image {
rv := objc.Call[Image](c_, objc.Sel("inputImage"))
return rv
}
func (c_ CompositeOperationObject) HasSetBackgroundImage() bool {
return c_.RespondsToSelector(objc.Sel("setBackgroundImage:"))
}
// The image to use as a background image. [Full Topic]
//
// [Full Topic]: https://developer.apple.com/documentation/coreimage/cicompositeoperation/3228182-backgroundimage?language=objc
func (c_ CompositeOperationObject) SetBackgroundImage(value Image) {
objc.Call[objc.Void](c_, objc.Sel("setBackgroundImage:"), objc.Ptr(value))
}
func (c_ CompositeOperationObject) HasBackgroundImage() bool {
return c_.RespondsToSelector(objc.Sel("backgroundImage"))
}
// The image to use as a background image. [Full Topic]
//
// [Full Topic]: https://developer.apple.com/documentation/coreimage/cicompositeoperation/3228182-backgroundimage?language=objc
func (c_ CompositeOperationObject) BackgroundImage() Image {
rv := objc.Call[Image](c_, objc.Sel("backgroundImage"))
return rv
}