Struct objc2_app_kit::NSTextTable
source · #[repr(C)]pub struct NSTextTable { /* private fields */ }
Available on crate feature
NSTextTable
only.Implementations§
source§impl NSTextTable
impl NSTextTable
pub unsafe fn numberOfColumns(&self) -> NSUInteger
pub unsafe fn setNumberOfColumns(&self, number_of_columns: NSUInteger)
pub unsafe fn layoutAlgorithm(&self) -> NSTextTableLayoutAlgorithm
pub unsafe fn setLayoutAlgorithm( &self, layout_algorithm: NSTextTableLayoutAlgorithm )
pub unsafe fn collapsesBorders(&self) -> bool
pub unsafe fn setCollapsesBorders(&self, collapses_borders: bool)
pub unsafe fn hidesEmptyCells(&self) -> bool
pub unsafe fn setHidesEmptyCells(&self, hides_empty_cells: bool)
pub unsafe fn rectForBlock_layoutAtPoint_inRect_textContainer_characterRange( &self, block: &NSTextTableBlock, starting_point: NSPoint, rect: NSRect, text_container: &NSTextContainer, char_range: NSRange ) -> NSRect
Available on crate feature
NSTextContainer
only.pub unsafe fn boundsRectForBlock_contentRect_inRect_textContainer_characterRange( &self, block: &NSTextTableBlock, content_rect: NSRect, rect: NSRect, text_container: &NSTextContainer, char_range: NSRange ) -> NSRect
Available on crate feature
NSTextContainer
only.pub unsafe fn drawBackgroundForBlock_withFrame_inView_characterRange_layoutManager( &self, block: &NSTextTableBlock, frame_rect: NSRect, control_view: &NSView, char_range: NSRange, layout_manager: &NSLayoutManager )
Available on crate features
NSLayoutManager
and NSResponder
and NSView
only.source§impl NSTextTable
impl NSTextTable
Methods declared on superclass NSTextBlock
Methods from Deref<Target = NSTextBlock>§
pub unsafe fn setValue_type_forDimension( &self, val: CGFloat, type: NSTextBlockValueType, dimension: NSTextBlockDimension )
pub unsafe fn valueForDimension( &self, dimension: NSTextBlockDimension ) -> CGFloat
pub unsafe fn valueTypeForDimension( &self, dimension: NSTextBlockDimension ) -> NSTextBlockValueType
pub unsafe fn setContentWidth_type( &self, val: CGFloat, type: NSTextBlockValueType )
pub unsafe fn contentWidth(&self) -> CGFloat
pub unsafe fn contentWidthValueType(&self) -> NSTextBlockValueType
pub unsafe fn setWidth_type_forLayer_edge( &self, val: CGFloat, type: NSTextBlockValueType, layer: NSTextBlockLayer, edge: NSRectEdge )
pub unsafe fn setWidth_type_forLayer( &self, val: CGFloat, type: NSTextBlockValueType, layer: NSTextBlockLayer )
pub unsafe fn widthForLayer_edge( &self, layer: NSTextBlockLayer, edge: NSRectEdge ) -> CGFloat
pub unsafe fn widthValueTypeForLayer_edge( &self, layer: NSTextBlockLayer, edge: NSRectEdge ) -> NSTextBlockValueType
pub unsafe fn verticalAlignment(&self) -> NSTextBlockVerticalAlignment
pub unsafe fn setVerticalAlignment( &self, vertical_alignment: NSTextBlockVerticalAlignment )
pub unsafe fn backgroundColor(&self) -> Option<Id<NSColor>>
Available on crate feature
NSColor
only.pub unsafe fn setBackgroundColor(&self, background_color: Option<&NSColor>)
Available on crate feature
NSColor
only.pub unsafe fn setBorderColor_forEdge( &self, color: Option<&NSColor>, edge: NSRectEdge )
Available on crate feature
NSColor
only.pub unsafe fn setBorderColor(&self, color: Option<&NSColor>)
Available on crate feature
NSColor
only.pub unsafe fn borderColorForEdge(&self, edge: NSRectEdge) -> Option<Id<NSColor>>
Available on crate feature
NSColor
only.pub unsafe fn rectForLayoutAtPoint_inRect_textContainer_characterRange( &self, starting_point: NSPoint, rect: NSRect, text_container: &NSTextContainer, char_range: NSRange ) -> NSRect
Available on crate feature
NSTextContainer
only.pub unsafe fn boundsRectForContentRect_inRect_textContainer_characterRange( &self, content_rect: NSRect, rect: NSRect, text_container: &NSTextContainer, char_range: NSRange ) -> NSRect
Available on crate feature
NSTextContainer
only.pub unsafe fn drawBackgroundWithFrame_inView_characterRange_layoutManager( &self, frame_rect: NSRect, control_view: &NSView, char_range: NSRange, layout_manager: &NSLayoutManager )
Available on crate features
NSLayoutManager
and NSResponder
and NSView
only.Methods from Deref<Target = NSObject>§
sourcepub fn doesNotRecognizeSelector(&self, sel: Sel) -> !
pub fn doesNotRecognizeSelector(&self, sel: Sel) -> !
Handle messages the object doesn’t recognize.
See Apple’s documentation for details.
Methods from Deref<Target = AnyObject>§
sourcepub fn class(&self) -> &'static AnyClass
Available on crate feature NSAccessibilityConstants
only.
pub fn class(&self) -> &'static AnyClass
NSAccessibilityConstants
only.Dynamically find the class of this object.
§Example
Check that an instance of NSObject
has the precise class NSObject
.
use objc2::ClassType;
use objc2::runtime::NSObject;
let obj = NSObject::new();
assert_eq!(obj.class(), NSObject::class());
sourcepub unsafe fn get_ivar<T>(&self, name: &str) -> &Twhere
T: Encode,
👎Deprecated: this is difficult to use correctly, use Ivar::load
instead.Available on crate feature NSAccessibilityConstants
only.
pub unsafe fn get_ivar<T>(&self, name: &str) -> &Twhere
T: Encode,
Ivar::load
instead.NSAccessibilityConstants
only.Use Ivar::load
instead.
§Safety
The object must have an instance variable with the given name, and it
must be of type T
.
See Ivar::load_ptr
for details surrounding this.
sourcepub unsafe fn get_mut_ivar<T>(&mut self, name: &str) -> &mut Twhere
T: Encode,
👎Deprecated: this is difficult to use correctly, use Ivar::load_mut
instead.Available on crate feature NSAccessibilityConstants
only.
pub unsafe fn get_mut_ivar<T>(&mut self, name: &str) -> &mut Twhere
T: Encode,
Ivar::load_mut
instead.NSAccessibilityConstants
only.Use Ivar::load_mut
instead.
§Safety
The object must have an instance variable with the given name, and it
must be of type T
.
See Ivar::load_ptr
for details surrounding this.
Trait Implementations§
source§impl AsMut<AnyObject> for NSTextTable
impl AsMut<AnyObject> for NSTextTable
source§impl AsMut<NSObject> for NSTextTable
impl AsMut<NSObject> for NSTextTable
source§impl AsMut<NSTextBlock> for NSTextTable
impl AsMut<NSTextBlock> for NSTextTable
source§fn as_mut(&mut self) -> &mut NSTextBlock
fn as_mut(&mut self) -> &mut NSTextBlock
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsMut<NSTextTable> for NSTextTable
impl AsMut<NSTextTable> for NSTextTable
source§impl AsRef<AnyObject> for NSTextTable
impl AsRef<AnyObject> for NSTextTable
source§impl AsRef<NSObject> for NSTextTable
impl AsRef<NSObject> for NSTextTable
source§impl AsRef<NSTextBlock> for NSTextTable
impl AsRef<NSTextBlock> for NSTextTable
source§fn as_ref(&self) -> &NSTextBlock
fn as_ref(&self) -> &NSTextBlock
Converts this type into a shared reference of the (usually inferred) input type.
source§impl AsRef<NSTextTable> for NSTextTable
impl AsRef<NSTextTable> for NSTextTable
source§impl Borrow<AnyObject> for NSTextTable
impl Borrow<AnyObject> for NSTextTable
source§impl Borrow<NSObject> for NSTextTable
impl Borrow<NSObject> for NSTextTable
source§impl Borrow<NSTextBlock> for NSTextTable
impl Borrow<NSTextBlock> for NSTextTable
source§fn borrow(&self) -> &NSTextBlock
fn borrow(&self) -> &NSTextBlock
Immutably borrows from an owned value. Read more
source§impl BorrowMut<AnyObject> for NSTextTable
impl BorrowMut<AnyObject> for NSTextTable
source§fn borrow_mut(&mut self) -> &mut AnyObject
fn borrow_mut(&mut self) -> &mut AnyObject
Mutably borrows from an owned value. Read more
source§impl BorrowMut<NSObject> for NSTextTable
impl BorrowMut<NSObject> for NSTextTable
source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
Mutably borrows from an owned value. Read more
source§impl BorrowMut<NSTextBlock> for NSTextTable
impl BorrowMut<NSTextBlock> for NSTextTable
source§fn borrow_mut(&mut self) -> &mut NSTextBlock
fn borrow_mut(&mut self) -> &mut NSTextBlock
Mutably borrows from an owned value. Read more
source§impl ClassType for NSTextTable
impl ClassType for NSTextTable
§type Super = NSTextBlock
type Super = NSTextBlock
The superclass of this class. Read more
§type Mutability = InteriorMutable
type Mutability = InteriorMutable
Whether the type is mutable or immutable. Read more
source§const NAME: &'static str = "NSTextTable"
const NAME: &'static str = "NSTextTable"
The name of the Objective-C class that this type represents. Read more
source§fn class() -> &'static AnyClass
fn class() -> &'static AnyClass
Get a reference to the Objective-C class that this type represents. Read more
source§fn as_super_mut(&mut self) -> &mut Self::Super
fn as_super_mut(&mut self) -> &mut Self::Super
Get a mutable reference to the superclass.
source§impl Debug for NSTextTable
impl Debug for NSTextTable
source§impl Deref for NSTextTable
impl Deref for NSTextTable
source§impl DerefMut for NSTextTable
impl DerefMut for NSTextTable
source§impl Hash for NSTextTable
impl Hash for NSTextTable
source§impl NSCoding for NSTextTable
impl NSCoding for NSTextTable
source§impl NSCopying for NSTextTable
impl NSCopying for NSTextTable
source§impl NSObjectProtocol for NSTextTable
impl NSObjectProtocol for NSTextTable
source§fn isEqual(&self, other: &AnyObject) -> bool
fn isEqual(&self, other: &AnyObject) -> bool
Check whether the object is equal to an arbitrary other object. Read more
source§fn hash(&self) -> usize
fn hash(&self) -> usize
An integer that can be used as a table address in a hash table
structure. Read more
source§fn isKindOfClass(&self, cls: &AnyClass) -> bool
fn isKindOfClass(&self, cls: &AnyClass) -> bool
Check if the object is an instance of the class, or one of its
subclasses. Read more
source§fn is_kind_of<T>(&self) -> bool
fn is_kind_of<T>(&self) -> bool
Check if the object is an instance of the class type, or one of its
subclasses. Read more
source§fn isMemberOfClass(&self, cls: &AnyClass) -> bool
fn isMemberOfClass(&self, cls: &AnyClass) -> bool
Check if the object is an instance of a specific class, without
checking subclasses. Read more
source§fn respondsToSelector(&self, aSelector: Sel) -> bool
fn respondsToSelector(&self, aSelector: Sel) -> bool
Check whether the object implements or inherits a method with the
given selector. Read more
source§fn conformsToProtocol(&self, aProtocol: &AnyProtocol) -> bool
fn conformsToProtocol(&self, aProtocol: &AnyProtocol) -> bool
Check whether the object conforms to a given protocol. Read more
source§fn debugDescription(&self) -> Id<NSObject>
fn debugDescription(&self) -> Id<NSObject>
A textual representation of the object to use when debugging. Read more
source§impl NSSecureCoding for NSTextTable
impl NSSecureCoding for NSTextTable
source§impl PartialEq for NSTextTable
impl PartialEq for NSTextTable
source§fn eq(&self, other: &NSTextTable) -> bool
fn eq(&self, other: &NSTextTable) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RefEncode for NSTextTable
impl RefEncode for NSTextTable
source§const ENCODING_REF: Encoding = <NSTextBlock as ::objc2::RefEncode>::ENCODING_REF
const ENCODING_REF: Encoding = <NSTextBlock as ::objc2::RefEncode>::ENCODING_REF
The Objective-C type-encoding for a reference of this type. Read more
impl Eq for NSTextTable
impl Message for NSTextTable
impl StructuralPartialEq for NSTextTable
Auto Trait Implementations§
impl !Freeze for NSTextTable
impl !RefUnwindSafe for NSTextTable
impl !Send for NSTextTable
impl !Sync for NSTextTable
impl !Unpin for NSTextTable
impl !UnwindSafe for NSTextTable
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CounterpartOrSelf for T
impl<T> CounterpartOrSelf for T
§type Immutable = <<T as ClassType>::Mutability as MutabilityCounterpartOrSelf<T>>::Immutable
type Immutable = <<T as ClassType>::Mutability as MutabilityCounterpartOrSelf<T>>::Immutable
The immutable counterpart of the type, or
Self
if the type has no
immutable counterpart. Read more§type Mutable = <<T as ClassType>::Mutability as MutabilityCounterpartOrSelf<T>>::Mutable
type Mutable = <<T as ClassType>::Mutability as MutabilityCounterpartOrSelf<T>>::Mutable
The mutable counterpart of the type, or
Self
if the type has no
mutable counterpart. Read more