home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Nebula
/
nebula.bin
/
SourceCode
/
MiniExamples
/
ScrollingText
/
PageScrollView.h
< prev
next >
Wrap
Text File
|
1991-04-21
|
659b
|
26 lines
/* PageScrollView.h
* Purpose: A subclass of ScrollView which adds controls to the scroller area.
*
* You may freely copy, distribute, and reuse the code in this example.
* NeXT disclaims any warranty of any kind, expressed or implied, as to its fitness
* for any particular use.
*
*/
#import <appkit/ScrollView.h>
@interface PageScrollView:ScrollView
{
id pageUpButton, pageDownButton; /* items in ScrollerGadgets.nib */
id pageForm, pageLabel, zoomPopUpList; /* items in ScrollerGadgets.nib */
NXRect vertScrollerArea, horzScrollerArea;
}
- initFrame: (const NXRect *)frameRect;
- pageButton: sender;
- pageTo: sender;
- zoomTo: sender;
@end