use crate::common::*;
use crate::AppKit::*;
use crate::Foundation::*;
use crate::GameController::*;
extern_class!(
#[derive(Debug, PartialEq, Eq, Hash)]
#[cfg(feature = "GameController_GCDualSenseGamepad")]
pub struct GCDualSenseGamepad;
#[cfg(feature = "GameController_GCDualSenseGamepad")]
unsafe impl ClassType for GCDualSenseGamepad {
#[inherits(GCPhysicalInputProfile, NSObject)]
type Super = GCExtendedGamepad;
type Mutability = InteriorMutable;
}
);
#[cfg(feature = "GameController_GCDualSenseGamepad")]
unsafe impl NSObjectProtocol for GCDualSenseGamepad {}
extern_methods!(
#[cfg(feature = "GameController_GCDualSenseGamepad")]
unsafe impl GCDualSenseGamepad {
#[cfg(feature = "GameController_GCControllerButtonInput")]
#[method_id(@__retain_semantics Other touchpadButton)]
pub unsafe fn touchpadButton(&self) -> Id<GCControllerButtonInput>;
#[cfg(feature = "GameController_GCControllerDirectionPad")]
#[method_id(@__retain_semantics Other touchpadPrimary)]
pub unsafe fn touchpadPrimary(&self) -> Id<GCControllerDirectionPad>;
#[cfg(feature = "GameController_GCControllerDirectionPad")]
#[method_id(@__retain_semantics Other touchpadSecondary)]
pub unsafe fn touchpadSecondary(&self) -> Id<GCControllerDirectionPad>;
#[cfg(feature = "GameController_GCDualSenseAdaptiveTrigger")]
#[method_id(@__retain_semantics Other leftTrigger)]
pub unsafe fn leftTrigger(&self) -> Id<GCDualSenseAdaptiveTrigger>;
#[cfg(feature = "GameController_GCDualSenseAdaptiveTrigger")]
#[method_id(@__retain_semantics Other rightTrigger)]
pub unsafe fn rightTrigger(&self) -> Id<GCDualSenseAdaptiveTrigger>;
}
);
extern_methods!(
#[cfg(feature = "GameController_GCDualSenseGamepad")]
unsafe impl GCDualSenseGamepad {
#[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>;
}
);