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
|
/*
* PQController.h - Font Manager
*
* Controller for installed font list & main window.
*
* Copyright 2007 Isaiah Beerbower.
*
* Author: Isaiah Beerbower
* Created: 05/24/07
* License: Modified BSD license (see file COPYING)
*/
#import <Foundation/Foundation.h>
#import <AppKit/AppKit.h>
#import "PQSampleController.h"
#import "PQFontFamily.h"
@interface PQController : NSObject
{
IBOutlet NSOutlineView *fontList;
IBOutlet NSTextField *fontsInfoField;
IBOutlet NSTableView *groupList;
IBOutlet PQSampleController *sampleController;
IBOutlet NSWindow *window;
IBOutlet NSSplitView *splitView;
IBOutlet NSBox *groupsBox;
IBOutlet NSBox *fontsBox;
IBOutlet NSBox *sampleBox;
NSMutableArray *fontFamilies; /* All font families */
}
- (void) updateSample;
@end
|