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