Search code examples
cocoatextnstextfieldcell

How do I set the font size in a text cell so that the string fills the cell's rect?


I have a view that contains two NSTextFieldCells. The size at which these cells are drawn is derived from the size of the view, and I want the text in each cell to be the largest that will fit in the derived size of the cell. Here's what I have, which doesn't set the font size:

- (void)drawRect:(NSRect)dirtyRect {
    /*
     * Observant readers will notice that I update the whole view here. If
     * there is a perceived performance problem, then I'll switch to just
     * updating the dirty rect.
     */
    NSRect boundsRect = self.bounds;
    const CGFloat monthHeight = 0.25 * boundsRect.size.height;
    NSRect monthRect = NSMakeRect(boundsRect.origin.x,
                                  boundsRect.origin.y + boundsRect.size.height
                                  - monthHeight,
                                  boundsRect.size.width,
                                  monthHeight);
    [monthCell drawWithFrame: monthRect inView: self];

    NSRect dayRect = NSMakeRect(boundsRect.origin.x,
                                boundsRect.origin.y,
                                boundsRect.size.width,
                                boundsRect.size.height - monthHeight);
    [dayCell drawWithFrame: dayRect inView: self];

    [[NSColor blackColor] set];
    [NSBezierPath strokeRect: boundsRect];
}

So I know that I can ask a string what size it would take for given attributes, and I know that I can ask a control to change its size to fit its content. Neither of those seems applicable: I want the content (in this case, the cell's stringValue) to size to fit the known rect dimensions, with the attributes needed to achieve that being unknown. How can I find the needed size? Assume that I know what font I'll be using (because I do).

update Note: I don't want to truncate the string, I want to grow or shrink it so that the whole thing fits, with the largest text size possible, into the provided rect.


Solution

  • I use some similar code but it handles different fonts, sizes up to 10,000 and takes into account the available height as well as width of the area the text is being displayed in.

    #define kMaxFontSize    10000
    
    - (CGFloat)fontSizeForAreaSize:(NSSize)areaSize withString:(NSString *)stringToSize usingFont:(NSString *)fontName;
    {
        NSFont * displayFont = nil;
        NSSize stringSize = NSZeroSize;
        NSMutableDictionary * fontAttributes = [[NSMutableDictionary alloc] init];
    
        if (areaSize.width == 0.0 || areaSize.height == 0.0) {
            return 0.0;
        }
    
        NSUInteger fontLoop = 0;
        for (fontLoop = 1; fontLoop <= kMaxFontSize; fontLoop++) {
            displayFont = [[NSFontManager sharedFontManager] convertWeight:YES ofFont:[NSFont fontWithName:fontName size:fontLoop]];
            [fontAttributes setObject:displayFont forKey:NSFontAttributeName];
            stringSize = [stringToSize sizeWithAttributes:fontAttributes];
    
            if (stringSize.width > areaSize.width)
                break;
            if (stringSize.height > areaSize.height)
                break;
        }
    
        [fontAttributes release], fontAttributes = nil;
    
        return (CGFloat)fontLoop - 1.0;
    }