1 //
2 //  PXAboutController.h
3 //  Pixen-XCode
4 //
5 //  Created by Andy Matuschak on Sun Aug 01 2004.
6 //  Copyright (c) 2004 Open Sword Group. All rights reserved.
7 //
8 
9 #import <AppKit/NSResponder.h>
10 #import <AppKit/NSNibDeclarations.h>
11 @class NSTimer;
12 @class NSTextField;
13 @class NSTextView;
14 
15 @interface PXAboutController : NSResponder
16 {
17   id aboutPanel;
18   id panelInNib;
19   IBOutlet NSTextView *credits;
20   IBOutlet NSTextField *version;
21 
22   NSTimer *fadeTimer;
23 }
24 
25 +(id) sharedAboutController;
26 - (void)showPanel:(id)sender;
27 
28 @end
29