1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326
|
/*
* PQFontSampleView.m - Font Manager
*
* A font sampling view.
*
* Copyright 2007 Isaiah Beerbower.
*
* Author: Isaiah Beerbower
* Created: 05/28/07
* License: Modified BSD license (see file COPYING)
*/
#import "PQFontSampleView.h"
#import "PQCompat.h"
@implementation PQFontSampleView
- (id) initWithFrame: (NSRect)frame
{
[super initWithFrame: frame];
sampleText = [[NSString alloc] init];
fontSize = 24;
foregroundColor = [NSColor blackColor];
backgroundColor = [NSColor whiteColor];
/* Set up text system */
textStorage = [[NSTextStorage alloc] init];
layoutManager = [[NSLayoutManager alloc] init];
textContainer = [[NSTextContainer alloc] init];
[layoutManager addTextContainer: textContainer];
[textStorage addLayoutManager: layoutManager];
fontAttributesNeedUpdate = YES;
autoSize = NO;
RETAIN(sampleText);
RETAIN(foregroundColor);
RETAIN(backgroundColor);
return self;
}
- (void) dealloc
{
RELEASE(sampleText);
RELEASE(foregroundColor);
RELEASE(backgroundColor);
[super dealloc];
}
/* Data source */
- (void) setDataSource: (id)anObject
{
if ([anObject
respondsToSelector:@selector(numberOfFontsInFontSampleView:)] == NO)
{
[NSException raise: NSInternalInconsistencyException
format: @"Data source does not respond to "
@"numberOfFontsInFontSampleView:"];
}
else if ([anObject
respondsToSelector:@selector(fontSampleView:fontAtIndex:)] == NO)
{
[NSException raise: NSInternalInconsistencyException
format: @"Data source does not respond to "
@"fontSampleView:fontAtIndex:"];
}
dataSource = anObject;
[self setNeedsDisplay: YES];
}
- (id) dataSource
{
return dataSource;
}
/* View properties */
- (void) setSampleText: (NSString *)someText
{
ASSIGN(sampleText, someText);
fontAttributesNeedUpdate = YES;
[self setNeedsDisplay: YES];
}
- (NSString *) sampleText
{
return sampleText;
}
- (void) setFontSize: (int)aSize
{
fontSize = aSize;
fontAttributesNeedUpdate = YES;
[self setNeedsDisplay: YES];
}
- (int) fontSize
{
return fontSize;
}
/* Foreground and background colors */
- (void) setForegroundColor: (NSColor *)aColor
{
ASSIGN(foregroundColor, aColor);
[self setNeedsDisplay: YES];
}
- (NSColor *) foregroundColor
{
return foregroundColor;
}
- (void) setBackgroundColor: (NSColor *)aColor
{
ASSIGN(backgroundColor, aColor);
[self setNeedsDisplay: YES];
}
- (NSColor *) backgroundColor
{
return backgroundColor;
}
/* Resizing */
- (void) setAutoSize: (BOOL)flag
{
autoSize = flag;
}
- (BOOL) autoSize
{
return autoSize;
}
- (void) setConstrainedFrameSize: (NSSize)aSize
{
// FIXME: Shouldn't take some things for granted. (See the comments)
id superview = [self superview];
NSSize currentSize = [self frame].size;
NSSize newSize = NSZeroSize;
if ([superview isKindOfClass: [NSClipView class]] == YES)
{
if ([superview documentView] == self)
{
newSize = [superview bounds].size;
}
}
/* If should resize horizontally */
/* Fun stuff */
/* Else */ newSize.width = currentSize.width;
/* If should resize vertically */
if (newSize.height < aSize.height)
{
newSize.height = aSize.height;
}
[self setFrameSize: newSize];
}
/* Drawing */
- (BOOL) isFlipped
{
return YES;
}
- (void) drawRect: (NSRect)rect
{
BOOL shouldUnlockFocus = NO;
BOOL sampleChanged = NO;
/* Set up text system */
[textContainer setContainerSize: NSMakeSize([self frame].size.width, 50000)];
/* Create font sample */
if ([dataSource fontsShouldChangeInFontSampleView: self] == YES
|| fontAttributesNeedUpdate == YES)
{
sampleChanged = YES;
int fontsCount = [[self dataSource] numberOfFontsInFontSampleView: self];
int index = 0;
/* Font sample components */
NSString *currentFontName;
NSString *displayName;
NSFont *currentFont;
NSString *currentLabel;
NSMutableDictionary *currentAttributes = [[NSMutableDictionary alloc] init];
fontAttributesNeedUpdate = NO;
[textStorage deleteCharactersInRange: NSMakeRange(0, [textStorage length])];
while (index < fontsCount)
{
/* Find next font */
currentFontName = [dataSource fontSampleView: self fontAtIndex: index];
currentFont =
[NSFont fontWithName: currentFontName size: [self fontSize]];
/* Add label to text storage */
[currentAttributes setValue: [NSFont labelFontOfSize: 0]
forKey: NSFontAttributeName];
displayName = nil; /* So we know if we've found it yet. */
#ifdef GNUSTEP
/* GNUsteps -displayName returns the post script name instead of a human
friendly name, so we get our own here. */
NSString *familyName = [currentFont familyName];
NSArray *familyMembersInfo = [[NSFontManager sharedFontManager]
availableMembersOfFontFamily: familyName];
NSEnumerator *membersEnum = [familyMembersInfo objectEnumerator];
NSArray *currentMember;
while ((currentMember = [membersEnum nextObject]))
{
if ([[currentMember objectAtIndex: 0] isEqualToString: currentFontName])
{
displayName = [NSString stringWithFormat: @"%@ %@",
familyName,
[currentMember objectAtIndex: 1]];
}
}
if (displayName == nil) /* We haven't found it yet. */
{
displayName = familyName;
}
#else
/* If were not using GNUstep, it's probably safe to assume that
-displayName returns what we want */
displayName = [currentFont displayName];
#endif
if (index == 0)
{
currentLabel =
[NSString stringWithFormat: @"%@:\n", displayName];
}
else
{
currentLabel =
[NSString stringWithFormat: @"\n\n%@:\n", displayName];
}
[textStorage appendAttributedString:
[[NSAttributedString alloc] initWithString: currentLabel
attributes: currentAttributes]];
/* Add font sample to text storage */
[currentAttributes setValue: currentFont forKey: NSFontAttributeName];
[textStorage appendAttributedString:
[[NSAttributedString alloc] initWithString: [self sampleText]
attributes: currentAttributes]];
++index;
}
}
if (autoSize == YES)
{
(void) [layoutManager glyphRangeForTextContainer: textContainer];
[self setConstrainedFrameSize:
[layoutManager usedRectForTextContainer: textContainer].size];
/* Fix a drawing bug caused by resize. */
rect = [self visibleRect];
[self lockFocus];
shouldUnlockFocus = YES;
}
/* Add color */
[textStorage addAttribute: NSForegroundColorAttributeName
value: [self foregroundColor]
range: NSMakeRange(0, [textStorage length])];
[[self backgroundColor] set];
[NSBezierPath fillRect: rect];
/* Draw font sample */
NSRange rangeNeedsDrawing = [layoutManager glyphRangeForBoundingRect: rect
inTextContainer: textContainer];
[layoutManager drawGlyphsForGlyphRange: rangeNeedsDrawing
atPoint: NSMakePoint(0, 0)];
if (shouldUnlockFocus == YES)
{
[self unlockFocus];
}
}
@end
|