Not worrying about that stupid clicky URL text field for now.
[ITKit.git] / ITAboutBox.h
1 //
2 //  ITAboutBox.h
3 //  ITKit
4 //
5 //  Created by Kent Sutherland on 8/4/05.
6 //  Copyright 2005 __MyCompanyName__. All rights reserved.
7 //
8
9 #import <Cocoa/Cocoa.h>
10
11 @class ITURLTextField;
12
13 @interface ITAboutBox : NSObject
14 {
15         IBOutlet NSImageView *_appIcon;
16         IBOutlet NSTextField *_appName;
17         IBOutlet NSTextField *_companySite;
18         IBOutlet NSTextField *_copyright;
19         IBOutlet NSWindow *_window;
20 }
21 + (ITAboutBox *)sharedController;
22
23 - (void)setupAboutBox;
24 - (void)showAboutBox;
25 - (BOOL)isVisible;
26 @end