SplashWindowController.h
上传用户:center1979
上传日期:2022-07-26
资源大小:50633k
文件大小:0k
源码类别:

OpenGL

开发平台:

Visual C++

  1. //
  2. //  SplashWindowController.h
  3. //  celestia
  4. //
  5. //  Created by Da Woon Jung on 2005-12-31.
  6. //  Copyright 2005 Chris Laurel. All rights reserved.
  7. //
  8. @interface SplashWindowController : NSObject
  9. {
  10.     IBOutlet NSTextField *status;
  11.     IBOutlet NSTextField *version;
  12.     IBOutlet NSWindow *window;
  13. }
  14. - (void)setStatusText: (NSString *)statusText;
  15. - (void)showWindow;
  16. - (void)close;
  17. - (NSWindow *)window;
  18. @end