implement deleteRow/ColumnAtIndex: moveRow/ColumnAtIndex: methods.

This commit is contained in:
Gregory John Casamento 2021-02-20 07:13:35 -05:00
parent 037d50d445
commit 7de5efd022
2 changed files with 163 additions and 39 deletions

View file

@ -153,7 +153,9 @@ APPKIT_EXPORT const CGFloat NSGridViewSizeForContent;
CGFloat _trailingPadding;
BOOL _isHidden;
}
- (NSGridView *) gridView;
- (void) setGridView: (NSGridView *)gv;
- (NSInteger) numberOfCells;
- (NSGridCell *) cellAtIndex:(NSInteger)index;
@ -183,6 +185,7 @@ APPKIT_EXPORT const CGFloat NSGridViewSizeForContent;
}
- (NSGridView *) gridView;
- (void) setGridView: (NSGridView *)gv;
- (NSInteger) numberOfCells;
- (NSGridCell *)cellAtIndex:(NSInteger)index;