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
//! This file has been automatically generated by `objc2`'s `header-translator`.
//! DO NOT EDIT
#[cfg(feature = "block2")]
use block2::*;
use objc2::__framework_prelude::*;
use objc2_foundation::*;

use crate::*;

#[cfg(all(feature = "GCControllerElement", feature = "block2"))]
pub type GCControllerDirectionPadValueChangedHandler =
    *mut Block<dyn Fn(NonNull<GCControllerDirectionPad>, c_float, c_float)>;

extern_class!(
    #[derive(Debug, PartialEq, Eq, Hash)]
    #[cfg(feature = "GCControllerElement")]
    pub struct GCControllerDirectionPad;

    #[cfg(feature = "GCControllerElement")]
    unsafe impl ClassType for GCControllerDirectionPad {
        #[inherits(NSObject)]
        type Super = GCControllerElement;
        type Mutability = InteriorMutable;
    }
);

#[cfg(feature = "GCControllerElement")]
unsafe impl NSObjectProtocol for GCControllerDirectionPad {}

extern_methods!(
    #[cfg(feature = "GCControllerElement")]
    unsafe impl GCControllerDirectionPad {
        #[cfg(feature = "block2")]
        #[method(valueChangedHandler)]
        pub unsafe fn valueChangedHandler(&self) -> GCControllerDirectionPadValueChangedHandler;

        #[cfg(feature = "block2")]
        #[method(setValueChangedHandler:)]
        pub unsafe fn setValueChangedHandler(
            &self,
            value_changed_handler: GCControllerDirectionPadValueChangedHandler,
        );

        #[cfg(feature = "GCControllerAxisInput")]
        #[method_id(@__retain_semantics Other xAxis)]
        pub unsafe fn xAxis(&self) -> Id<GCControllerAxisInput>;

        #[cfg(feature = "GCControllerAxisInput")]
        #[method_id(@__retain_semantics Other yAxis)]
        pub unsafe fn yAxis(&self) -> Id<GCControllerAxisInput>;

        #[cfg(feature = "GCControllerButtonInput")]
        #[method_id(@__retain_semantics Other up)]
        pub unsafe fn up(&self) -> Id<GCControllerButtonInput>;

        #[cfg(feature = "GCControllerButtonInput")]
        #[method_id(@__retain_semantics Other down)]
        pub unsafe fn down(&self) -> Id<GCControllerButtonInput>;

        #[cfg(feature = "GCControllerButtonInput")]
        #[method_id(@__retain_semantics Other left)]
        pub unsafe fn left(&self) -> Id<GCControllerButtonInput>;

        #[cfg(feature = "GCControllerButtonInput")]
        #[method_id(@__retain_semantics Other right)]
        pub unsafe fn right(&self) -> Id<GCControllerButtonInput>;

        #[method(setValueForXAxis:yAxis:)]
        pub unsafe fn setValueForXAxis_yAxis(&self, x_axis: c_float, y_axis: c_float);
    }
);

extern_methods!(
    /// Methods declared on superclass `NSObject`
    #[cfg(feature = "GCControllerElement")]
    unsafe impl GCControllerDirectionPad {
        #[method_id(@__retain_semantics Init init)]
        pub unsafe fn init(this: Allocated<Self>) -> Id<Self>;

        #[method_id(@__retain_semantics New new)]
        pub unsafe fn new() -> Id<Self>;
    }
);