Archived
1

Prepared to implement improved keyboard navigation

This commit is contained in:
Kim Wittenburg
2014-09-07 16:48:18 +02:00
parent acd12fcc32
commit 88f54b742f
3 changed files with 23 additions and 6 deletions

View File

@@ -37,4 +37,12 @@
- (NSRect)generateBounds; // To be implemented
- (void)drawAtPoint:(NSPoint)point; // To be implemented
// Specify the child that is used when the cursor enters the function from the left or right respectively
- (NSUInteger)indexOfLeadingChild; // To be implemented
- (NSUInteger)indexOfTrailingChild; // To be implemented
// The index of the child before (left) or after (right) the child at @c index. return NSNotFound if there is no child before or after @c index.
- (NSUInteger)indexOfChildBeforeChildAtIndex:(NSUInteger)index; // May be implemented
- (NSUInteger)indexOfChildAfterChildAtIndex:(NSUInteger)index; // May be implemented
@end