File: PQCharacterView.h

package info (click to toggle)
fontmanager.app 0.1-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 564 kB
  • sloc: objc: 1,618; makefile: 19
file content (35 lines) | stat: -rw-r--r-- 615 bytes parent folder | download | duplicates (2)
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
/*
 * PQCharacterView.h - Font Manager
 *
 * Copyright 2007 Isaiah Beerbower.
 *
 * Author: Isaiah Beerbower
 * Created: 12/01/07
 * License: 3-Clause BSD license (see file COPYING)
 */


#import <Foundation/Foundation.h>
#import <AppKit/AppKit.h>


@interface PQCharacterView : NSView
{
	NSString *fontName;
	float fontSize;

	NSColor *color;
	NSColor *guideColor;
	NSColor *backgroundColor;
	
	unichar character;
}

- (void) setFontSize: (float)newSize;
- (float) fontSize;
- (void) setFont: (NSString *)newFontName;
- (NSString *) font;
- (void) setCharacter: (unichar)newCharacter;
- (unichar) character;

@end