X-Git-Url: http://git.ithinksw.org/ITKit.git/blobdiff_plain/bbfa6efd3166fc3d4202de03f817cc46efe08967..d4f63699c141b36ccd7daff2d910e836af76dcfa:/ITAboutBox.h diff --git a/ITAboutBox.h b/ITAboutBox.h new file mode 100644 index 0000000..07ca399 --- /dev/null +++ b/ITAboutBox.h @@ -0,0 +1,26 @@ +// +// ITAboutBox.h +// ITKit +// +// Created by Kent Sutherland on 8/4/05. +// Copyright 2005 __MyCompanyName__. All rights reserved. +// + +#import + +@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