Finish skeleton

This commit is contained in:
Gregory John Casamento 2024-04-25 23:58:21 -04:00
parent 4d2dcb9e04
commit dfef9c9e1f
2 changed files with 55 additions and 0 deletions

View file

@ -89,6 +89,22 @@ extern "C" {
- (NSColor *) backgroundColor;
- (void) setBackgroundColor: (NSColor *)color;
- (void) drawBackgroundInRect: (NSRect)dirtyRect;
- (void) drawDraggingDestinationFeedbackInRect: (NSRect)dirtyRect;
- (void) drawSelectionInRect: (NSRect)dirtyRect;
- (void) drawSeparatorInRect: (NSRect)dirtyRect;
- (id) viewAtColumn: (NSInteger)column;
- (BOOL) isNextRowSelected;
- (void) setNextRowSelected: (BOOL)flag;
- (BOOL) isPreviousRowSelected;
- (void) setPreviousRowSelected: (BOOL)flag;
@end
#if defined(__cplusplus)

View file

@ -126,5 +126,44 @@
ASSIGN(_backgroundColor, color);
}
- (void) drawBackgroundInRect: (NSRect)dirtyRect
{
}
- (void) drawDraggingDestinationFeedbackInRect: (NSRect)dirtyRect
{
}
- (void) drawSelectionInRect: (NSRect)dirtyRect
{
}
- (void) drawSeparatorInRect: (NSRect)dirtyRect
{
}
- (id) viewAtColumn: (NSInteger)column
{
return nil;
}
- (BOOL) isNextRowSelected
{
return NO;
}
- (void) setNextRowSelected: (BOOL)flag
{
}
- (BOOL) isPreviousRowSelected
{
return NO;
}
- (void) setPreviousRowSelected: (BOOL)flag
{
}
@end