Added a new about box class. Added a text field that will eventually be clickable...
[ITKit.git] / ITAboutBox.h
diff --git a/ITAboutBox.h b/ITAboutBox.h
new file mode 100644 (file)
index 0000000..07ca399
--- /dev/null
@@ -0,0 +1,26 @@
+//
+//  ITAboutBox.h
+//  ITKit
+//
+//  Created by Kent Sutherland on 8/4/05.
+//  Copyright 2005 __MyCompanyName__. All rights reserved.
+//
+
+#import <Cocoa/Cocoa.h>
+
+@class ITURLTextField;
+
+@interface ITAboutBox : NSObject
+{
+       IBOutlet NSImageView *_appIcon;
+       IBOutlet NSTextField *_appName;
+       IBOutlet ITURLTextField *_companySite;
+       IBOutlet NSTextField *_copyright;
+       IBOutlet NSWindow *_window;
+}
++ (ITAboutBox *)sharedController;
+
+- (void)setupAboutBox;
+- (void)showAboutBox;
+- (BOOL)isVisible;
+@end