-
Notifications
You must be signed in to change notification settings - Fork 0
/
text_multi_format_node.gen.go
230 lines (177 loc) · 7.69 KB
/
text_multi_format_node.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
// Code generated by PDFlexgo; DO NOT EDIT.
package pdflexgo
import "github.com/kjk/flex"
func (textMultiFormat *TextMultiFormatElement) Width(width float64) *TextMultiFormatElement {
textMultiFormat.getFlexNode().StyleSetWidth(float32(width))
return textMultiFormat
}
func (textMultiFormat *TextMultiFormatElement) Height(height float64) *TextMultiFormatElement {
textMultiFormat.getFlexNode().StyleSetHeight(float32(height))
return textMultiFormat
}
func (textMultiFormat *TextMultiFormatElement) WidthPercent(width float64) *TextMultiFormatElement {
textMultiFormat.getFlexNode().StyleSetWidthPercent(float32(width))
return textMultiFormat
}
func (textMultiFormat *TextMultiFormatElement) HeightPercent(height float64) *TextMultiFormatElement {
textMultiFormat.getFlexNode().StyleSetHeightPercent(float32(height))
return textMultiFormat
}
func (textMultiFormat *TextMultiFormatElement) WidthAuto() *TextMultiFormatElement {
textMultiFormat.getFlexNode().StyleSetWidthAuto()
return textMultiFormat
}
func (textMultiFormat *TextMultiFormatElement) HeightAuto() *TextMultiFormatElement {
textMultiFormat.getFlexNode().StyleSetHeightAuto()
return textMultiFormat
}
// ALIGN SELF
func (textMultiFormat *TextMultiFormatElement) AlignSelfType(align Align) *TextMultiFormatElement {
textMultiFormat.getFlexNode().StyleSetAlignSelf(flex.Align(align))
return textMultiFormat
}
func (textMultiFormat *TextMultiFormatElement) AlignSelfAuto() *TextMultiFormatElement {
textMultiFormat.AlignSelfType(AlignAuto)
return textMultiFormat
}
func (textMultiFormat *TextMultiFormatElement) AlignSelfStart() *TextMultiFormatElement {
textMultiFormat.AlignSelfType(AlignStart)
return textMultiFormat
}
func (textMultiFormat *TextMultiFormatElement) AlignSelfCenter() *TextMultiFormatElement {
textMultiFormat.AlignSelfType(AlignCenter)
return textMultiFormat
}
func (textMultiFormat *TextMultiFormatElement) AlignSelfEnd() *TextMultiFormatElement {
textMultiFormat.AlignSelfType(AlignEnd)
return textMultiFormat
}
func (textMultiFormat *TextMultiFormatElement) AlignSelfStretch() *TextMultiFormatElement {
textMultiFormat.AlignSelfType(AlignStretch)
return textMultiFormat
}
func (textMultiFormat *TextMultiFormatElement) AlignSelfBaseline() *TextMultiFormatElement {
textMultiFormat.AlignSelfType(AlignBaseline)
return textMultiFormat
}
func (textMultiFormat *TextMultiFormatElement) AlignSelfSpaceBetween() *TextMultiFormatElement {
textMultiFormat.AlignSelfType(AlignSpaceBetween)
return textMultiFormat
}
func (textMultiFormat *TextMultiFormatElement) AlignSelfSpaceAround() *TextMultiFormatElement {
textMultiFormat.AlignSelfType(AlignSpaceAround)
return textMultiFormat
}
// FLEX FUNCTIONS
func (textMultiFormat *TextMultiFormatElement) FlexGrow(flexGrow float64) *TextMultiFormatElement {
textMultiFormat.getFlexNode().StyleSetFlexGrow(float32(flexGrow))
return textMultiFormat
}
func (textMultiFormat *TextMultiFormatElement) FlexShrink(flexShrink float64) *TextMultiFormatElement {
textMultiFormat.getFlexNode().StyleSetFlexShrink(float32(flexShrink))
return textMultiFormat
}
func (textMultiFormat *TextMultiFormatElement) FlexBasis(flexBasis float64) *TextMultiFormatElement {
textMultiFormat.getFlexNode().StyleSetFlexBasis(float32(flexBasis))
return textMultiFormat
}
func (textMultiFormat *TextMultiFormatElement) FlexBasisPercent(flexBasisPercent float64) *TextMultiFormatElement {
textMultiFormat.getFlexNode().StyleSetFlexBasisPercent(float32(flexBasisPercent))
return textMultiFormat
}
func (textMultiFormat *TextMultiFormatElement) FlexBasisAuto() *TextMultiFormatElement {
flex.NodeStyleSetFlexBasisAuto(textMultiFormat.getFlexNode())
return textMultiFormat
}
func (textMultiFormat *TextMultiFormatElement) FlexAuto() *TextMultiFormatElement {
return textMultiFormat.
FlexGrow(1).
FlexShrink(1).
FlexBasisAuto()
}
func (textMultiFormat *TextMultiFormatElement) FlexNone() *TextMultiFormatElement {
return textMultiFormat.
FlexGrow(0).
FlexShrink(0).
FlexBasisAuto()
}
func (textMultiFormat *TextMultiFormatElement) MinWidth(minWidth float64) *TextMultiFormatElement {
textMultiFormat.getFlexNode().StyleSetMinWidth(float32(minWidth))
return textMultiFormat
}
func (textMultiFormat *TextMultiFormatElement) MinWidthPercent(minWidthPercent float64) *TextMultiFormatElement {
textMultiFormat.getFlexNode().StyleSetMinWidthPercent(float32(minWidthPercent))
return textMultiFormat
}
func (textMultiFormat *TextMultiFormatElement) MinHeight(minHeight float64) *TextMultiFormatElement {
textMultiFormat.getFlexNode().StyleSetMinHeight(float32(minHeight))
return textMultiFormat
}
func (textMultiFormat *TextMultiFormatElement) MinHeightPercent(minHeightPercent float64) *TextMultiFormatElement {
textMultiFormat.getFlexNode().StyleSetMinHeightPercent(float32(minHeightPercent))
return textMultiFormat
}
func (textMultiFormat *TextMultiFormatElement) MaxWidth(maxWidth float64) *TextMultiFormatElement {
textMultiFormat.getFlexNode().StyleSetMaxWidth(float32(maxWidth))
return textMultiFormat
}
func (textMultiFormat *TextMultiFormatElement) MaxWidthPercent(maxWidthPercent float64) *TextMultiFormatElement {
textMultiFormat.getFlexNode().StyleSetMaxWidthPercent(float32(maxWidthPercent))
return textMultiFormat
}
func (textMultiFormat *TextMultiFormatElement) MaxHeight(maxHeight float64) *TextMultiFormatElement {
textMultiFormat.getFlexNode().StyleSetMaxHeight(float32(maxHeight))
return textMultiFormat
}
func (textMultiFormat *TextMultiFormatElement) MaxHeightPercent(maxHeightPercent float64) *TextMultiFormatElement {
textMultiFormat.getFlexNode().StyleSetMaxHeightPercent(float32(maxHeightPercent))
return textMultiFormat
}
// ASPECT RATIO
func (textMultiFormat *TextMultiFormatElement) AspectRatio(ratio float64) *TextMultiFormatElement {
textMultiFormat.getFlexNode().StyleSetAspectRatio(float32(ratio))
return textMultiFormat
}
// POSITION TYPE
func (textMultiFormat *TextMultiFormatElement) PositionType(_type PositionType) *TextMultiFormatElement {
textMultiFormat.getFlexNode().StyleSetPositionType(flex.PositionType(_type))
return textMultiFormat
}
func (textMultiFormat *TextMultiFormatElement) PositionTypeRelative() *TextMultiFormatElement {
textMultiFormat.PositionType(PositionTypeRelative)
return textMultiFormat
}
func (textMultiFormat *TextMultiFormatElement) PositionTypeAbsolute() *TextMultiFormatElement {
textMultiFormat.PositionType(PositionTypeAbsolute)
return textMultiFormat
}
// POSITION TYPE
func (textMultiFormat *TextMultiFormatElement) Position(_type PositionType) *TextMultiFormatElement {
textMultiFormat.getFlexNode().StyleSetPositionType(flex.PositionType(_type))
return textMultiFormat
}
// POSITION
func (textMultiFormat *TextMultiFormatElement) PositionTop(position float64) *TextMultiFormatElement {
textMultiFormat.getFlexNode().StyleSetPosition(flex.EdgeTop, float32(position))
return textMultiFormat
}
func (textMultiFormat *TextMultiFormatElement) PositionRight(position float64) *TextMultiFormatElement {
textMultiFormat.getFlexNode().StyleSetPosition(flex.EdgeRight, float32(position))
return textMultiFormat
}
func (textMultiFormat *TextMultiFormatElement) PositionBottom(position float64) *TextMultiFormatElement {
textMultiFormat.getFlexNode().StyleSetPosition(flex.EdgeBottom, float32(position))
return textMultiFormat
}
func (textMultiFormat *TextMultiFormatElement) PositionLeft(position float64) *TextMultiFormatElement {
textMultiFormat.getFlexNode().StyleSetPosition(flex.EdgeLeft, float32(position))
return textMultiFormat
}
func (textMultiFormat *TextMultiFormatElement) PositionAll(position float64) *TextMultiFormatElement {
textMultiFormat.
PositionTop(position).
PositionRight(position).
PositionBottom(position).
PositionLeft(position)
return textMultiFormat
}