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
//! This file has been automatically generated by `objc2`'s `header-translator`.
//! DO NOT EDIT
use objc2::__framework_prelude::*;
use objc2_foundation::*;

use crate::*;

extern_class!(
    #[derive(Debug, PartialEq, Eq, Hash)]
    pub struct UITextDragPreviewRenderer;

    unsafe impl ClassType for UITextDragPreviewRenderer {
        type Super = NSObject;
        type Mutability = MainThreadOnly;
    }
);

unsafe impl NSObjectProtocol for UITextDragPreviewRenderer {}

extern_methods!(
    unsafe impl UITextDragPreviewRenderer {
        #[cfg(feature = "NSLayoutManager")]
        #[method_id(@__retain_semantics Init initWithLayoutManager:range:)]
        pub unsafe fn initWithLayoutManager_range(
            this: Allocated<Self>,
            layout_manager: &NSLayoutManager,
            range: NSRange,
        ) -> Retained<Self>;

        #[cfg(feature = "NSLayoutManager")]
        #[method_id(@__retain_semantics Init initWithLayoutManager:range:unifyRects:)]
        pub unsafe fn initWithLayoutManager_range_unifyRects(
            this: Allocated<Self>,
            layout_manager: &NSLayoutManager,
            range: NSRange,
            unify_rects: bool,
        ) -> Retained<Self>;

        #[method_id(@__retain_semantics New new)]
        pub unsafe fn new(mtm: MainThreadMarker) -> Retained<Self>;

        #[method_id(@__retain_semantics Init init)]
        pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;

        #[cfg(feature = "NSLayoutManager")]
        #[method_id(@__retain_semantics Other layoutManager)]
        pub unsafe fn layoutManager(&self) -> Retained<NSLayoutManager>;

        #[cfg(feature = "UIImage")]
        #[method_id(@__retain_semantics Other image)]
        pub unsafe fn image(&self) -> Retained<UIImage>;

        #[method(firstLineRect)]
        pub unsafe fn firstLineRect(&self) -> CGRect;

        #[method(bodyRect)]
        pub unsafe fn bodyRect(&self) -> CGRect;

        #[method(lastLineRect)]
        pub unsafe fn lastLineRect(&self) -> CGRect;

        #[method(adjustFirstLineRect:bodyRect:lastLineRect:textOrigin:)]
        pub unsafe fn adjustFirstLineRect_bodyRect_lastLineRect_textOrigin(
            &self,
            first_line_rect: NonNull<CGRect>,
            body_rect: NonNull<CGRect>,
            last_line_rect: NonNull<CGRect>,
            origin: CGPoint,
        );
    }
);