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
use crate::common::*;
use crate::AppKit::*;
use crate::Foundation::*;
use crate::WebKit::*;
extern_methods!(
#[cfg(feature = "WebKit_DOMNode")]
unsafe impl DOMNode {
#[method(boundingBox)]
pub unsafe fn boundingBox(&self) -> NSRect;
#[cfg(feature = "Foundation_NSArray")]
#[method_id(@__retain_semantics Other lineBoxRects)]
pub unsafe fn lineBoxRects(&self) -> Option<Id<NSArray, Shared>>;
}
);
extern_methods!(
#[cfg(feature = "WebKit_DOMElement")]
unsafe impl DOMElement {
#[cfg(feature = "AppKit_NSImage")]
#[method_id(@__retain_semantics Other image)]
pub unsafe fn image(&self) -> Option<Id<NSImage, Shared>>;
}
);
extern_methods!(
#[cfg(feature = "WebKit_DOMHTMLDocument")]
unsafe impl DOMHTMLDocument {
#[cfg(all(
feature = "Foundation_NSString",
feature = "Foundation_NSURL",
feature = "WebKit_DOMDocumentFragment"
))]
#[method_id(@__retain_semantics Other createDocumentFragmentWithMarkupString:baseURL:)]
pub unsafe fn createDocumentFragmentWithMarkupString_baseURL(
&self,
markup_string: Option<&NSString>,
base_url: Option<&NSURL>,
) -> Option<Id<DOMDocumentFragment, Shared>>;
#[cfg(all(
feature = "Foundation_NSString",
feature = "WebKit_DOMDocumentFragment"
))]
#[method_id(@__retain_semantics Other createDocumentFragmentWithText:)]
pub unsafe fn createDocumentFragmentWithText(
&self,
text: Option<&NSString>,
) -> Option<Id<DOMDocumentFragment, Shared>>;
}
);