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 NSTableViewDropOperation(pub NSUInteger);
impl NSTableViewDropOperation {
#[doc(alias = "NSTableViewDropOn")]
pub const On: Self = Self(0);
#[doc(alias = "NSTableViewDropAbove")]
pub const Above: Self = Self(1);
}
unsafe impl Encode for NSTableViewDropOperation {
const ENCODING: Encoding = NSUInteger::ENCODING;
}
unsafe impl RefEncode for NSTableViewDropOperation {
const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct NSTableViewColumnAutoresizingStyle(pub NSUInteger);
impl NSTableViewColumnAutoresizingStyle {
#[doc(alias = "NSTableViewNoColumnAutoresizing")]
pub const NoColumnAutoresizing: Self = Self(0);
#[doc(alias = "NSTableViewUniformColumnAutoresizingStyle")]
pub const UniformColumnAutoresizingStyle: Self = Self(1);
#[doc(alias = "NSTableViewSequentialColumnAutoresizingStyle")]
pub const SequentialColumnAutoresizingStyle: Self = Self(2);
#[doc(alias = "NSTableViewReverseSequentialColumnAutoresizingStyle")]
pub const ReverseSequentialColumnAutoresizingStyle: Self = Self(3);
#[doc(alias = "NSTableViewLastColumnOnlyAutoresizingStyle")]
pub const LastColumnOnlyAutoresizingStyle: Self = Self(4);
#[doc(alias = "NSTableViewFirstColumnOnlyAutoresizingStyle")]
pub const FirstColumnOnlyAutoresizingStyle: Self = Self(5);
}
unsafe impl Encode for NSTableViewColumnAutoresizingStyle {
const ENCODING: Encoding = NSUInteger::ENCODING;
}
unsafe impl RefEncode for NSTableViewColumnAutoresizingStyle {
const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct NSTableViewGridLineStyle(pub NSUInteger);
bitflags::bitflags! {
impl NSTableViewGridLineStyle: NSUInteger {
#[doc(alias = "NSTableViewGridNone")]
const GridNone = 0;
#[doc(alias = "NSTableViewSolidVerticalGridLineMask")]
const SolidVerticalGridLineMask = 1<<0;
#[doc(alias = "NSTableViewSolidHorizontalGridLineMask")]
const SolidHorizontalGridLineMask = 1<<1;
#[doc(alias = "NSTableViewDashedHorizontalGridLineMask")]
const DashedHorizontalGridLineMask = 1<<3;
}
}
unsafe impl Encode for NSTableViewGridLineStyle {
const ENCODING: Encoding = NSUInteger::ENCODING;
}
unsafe impl RefEncode for NSTableViewGridLineStyle {
const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct NSTableViewRowSizeStyle(pub NSInteger);
impl NSTableViewRowSizeStyle {
#[doc(alias = "NSTableViewRowSizeStyleDefault")]
pub const Default: Self = Self(-1);
#[doc(alias = "NSTableViewRowSizeStyleCustom")]
pub const Custom: Self = Self(0);
#[doc(alias = "NSTableViewRowSizeStyleSmall")]
pub const Small: Self = Self(1);
#[doc(alias = "NSTableViewRowSizeStyleMedium")]
pub const Medium: Self = Self(2);
#[doc(alias = "NSTableViewRowSizeStyleLarge")]
pub const Large: Self = Self(3);
}
unsafe impl Encode for NSTableViewRowSizeStyle {
const ENCODING: Encoding = NSInteger::ENCODING;
}
unsafe impl RefEncode for NSTableViewRowSizeStyle {
const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct NSTableViewStyle(pub NSInteger);
impl NSTableViewStyle {
#[doc(alias = "NSTableViewStyleAutomatic")]
pub const Automatic: Self = Self(0);
#[doc(alias = "NSTableViewStyleFullWidth")]
pub const FullWidth: Self = Self(1);
#[doc(alias = "NSTableViewStyleInset")]
pub const Inset: Self = Self(2);
#[doc(alias = "NSTableViewStyleSourceList")]
pub const SourceList: Self = Self(3);
#[doc(alias = "NSTableViewStylePlain")]
pub const Plain: Self = Self(4);
}
unsafe impl Encode for NSTableViewStyle {
const ENCODING: Encoding = NSInteger::ENCODING;
}
unsafe impl RefEncode for NSTableViewStyle {
const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct NSTableViewSelectionHighlightStyle(pub NSInteger);
impl NSTableViewSelectionHighlightStyle {
#[doc(alias = "NSTableViewSelectionHighlightStyleNone")]
pub const None: Self = Self(-1);
#[doc(alias = "NSTableViewSelectionHighlightStyleRegular")]
pub const Regular: Self = Self(0);
#[doc(alias = "NSTableViewSelectionHighlightStyleSourceList")]
#[deprecated = "Set the NSTableView.style property to NSTableViewStyleSourceList instead."]
pub const SourceList: Self = Self(1);
}
unsafe impl Encode for NSTableViewSelectionHighlightStyle {
const ENCODING: Encoding = NSInteger::ENCODING;
}
unsafe impl RefEncode for NSTableViewSelectionHighlightStyle {
const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct NSTableViewDraggingDestinationFeedbackStyle(pub NSInteger);
impl NSTableViewDraggingDestinationFeedbackStyle {
#[doc(alias = "NSTableViewDraggingDestinationFeedbackStyleNone")]
pub const None: Self = Self(-1);
#[doc(alias = "NSTableViewDraggingDestinationFeedbackStyleRegular")]
pub const Regular: Self = Self(0);
#[doc(alias = "NSTableViewDraggingDestinationFeedbackStyleSourceList")]
pub const SourceList: Self = Self(1);
#[doc(alias = "NSTableViewDraggingDestinationFeedbackStyleGap")]
pub const Gap: Self = Self(2);
}
unsafe impl Encode for NSTableViewDraggingDestinationFeedbackStyle {
const ENCODING: Encoding = NSInteger::ENCODING;
}
unsafe impl RefEncode for NSTableViewDraggingDestinationFeedbackStyle {
const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct NSTableRowActionEdge(pub NSInteger);
impl NSTableRowActionEdge {
#[doc(alias = "NSTableRowActionEdgeLeading")]
pub const Leading: Self = Self(0);
#[doc(alias = "NSTableRowActionEdgeTrailing")]
pub const Trailing: Self = Self(1);
}
unsafe impl Encode for NSTableRowActionEdge {
const ENCODING: Encoding = NSInteger::ENCODING;
}
unsafe impl RefEncode for NSTableRowActionEdge {
const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}
pub type NSTableViewAutosaveName = NSString;
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct NSTableViewAnimationOptions(pub NSUInteger);
bitflags::bitflags! {
impl NSTableViewAnimationOptions: NSUInteger {
#[doc(alias = "NSTableViewAnimationEffectNone")]
const EffectNone = 0x0;
#[doc(alias = "NSTableViewAnimationEffectFade")]
const EffectFade = 0x1;
#[doc(alias = "NSTableViewAnimationEffectGap")]
const EffectGap = 0x2;
#[doc(alias = "NSTableViewAnimationSlideUp")]
const SlideUp = 0x10;
#[doc(alias = "NSTableViewAnimationSlideDown")]
const SlideDown = 0x20;
#[doc(alias = "NSTableViewAnimationSlideLeft")]
const SlideLeft = 0x30;
#[doc(alias = "NSTableViewAnimationSlideRight")]
const SlideRight = 0x40;
}
}
unsafe impl Encode for NSTableViewAnimationOptions {
const ENCODING: Encoding = NSUInteger::ENCODING;
}
unsafe impl RefEncode for NSTableViewAnimationOptions {
const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}
extern_class!(
#[unsafe(super(NSControl, NSView, NSResponder, NSObject))]
#[derive(Debug, PartialEq, Eq, Hash)]
#[cfg(all(feature = "NSControl", feature = "NSResponder", feature = "NSView"))]
pub struct NSTableView;
);
#[cfg(all(
feature = "NSAccessibilityProtocols",
feature = "NSControl",
feature = "NSResponder",
feature = "NSView"
))]
extern_conformance!(
unsafe impl NSAccessibility for NSTableView {}
);
#[cfg(all(
feature = "NSAccessibilityProtocols",
feature = "NSControl",
feature = "NSResponder",
feature = "NSView"
))]
extern_conformance!(
unsafe impl NSAccessibilityElementProtocol for NSTableView {}
);
#[cfg(all(
feature = "NSAccessibilityProtocols",
feature = "NSControl",
feature = "NSResponder",
feature = "NSView"
))]
extern_conformance!(
unsafe impl NSAccessibilityGroup for NSTableView {}
);
#[cfg(all(
feature = "NSAccessibilityProtocols",
feature = "NSControl",
feature = "NSResponder",
feature = "NSView"
))]
extern_conformance!(
unsafe impl NSAccessibilityTable for NSTableView {}
);
#[cfg(all(
feature = "NSAnimation",
feature = "NSControl",
feature = "NSResponder",
feature = "NSView"
))]
extern_conformance!(
unsafe impl NSAnimatablePropertyContainer for NSTableView {}
);
#[cfg(all(
feature = "NSAppearance",
feature = "NSControl",
feature = "NSResponder",
feature = "NSView"
))]
extern_conformance!(
unsafe impl NSAppearanceCustomization for NSTableView {}
);
#[cfg(all(feature = "NSControl", feature = "NSResponder", feature = "NSView"))]
extern_conformance!(
unsafe impl NSCoding for NSTableView {}
);
#[cfg(all(
feature = "NSControl",
feature = "NSDragging",
feature = "NSResponder",
feature = "NSView"
))]
extern_conformance!(
unsafe impl NSDraggingDestination for NSTableView {}
);
#[cfg(all(
feature = "NSControl",
feature = "NSDragging",
feature = "NSResponder",
feature = "NSView"
))]
extern_conformance!(
unsafe impl NSDraggingSource for NSTableView {}
);
#[cfg(all(feature = "NSControl", feature = "NSResponder", feature = "NSView"))]
extern_conformance!(
unsafe impl NSObjectProtocol for NSTableView {}
);
#[cfg(all(
feature = "NSControl",
feature = "NSResponder",
feature = "NSText",
feature = "NSView"
))]
extern_conformance!(
unsafe impl NSTextDelegate for NSTableView {}
);
#[cfg(all(
feature = "NSControl",
feature = "NSResponder",
feature = "NSText",
feature = "NSTextView",
feature = "NSView"
))]
extern_conformance!(
unsafe impl NSTextViewDelegate for NSTableView {}
);
#[cfg(all(
feature = "NSControl",
feature = "NSResponder",
feature = "NSUserInterfaceItemIdentification",
feature = "NSView"
))]
extern_conformance!(
unsafe impl NSUserInterfaceItemIdentification for NSTableView {}
);
#[cfg(all(
feature = "NSControl",
feature = "NSResponder",
feature = "NSUserInterfaceValidation",
feature = "NSView"
))]
extern_conformance!(
unsafe impl NSUserInterfaceValidations for NSTableView {}
);
#[cfg(all(feature = "NSControl", feature = "NSResponder", feature = "NSView"))]
impl NSTableView {
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>>;
#[unsafe(method(dataSource))]
#[unsafe(method_family = none)]
pub unsafe fn dataSource(
&self,
) -> Option<Retained<ProtocolObject<dyn NSTableViewDataSource>>>;
#[unsafe(method(setDataSource:))]
#[unsafe(method_family = none)]
pub unsafe fn setDataSource(
&self,
data_source: Option<&ProtocolObject<dyn NSTableViewDataSource>>,
);
#[unsafe(method(delegate))]
#[unsafe(method_family = none)]
pub unsafe fn delegate(&self) -> Option<Retained<ProtocolObject<dyn NSTableViewDelegate>>>;
#[unsafe(method(setDelegate:))]
#[unsafe(method_family = none)]
pub unsafe fn setDelegate(
&self,
delegate: Option<&ProtocolObject<dyn NSTableViewDelegate>>,
);
#[cfg(feature = "NSTableHeaderView")]
#[unsafe(method(headerView))]
#[unsafe(method_family = none)]
pub fn headerView(&self) -> Option<Retained<NSTableHeaderView>>;
#[cfg(feature = "NSTableHeaderView")]
#[unsafe(method(setHeaderView:))]
#[unsafe(method_family = none)]
pub fn setHeaderView(&self, header_view: Option<&NSTableHeaderView>);
#[unsafe(method(cornerView))]
#[unsafe(method_family = none)]
pub fn cornerView(&self) -> Option<Retained<NSView>>;
#[unsafe(method(setCornerView:))]
#[unsafe(method_family = none)]
pub fn setCornerView(&self, corner_view: Option<&NSView>);
#[unsafe(method(allowsColumnReordering))]
#[unsafe(method_family = none)]
pub fn allowsColumnReordering(&self) -> bool;
#[unsafe(method(setAllowsColumnReordering:))]
#[unsafe(method_family = none)]
pub fn setAllowsColumnReordering(&self, allows_column_reordering: bool);
#[unsafe(method(allowsColumnResizing))]
#[unsafe(method_family = none)]
pub fn allowsColumnResizing(&self) -> bool;
#[unsafe(method(setAllowsColumnResizing:))]
#[unsafe(method_family = none)]
pub fn setAllowsColumnResizing(&self, allows_column_resizing: bool);
#[unsafe(method(columnAutoresizingStyle))]
#[unsafe(method_family = none)]
pub fn columnAutoresizingStyle(&self) -> NSTableViewColumnAutoresizingStyle;
#[unsafe(method(setColumnAutoresizingStyle:))]
#[unsafe(method_family = none)]
pub fn setColumnAutoresizingStyle(
&self,
column_autoresizing_style: NSTableViewColumnAutoresizingStyle,
);
#[unsafe(method(gridStyleMask))]
#[unsafe(method_family = none)]
pub fn gridStyleMask(&self) -> NSTableViewGridLineStyle;
#[unsafe(method(setGridStyleMask:))]
#[unsafe(method_family = none)]
pub fn setGridStyleMask(&self, grid_style_mask: NSTableViewGridLineStyle);
#[unsafe(method(intercellSpacing))]
#[unsafe(method_family = none)]
pub fn intercellSpacing(&self) -> NSSize;
#[unsafe(method(setIntercellSpacing:))]
#[unsafe(method_family = none)]
pub fn setIntercellSpacing(&self, intercell_spacing: NSSize);
#[unsafe(method(usesAlternatingRowBackgroundColors))]
#[unsafe(method_family = none)]
pub fn usesAlternatingRowBackgroundColors(&self) -> bool;
#[unsafe(method(setUsesAlternatingRowBackgroundColors:))]
#[unsafe(method_family = none)]
pub fn setUsesAlternatingRowBackgroundColors(
&self,
uses_alternating_row_background_colors: bool,
);
#[cfg(feature = "NSColor")]
#[unsafe(method(backgroundColor))]
#[unsafe(method_family = none)]
pub fn backgroundColor(&self) -> Retained<NSColor>;
#[cfg(feature = "NSColor")]
#[unsafe(method(setBackgroundColor:))]
#[unsafe(method_family = none)]
pub fn setBackgroundColor(&self, background_color: &NSColor);
#[cfg(feature = "NSColor")]
#[unsafe(method(gridColor))]
#[unsafe(method_family = none)]
pub fn gridColor(&self) -> Retained<NSColor>;
#[cfg(feature = "NSColor")]
#[unsafe(method(setGridColor:))]
#[unsafe(method_family = none)]
pub fn setGridColor(&self, grid_color: &NSColor);
#[unsafe(method(rowSizeStyle))]
#[unsafe(method_family = none)]
pub fn rowSizeStyle(&self) -> NSTableViewRowSizeStyle;
#[unsafe(method(setRowSizeStyle:))]
#[unsafe(method_family = none)]
pub fn setRowSizeStyle(&self, row_size_style: NSTableViewRowSizeStyle);
#[unsafe(method(effectiveRowSizeStyle))]
#[unsafe(method_family = none)]
pub fn effectiveRowSizeStyle(&self) -> NSTableViewRowSizeStyle;
#[cfg(feature = "objc2-core-foundation")]
#[unsafe(method(rowHeight))]
#[unsafe(method_family = none)]
pub fn rowHeight(&self) -> CGFloat;
#[cfg(feature = "objc2-core-foundation")]
#[unsafe(method(setRowHeight:))]
#[unsafe(method_family = none)]
pub fn setRowHeight(&self, row_height: CGFloat);
#[unsafe(method(noteHeightOfRowsWithIndexesChanged:))]
#[unsafe(method_family = none)]
pub fn noteHeightOfRowsWithIndexesChanged(&self, index_set: &NSIndexSet);
#[cfg(feature = "NSTableColumn")]
#[unsafe(method(tableColumns))]
#[unsafe(method_family = none)]
pub fn tableColumns(&self) -> Retained<NSArray<NSTableColumn>>;
#[unsafe(method(numberOfColumns))]
#[unsafe(method_family = none)]
pub fn numberOfColumns(&self) -> NSInteger;
#[unsafe(method(numberOfRows))]
#[unsafe(method_family = none)]
pub fn numberOfRows(&self) -> NSInteger;
#[cfg(feature = "NSTableColumn")]
#[unsafe(method(addTableColumn:))]
#[unsafe(method_family = none)]
pub fn addTableColumn(&self, table_column: &NSTableColumn);
#[cfg(feature = "NSTableColumn")]
#[unsafe(method(removeTableColumn:))]
#[unsafe(method_family = none)]
pub fn removeTableColumn(&self, table_column: &NSTableColumn);
#[unsafe(method(moveColumn:toColumn:))]
#[unsafe(method_family = none)]
pub fn moveColumn_toColumn(&self, old_index: NSInteger, new_index: NSInteger);
#[cfg(feature = "NSUserInterfaceItemIdentification")]
#[unsafe(method(columnWithIdentifier:))]
#[unsafe(method_family = none)]
pub fn columnWithIdentifier(&self, identifier: &NSUserInterfaceItemIdentifier)
-> NSInteger;
#[cfg(all(
feature = "NSTableColumn",
feature = "NSUserInterfaceItemIdentification"
))]
#[unsafe(method(tableColumnWithIdentifier:))]
#[unsafe(method_family = none)]
pub fn tableColumnWithIdentifier(
&self,
identifier: &NSUserInterfaceItemIdentifier,
) -> Option<Retained<NSTableColumn>>;
#[unsafe(method(tile))]
#[unsafe(method_family = none)]
pub fn tile(&self);
#[unsafe(method(sizeToFit))]
#[unsafe(method_family = none)]
pub fn sizeToFit(&self);
#[unsafe(method(sizeLastColumnToFit))]
#[unsafe(method_family = none)]
pub fn sizeLastColumnToFit(&self);
#[unsafe(method(scrollRowToVisible:))]
#[unsafe(method_family = none)]
pub fn scrollRowToVisible(&self, row: NSInteger);
#[unsafe(method(scrollColumnToVisible:))]
#[unsafe(method_family = none)]
pub fn scrollColumnToVisible(&self, column: NSInteger);
#[unsafe(method(reloadData))]
#[unsafe(method_family = none)]
pub fn reloadData(&self);
#[unsafe(method(noteNumberOfRowsChanged))]
#[unsafe(method_family = none)]
pub fn noteNumberOfRowsChanged(&self);
#[unsafe(method(reloadDataForRowIndexes:columnIndexes:))]
#[unsafe(method_family = none)]
pub fn reloadDataForRowIndexes_columnIndexes(
&self,
row_indexes: &NSIndexSet,
column_indexes: &NSIndexSet,
);
#[unsafe(method(editedColumn))]
#[unsafe(method_family = none)]
pub fn editedColumn(&self) -> NSInteger;
#[unsafe(method(editedRow))]
#[unsafe(method_family = none)]
pub fn editedRow(&self) -> NSInteger;
#[unsafe(method(clickedColumn))]
#[unsafe(method_family = none)]
pub fn clickedColumn(&self) -> NSInteger;
#[unsafe(method(clickedRow))]
#[unsafe(method_family = none)]
pub fn clickedRow(&self) -> NSInteger;
#[unsafe(method(doubleAction))]
#[unsafe(method_family = none)]
pub fn doubleAction(&self) -> Option<Sel>;
#[unsafe(method(setDoubleAction:))]
#[unsafe(method_family = none)]
pub unsafe fn setDoubleAction(&self, double_action: Option<Sel>);
#[unsafe(method(sortDescriptors))]
#[unsafe(method_family = none)]
pub fn sortDescriptors(&self) -> Retained<NSArray<NSSortDescriptor>>;
#[unsafe(method(setSortDescriptors:))]
#[unsafe(method_family = none)]
pub fn setSortDescriptors(&self, sort_descriptors: &NSArray<NSSortDescriptor>);
#[cfg(all(feature = "NSImage", feature = "NSTableColumn"))]
#[unsafe(method(setIndicatorImage:inTableColumn:))]
#[unsafe(method_family = none)]
pub fn setIndicatorImage_inTableColumn(
&self,
image: Option<&NSImage>,
table_column: &NSTableColumn,
);
#[cfg(all(feature = "NSImage", feature = "NSTableColumn"))]
#[unsafe(method(indicatorImageInTableColumn:))]
#[unsafe(method_family = none)]
pub fn indicatorImageInTableColumn(
&self,
table_column: &NSTableColumn,
) -> Option<Retained<NSImage>>;
#[cfg(feature = "NSTableColumn")]
#[unsafe(method(highlightedTableColumn))]
#[unsafe(method_family = none)]
pub fn highlightedTableColumn(&self) -> Option<Retained<NSTableColumn>>;
#[cfg(feature = "NSTableColumn")]
#[unsafe(method(setHighlightedTableColumn:))]
#[unsafe(method_family = none)]
pub fn setHighlightedTableColumn(&self, highlighted_table_column: Option<&NSTableColumn>);
#[unsafe(method(verticalMotionCanBeginDrag))]
#[unsafe(method_family = none)]
pub fn verticalMotionCanBeginDrag(&self) -> bool;
#[unsafe(method(setVerticalMotionCanBeginDrag:))]
#[unsafe(method_family = none)]
pub fn setVerticalMotionCanBeginDrag(&self, vertical_motion_can_begin_drag: bool);
#[unsafe(method(canDragRowsWithIndexes:atPoint:))]
#[unsafe(method_family = none)]
pub fn canDragRowsWithIndexes_atPoint(
&self,
row_indexes: &NSIndexSet,
mouse_down_point: NSPoint,
) -> bool;
#[cfg(all(feature = "NSEvent", feature = "NSImage", feature = "NSTableColumn"))]
#[unsafe(method(dragImageForRowsWithIndexes:tableColumns:event:offset:))]
#[unsafe(method_family = none)]
pub unsafe fn dragImageForRowsWithIndexes_tableColumns_event_offset(
&self,
drag_rows: &NSIndexSet,
table_columns: &NSArray<NSTableColumn>,
drag_event: &NSEvent,
drag_image_offset: NSPointPointer,
) -> Retained<NSImage>;
#[cfg(feature = "NSDragging")]
#[unsafe(method(setDraggingSourceOperationMask:forLocal:))]
#[unsafe(method_family = none)]
pub fn setDraggingSourceOperationMask_forLocal(
&self,
mask: NSDragOperation,
is_local: bool,
);
#[unsafe(method(setDropRow:dropOperation:))]
#[unsafe(method_family = none)]
pub fn setDropRow_dropOperation(
&self,
row: NSInteger,
drop_operation: NSTableViewDropOperation,
);
#[unsafe(method(allowsMultipleSelection))]
#[unsafe(method_family = none)]
pub fn allowsMultipleSelection(&self) -> bool;
#[unsafe(method(setAllowsMultipleSelection:))]
#[unsafe(method_family = none)]
pub fn setAllowsMultipleSelection(&self, allows_multiple_selection: bool);
#[unsafe(method(allowsEmptySelection))]
#[unsafe(method_family = none)]
pub fn allowsEmptySelection(&self) -> bool;
#[unsafe(method(setAllowsEmptySelection:))]
#[unsafe(method_family = none)]
pub fn setAllowsEmptySelection(&self, allows_empty_selection: bool);
#[unsafe(method(allowsColumnSelection))]
#[unsafe(method_family = none)]
pub fn allowsColumnSelection(&self) -> bool;
#[unsafe(method(setAllowsColumnSelection:))]
#[unsafe(method_family = none)]
pub fn setAllowsColumnSelection(&self, allows_column_selection: bool);
#[unsafe(method(selectAll:))]
#[unsafe(method_family = none)]
pub unsafe fn selectAll(&self, sender: Option<&AnyObject>);
#[unsafe(method(deselectAll:))]
#[unsafe(method_family = none)]
pub unsafe fn deselectAll(&self, sender: Option<&AnyObject>);
#[unsafe(method(selectColumnIndexes:byExtendingSelection:))]
#[unsafe(method_family = none)]
pub fn selectColumnIndexes_byExtendingSelection(&self, indexes: &NSIndexSet, extend: bool);
#[unsafe(method(selectRowIndexes:byExtendingSelection:))]
#[unsafe(method_family = none)]
pub fn selectRowIndexes_byExtendingSelection(&self, indexes: &NSIndexSet, extend: bool);
#[unsafe(method(selectedColumnIndexes))]
#[unsafe(method_family = none)]
pub fn selectedColumnIndexes(&self) -> Retained<NSIndexSet>;
#[unsafe(method(selectedRowIndexes))]
#[unsafe(method_family = none)]
pub fn selectedRowIndexes(&self) -> Retained<NSIndexSet>;
#[unsafe(method(deselectColumn:))]
#[unsafe(method_family = none)]
pub fn deselectColumn(&self, column: NSInteger);
#[unsafe(method(deselectRow:))]
#[unsafe(method_family = none)]
pub fn deselectRow(&self, row: NSInteger);
#[unsafe(method(selectedColumn))]
#[unsafe(method_family = none)]
pub fn selectedColumn(&self) -> NSInteger;
#[unsafe(method(selectedRow))]
#[unsafe(method_family = none)]
pub fn selectedRow(&self) -> NSInteger;
#[unsafe(method(isColumnSelected:))]
#[unsafe(method_family = none)]
pub fn isColumnSelected(&self, column: NSInteger) -> bool;
#[unsafe(method(isRowSelected:))]
#[unsafe(method_family = none)]
pub fn isRowSelected(&self, row: NSInteger) -> bool;
#[unsafe(method(numberOfSelectedColumns))]
#[unsafe(method_family = none)]
pub fn numberOfSelectedColumns(&self) -> NSInteger;
#[unsafe(method(numberOfSelectedRows))]
#[unsafe(method_family = none)]
pub fn numberOfSelectedRows(&self) -> NSInteger;
#[unsafe(method(allowsTypeSelect))]
#[unsafe(method_family = none)]
pub fn allowsTypeSelect(&self) -> bool;
#[unsafe(method(setAllowsTypeSelect:))]
#[unsafe(method_family = none)]
pub fn setAllowsTypeSelect(&self, allows_type_select: bool);
#[unsafe(method(style))]
#[unsafe(method_family = none)]
pub fn style(&self) -> NSTableViewStyle;
#[unsafe(method(setStyle:))]
#[unsafe(method_family = none)]
pub fn setStyle(&self, style: NSTableViewStyle);
#[unsafe(method(effectiveStyle))]
#[unsafe(method_family = none)]
pub fn effectiveStyle(&self) -> NSTableViewStyle;
#[unsafe(method(selectionHighlightStyle))]
#[unsafe(method_family = none)]
pub fn selectionHighlightStyle(&self) -> NSTableViewSelectionHighlightStyle;
#[unsafe(method(setSelectionHighlightStyle:))]
#[unsafe(method_family = none)]
pub fn setSelectionHighlightStyle(
&self,
selection_highlight_style: NSTableViewSelectionHighlightStyle,
);
#[unsafe(method(draggingDestinationFeedbackStyle))]
#[unsafe(method_family = none)]
pub fn draggingDestinationFeedbackStyle(
&self,
) -> NSTableViewDraggingDestinationFeedbackStyle;
#[unsafe(method(setDraggingDestinationFeedbackStyle:))]
#[unsafe(method_family = none)]
pub fn setDraggingDestinationFeedbackStyle(
&self,
dragging_destination_feedback_style: NSTableViewDraggingDestinationFeedbackStyle,
);
#[unsafe(method(rectOfColumn:))]
#[unsafe(method_family = none)]
pub fn rectOfColumn(&self, column: NSInteger) -> NSRect;
#[unsafe(method(rectOfRow:))]
#[unsafe(method_family = none)]
pub fn rectOfRow(&self, row: NSInteger) -> NSRect;
#[unsafe(method(columnIndexesInRect:))]
#[unsafe(method_family = none)]
pub fn columnIndexesInRect(&self, rect: NSRect) -> Retained<NSIndexSet>;
#[unsafe(method(rowsInRect:))]
#[unsafe(method_family = none)]
pub fn rowsInRect(&self, rect: NSRect) -> NSRange;
#[unsafe(method(columnAtPoint:))]
#[unsafe(method_family = none)]
pub fn columnAtPoint(&self, point: NSPoint) -> NSInteger;
#[unsafe(method(rowAtPoint:))]
#[unsafe(method_family = none)]
pub fn rowAtPoint(&self, point: NSPoint) -> NSInteger;
#[unsafe(method(frameOfCellAtColumn:row:))]
#[unsafe(method_family = none)]
pub fn frameOfCellAtColumn_row(&self, column: NSInteger, row: NSInteger) -> NSRect;
#[unsafe(method(autosaveName))]
#[unsafe(method_family = none)]
pub fn autosaveName(&self) -> Option<Retained<NSTableViewAutosaveName>>;
#[unsafe(method(setAutosaveName:))]
#[unsafe(method_family = none)]
pub fn setAutosaveName(&self, autosave_name: Option<&NSTableViewAutosaveName>);
#[unsafe(method(autosaveTableColumns))]
#[unsafe(method_family = none)]
pub fn autosaveTableColumns(&self) -> bool;
#[unsafe(method(setAutosaveTableColumns:))]
#[unsafe(method_family = none)]
pub fn setAutosaveTableColumns(&self, autosave_table_columns: bool);
#[cfg(feature = "NSEvent")]
#[unsafe(method(editColumn:row:withEvent:select:))]
#[unsafe(method_family = none)]
pub fn editColumn_row_withEvent_select(
&self,
column: NSInteger,
row: NSInteger,
event: Option<&NSEvent>,
select: bool,
);
#[unsafe(method(drawRow:clipRect:))]
#[unsafe(method_family = none)]
pub fn drawRow_clipRect(&self, row: NSInteger, clip_rect: NSRect);
#[unsafe(method(highlightSelectionInClipRect:))]
#[unsafe(method_family = none)]
pub fn highlightSelectionInClipRect(&self, clip_rect: NSRect);
#[unsafe(method(drawGridInClipRect:))]
#[unsafe(method_family = none)]
pub fn drawGridInClipRect(&self, clip_rect: NSRect);
#[unsafe(method(drawBackgroundInClipRect:))]
#[unsafe(method_family = none)]
pub fn drawBackgroundInClipRect(&self, clip_rect: NSRect);
#[unsafe(method(viewAtColumn:row:makeIfNecessary:))]
#[unsafe(method_family = none)]
pub fn viewAtColumn_row_makeIfNecessary(
&self,
column: NSInteger,
row: NSInteger,
make_if_necessary: bool,
) -> Option<Retained<NSView>>;
#[cfg(feature = "NSTableRowView")]
#[unsafe(method(rowViewAtRow:makeIfNecessary:))]
#[unsafe(method_family = none)]
pub fn rowViewAtRow_makeIfNecessary(
&self,
row: NSInteger,
make_if_necessary: bool,
) -> Option<Retained<NSTableRowView>>;
#[unsafe(method(rowForView:))]
#[unsafe(method_family = none)]
pub fn rowForView(&self, view: &NSView) -> NSInteger;
#[unsafe(method(columnForView:))]
#[unsafe(method_family = none)]
pub fn columnForView(&self, view: &NSView) -> NSInteger;
#[cfg(feature = "NSUserInterfaceItemIdentification")]
#[unsafe(method(makeViewWithIdentifier:owner:))]
#[unsafe(method_family = none)]
pub unsafe fn makeViewWithIdentifier_owner(
&self,
identifier: &NSUserInterfaceItemIdentifier,
owner: Option<&AnyObject>,
) -> Option<Retained<NSView>>;
#[cfg(all(feature = "NSTableRowView", feature = "block2"))]
#[unsafe(method(enumerateAvailableRowViewsUsingBlock:))]
#[unsafe(method_family = none)]
pub fn enumerateAvailableRowViewsUsingBlock(
&self,
handler: &block2::DynBlock<dyn Fn(NonNull<NSTableRowView>, NSInteger) + '_>,
);
#[unsafe(method(floatsGroupRows))]
#[unsafe(method_family = none)]
pub fn floatsGroupRows(&self) -> bool;
#[unsafe(method(setFloatsGroupRows:))]
#[unsafe(method_family = none)]
pub fn setFloatsGroupRows(&self, floats_group_rows: bool);
#[unsafe(method(rowActionsVisible))]
#[unsafe(method_family = none)]
pub fn rowActionsVisible(&self) -> bool;
#[unsafe(method(setRowActionsVisible:))]
#[unsafe(method_family = none)]
pub fn setRowActionsVisible(&self, row_actions_visible: bool);
#[unsafe(method(beginUpdates))]
#[unsafe(method_family = none)]
pub fn beginUpdates(&self);
#[unsafe(method(endUpdates))]
#[unsafe(method_family = none)]
pub fn endUpdates(&self);
#[unsafe(method(insertRowsAtIndexes:withAnimation:))]
#[unsafe(method_family = none)]
pub fn insertRowsAtIndexes_withAnimation(
&self,
indexes: &NSIndexSet,
animation_options: NSTableViewAnimationOptions,
);
#[unsafe(method(removeRowsAtIndexes:withAnimation:))]
#[unsafe(method_family = none)]
pub fn removeRowsAtIndexes_withAnimation(
&self,
indexes: &NSIndexSet,
animation_options: NSTableViewAnimationOptions,
);
#[unsafe(method(moveRowAtIndex:toIndex:))]
#[unsafe(method_family = none)]
pub fn moveRowAtIndex_toIndex(&self, old_index: NSInteger, new_index: NSInteger);
#[unsafe(method(hideRowsAtIndexes:withAnimation:))]
#[unsafe(method_family = none)]
pub fn hideRowsAtIndexes_withAnimation(
&self,
indexes: &NSIndexSet,
row_animation: NSTableViewAnimationOptions,
);
#[unsafe(method(unhideRowsAtIndexes:withAnimation:))]
#[unsafe(method_family = none)]
pub fn unhideRowsAtIndexes_withAnimation(
&self,
indexes: &NSIndexSet,
row_animation: NSTableViewAnimationOptions,
);
#[unsafe(method(hiddenRowIndexes))]
#[unsafe(method_family = none)]
pub fn hiddenRowIndexes(&self) -> Retained<NSIndexSet>;
#[cfg(all(feature = "NSNib", feature = "NSUserInterfaceItemIdentification"))]
#[unsafe(method(registerNib:forIdentifier:))]
#[unsafe(method_family = none)]
pub fn registerNib_forIdentifier(
&self,
nib: Option<&NSNib>,
identifier: &NSUserInterfaceItemIdentifier,
);
#[cfg(all(feature = "NSNib", feature = "NSUserInterfaceItemIdentification"))]
#[unsafe(method(registeredNibsByIdentifier))]
#[unsafe(method_family = none)]
pub fn registeredNibsByIdentifier(
&self,
) -> Option<Retained<NSDictionary<NSUserInterfaceItemIdentifier, NSNib>>>;
#[cfg(feature = "NSTableRowView")]
#[unsafe(method(didAddRowView:forRow:))]
#[unsafe(method_family = none)]
pub fn didAddRowView_forRow(&self, row_view: &NSTableRowView, row: NSInteger);
#[cfg(feature = "NSTableRowView")]
#[unsafe(method(didRemoveRowView:forRow:))]
#[unsafe(method_family = none)]
pub fn didRemoveRowView_forRow(&self, row_view: &NSTableRowView, row: NSInteger);
#[unsafe(method(usesStaticContents))]
#[unsafe(method_family = none)]
pub fn usesStaticContents(&self) -> bool;
#[unsafe(method(setUsesStaticContents:))]
#[unsafe(method_family = none)]
pub fn setUsesStaticContents(&self, uses_static_contents: bool);
#[cfg(feature = "NSUserInterfaceLayout")]
#[unsafe(method(userInterfaceLayoutDirection))]
#[unsafe(method_family = none)]
pub fn userInterfaceLayoutDirection(&self) -> NSUserInterfaceLayoutDirection;
#[cfg(feature = "NSUserInterfaceLayout")]
#[unsafe(method(setUserInterfaceLayoutDirection:))]
#[unsafe(method_family = none)]
pub fn setUserInterfaceLayoutDirection(
&self,
user_interface_layout_direction: NSUserInterfaceLayoutDirection,
);
#[unsafe(method(usesAutomaticRowHeights))]
#[unsafe(method_family = none)]
pub fn usesAutomaticRowHeights(&self) -> bool;
#[unsafe(method(setUsesAutomaticRowHeights:))]
#[unsafe(method_family = none)]
pub fn setUsesAutomaticRowHeights(&self, uses_automatic_row_heights: bool);
);
}
#[cfg(all(feature = "NSControl", feature = "NSResponder", feature = "NSView"))]
impl NSTableView {
extern_methods!(
#[unsafe(method(init))]
#[unsafe(method_family = init)]
pub fn init(this: Allocated<Self>) -> Retained<Self>;
);
}
#[cfg(all(feature = "NSControl", feature = "NSResponder", feature = "NSView"))]
impl NSTableView {
extern_methods!(
#[unsafe(method(new))]
#[unsafe(method_family = new)]
pub fn new(mtm: MainThreadMarker) -> Retained<Self>;
);
}
extern_protocol!(
#[cfg(feature = "NSControl")]
pub unsafe trait NSTableViewDelegate: NSControlTextEditingDelegate {
#[cfg(all(feature = "NSResponder", feature = "NSTableColumn", feature = "NSView"))]
#[optional]
#[unsafe(method(tableView:viewForTableColumn:row:))]
#[unsafe(method_family = none)]
fn tableView_viewForTableColumn_row(
&self,
table_view: &NSTableView,
table_column: Option<&NSTableColumn>,
row: NSInteger,
) -> Option<Retained<NSView>>;
#[cfg(all(
feature = "NSResponder",
feature = "NSTableRowView",
feature = "NSView"
))]
#[optional]
#[unsafe(method(tableView:rowViewForRow:))]
#[unsafe(method_family = none)]
fn tableView_rowViewForRow(
&self,
table_view: &NSTableView,
row: NSInteger,
) -> Option<Retained<NSTableRowView>>;
#[cfg(all(
feature = "NSResponder",
feature = "NSTableRowView",
feature = "NSView"
))]
#[optional]
#[unsafe(method(tableView:didAddRowView:forRow:))]
#[unsafe(method_family = none)]
fn tableView_didAddRowView_forRow(
&self,
table_view: &NSTableView,
row_view: &NSTableRowView,
row: NSInteger,
);
#[cfg(all(
feature = "NSResponder",
feature = "NSTableRowView",
feature = "NSView"
))]
#[optional]
#[unsafe(method(tableView:didRemoveRowView:forRow:))]
#[unsafe(method_family = none)]
fn tableView_didRemoveRowView_forRow(
&self,
table_view: &NSTableView,
row_view: &NSTableRowView,
row: NSInteger,
);
#[cfg(all(feature = "NSResponder", feature = "NSTableColumn", feature = "NSView"))]
#[optional]
#[unsafe(method(tableView:willDisplayCell:forTableColumn:row:))]
#[unsafe(method_family = none)]
unsafe fn tableView_willDisplayCell_forTableColumn_row(
&self,
table_view: &NSTableView,
cell: &AnyObject,
table_column: Option<&NSTableColumn>,
row: NSInteger,
);
#[cfg(all(feature = "NSResponder", feature = "NSTableColumn", feature = "NSView"))]
#[optional]
#[unsafe(method(tableView:shouldEditTableColumn:row:))]
#[unsafe(method_family = none)]
fn tableView_shouldEditTableColumn_row(
&self,
table_view: &NSTableView,
table_column: Option<&NSTableColumn>,
row: NSInteger,
) -> bool;
#[cfg(all(
feature = "NSCell",
feature = "NSResponder",
feature = "NSTableColumn",
feature = "NSView"
))]
#[optional]
#[unsafe(method(tableView:toolTipForCell:rect:tableColumn:row:mouseLocation:))]
#[unsafe(method_family = none)]
unsafe fn tableView_toolTipForCell_rect_tableColumn_row_mouseLocation(
&self,
table_view: &NSTableView,
cell: &NSCell,
rect: NSRectPointer,
table_column: Option<&NSTableColumn>,
row: NSInteger,
mouse_location: NSPoint,
) -> Retained<NSString>;
#[cfg(all(feature = "NSResponder", feature = "NSTableColumn", feature = "NSView"))]
#[optional]
#[unsafe(method(tableView:shouldShowCellExpansionForTableColumn:row:))]
#[unsafe(method_family = none)]
fn tableView_shouldShowCellExpansionForTableColumn_row(
&self,
table_view: &NSTableView,
table_column: Option<&NSTableColumn>,
row: NSInteger,
) -> bool;
#[cfg(all(
feature = "NSCell",
feature = "NSResponder",
feature = "NSTableColumn",
feature = "NSView"
))]
#[optional]
#[unsafe(method(tableView:shouldTrackCell:forTableColumn:row:))]
#[unsafe(method_family = none)]
fn tableView_shouldTrackCell_forTableColumn_row(
&self,
table_view: &NSTableView,
cell: &NSCell,
table_column: Option<&NSTableColumn>,
row: NSInteger,
) -> bool;
#[cfg(all(
feature = "NSCell",
feature = "NSResponder",
feature = "NSTableColumn",
feature = "NSView"
))]
#[optional]
#[unsafe(method(tableView:dataCellForTableColumn:row:))]
#[unsafe(method_family = none)]
fn tableView_dataCellForTableColumn_row(
&self,
table_view: &NSTableView,
table_column: Option<&NSTableColumn>,
row: NSInteger,
) -> Option<Retained<NSCell>>;
#[cfg(all(feature = "NSResponder", feature = "NSView"))]
#[optional]
#[unsafe(method(selectionShouldChangeInTableView:))]
#[unsafe(method_family = none)]
fn selectionShouldChangeInTableView(&self, table_view: &NSTableView) -> bool;
#[cfg(all(feature = "NSResponder", feature = "NSView"))]
#[optional]
#[unsafe(method(tableView:shouldSelectRow:))]
#[unsafe(method_family = none)]
fn tableView_shouldSelectRow(&self, table_view: &NSTableView, row: NSInteger) -> bool;
#[cfg(all(feature = "NSResponder", feature = "NSView"))]
#[optional]
#[unsafe(method(tableView:selectionIndexesForProposedSelection:))]
#[unsafe(method_family = none)]
fn tableView_selectionIndexesForProposedSelection(
&self,
table_view: &NSTableView,
proposed_selection_indexes: &NSIndexSet,
) -> Retained<NSIndexSet>;
#[cfg(all(feature = "NSResponder", feature = "NSTableColumn", feature = "NSView"))]
#[optional]
#[unsafe(method(tableView:shouldSelectTableColumn:))]
#[unsafe(method_family = none)]
fn tableView_shouldSelectTableColumn(
&self,
table_view: &NSTableView,
table_column: Option<&NSTableColumn>,
) -> bool;
#[cfg(all(feature = "NSResponder", feature = "NSTableColumn", feature = "NSView"))]
#[optional]
#[unsafe(method(tableView:mouseDownInHeaderOfTableColumn:))]
#[unsafe(method_family = none)]
fn tableView_mouseDownInHeaderOfTableColumn(
&self,
table_view: &NSTableView,
table_column: &NSTableColumn,
);
#[cfg(all(feature = "NSResponder", feature = "NSTableColumn", feature = "NSView"))]
#[optional]
#[unsafe(method(tableView:didClickTableColumn:))]
#[unsafe(method_family = none)]
fn tableView_didClickTableColumn(
&self,
table_view: &NSTableView,
table_column: &NSTableColumn,
);
#[cfg(all(feature = "NSResponder", feature = "NSTableColumn", feature = "NSView"))]
#[optional]
#[unsafe(method(tableView:didDragTableColumn:))]
#[unsafe(method_family = none)]
fn tableView_didDragTableColumn(
&self,
table_view: &NSTableView,
table_column: &NSTableColumn,
);
#[cfg(all(
feature = "NSResponder",
feature = "NSView",
feature = "objc2-core-foundation"
))]
#[optional]
#[unsafe(method(tableView:heightOfRow:))]
#[unsafe(method_family = none)]
fn tableView_heightOfRow(&self, table_view: &NSTableView, row: NSInteger) -> CGFloat;
#[cfg(all(feature = "NSResponder", feature = "NSTableColumn", feature = "NSView"))]
#[optional]
#[unsafe(method(tableView:typeSelectStringForTableColumn:row:))]
#[unsafe(method_family = none)]
fn tableView_typeSelectStringForTableColumn_row(
&self,
table_view: &NSTableView,
table_column: Option<&NSTableColumn>,
row: NSInteger,
) -> Option<Retained<NSString>>;
#[cfg(all(feature = "NSResponder", feature = "NSView"))]
#[optional]
#[unsafe(method(tableView:nextTypeSelectMatchFromRow:toRow:forString:))]
#[unsafe(method_family = none)]
fn tableView_nextTypeSelectMatchFromRow_toRow_forString(
&self,
table_view: &NSTableView,
start_row: NSInteger,
end_row: NSInteger,
search_string: &NSString,
) -> NSInteger;
#[cfg(all(feature = "NSEvent", feature = "NSResponder", feature = "NSView"))]
#[optional]
#[unsafe(method(tableView:shouldTypeSelectForEvent:withCurrentSearchString:))]
#[unsafe(method_family = none)]
fn tableView_shouldTypeSelectForEvent_withCurrentSearchString(
&self,
table_view: &NSTableView,
event: &NSEvent,
search_string: Option<&NSString>,
) -> bool;
#[cfg(all(feature = "NSResponder", feature = "NSView"))]
#[optional]
#[unsafe(method(tableView:isGroupRow:))]
#[unsafe(method_family = none)]
fn tableView_isGroupRow(&self, table_view: &NSTableView, row: NSInteger) -> bool;
#[cfg(all(
feature = "NSResponder",
feature = "NSView",
feature = "objc2-core-foundation"
))]
#[optional]
#[unsafe(method(tableView:sizeToFitWidthOfColumn:))]
#[unsafe(method_family = none)]
fn tableView_sizeToFitWidthOfColumn(
&self,
table_view: &NSTableView,
column: NSInteger,
) -> CGFloat;
#[cfg(all(feature = "NSResponder", feature = "NSView"))]
#[optional]
#[unsafe(method(tableView:shouldReorderColumn:toColumn:))]
#[unsafe(method_family = none)]
fn tableView_shouldReorderColumn_toColumn(
&self,
table_view: &NSTableView,
column_index: NSInteger,
new_column_index: NSInteger,
) -> bool;
#[cfg(all(
feature = "NSResponder",
feature = "NSTableViewRowAction",
feature = "NSView"
))]
#[optional]
#[unsafe(method(tableView:rowActionsForRow:edge:))]
#[unsafe(method_family = none)]
fn tableView_rowActionsForRow_edge(
&self,
table_view: &NSTableView,
row: NSInteger,
edge: NSTableRowActionEdge,
) -> Retained<NSArray<NSTableViewRowAction>>;
#[cfg(all(feature = "NSResponder", feature = "NSTableColumn", feature = "NSView"))]
#[optional]
#[unsafe(method(tableView:userCanChangeVisibilityOfTableColumn:))]
#[unsafe(method_family = none)]
fn tableView_userCanChangeVisibilityOfTableColumn(
&self,
table_view: &NSTableView,
column: &NSTableColumn,
) -> bool;
#[cfg(all(feature = "NSResponder", feature = "NSTableColumn", feature = "NSView"))]
#[optional]
#[unsafe(method(tableView:userDidChangeVisibilityOfTableColumns:))]
#[unsafe(method_family = none)]
fn tableView_userDidChangeVisibilityOfTableColumns(
&self,
table_view: &NSTableView,
columns: &NSArray<NSTableColumn>,
);
#[optional]
#[unsafe(method(tableViewSelectionDidChange:))]
#[unsafe(method_family = none)]
fn tableViewSelectionDidChange(&self, notification: &NSNotification);
#[optional]
#[unsafe(method(tableViewColumnDidMove:))]
#[unsafe(method_family = none)]
fn tableViewColumnDidMove(&self, notification: &NSNotification);
#[optional]
#[unsafe(method(tableViewColumnDidResize:))]
#[unsafe(method_family = none)]
fn tableViewColumnDidResize(&self, notification: &NSNotification);
#[optional]
#[unsafe(method(tableViewSelectionIsChanging:))]
#[unsafe(method_family = none)]
fn tableViewSelectionIsChanging(&self, notification: &NSNotification);
}
);
extern "C" {
pub static NSTableViewSelectionDidChangeNotification: &'static NSNotificationName;
}
extern "C" {
pub static NSTableViewColumnDidMoveNotification: &'static NSNotificationName;
}
extern "C" {
pub static NSTableViewColumnDidResizeNotification: &'static NSNotificationName;
}
extern "C" {
pub static NSTableViewSelectionIsChangingNotification: &'static NSNotificationName;
}
extern "C" {
#[cfg(feature = "NSUserInterfaceItemIdentification")]
pub static NSTableViewRowViewKey: &'static NSUserInterfaceItemIdentifier;
}
extern_protocol!(
pub unsafe trait NSTableViewDataSource: NSObjectProtocol {
#[cfg(all(feature = "NSControl", feature = "NSResponder", feature = "NSView"))]
#[optional]
#[unsafe(method(numberOfRowsInTableView:))]
#[unsafe(method_family = none)]
fn numberOfRowsInTableView(&self, table_view: &NSTableView) -> NSInteger;
#[cfg(all(
feature = "NSControl",
feature = "NSResponder",
feature = "NSTableColumn",
feature = "NSView"
))]
#[optional]
#[unsafe(method(tableView:objectValueForTableColumn:row:))]
#[unsafe(method_family = none)]
fn tableView_objectValueForTableColumn_row(
&self,
table_view: &NSTableView,
table_column: Option<&NSTableColumn>,
row: NSInteger,
) -> Option<Retained<AnyObject>>;
#[cfg(all(
feature = "NSControl",
feature = "NSResponder",
feature = "NSTableColumn",
feature = "NSView"
))]
#[optional]
#[unsafe(method(tableView:setObjectValue:forTableColumn:row:))]
#[unsafe(method_family = none)]
unsafe fn tableView_setObjectValue_forTableColumn_row(
&self,
table_view: &NSTableView,
object: Option<&AnyObject>,
table_column: Option<&NSTableColumn>,
row: NSInteger,
);
#[cfg(all(feature = "NSControl", feature = "NSResponder", feature = "NSView"))]
#[optional]
#[unsafe(method(tableView:sortDescriptorsDidChange:))]
#[unsafe(method_family = none)]
fn tableView_sortDescriptorsDidChange(
&self,
table_view: &NSTableView,
old_descriptors: &NSArray<NSSortDescriptor>,
);
#[cfg(all(
feature = "NSControl",
feature = "NSPasteboard",
feature = "NSResponder",
feature = "NSView"
))]
#[optional]
#[unsafe(method(tableView:pasteboardWriterForRow:))]
#[unsafe(method_family = none)]
fn tableView_pasteboardWriterForRow(
&self,
table_view: &NSTableView,
row: NSInteger,
) -> Option<Retained<ProtocolObject<dyn NSPasteboardWriting>>>;
#[cfg(all(
feature = "NSControl",
feature = "NSDraggingSession",
feature = "NSResponder",
feature = "NSView"
))]
#[optional]
#[unsafe(method(tableView:draggingSession:willBeginAtPoint:forRowIndexes:))]
#[unsafe(method_family = none)]
fn tableView_draggingSession_willBeginAtPoint_forRowIndexes(
&self,
table_view: &NSTableView,
session: &NSDraggingSession,
screen_point: NSPoint,
row_indexes: &NSIndexSet,
);
#[cfg(all(
feature = "NSControl",
feature = "NSDragging",
feature = "NSDraggingSession",
feature = "NSResponder",
feature = "NSView"
))]
#[optional]
#[unsafe(method(tableView:draggingSession:endedAtPoint:operation:))]
#[unsafe(method_family = none)]
fn tableView_draggingSession_endedAtPoint_operation(
&self,
table_view: &NSTableView,
session: &NSDraggingSession,
screen_point: NSPoint,
operation: NSDragOperation,
);
#[cfg(all(
feature = "NSControl",
feature = "NSDragging",
feature = "NSResponder",
feature = "NSView"
))]
#[optional]
#[unsafe(method(tableView:updateDraggingItemsForDrag:))]
#[unsafe(method_family = none)]
fn tableView_updateDraggingItemsForDrag(
&self,
table_view: &NSTableView,
dragging_info: &ProtocolObject<dyn NSDraggingInfo>,
);
#[cfg(all(
feature = "NSControl",
feature = "NSPasteboard",
feature = "NSResponder",
feature = "NSView"
))]
#[deprecated = "Use -tableView:pasteboardWriterForRow: instead"]
#[optional]
#[unsafe(method(tableView:writeRowsWithIndexes:toPasteboard:))]
#[unsafe(method_family = none)]
fn tableView_writeRowsWithIndexes_toPasteboard(
&self,
table_view: &NSTableView,
row_indexes: &NSIndexSet,
pboard: &NSPasteboard,
) -> bool;
#[cfg(all(
feature = "NSControl",
feature = "NSDragging",
feature = "NSResponder",
feature = "NSView"
))]
#[optional]
#[unsafe(method(tableView:validateDrop:proposedRow:proposedDropOperation:))]
#[unsafe(method_family = none)]
fn tableView_validateDrop_proposedRow_proposedDropOperation(
&self,
table_view: &NSTableView,
info: &ProtocolObject<dyn NSDraggingInfo>,
row: NSInteger,
drop_operation: NSTableViewDropOperation,
) -> NSDragOperation;
#[cfg(all(
feature = "NSControl",
feature = "NSDragging",
feature = "NSResponder",
feature = "NSView"
))]
#[optional]
#[unsafe(method(tableView:acceptDrop:row:dropOperation:))]
#[unsafe(method_family = none)]
fn tableView_acceptDrop_row_dropOperation(
&self,
table_view: &NSTableView,
info: &ProtocolObject<dyn NSDraggingInfo>,
row: NSInteger,
drop_operation: NSTableViewDropOperation,
) -> bool;
#[cfg(all(feature = "NSControl", feature = "NSResponder", feature = "NSView"))]
#[deprecated = "Use NSFilePromiseReceiver objects instead"]
#[optional]
#[unsafe(method(tableView:namesOfPromisedFilesDroppedAtDestination:forDraggedRowsWithIndexes:))]
#[unsafe(method_family = none)]
fn tableView_namesOfPromisedFilesDroppedAtDestination_forDraggedRowsWithIndexes(
&self,
table_view: &NSTableView,
drop_destination: &NSURL,
index_set: &NSIndexSet,
) -> Retained<NSArray<NSString>>;
}
);
#[cfg(all(feature = "NSControl", feature = "NSResponder", feature = "NSView"))]
impl NSTableView {
extern_methods!(
#[deprecated]
#[unsafe(method(setDrawsGrid:))]
#[unsafe(method_family = none)]
pub fn setDrawsGrid(&self, flag: bool);
#[deprecated]
#[unsafe(method(drawsGrid))]
#[unsafe(method_family = none)]
pub fn drawsGrid(&self) -> bool;
#[deprecated]
#[unsafe(method(selectColumn:byExtendingSelection:))]
#[unsafe(method_family = none)]
pub fn selectColumn_byExtendingSelection(&self, column: NSInteger, extend: bool);
#[deprecated]
#[unsafe(method(selectRow:byExtendingSelection:))]
#[unsafe(method_family = none)]
pub fn selectRow_byExtendingSelection(&self, row: NSInteger, extend: bool);
#[deprecated]
#[unsafe(method(selectedColumnEnumerator))]
#[unsafe(method_family = none)]
pub unsafe fn selectedColumnEnumerator(&self) -> Retained<NSEnumerator>;
#[deprecated]
#[unsafe(method(selectedRowEnumerator))]
#[unsafe(method_family = none)]
pub unsafe fn selectedRowEnumerator(&self) -> Retained<NSEnumerator>;
#[cfg(all(feature = "NSEvent", feature = "NSImage"))]
#[deprecated]
#[unsafe(method(dragImageForRows:event:dragImageOffset:))]
#[unsafe(method_family = none)]
pub unsafe fn dragImageForRows_event_dragImageOffset(
&self,
drag_rows: &NSArray,
drag_event: &NSEvent,
drag_image_offset: NSPointPointer,
) -> Option<Retained<NSImage>>;
#[deprecated]
#[unsafe(method(setAutoresizesAllColumnsToFit:))]
#[unsafe(method_family = none)]
pub fn setAutoresizesAllColumnsToFit(&self, flag: bool);
#[deprecated]
#[unsafe(method(autoresizesAllColumnsToFit))]
#[unsafe(method_family = none)]
pub fn autoresizesAllColumnsToFit(&self) -> bool;
#[deprecated]
#[unsafe(method(columnsInRect:))]
#[unsafe(method_family = none)]
pub fn columnsInRect(&self, rect: NSRect) -> NSRange;
#[cfg(feature = "NSCell")]
#[deprecated = "Use View Based TableView and -viewAtColumn:row:"]
#[unsafe(method(preparedCellAtColumn:row:))]
#[unsafe(method_family = none)]
pub fn preparedCellAtColumn_row(
&self,
column: NSInteger,
row: NSInteger,
) -> Option<Retained<NSCell>>;
#[cfg(feature = "NSText")]
#[deprecated = "Use a View Based TableView with an NSTextField"]
#[unsafe(method(textShouldBeginEditing:))]
#[unsafe(method_family = none)]
pub fn textShouldBeginEditing(&self, text_object: &NSText) -> bool;
#[cfg(feature = "NSText")]
#[deprecated = "Use a View Based TableView with an NSTextField"]
#[unsafe(method(textShouldEndEditing:))]
#[unsafe(method_family = none)]
pub fn textShouldEndEditing(&self, text_object: &NSText) -> bool;
#[deprecated = "Use a View Based TableView with an NSTextField"]
#[unsafe(method(textDidBeginEditing:))]
#[unsafe(method_family = none)]
pub fn textDidBeginEditing(&self, notification: &NSNotification);
#[deprecated = "Use a View Based TableView with an NSTextField"]
#[unsafe(method(textDidEndEditing:))]
#[unsafe(method_family = none)]
pub fn textDidEndEditing(&self, notification: &NSNotification);
#[deprecated = "Use a View Based TableView with an NSTextField"]
#[unsafe(method(textDidChange:))]
#[unsafe(method_family = none)]
pub fn textDidChange(&self, notification: &NSNotification);
#[cfg(feature = "NSCell")]
#[deprecated = "Use a View Based TableView; observe the window’s firstResponder for focus change notifications"]
#[unsafe(method(shouldFocusCell:atColumn:row:))]
#[unsafe(method_family = none)]
pub fn shouldFocusCell_atColumn_row(
&self,
cell: &NSCell,
column: NSInteger,
row: NSInteger,
) -> bool;
#[deprecated = "Use a View Based TableView and observe the window.firstResponder"]
#[unsafe(method(focusedColumn))]
#[unsafe(method_family = none)]
pub fn focusedColumn(&self) -> NSInteger;
#[deprecated = "Use a View Based TableView; make a particular view the first responder with [window makeFirstResponder:view] to focus it."]
#[unsafe(method(setFocusedColumn:))]
#[unsafe(method_family = none)]
pub fn setFocusedColumn(&self, focused_column: NSInteger);
#[deprecated = "Use a View Based TableView; directly interact with a particular view as required and call -performClick: on it, if necessary"]
#[unsafe(method(performClickOnCellAtColumn:row:))]
#[unsafe(method_family = none)]
pub fn performClickOnCellAtColumn_row(&self, column: NSInteger, row: NSInteger);
);
}