Line | |
---|
1 | //
|
---|
2 | // NJRReadMeController.h
|
---|
3 | // Pester
|
---|
4 | //
|
---|
5 | // Created by Nicholas Riley on Tue Feb 18 2003.
|
---|
6 | // Copyright (c) 2003 Nicholas Riley. All rights reserved.
|
---|
7 | //
|
---|
8 |
|
---|
9 | #import <AppKit/AppKit.h>
|
---|
10 |
|
---|
11 |
|
---|
12 | @interface NJRReadMeController : NSWindowController {
|
---|
13 | IBOutlet NSSplitView *splitter;
|
---|
14 | IBOutlet NSTableView *contents;
|
---|
15 | IBOutlet NSTextView *body;
|
---|
16 | IBOutlet NSBox *bodyBox;
|
---|
17 | IBOutlet NSTabView *progressTabs;
|
---|
18 | IBOutlet NSProgressIndicator *progress;
|
---|
19 | NSMutableArray *headings;
|
---|
20 | float maxHeadingWidth;
|
---|
21 | NSDictionary *headingAttributes;
|
---|
22 | }
|
---|
23 |
|
---|
24 | + (NJRReadMeController *)readMeControllerWithRTFDocument:(NSString *)aPath;
|
---|
25 | - (id)initWithRTFDocument:(NSString *)aPath;
|
---|
26 |
|
---|
27 | - (IBAction)contentsClicked:(NSTableView *)sender;
|
---|
28 |
|
---|
29 | @end
|
---|
Note:
See
TracBrowser
for help on using the repository browser.