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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
use super::*;
/// The Selection class.
/// [`Selection`](https://developer.mozilla.org/en-US/docs/Web/API/Selection)
#[derive(Clone, Debug, PartialEq, PartialOrd)]
#[repr(transparent)]
pub struct Selection {
inner: Any,
}
impl FromVal for Selection {
fn from_val(v: &Any) -> Self {
Selection {
inner: Any::from_val(v),
}
}
fn take_ownership(v: AnyHandle) -> Self {
Self::from_val(&Any::take_ownership(v))
}
fn as_handle(&self) -> AnyHandle {
self.inner.as_handle()
}
}
impl core::ops::Deref for Selection {
type Target = Any;
fn deref(&self) -> &Self::Target {
&self.inner
}
}
impl core::ops::DerefMut for Selection {
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.inner
}
}
impl AsRef<Any> for Selection {
fn as_ref(&self) -> &Any {
&self.inner
}
}
impl AsMut<Any> for Selection {
fn as_mut(&mut self) -> &mut Any {
&mut self.inner
}
}
impl From<Selection> for Any {
fn from(s: Selection) -> Any {
let handle = s.inner.as_handle();
core::mem::forget(s);
Any::take_ownership(handle)
}
}
impl From<&Selection> for Any {
fn from(s: &Selection) -> Any {
s.inner.clone().into()
}
}
jsbind::utils::impl_dyn_cast!(Selection);
impl Selection {
/// Getter of the `anchorNode` attribute.
/// [`Selection.anchorNode`](https://developer.mozilla.org/en-US/docs/Web/API/Selection/anchorNode)
pub fn anchor_node(&self) -> Node {
self.inner.get("anchorNode").as_::<Node>()
}
}
impl Selection {
/// Getter of the `anchorOffset` attribute.
/// [`Selection.anchorOffset`](https://developer.mozilla.org/en-US/docs/Web/API/Selection/anchorOffset)
pub fn anchor_offset(&self) -> u32 {
self.inner.get("anchorOffset").as_::<u32>()
}
}
impl Selection {
/// Getter of the `focusNode` attribute.
/// [`Selection.focusNode`](https://developer.mozilla.org/en-US/docs/Web/API/Selection/focusNode)
pub fn focus_node(&self) -> Node {
self.inner.get("focusNode").as_::<Node>()
}
}
impl Selection {
/// Getter of the `focusOffset` attribute.
/// [`Selection.focusOffset`](https://developer.mozilla.org/en-US/docs/Web/API/Selection/focusOffset)
pub fn focus_offset(&self) -> u32 {
self.inner.get("focusOffset").as_::<u32>()
}
}
impl Selection {
/// Getter of the `isCollapsed` attribute.
/// [`Selection.isCollapsed`](https://developer.mozilla.org/en-US/docs/Web/API/Selection/isCollapsed)
pub fn is_collapsed(&self) -> bool {
self.inner.get("isCollapsed").as_::<bool>()
}
}
impl Selection {
/// Getter of the `rangeCount` attribute.
/// [`Selection.rangeCount`](https://developer.mozilla.org/en-US/docs/Web/API/Selection/rangeCount)
pub fn range_count(&self) -> u32 {
self.inner.get("rangeCount").as_::<u32>()
}
}
impl Selection {
/// Getter of the `type` attribute.
/// [`Selection.type`](https://developer.mozilla.org/en-US/docs/Web/API/Selection/type)
pub fn type_(&self) -> JsString {
self.inner.get("type").as_::<JsString>()
}
}
impl Selection {
/// Getter of the `direction` attribute.
/// [`Selection.direction`](https://developer.mozilla.org/en-US/docs/Web/API/Selection/direction)
pub fn direction(&self) -> JsString {
self.inner.get("direction").as_::<JsString>()
}
}
impl Selection {
/// The getRangeAt method.
/// [`Selection.getRangeAt`](https://developer.mozilla.org/en-US/docs/Web/API/Selection/getRangeAt)
pub fn get_range_at(&self, index: u32) -> Range {
self.inner
.call("getRangeAt", &[index.into()])
.as_::<Range>()
}
}
impl Selection {
/// The addRange method.
/// [`Selection.addRange`](https://developer.mozilla.org/en-US/docs/Web/API/Selection/addRange)
pub fn add_range(&self, range: &Range) -> Undefined {
self.inner
.call("addRange", &[range.into()])
.as_::<Undefined>()
}
}
impl Selection {
/// The removeRange method.
/// [`Selection.removeRange`](https://developer.mozilla.org/en-US/docs/Web/API/Selection/removeRange)
pub fn remove_range(&self, range: &Range) -> Undefined {
self.inner
.call("removeRange", &[range.into()])
.as_::<Undefined>()
}
}
impl Selection {
/// The removeAllRanges method.
/// [`Selection.removeAllRanges`](https://developer.mozilla.org/en-US/docs/Web/API/Selection/removeAllRanges)
pub fn remove_all_ranges(&self) -> Undefined {
self.inner.call("removeAllRanges", &[]).as_::<Undefined>()
}
}
impl Selection {
/// The empty method.
/// [`Selection.empty`](https://developer.mozilla.org/en-US/docs/Web/API/Selection/empty)
pub fn empty(&self) -> Undefined {
self.inner.call("empty", &[]).as_::<Undefined>()
}
}
impl Selection {
/// The getComposedRanges method.
/// [`Selection.getComposedRanges`](https://developer.mozilla.org/en-US/docs/Web/API/Selection/getComposedRanges)
pub fn get_composed_ranges(&self) -> TypedArray<StaticRange> {
self.inner
.call("getComposedRanges", &[])
.as_::<TypedArray<StaticRange>>()
}
}
impl Selection {
/// The getComposedRanges method.
/// [`Selection.getComposedRanges`](https://developer.mozilla.org/en-US/docs/Web/API/Selection/getComposedRanges)
pub fn get_composed_ranges_with_options(
&self,
options: &GetComposedRangesOptions,
) -> TypedArray<StaticRange> {
self.inner
.call("getComposedRanges", &[options.into()])
.as_::<TypedArray<StaticRange>>()
}
}
impl Selection {
/// The collapse method.
/// [`Selection.collapse`](https://developer.mozilla.org/en-US/docs/Web/API/Selection/collapse)
pub fn collapse(&self, node: &Node) -> Undefined {
self.inner
.call("collapse", &[node.into()])
.as_::<Undefined>()
}
}
impl Selection {
/// The collapse method.
/// [`Selection.collapse`](https://developer.mozilla.org/en-US/docs/Web/API/Selection/collapse)
pub fn collapse_with_offset(&self, node: &Node, offset: u32) -> Undefined {
self.inner
.call("collapse", &[node.into(), offset.into()])
.as_::<Undefined>()
}
}
impl Selection {
/// The setPosition method.
/// [`Selection.setPosition`](https://developer.mozilla.org/en-US/docs/Web/API/Selection/setPosition)
pub fn set_position(&self, node: &Node) -> Undefined {
self.inner
.call("setPosition", &[node.into()])
.as_::<Undefined>()
}
}
impl Selection {
/// The setPosition method.
/// [`Selection.setPosition`](https://developer.mozilla.org/en-US/docs/Web/API/Selection/setPosition)
pub fn set_position_with_offset(&self, node: &Node, offset: u32) -> Undefined {
self.inner
.call("setPosition", &[node.into(), offset.into()])
.as_::<Undefined>()
}
}
impl Selection {
/// The collapseToStart method.
/// [`Selection.collapseToStart`](https://developer.mozilla.org/en-US/docs/Web/API/Selection/collapseToStart)
pub fn collapse_to_start(&self) -> Undefined {
self.inner.call("collapseToStart", &[]).as_::<Undefined>()
}
}
impl Selection {
/// The collapseToEnd method.
/// [`Selection.collapseToEnd`](https://developer.mozilla.org/en-US/docs/Web/API/Selection/collapseToEnd)
pub fn collapse_to_end(&self) -> Undefined {
self.inner.call("collapseToEnd", &[]).as_::<Undefined>()
}
}
impl Selection {
/// The extend method.
/// [`Selection.extend`](https://developer.mozilla.org/en-US/docs/Web/API/Selection/extend)
pub fn extend(&self, node: &Node) -> Undefined {
self.inner.call("extend", &[node.into()]).as_::<Undefined>()
}
}
impl Selection {
/// The extend method.
/// [`Selection.extend`](https://developer.mozilla.org/en-US/docs/Web/API/Selection/extend)
pub fn extend_with_offset(&self, node: &Node, offset: u32) -> Undefined {
self.inner
.call("extend", &[node.into(), offset.into()])
.as_::<Undefined>()
}
}
impl Selection {
/// The setBaseAndExtent method.
/// [`Selection.setBaseAndExtent`](https://developer.mozilla.org/en-US/docs/Web/API/Selection/setBaseAndExtent)
pub fn set_base_and_extent(
&self,
anchor_node: &Node,
anchor_offset: u32,
focus_node: &Node,
focus_offset: u32,
) -> Undefined {
self.inner
.call(
"setBaseAndExtent",
&[
anchor_node.into(),
anchor_offset.into(),
focus_node.into(),
focus_offset.into(),
],
)
.as_::<Undefined>()
}
}
impl Selection {
/// The selectAllChildren method.
/// [`Selection.selectAllChildren`](https://developer.mozilla.org/en-US/docs/Web/API/Selection/selectAllChildren)
pub fn select_all_children(&self, node: &Node) -> Undefined {
self.inner
.call("selectAllChildren", &[node.into()])
.as_::<Undefined>()
}
}
impl Selection {
/// The modify method.
/// [`Selection.modify`](https://developer.mozilla.org/en-US/docs/Web/API/Selection/modify)
pub fn modify(&self) -> Undefined {
self.inner.call("modify", &[]).as_::<Undefined>()
}
}
impl Selection {
/// The modify method.
/// [`Selection.modify`](https://developer.mozilla.org/en-US/docs/Web/API/Selection/modify)
pub fn modify_with_alter(&self, alter: &JsString) -> Undefined {
self.inner
.call("modify", &[alter.into()])
.as_::<Undefined>()
}
}
impl Selection {
/// The modify method.
/// [`Selection.modify`](https://developer.mozilla.org/en-US/docs/Web/API/Selection/modify)
pub fn modify_with_alter_and_direction(
&self,
alter: &JsString,
direction: &JsString,
) -> Undefined {
self.inner
.call("modify", &[alter.into(), direction.into()])
.as_::<Undefined>()
}
}
impl Selection {
/// The modify method.
/// [`Selection.modify`](https://developer.mozilla.org/en-US/docs/Web/API/Selection/modify)
pub fn modify_with_alter_and_direction_and_granularity(
&self,
alter: &JsString,
direction: &JsString,
granularity: &JsString,
) -> Undefined {
self.inner
.call(
"modify",
&[alter.into(), direction.into(), granularity.into()],
)
.as_::<Undefined>()
}
}
impl Selection {
/// The deleteFromDocument method.
/// [`Selection.deleteFromDocument`](https://developer.mozilla.org/en-US/docs/Web/API/Selection/deleteFromDocument)
pub fn delete_from_document(&self) -> Undefined {
self.inner
.call("deleteFromDocument", &[])
.as_::<Undefined>()
}
}
impl Selection {
/// The containsNode method.
/// [`Selection.containsNode`](https://developer.mozilla.org/en-US/docs/Web/API/Selection/containsNode)
pub fn contains_node(&self, node: &Node) -> bool {
self.inner
.call("containsNode", &[node.into()])
.as_::<bool>()
}
}
impl Selection {
/// The containsNode method.
/// [`Selection.containsNode`](https://developer.mozilla.org/en-US/docs/Web/API/Selection/containsNode)
pub fn contains_node_with_allow_partial_containment(
&self,
node: &Node,
allow_partial_containment: bool,
) -> bool {
self.inner
.call(
"containsNode",
&[node.into(), allow_partial_containment.into()],
)
.as_::<bool>()
}
}