home *** CD-ROM | disk | FTP | other *** search
- #import <appkit/appkit.h>
-
- @interface TabSelectionCell : SelectionCell
- {
- /* Private instance variables; do not use outside of this object! */
- NXCoord ascender, /* Info about the text contents in the cell */
- descender,
- lineHeight;
-
- id tabBeginImage; /* The "tabBegin" image */
- id tabEndImage; /* The "tabEnd" image */
- id tabBeginSelectedImage; /* The "tabBeginSelected" image */
- id tabEndSelectedImage; /* The "tabEndSelected" image */
-
- /* Public instance variables */
- }
-
- /* Methods overridden from superclass */
- - initTextCell:(const char *)aString;
- - awake;
- - setFont:fontObj;
-
- - drawInside:(const NXRect *)cellFrame inView:controlView;
-
- /* Other instance methods */
- - finishInitializing;
-
- /* Set/Get methods */
- - (BOOL)isSelected;
-
- @end