mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-22 12:00:45 +00:00
Finish skeleton
This commit is contained in:
parent
4d2dcb9e04
commit
dfef9c9e1f
2 changed files with 55 additions and 0 deletions
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue