mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-30 00:00:43 +00:00
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:
parent
d4fe1a2399
commit
3a4a94238e
4 changed files with 111 additions and 16 deletions
|
@ -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];
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue