use core::ffi::*;
use core::ptr::NonNull;
use objc2::__framework_prelude::*;
#[cfg(feature = "objc2-core-foundation")]
use objc2_core_foundation::*;
use objc2_foundation::*;
use crate::*;
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct UINavigationControllerOperation(pub NSInteger);
impl UINavigationControllerOperation {
#[doc(alias = "UINavigationControllerOperationNone")]
pub const None: Self = Self(0);
#[doc(alias = "UINavigationControllerOperationPush")]
pub const Push: Self = Self(1);
#[doc(alias = "UINavigationControllerOperationPop")]
pub const Pop: Self = Self(2);
}
unsafe impl Encode for UINavigationControllerOperation {
const ENCODING: Encoding = NSInteger::ENCODING;
}
unsafe impl RefEncode for UINavigationControllerOperation {
const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}
extern "C" {
#[cfg(feature = "objc2-core-foundation")]
pub static UINavigationControllerHideShowBarDuration: CGFloat;
}
extern_class!(
#[unsafe(super(UIViewController, UIResponder, NSObject))]
#[thread_kind = MainThreadOnly]
#[derive(Debug, PartialEq, Eq, Hash)]
#[cfg(all(feature = "UIResponder", feature = "UIViewController"))]
pub struct UINavigationController;
);
#[cfg(all(feature = "UIResponder", feature = "UIViewController"))]
extern_conformance!(
unsafe impl NSCoding for UINavigationController {}
);
#[cfg(all(feature = "UIResponder", feature = "UIViewController"))]
extern_conformance!(
unsafe impl NSObjectProtocol for UINavigationController {}
);
#[cfg(all(
feature = "UIAppearance",
feature = "UIResponder",
feature = "UIViewController"
))]
extern_conformance!(
unsafe impl UIAppearanceContainer for UINavigationController {}
);
#[cfg(all(feature = "UIResponder", feature = "UIViewController"))]
extern_conformance!(
unsafe impl UIContentContainer for UINavigationController {}
);
#[cfg(all(
feature = "UIFocus",
feature = "UIResponder",
feature = "UIViewController"
))]
extern_conformance!(
unsafe impl UIFocusEnvironment for UINavigationController {}
);
#[cfg(all(feature = "UIResponder", feature = "UIViewController"))]
extern_conformance!(
unsafe impl UIResponderStandardEditActions for UINavigationController {}
);
#[cfg(all(
feature = "UIResponder",
feature = "UITraitCollection",
feature = "UIViewController"
))]
extern_conformance!(
unsafe impl UITraitEnvironment for UINavigationController {}
);
#[cfg(all(feature = "UIResponder", feature = "UIViewController"))]
impl UINavigationController {
extern_methods!(
#[unsafe(method(initWithNavigationBarClass:toolbarClass:))]
#[unsafe(method_family = init)]
pub unsafe fn initWithNavigationBarClass_toolbarClass(
this: Allocated<Self>,
navigation_bar_class: Option<&AnyClass>,
toolbar_class: Option<&AnyClass>,
) -> Retained<Self>;
#[unsafe(method(initWithRootViewController:))]
#[unsafe(method_family = init)]
pub fn initWithRootViewController(
this: Allocated<Self>,
root_view_controller: &UIViewController,
) -> Retained<Self>;
#[unsafe(method(initWithNibName:bundle:))]
#[unsafe(method_family = init)]
pub fn initWithNibName_bundle(
this: Allocated<Self>,
nib_name_or_nil: Option<&NSString>,
nib_bundle_or_nil: Option<&NSBundle>,
) -> Retained<Self>;
#[unsafe(method(initWithCoder:))]
#[unsafe(method_family = init)]
pub unsafe fn initWithCoder(
this: Allocated<Self>,
a_decoder: &NSCoder,
) -> Option<Retained<Self>>;
#[unsafe(method(pushViewController:animated:))]
#[unsafe(method_family = none)]
pub fn pushViewController_animated(
&self,
view_controller: &UIViewController,
animated: bool,
);
#[unsafe(method(popViewControllerAnimated:))]
#[unsafe(method_family = none)]
pub fn popViewControllerAnimated(
&self,
animated: bool,
) -> Option<Retained<UIViewController>>;
#[unsafe(method(popToViewController:animated:))]
#[unsafe(method_family = none)]
pub fn popToViewController_animated(
&self,
view_controller: &UIViewController,
animated: bool,
) -> Option<Retained<NSArray<UIViewController>>>;
#[unsafe(method(popToRootViewControllerAnimated:))]
#[unsafe(method_family = none)]
pub fn popToRootViewControllerAnimated(
&self,
animated: bool,
) -> Option<Retained<NSArray<UIViewController>>>;
#[unsafe(method(topViewController))]
#[unsafe(method_family = none)]
pub fn topViewController(&self) -> Option<Retained<UIViewController>>;
#[unsafe(method(visibleViewController))]
#[unsafe(method_family = none)]
pub fn visibleViewController(&self) -> Option<Retained<UIViewController>>;
#[unsafe(method(viewControllers))]
#[unsafe(method_family = none)]
pub fn viewControllers(&self) -> Retained<NSArray<UIViewController>>;
#[unsafe(method(setViewControllers:))]
#[unsafe(method_family = none)]
pub fn setViewControllers(&self, view_controllers: &NSArray<UIViewController>);
#[unsafe(method(setViewControllers:animated:))]
#[unsafe(method_family = none)]
pub fn setViewControllers_animated(
&self,
view_controllers: &NSArray<UIViewController>,
animated: bool,
);
#[unsafe(method(isNavigationBarHidden))]
#[unsafe(method_family = none)]
pub fn isNavigationBarHidden(&self) -> bool;
#[unsafe(method(setNavigationBarHidden:))]
#[unsafe(method_family = none)]
pub fn setNavigationBarHidden(&self, navigation_bar_hidden: bool);
#[unsafe(method(setNavigationBarHidden:animated:))]
#[unsafe(method_family = none)]
pub fn setNavigationBarHidden_animated(&self, hidden: bool, animated: bool);
#[cfg(all(feature = "UINavigationBar", feature = "UIView"))]
#[unsafe(method(navigationBar))]
#[unsafe(method_family = none)]
pub fn navigationBar(&self) -> Retained<UINavigationBar>;
#[unsafe(method(isToolbarHidden))]
#[unsafe(method_family = none)]
pub fn isToolbarHidden(&self) -> bool;
#[unsafe(method(setToolbarHidden:))]
#[unsafe(method_family = none)]
pub fn setToolbarHidden(&self, toolbar_hidden: bool);
#[unsafe(method(setToolbarHidden:animated:))]
#[unsafe(method_family = none)]
pub fn setToolbarHidden_animated(&self, hidden: bool, animated: bool);
#[cfg(all(feature = "UIToolbar", feature = "UIView"))]
#[unsafe(method(toolbar))]
#[unsafe(method_family = none)]
pub fn toolbar(&self) -> Option<Retained<UIToolbar>>;
#[unsafe(method(delegate))]
#[unsafe(method_family = none)]
pub fn delegate(
&self,
) -> Option<Retained<ProtocolObject<dyn UINavigationControllerDelegate>>>;
#[unsafe(method(setDelegate:))]
#[unsafe(method_family = none)]
pub unsafe fn setDelegate(
&self,
delegate: Option<&ProtocolObject<dyn UINavigationControllerDelegate>>,
);
#[cfg(feature = "UIGestureRecognizer")]
#[unsafe(method(interactivePopGestureRecognizer))]
#[unsafe(method_family = none)]
pub fn interactivePopGestureRecognizer(&self) -> Option<Retained<UIGestureRecognizer>>;
#[cfg(feature = "UIGestureRecognizer")]
#[unsafe(method(interactiveContentPopGestureRecognizer))]
#[unsafe(method_family = none)]
pub fn interactiveContentPopGestureRecognizer(
&self,
) -> Option<Retained<UIGestureRecognizer>>;
#[unsafe(method(showViewController:sender:))]
#[unsafe(method_family = none)]
pub unsafe fn showViewController_sender(
&self,
vc: &UIViewController,
sender: Option<&AnyObject>,
);
#[unsafe(method(hidesBarsWhenKeyboardAppears))]
#[unsafe(method_family = none)]
pub fn hidesBarsWhenKeyboardAppears(&self) -> bool;
#[unsafe(method(setHidesBarsWhenKeyboardAppears:))]
#[unsafe(method_family = none)]
pub fn setHidesBarsWhenKeyboardAppears(&self, hides_bars_when_keyboard_appears: bool);
#[unsafe(method(hidesBarsOnSwipe))]
#[unsafe(method_family = none)]
pub fn hidesBarsOnSwipe(&self) -> bool;
#[unsafe(method(setHidesBarsOnSwipe:))]
#[unsafe(method_family = none)]
pub fn setHidesBarsOnSwipe(&self, hides_bars_on_swipe: bool);
#[cfg(all(feature = "UIGestureRecognizer", feature = "UIPanGestureRecognizer"))]
#[unsafe(method(barHideOnSwipeGestureRecognizer))]
#[unsafe(method_family = none)]
pub fn barHideOnSwipeGestureRecognizer(&self) -> Retained<UIPanGestureRecognizer>;
#[unsafe(method(hidesBarsWhenVerticallyCompact))]
#[unsafe(method_family = none)]
pub fn hidesBarsWhenVerticallyCompact(&self) -> bool;
#[unsafe(method(setHidesBarsWhenVerticallyCompact:))]
#[unsafe(method_family = none)]
pub fn setHidesBarsWhenVerticallyCompact(&self, hides_bars_when_vertically_compact: bool);
#[unsafe(method(hidesBarsOnTap))]
#[unsafe(method_family = none)]
pub fn hidesBarsOnTap(&self) -> bool;
#[unsafe(method(setHidesBarsOnTap:))]
#[unsafe(method_family = none)]
pub fn setHidesBarsOnTap(&self, hides_bars_on_tap: bool);
#[cfg(all(feature = "UIGestureRecognizer", feature = "UITapGestureRecognizer"))]
#[unsafe(method(barHideOnTapGestureRecognizer))]
#[unsafe(method_family = none)]
pub unsafe fn barHideOnTapGestureRecognizer(&self) -> Retained<UITapGestureRecognizer>;
);
}
#[cfg(all(feature = "UIResponder", feature = "UIViewController"))]
impl UINavigationController {
extern_methods!(
#[unsafe(method(init))]
#[unsafe(method_family = init)]
pub fn init(this: Allocated<Self>) -> Retained<Self>;
#[unsafe(method(new))]
#[unsafe(method_family = new)]
pub fn new(mtm: MainThreadMarker) -> Retained<Self>;
);
}
extern_protocol!(
pub unsafe trait UINavigationControllerDelegate:
NSObjectProtocol + MainThreadOnly
{
#[cfg(all(feature = "UIResponder", feature = "UIViewController"))]
#[optional]
#[unsafe(method(navigationController:willShowViewController:animated:))]
#[unsafe(method_family = none)]
fn navigationController_willShowViewController_animated(
&self,
navigation_controller: &UINavigationController,
view_controller: &UIViewController,
animated: bool,
);
#[cfg(all(feature = "UIResponder", feature = "UIViewController"))]
#[optional]
#[unsafe(method(navigationController:didShowViewController:animated:))]
#[unsafe(method_family = none)]
fn navigationController_didShowViewController_animated(
&self,
navigation_controller: &UINavigationController,
view_controller: &UIViewController,
animated: bool,
);
#[cfg(all(
feature = "UIOrientation",
feature = "UIResponder",
feature = "UIViewController"
))]
#[optional]
#[unsafe(method(navigationControllerSupportedInterfaceOrientations:))]
#[unsafe(method_family = none)]
fn navigationControllerSupportedInterfaceOrientations(
&self,
navigation_controller: &UINavigationController,
) -> UIInterfaceOrientationMask;
#[cfg(all(
feature = "UIOrientation",
feature = "UIResponder",
feature = "UIViewController"
))]
#[optional]
#[unsafe(method(navigationControllerPreferredInterfaceOrientationForPresentation:))]
#[unsafe(method_family = none)]
fn navigationControllerPreferredInterfaceOrientationForPresentation(
&self,
navigation_controller: &UINavigationController,
) -> UIInterfaceOrientation;
#[cfg(all(
feature = "UIResponder",
feature = "UIViewController",
feature = "UIViewControllerTransitioning"
))]
#[optional]
#[unsafe(method(navigationController:interactionControllerForAnimationController:))]
#[unsafe(method_family = none)]
fn navigationController_interactionControllerForAnimationController(
&self,
navigation_controller: &UINavigationController,
animation_controller: &ProtocolObject<dyn UIViewControllerAnimatedTransitioning>,
) -> Option<Retained<ProtocolObject<dyn UIViewControllerInteractiveTransitioning>>>;
#[cfg(all(
feature = "UIResponder",
feature = "UIViewController",
feature = "UIViewControllerTransitioning"
))]
#[optional]
#[unsafe(method(navigationController:animationControllerForOperation:fromViewController:toViewController:))]
#[unsafe(method_family = none)]
fn navigationController_animationControllerForOperation_fromViewController_toViewController(
&self,
navigation_controller: &UINavigationController,
operation: UINavigationControllerOperation,
from_vc: &UIViewController,
to_vc: &UIViewController,
) -> Option<Retained<ProtocolObject<dyn UIViewControllerAnimatedTransitioning>>>;
}
);
#[cfg(all(feature = "UIResponder", feature = "UIViewController"))]
impl UIViewController {
extern_methods!(
#[cfg(feature = "UINavigationItem")]
#[unsafe(method(navigationItem))]
#[unsafe(method_family = none)]
pub fn navigationItem(&self) -> Retained<UINavigationItem>;
#[unsafe(method(hidesBottomBarWhenPushed))]
#[unsafe(method_family = none)]
pub fn hidesBottomBarWhenPushed(&self) -> bool;
#[unsafe(method(setHidesBottomBarWhenPushed:))]
#[unsafe(method_family = none)]
pub fn setHidesBottomBarWhenPushed(&self, hides_bottom_bar_when_pushed: bool);
#[unsafe(method(navigationController))]
#[unsafe(method_family = none)]
pub fn navigationController(&self) -> Option<Retained<UINavigationController>>;
);
}
#[cfg(all(feature = "UIResponder", feature = "UIViewController"))]
impl UIViewController {
extern_methods!(
#[cfg(all(feature = "UIBarButtonItem", feature = "UIBarItem"))]
#[unsafe(method(toolbarItems))]
#[unsafe(method_family = none)]
pub fn toolbarItems(&self) -> Option<Retained<NSArray<UIBarButtonItem>>>;
#[cfg(all(feature = "UIBarButtonItem", feature = "UIBarItem"))]
#[unsafe(method(setToolbarItems:))]
#[unsafe(method_family = none)]
pub fn setToolbarItems(&self, toolbar_items: Option<&NSArray<UIBarButtonItem>>);
#[cfg(all(feature = "UIBarButtonItem", feature = "UIBarItem"))]
#[unsafe(method(setToolbarItems:animated:))]
#[unsafe(method_family = none)]
pub fn setToolbarItems_animated(
&self,
toolbar_items: Option<&NSArray<UIBarButtonItem>>,
animated: bool,
);
);
}