Public Member Functions | |
(NSRect) | - furthestRectOnEdge:forByteRange: |
(NSPoint) | - locationOfCharacterAtByteIndex: |
(NSArray *) | - rowBackgroundColors |
(void) | - setRowBackgroundColors: |
(void) | - setBehavesAsTextField: |
(BOOL) | - behavesAsTextField |
Most of the functionality of HFTextRepresenter is private, and there is not yet enough exposed to allow creating new representers based on it. However, there is a small amount of configurability.
- (NSRect) furthestRectOnEdge: | (NSRectEdge) | edge | ||
forByteRange: | (HFRange) | range | ||
Given a rect edge, return an NSRect representing the maximum edge in that direction, in the coordinate system of the receiver's view. The dimension in the direction of the edge is 0 (so if edge is NSMaxXEdge, the resulting width is 0). The returned rect is in the coordinate space of the receiver's view. If the byte range is not displayed, returns NSZeroRect.
If range is entirely above the visible region, returns an NSRect whose width and height are 0, and whose origin is -CGFLOAT_MAX (the most negative CGFloat). If range is entirely below the visible region, returns the same except with CGFLOAT_MAX (positive).
This raises an exception if range is empty.
- (NSPoint) locationOfCharacterAtByteIndex: | (unsigned long long) | byteIndex |
Returns the origin of the character at the given byte index. The returned point is in the coordinate space of the receiver's view. If the character is not displayed because it would be above the displayed range, returns {0, -CGFLOAT_MAX}. If it is not displayed because it is below the displayed range, returns {0, CGFLOAT_MAX}. As a special affordance, you may pass a byte index one greater than the contents length of the controller, and it will return the result as if the byte existed.
- (NSArray *) rowBackgroundColors |
Returns the per-row background colors. The default is -[NSControl controlAlternatingRowBackgroundColors]
.
- (void) setRowBackgroundColors: | (NSArray *) | colors |
Sets the per-row background colors. Each row is drawn with the next color in turn, cycling back to the beginning when the array is exhausted. Any empty space is filled with the first color in the array. If the array is empty, then the background is drawn with clearColor
.
- (void) setBehavesAsTextField: | (BOOL) | val |
Set whether the text view behaves like a text field (YES) or a text view (NO). Currently this determines whether it draws a focus ring when it is the first responder.
- (BOOL) behavesAsTextField |
Returns whether the text view behaves like a text field (YES) or a text view (NO).