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
|
/*
* PQCharactersController.h - Font Manager
*
* Copyright 2007 Isaiah Beerbower.
*
* Author: Isaiah Beerbower
* Created: 12/02/07
* License: 3-Clause BSD license (see file COPYING)
*/
#import <AppKit/AppKit.h>
#import "PQCharacterView.h"
#import "PQCharactersView.h"
@interface PQCharactersController : NSObject
{
PQCharactersView *charsView;
PQCharacterView *charView;
NSSlider *charSizeSlider;
NSPopUpButton *unicodeBlockPopUpButton;
NSString *fontName;
NSDictionary *unicodeBlocks;
NSRange characterRange;
}
- (void) changeCharSize: (id)sender;
- (void) setFont: (NSString *)fontName;
- (NSString *) font;
@end
|