Add scroll page up and down methods to NSTextView and NSScrollView.

Patch by Wolfgang Lux <wolfgang.lux@gmail.com>.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@24732 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Fred Kiefer 2007-02-28 22:10:47 +00:00
parent d4fe1a2399
commit 3a4a94238e
4 changed files with 111 additions and 16 deletions

View file

@ -1302,30 +1302,22 @@ and layout is left-to-right */
- (void) scrollLineDown: (id)sender
{
// TODO
NSLog(@"Method %s is not implemented for class %s",
"scrollLineDown:", "NSTextView");
[[self enclosingScrollView] scrollLineDown: sender];
}
- (void) scrollLineUp: (id)sender
{
// TODO
NSLog(@"Method %s is not implemented for class %s",
"scrollLineUp:", "NSTextView");
[[self enclosingScrollView] scrollLineUp: sender];
}
- (void) scrollPageDown: (id)sender
{
// TODO
NSLog(@"Method %s is not implemented for class %s",
"scrollPageDown:", "NSTextView");
[[self enclosingScrollView] scrollPageDown: sender];
}
- (void) scrollPageUp: (id)sender
{
// TODO
NSLog(@"Method %s is not implemented for class %s",
"scrollPageUp:", "NSTextView");
[[self enclosingScrollView] scrollPageUp: sender];
}