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::*;
pub type NSSplitViewAutosaveName = NSString;
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct NSSplitViewDividerStyle(pub NSInteger);
impl NSSplitViewDividerStyle {
#[doc(alias = "NSSplitViewDividerStyleThick")]
pub const Thick: Self = Self(1);
#[doc(alias = "NSSplitViewDividerStyleThin")]
pub const Thin: Self = Self(2);
#[doc(alias = "NSSplitViewDividerStylePaneSplitter")]
pub const PaneSplitter: Self = Self(3);
}
unsafe impl Encode for NSSplitViewDividerStyle {
const ENCODING: Encoding = NSInteger::ENCODING;
}
unsafe impl RefEncode for NSSplitViewDividerStyle {
const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}
extern_class!(
#[unsafe(super(NSView, NSResponder, NSObject))]
#[derive(Debug, PartialEq, Eq, Hash)]
#[cfg(all(feature = "NSResponder", feature = "NSView"))]
pub struct NSSplitView;
);
#[cfg(all(
feature = "NSAccessibilityProtocols",
feature = "NSResponder",
feature = "NSView"
))]
extern_conformance!(
unsafe impl NSAccessibility for NSSplitView {}
);
#[cfg(all(
feature = "NSAccessibilityProtocols",
feature = "NSResponder",
feature = "NSView"
))]
extern_conformance!(
unsafe impl NSAccessibilityElementProtocol for NSSplitView {}
);
#[cfg(all(feature = "NSAnimation", feature = "NSResponder", feature = "NSView"))]
extern_conformance!(
unsafe impl NSAnimatablePropertyContainer for NSSplitView {}
);
#[cfg(all(feature = "NSAppearance", feature = "NSResponder", feature = "NSView"))]
extern_conformance!(
unsafe impl NSAppearanceCustomization for NSSplitView {}
);
#[cfg(all(feature = "NSResponder", feature = "NSView"))]
extern_conformance!(
unsafe impl NSCoding for NSSplitView {}
);
#[cfg(all(feature = "NSDragging", feature = "NSResponder", feature = "NSView"))]
extern_conformance!(
unsafe impl NSDraggingDestination for NSSplitView {}
);
#[cfg(all(feature = "NSResponder", feature = "NSView"))]
extern_conformance!(
unsafe impl NSObjectProtocol for NSSplitView {}
);
#[cfg(all(
feature = "NSResponder",
feature = "NSUserInterfaceItemIdentification",
feature = "NSView"
))]
extern_conformance!(
unsafe impl NSUserInterfaceItemIdentification for NSSplitView {}
);
#[cfg(all(feature = "NSResponder", feature = "NSView"))]
impl NSSplitView {
extern_methods!(
#[unsafe(method(isVertical))]
#[unsafe(method_family = none)]
pub fn isVertical(&self) -> bool;
#[unsafe(method(setVertical:))]
#[unsafe(method_family = none)]
pub fn setVertical(&self, vertical: bool);
#[unsafe(method(dividerStyle))]
#[unsafe(method_family = none)]
pub fn dividerStyle(&self) -> NSSplitViewDividerStyle;
#[unsafe(method(setDividerStyle:))]
#[unsafe(method_family = none)]
pub fn setDividerStyle(&self, divider_style: NSSplitViewDividerStyle);
#[unsafe(method(autosaveName))]
#[unsafe(method_family = none)]
pub fn autosaveName(&self) -> Option<Retained<NSSplitViewAutosaveName>>;
#[unsafe(method(setAutosaveName:))]
#[unsafe(method_family = none)]
pub fn setAutosaveName(&self, autosave_name: Option<&NSSplitViewAutosaveName>);
#[unsafe(method(delegate))]
#[unsafe(method_family = none)]
pub fn delegate(&self) -> Option<Retained<ProtocolObject<dyn NSSplitViewDelegate>>>;
#[unsafe(method(setDelegate:))]
#[unsafe(method_family = none)]
pub fn setDelegate(&self, delegate: Option<&ProtocolObject<dyn NSSplitViewDelegate>>);
#[unsafe(method(drawDividerInRect:))]
#[unsafe(method_family = none)]
pub fn drawDividerInRect(&self, rect: NSRect);
#[cfg(feature = "NSColor")]
#[unsafe(method(dividerColor))]
#[unsafe(method_family = none)]
pub fn dividerColor(&self) -> Retained<NSColor>;
#[cfg(feature = "objc2-core-foundation")]
#[unsafe(method(dividerThickness))]
#[unsafe(method_family = none)]
pub fn dividerThickness(&self) -> CGFloat;
#[unsafe(method(adjustSubviews))]
#[unsafe(method_family = none)]
pub fn adjustSubviews(&self);
#[unsafe(method(isSubviewCollapsed:))]
#[unsafe(method_family = none)]
pub fn isSubviewCollapsed(&self, subview: &NSView) -> bool;
#[cfg(feature = "objc2-core-foundation")]
#[unsafe(method(minPossiblePositionOfDividerAtIndex:))]
#[unsafe(method_family = none)]
pub fn minPossiblePositionOfDividerAtIndex(&self, divider_index: NSInteger) -> CGFloat;
#[cfg(feature = "objc2-core-foundation")]
#[unsafe(method(maxPossiblePositionOfDividerAtIndex:))]
#[unsafe(method_family = none)]
pub fn maxPossiblePositionOfDividerAtIndex(&self, divider_index: NSInteger) -> CGFloat;
#[cfg(feature = "objc2-core-foundation")]
#[unsafe(method(setPosition:ofDividerAtIndex:))]
#[unsafe(method_family = none)]
pub fn setPosition_ofDividerAtIndex(&self, position: CGFloat, divider_index: NSInteger);
#[cfg(feature = "NSLayoutConstraint")]
#[unsafe(method(holdingPriorityForSubviewAtIndex:))]
#[unsafe(method_family = none)]
pub fn holdingPriorityForSubviewAtIndex(
&self,
subview_index: NSInteger,
) -> NSLayoutPriority;
#[cfg(feature = "NSLayoutConstraint")]
#[unsafe(method(setHoldingPriority:forSubviewAtIndex:))]
#[unsafe(method_family = none)]
pub fn setHoldingPriority_forSubviewAtIndex(
&self,
priority: NSLayoutPriority,
subview_index: NSInteger,
);
);
}
#[cfg(all(feature = "NSResponder", feature = "NSView"))]
impl NSSplitView {
extern_methods!(
#[unsafe(method(initWithFrame:))]
#[unsafe(method_family = init)]
pub fn initWithFrame(this: Allocated<Self>, frame_rect: NSRect) -> Retained<Self>;
#[unsafe(method(initWithCoder:))]
#[unsafe(method_family = init)]
pub unsafe fn initWithCoder(
this: Allocated<Self>,
coder: &NSCoder,
) -> Option<Retained<Self>>;
);
}
#[cfg(all(feature = "NSResponder", feature = "NSView"))]
impl NSSplitView {
extern_methods!(
#[unsafe(method(init))]
#[unsafe(method_family = init)]
pub fn init(this: Allocated<Self>) -> Retained<Self>;
);
}
#[cfg(all(feature = "NSResponder", feature = "NSView"))]
impl NSSplitView {
extern_methods!(
#[unsafe(method(new))]
#[unsafe(method_family = new)]
pub fn new(mtm: MainThreadMarker) -> Retained<Self>;
);
}
#[cfg(all(feature = "NSResponder", feature = "NSView"))]
impl NSSplitView {
extern_methods!(
#[unsafe(method(arrangesAllSubviews))]
#[unsafe(method_family = none)]
pub fn arrangesAllSubviews(&self) -> bool;
#[unsafe(method(setArrangesAllSubviews:))]
#[unsafe(method_family = none)]
pub fn setArrangesAllSubviews(&self, arranges_all_subviews: bool);
#[unsafe(method(arrangedSubviews))]
#[unsafe(method_family = none)]
pub fn arrangedSubviews(&self) -> Retained<NSArray<NSView>>;
#[unsafe(method(addArrangedSubview:))]
#[unsafe(method_family = none)]
pub fn addArrangedSubview(&self, view: &NSView);
#[unsafe(method(insertArrangedSubview:atIndex:))]
#[unsafe(method_family = none)]
pub fn insertArrangedSubview_atIndex(&self, view: &NSView, index: NSInteger);
#[unsafe(method(removeArrangedSubview:))]
#[unsafe(method_family = none)]
pub fn removeArrangedSubview(&self, view: &NSView);
);
}
extern_protocol!(
pub unsafe trait NSSplitViewDelegate: NSObjectProtocol + MainThreadOnly {
#[cfg(all(feature = "NSResponder", feature = "NSView"))]
#[optional]
#[unsafe(method(splitView:canCollapseSubview:))]
#[unsafe(method_family = none)]
fn splitView_canCollapseSubview(&self, split_view: &NSSplitView, subview: &NSView) -> bool;
#[cfg(all(feature = "NSResponder", feature = "NSView"))]
#[deprecated = "NSSplitView no longer supports collapsing sections via double-click. This delegate method is never called."]
#[optional]
#[unsafe(method(splitView:shouldCollapseSubview:forDoubleClickOnDividerAtIndex:))]
#[unsafe(method_family = none)]
fn splitView_shouldCollapseSubview_forDoubleClickOnDividerAtIndex(
&self,
split_view: &NSSplitView,
subview: &NSView,
divider_index: NSInteger,
) -> bool;
#[cfg(all(
feature = "NSResponder",
feature = "NSView",
feature = "objc2-core-foundation"
))]
#[optional]
#[unsafe(method(splitView:constrainMinCoordinate:ofSubviewAt:))]
#[unsafe(method_family = none)]
fn splitView_constrainMinCoordinate_ofSubviewAt(
&self,
split_view: &NSSplitView,
proposed_minimum_position: CGFloat,
divider_index: NSInteger,
) -> CGFloat;
#[cfg(all(
feature = "NSResponder",
feature = "NSView",
feature = "objc2-core-foundation"
))]
#[optional]
#[unsafe(method(splitView:constrainMaxCoordinate:ofSubviewAt:))]
#[unsafe(method_family = none)]
fn splitView_constrainMaxCoordinate_ofSubviewAt(
&self,
split_view: &NSSplitView,
proposed_maximum_position: CGFloat,
divider_index: NSInteger,
) -> CGFloat;
#[cfg(all(
feature = "NSResponder",
feature = "NSView",
feature = "objc2-core-foundation"
))]
#[optional]
#[unsafe(method(splitView:constrainSplitPosition:ofSubviewAt:))]
#[unsafe(method_family = none)]
fn splitView_constrainSplitPosition_ofSubviewAt(
&self,
split_view: &NSSplitView,
proposed_position: CGFloat,
divider_index: NSInteger,
) -> CGFloat;
#[cfg(all(feature = "NSResponder", feature = "NSView"))]
#[optional]
#[unsafe(method(splitView:resizeSubviewsWithOldSize:))]
#[unsafe(method_family = none)]
fn splitView_resizeSubviewsWithOldSize(&self, split_view: &NSSplitView, old_size: NSSize);
#[cfg(all(feature = "NSResponder", feature = "NSView"))]
#[optional]
#[unsafe(method(splitView:shouldAdjustSizeOfSubview:))]
#[unsafe(method_family = none)]
fn splitView_shouldAdjustSizeOfSubview(
&self,
split_view: &NSSplitView,
view: &NSView,
) -> bool;
#[cfg(all(feature = "NSResponder", feature = "NSView"))]
#[optional]
#[unsafe(method(splitView:shouldHideDividerAtIndex:))]
#[unsafe(method_family = none)]
fn splitView_shouldHideDividerAtIndex(
&self,
split_view: &NSSplitView,
divider_index: NSInteger,
) -> bool;
#[cfg(all(feature = "NSResponder", feature = "NSView"))]
#[optional]
#[unsafe(method(splitView:effectiveRect:forDrawnRect:ofDividerAtIndex:))]
#[unsafe(method_family = none)]
fn splitView_effectiveRect_forDrawnRect_ofDividerAtIndex(
&self,
split_view: &NSSplitView,
proposed_effective_rect: NSRect,
drawn_rect: NSRect,
divider_index: NSInteger,
) -> NSRect;
#[cfg(all(feature = "NSResponder", feature = "NSView"))]
#[optional]
#[unsafe(method(splitView:additionalEffectiveRectOfDividerAtIndex:))]
#[unsafe(method_family = none)]
fn splitView_additionalEffectiveRectOfDividerAtIndex(
&self,
split_view: &NSSplitView,
divider_index: NSInteger,
) -> NSRect;
#[optional]
#[unsafe(method(splitViewWillResizeSubviews:))]
#[unsafe(method_family = none)]
fn splitViewWillResizeSubviews(&self, notification: &NSNotification);
#[optional]
#[unsafe(method(splitViewDidResizeSubviews:))]
#[unsafe(method_family = none)]
fn splitViewDidResizeSubviews(&self, notification: &NSNotification);
}
);
extern "C" {
pub static NSSplitViewWillResizeSubviewsNotification: &'static NSNotificationName;
}
extern "C" {
pub static NSSplitViewDidResizeSubviewsNotification: &'static NSNotificationName;
}
#[cfg(all(feature = "NSResponder", feature = "NSView"))]
impl NSSplitView {
extern_methods!(
#[deprecated]
#[unsafe(method(setIsPaneSplitter:))]
#[unsafe(method_family = none)]
pub fn setIsPaneSplitter(&self, flag: bool);
#[deprecated]
#[unsafe(method(isPaneSplitter))]
#[unsafe(method_family = none)]
pub fn isPaneSplitter(&self) -> bool;
);
}