-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathPreView.h
More file actions
17 lines (15 loc) · 736 Bytes
/
Copy pathPreView.h
File metadata and controls
17 lines (15 loc) · 736 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/** @file PreView.h
* @brief Handle display events in the preview view.
* @copyright (c) 2006 Alquanto. All Rights Reserved.
*/
#import <Cocoa/Cocoa.h>
#import <NeoFontEditor.h>
#define NeoFontEditorPreviewMaxCharacters (512)
@interface PreView : NSView
{
IBOutlet NeoFontEditor *neoFontEditor; /**< The enclosing editor object. */
unsigned count; /**< The number of characters in the preview display. */
float positions[NeoFontEditorPreviewMaxCharacters + 1]; /**< Array of screen x-coordinates for each character. */
unsigned characters[NeoFontEditorPreviewMaxCharacters]; /**< The corresponding character number. */
}
@end