home *** CD-ROM | disk | FTP | other *** search
- #import <appkit/appkit.h>
-
- @interface PARuler : View
- {
- int direction;
- }
-
- - initFrame:(const NXRect *)rect;
-
- - (int)direction;
- - setDirection:(int)value;
- - setHorizontal;
- - setVertical;
-
- - drawSelf:(const NXRect *)rect :(int)count;
-
- - write:(NXTypedStream *)stream;
- - read:(NXTypedStream *)stream;
-
- @end
-
- #ifndef DIRECTION_HORIZONTAL
- #define DIRECTION_HORIZONTAL 0
- #endif
-
- #ifndef DIRECTION_VERTICAL
- #define DIRECTION_VERTICAL 1
- #endif
-
-