Changed controlKey display character, per Alex's request.
[ITKit.git] / ITAboutWindowController.h
1 /*
2  *      ITKit
3  *      ITAboutWindowController.h
4  *
5  *      Copyright (c) 2005 by iThink Software.
6  *      All Rights Reserved.
7  *
8  *      $Id$
9  *
10  */
11
12 #import <Cocoa/Cocoa.h>
13
14 @interface ITAboutWindowController : NSObject
15 {
16         IBOutlet NSImageView *_appIcon;
17         IBOutlet NSTextField *_appName;
18         IBOutlet NSTextField *_companySite;
19         IBOutlet NSTextField *_copyright;
20         IBOutlet NSWindow *_window;
21 }
22 + (ITAboutWindowController *)sharedController;
23
24 - (void)setupAboutWindow;
25 - (void)showAboutWindow;
26 - (BOOL)isVisible;
27 @end