Removing the use of private CoreGraphics APIs to draw shadows, and replacing with...
[ITKit.git] / ITAboutWindowController.h
1 /*
2  *      ITKit
3  *      ITAboutWindowController.h
4  *
5  *      Copyright (c) 2005 iThink Software
6  *
7  */
8
9 #import <Cocoa/Cocoa.h>
10
11 @interface ITAboutWindowController : NSObject
12 {
13         IBOutlet NSImageView *_appIcon;
14         IBOutlet NSTextField *_appName;
15         IBOutlet NSTextField *_companySite;
16         IBOutlet NSTextField *_copyright;
17         IBOutlet NSWindow *_window;
18 }
19 + (ITAboutWindowController *)sharedController;
20
21 - (void)setupAboutWindow;
22 - (void)showAboutWindow;
23 - (BOOL)isVisible;
24 @end